CYB3RMX / Qu1cksc0pe

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

Error Puremagic not found #29

Closed hack-parthsharma closed 1 year ago

hack-parthsharma commented 1 year ago

image

I have installed the package manually still same error is showing

image

@CYB3RMX

CYB3RMX commented 1 year ago

Hello! Did you execute this command?: sudo pip3 install -r requirements.txt

Note: You need to execute this command before installing Qu1cksc0pe on your system. But if you executed bash setup.sh you can use Qu1cksc0pe without installing it

Note2: Also in Kali Linux you need to add this path: /home/kali/.local/bin. Because there is python binaries contained in this path.

hack-parthsharma commented 1 year ago

@CYB3RMX How can i add that path "/home/kali/.local/bin" ?

hack-parthsharma commented 1 year ago

Also if possible can you give some repositories in which i can find the virus and malware for testing purpose ! Thanks once again for creating such an amazing tool !

CYB3RMX commented 1 year ago

To add "/home/kali/.local/bin" to the PATH environment variable in Kali Linux, you can follow these steps:

  1. Open a terminal in Kali Linux. You can do this by clicking on the terminal icon in the taskbar or by pressing Ctrl+Alt+T.

  2. Once the terminal is open, you need to locate and open the file where the PATH variable is defined. In Kali Linux, the file is usually either ~/.bashrc or ~/.bash_profile.

    Type the following command to open the file in a text editor:

    nano ~/.bashrc

    If the file doesn't exist, you can create it by running the command:

    touch ~/.bashrc
    nano ~/.bashrc
  3. In the text editor, scroll to the bottom of the file and add the following line:

    export PATH="/home/kali/.local/bin:$PATH"

    This line appends "/home/kali/.local/bin" to the existing PATH variable, separated by a colon.

  4. Save the changes by pressing Ctrl+O, then press Enter to confirm the filename. Exit the text editor by pressing Ctrl+X.

  5. To apply the changes to the current terminal session, run the following command:

    source ~/.bashrc

    Alternatively, you can close the terminal and open a new one to automatically load the updated PATH variable.

Now, when you run commands in the terminal, it will check the "/home/kali/.local/bin" directory for executable files as part of the PATH search.

CYB3RMX commented 1 year ago

Also you can find malware samples from:

  1. Malware Bazaar: https://bazaar.abuse.ch/browse/
  2. theZoo: https://github.com/ytisf/theZoo
  3. VirusShare: https://virusshare.com/
  4. VX-Underground: https://www.vx-underground.org/malware.html

So actually there is many of them. You can also simply google it and find another ones too.

Thank you for your comments. I hope it will be usefull :)

hack-parthsharma commented 1 year ago

Thanks a lot dude for the immediate help. Really appreciate your efforts and help.