BigBountyRecon icon indicating copy to clipboard operation
BigBountyRecon copied to clipboard

how to run it on kali linux

Open deven60 opened this issue 3 years ago • 4 comments

deven60 avatar Jul 12 '21 04:07 deven60

go to BigBountyRecon folder (chmod +x BigBountyRecon.exe ) run wine BigBountyRecon.exe

santuhk avatar Jul 16 '21 19:07 santuhk

First of all Git clone the source code in your terminal.

Now copy the as it code which i have written and paste in your terminal. Make sure you have a ROOT permission in your terminal.

  sudo dpkg --add-architecture i386 && apt-get update && apt-get install wine-bin:i386

After completing this installation type wine --version in your terminal to check the version of wine.

Open another terminal and copy and paste the codes which i have written.

  cd BigBountyRecon

  chmod +x BigBountyRecon.exe

Here we go...................

   wine BigBountyRecon.exe

If you think that this hack is use full then buy me a coffie

                                                Shadab The Hacker.....

hackyshadab avatar Oct 17 '21 15:10 hackyshadab

First of all Git clone the source code in your terminal.

Now copy the as it code which i have written and paste in your terminal. Make sure you have a ROOT permission in your terminal.

  sudo dpkg --add-architecture i386 && apt-get update && apt-get install wine-bin:i386

After completing this installation type wine --version in your terminal to check the version of wine.

Open another terminal and copy and paste the codes which i have written.

  cd BigBountyRecon
  chmod +x BigBountyRecon.exe

Here we go...................

   wine BigBountyRecon.exe

If you think that this hack is use full then buy me a coffie

                                                Shadab The Hacker.....

I am getting this error dude:) E: Unable to locate package wine-bin:i386

INVIZIBLE84 avatar Jan 06 '24 15:01 INVIZIBLE84

Method 1: Using Aptitude (Recommended)

  1. Update Repository (MUST):

    sudo apt update
    
  2. Add the 32-bit Architecture (if not added):

    sudo dpkg --add-architecture i386
    
  3. Install Wine Stable:

    sudo apt install wine wine32
    

Method 2: Using WineHQ Repository

  1. Install Dependency Packages:

    sudo dpkg --add-architecture i386
    
  2. Add WineHQ Repository:

    wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
    sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/debian/ buster main'
    

    Note: Ensure to replace 'buster' with your Kali Linux version name (e.g., 'kali-rolling') if it's different.

  3. Update Repository Information:

    sudo apt update
    
  4. Install Wine:

    sudo apt install --install-recommends winehq-stable
    

Additional Notes:

  • Always update your machine before downloading anything..

  • Always ensure you have root or sudo privileges...

  • Verify your Kali Linux version and replace 'buster' in the repository URL if needed...

  • If encountering issues, check WineHQ's official documentation or forums for any updated instructions or troubleshooting steps specific to Kali Linux...

      										`Shadab The hacker....`
    

hackyshadab avatar Jan 07 '24 15:01 hackyshadab