mirror of
https://github.com/LionSec/katoolin.git
synced 2026-04-26 01:15:54 +03:00
[GH-ISSUE #71] Python error on Arch Linux (Manjaro) #60
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/katoolin-LionSec#60
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nathlnx on GitHub (Apr 23, 2017).
Original GitHub issue: https://github.com/LionSec/katoolin/issues/71
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 on GitHub (May 3, 2017):
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 on GitHub (May 8, 2017):
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 on GitHub (May 10, 2017):
@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 on GitHub (Dec 7, 2021):
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