LionSec / katoolin

Automatically install all Kali linux tools
https://lionsec.net
GNU General Public License v2.0
4.74k stars 1.33k forks source link

Python error on Arch Linux (Manjaro) #71

Open nathlnx opened 7 years ago

nathlnx commented 7 years ago

Idk what to say, its just weird...

Traceback (most recent call last): File "/usr/bin/katoolin", line 1290, in main inicio1() File "/usr/bin/katoolin", line 37, in inicio1 opcion0 = raw_input("\033[1;36mkat > \033[1;m") NameError: name 'raw_input' is not defined [manjaro katoolin-master]#

solinium commented 7 years ago

It's possible you're running it on the wrong python version? I believe raw_input() was renamed to input() python3, correct me if I'm wrong. Try running it in python2.7?

matiasm2 commented 7 years ago

I think that you also will need to modify the script, because manjaro inherits- pacman as package manager and the script uses apt-get from debian.In addition, you should search if the packages to install are in the officials repositories or aur.

solinium commented 7 years ago

@powpowlk You're absolutely right, I didn't even think about the fact that he was on manjaro. For anyone who is interested in using kali tools on non-debian/ubuntu based distros remember that kali is just slightly modified debian so there is no guarantee all of the tools will work on other distros.

6a6ygd commented 2 years ago

I just used nano to edit the /usr/bin/katoolin file and edited line 1294 and line 41 to use input instead of raw_input and I've got it working just fine now