Skip to content

Instantly share code, notes, and snippets.

View daariecc's full-sized avatar
🏠
Working from home

scbdq daariecc

🏠
Working from home
View GitHub Profile
@kurtnettle
kurtnettle / README.md
Created November 20, 2024 13:59
Step by Step procedure of Volatility Installation in Kali Linux (2024.3)

Volatility Installation in Kali Linux (2024.3)

Note: It covers the installation of Volatility 2, not Volatility 3.

1. Preparing Python 2

1.1 Installing pip2

wget https://bootstrap.pypa.io/pip/2.7/get-pip.py 
python2 get-pip.py
@Enigmatrix
Enigmatrix / GDB Cheatsheet.md
Last active July 2, 2025 16:38
GDB Cheatsheet using pwndbg

GDB Cheatsheet

Setup

First of all, we need to install GDB: sudo apt install gdb

Next we will be installing an extension to GDB called pwndbg that will make our life easier. Instructions for installation are here.

You can verify that your installation works by running gdb /bin/true in your command line, then running start when the prompt shows.

#Для какого наименьшего целого числа А выражение (x ∙ y > A) /\ (x > y) /\ (x < 8) тождественно ложно, т.е. принимает значение 0
#при любых целых положительных x и y?
for a in range(1,100):
t=0
for x in range(1,100):
for y in range(1,100):
if ((x*y>a) and (x>y) and(x<8))==True:
t+=1
break
if t==1: