r00t-3xp10it / FakeImageExploiter

Use a Fake image.jpg to exploit targets (hide known file extensions)
891 stars 341 forks source link

mingw32 not found! #22

Open redheet opened 5 years ago

redheet commented 5 years ago

[☆] Checking backend applications .. [x] mingw32[64] installation -> not found! [x] This script requires mingw32[64] to work [☆] Please wait: installing missing dependencies ..

Reading package lists... Done Building dependency tree
Reading state information... Done E: Unable to locate package mingw32

[☆] Wine installation : found! [☆] Xterm installation : found! [☆] Zenity installation : found! [☆] Wine Program Files : found!

i have mingw32 why dosen't work ?

r00t-3xp10it commented 5 years ago

@MrR3DH3T 1º - how can you have mingw32 installed if your distro reports that mingw32 its not available in oficial repository E: Unable to locate package mingw32 ??????? (so make sure you have enable the rigth repository to install mingw32 in /etc/apt/sources.list) 2º - its your distro x64bits or x32 bits ?? 3º - what distro are you using ??

- [remove old packages installations] -
sudo apt-get remove --purge mingw* -y
sudo apt-get autoremove -y

- [allow downgrades (x64-> x32)] -
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get -y dist-upgrade --allow-downgrades
sudo apt-get install mingw* --force-yes -y

- [check if /run/user/0/ folder exists] -
If does not exist the folder, build it ..
sudo mkdir -p /run/user/0/
redheet commented 5 years ago
  1. this my sources.list # deb cdrom:[Debian GNU/Linux 4.3 Parrot - Official Snapshot amd64 LIVE/INSTALL Binary 20181102-12:48]/ parrot contrib main non-free
  2. i use x64
  3. parrot stable , but my parrot.list rolling
r00t-3xp10it commented 5 years ago

"Its hard for me to fix dependencies issues in a distro i have not used for a long time"

1º - Did you have tried the solluctions i have give you ?

2º - Go to https://packages.debian.org/jessie/all/mingw32 and download the package at the bottom of the page. When it downloads, right click it and click Open with GDebi Package Installer, then install it. Do the same for https://packages.debian.org/jessie/all/mingw32-binutils My girlfriend have succeded installing mingw32 on is parrot amd64 this way

Maadhav commented 5 years ago

I have found out the right way to solve the problem for mingw32. It is easy... 1)https://packages.debian.org/jessie/all/mingw32/download 2)Download from any server 3)now open it with SOFTWARE INSTALL image 4) restart your machine and try to install again. Thanks

r00t-3xp10it commented 5 years ago

yes ..i have allready give the soluction in the above post ..

truesamurai commented 4 years ago

I have same issue with mingw32 error. Downloaded the suggested from the server but I can not install this package. I click install but nothing happens. Any other solution to solve mingw32 error? I am running latest version of Kali 64 bit.

Maadhav commented 4 years ago

I have same issue with mingw32 error. Downloaded the suggested from the server but I can not install this package. I click install but nothing happens. Any other solution to solve mingw32 error?

https://github.com/r00t-3xp10it/FakeImageExploiter/issues/22#issuecomment-516382438

truesamurai commented 4 years ago

I have same issue with mingw32 error. Downloaded the suggested from the server but I can not install this package. I click install but nothing happens. Any other solution to solve mingw32 error?

#22 (comment)

Thanks but in my question i already told that this solution did not work for me.

truesamurai commented 4 years ago

Its working now with this solution: https://github.com/r00t-3xp10it/venom/issues/1

r00t-3xp10it commented 4 years ago

yes..diferent distros..diferent soluctions ..

ghost commented 4 years ago

FINAL solution just follow this procedure type /FakeImageExploiter# gedit FakeImageExploiter.sh

after it opens

if [ "$ArCh" = "i686" ]; then
  dEd="x86"
  arch="wine"
  PgFi="Program Files"
  # ComP="i586-mingw32msvc-gcc" >>>>>>>>>>>>>>>. put "#"
else
  dEd="x86"
  arch="wine"
  PgFi="Program Files"
  ComP="i586-mingw32msvc-gcc"
  # dEd="x64"
  # arch="wine64"
  # PgFi="Program Files (x86)" # default value
  # PgFi="Program Files"
   ComP="i686-w64-mingw32-gcc"     >>>>>>>>>>>>>>> remove the "#"

after that just save it and re-start

Morsmalleo commented 3 years ago

add deb http://deb.debian.org/debian jessie main contrib non-free to your sources.list file and # out any other repo's you have, then do a sudo apt-get update to activate the repo, then do sudo apt-get install mingw32 works for me everytime