OSCP Notes logo OSCP Notes

Autosploit

TODO

Compilando para windows en linux


install

apt-get install mingw-w64

compile

x86_64-w64-mingw32-gcc exploit.c -o nop.exe  # 64bits
i686-w64-mingw32-gcc exploit.c -o nop.exe    -lws2_32 # 32bits

Cross compiling


gcc -m32 -o output32 hello.c (32 bit)
gcc -m32 -o output32 hello.c (32 bit)
gcc -m64 -o output hello.c (64 bit)

VISUAL CODE


cuando un projecto tiene algun archivo vcproj o vcxproj, sln los podes compilar con visual studio

descarga:

Microsoft Visual Studio 2008 Service Pack 1 (iso)

http://www.microsoft.com/en-us/download/details.aspx?id=13276

http://download.microsoft.com/download/a/3/7/a371b6d1-fc5e-44f7-914c-cb452b4043a9/VS2008SP1ENUX1512962.iso

Compile python script to .exe


pip install pyinstaller
wget -O exploit.py http://www.exploit-db.com/download/31853  
python pyinstaller.py --onefile exploit.py