CYB3RMX / Qu1cksc0pe

All-in-One malware analysis tool.
GNU General Public License v3.0
1.24k stars 176 forks source link

requirements.txt gives an error #23

Closed kidvidearths closed 1 year ago

kidvidearths commented 1 year ago

When i try to run bash setup.py on my virtual environment, i get this error. Could not find a version that satisfies the requirement yara-python-dex>=1.0.1 (from apkid->-r requirements.txt (line 3)) (from versions: none)

CYB3RMX commented 1 year ago

This error is common in apkid. I encountered this error while I was trying to use Qu1cksc0pe in Kali and KaliWSL. Can you try these following commands:

  1. Uninstall existing yara module: pip3 uninstall yara-python
  2. Install version 3.11.0: pip3 install yara-python==3.11.0
  3. Try to run program again

I think these instructions will fix your problem.

kidvidearths commented 1 year ago

I'm running this in a virtual environment and i tried doing what you asked, it didn't work. Even went to change it in requirements.txt. Anyways, the error goes when i change the apkid version in line 3 to ==2.1.1 and run bash setup.sh, but it's introducing new errors. I'm using an ubuntu btw

Screenshot 2023-03-29 at 1 11 54 PM
CYB3RMX commented 1 year ago

Looks like you dont have cmake. Try to install it via your package manager. I added virtual environment because of module conflict errors. I will make it optional with new update. Honestly I didnt ever used Qu1cksc0pe on the Ubuntu. For best experience you can use it on Parrot or Kali. I will try it on Ubuntu and add optimizations for this.

kidvidearths commented 1 year ago

Okay, when i try to install it, it gives me this error. I've moved onto kali as you'd suggested.

Screenshot 2023-03-29 at 6 09 11 PM
CYB3RMX commented 1 year ago

Looks like when you want to install it from virtual environment it crashes. But dont worry I'll make virtual environment usage is optional very soon. Thank you for the feedback!

CYB3RMX commented 1 year ago

Can you update the program and retry please?

Edit: Its not recommended to install for now (I'll fix that very soon). You can use it from its directory.

Edit: I commit fixes about installation issues can you check it please?