r00t-3xp10it / venom

venom - C2 shellcode generator/compiler/handler
1.76k stars 593 forks source link

fix ubuntu mingw32 repository install #3

Open r00t-3xp10it opened 7 years ago

r00t-3xp10it commented 7 years ago

This package is in universe repository of Ubuntu . so make sure you have enable universe in /etc/apt/sources.list use command : sudo apt-get install mingw32

it will install packages mingw32 mingw32-binutils mingw32-runtime automatically sudo apt-cache search mingw32

mingw32 - Minimalist GNU win32 (cross) compiler
mingw32-binutils - Minimalist GNU win32 (cross) binutils
mingw32-runtime - Minimalist GNU win32 (cross) runtime

no need to select one. these packages are dependency of mingw32

Note : currently these package available in trusty , utopic and earlier version of Ubuntu if you are using latest Ubuntu version then check Ubuntu package search that package available or not . if not then either download package and install manually or download source and compile it.

for 32bit system:

wget http://archive.ubuntu.com/ubuntu/pool/universe/m/mingw32/mingw32_4.2.1.dfsg-2ubuntu1_i386.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/m/mingw32-binutils/mingw32-binutils_2.20-0.2ubuntu1_i386.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/m/mingw32-runtime/mingw32-runtime_3.15.2-0ubuntu1_all.deb

for 64bit system

wget http://archive.ubuntu.com/ubuntu/pool/universe/m/mingw32/mingw32_4.2.1.dfsg-2ubuntu1_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/m/mingw32-binutils/mingw32-binutils_2.20-0.2ubuntu1_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/m/mingw32-runtime/mingw32-runtime_3.15.2-0ubuntu1_all.deb

install these packages using command : sudo dpkg -i *.deb

if it shows dependencies then use command : sudo apt-get install -f

and again install sudo dpkg -i *.deb


Special thanks to team menber: Chaitanya Haritash