Closed hack-parthsharma closed 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.
@CYB3RMX How can i add that path "/home/kali/.local/bin" ?
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 !
To add "/home/kali/.local/bin" to the PATH environment variable in Kali Linux, you can follow these steps:
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.
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
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.
Save the changes by pressing Ctrl+O, then press Enter to confirm the filename. Exit the text editor by pressing Ctrl+X.
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.
Also you can find malware samples from:
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 :)
Thanks a lot dude for the immediate help. Really appreciate your efforts and help.
I have installed the package manually still same error is showing
@CYB3RMX