mirror of
https://github.com/LionSec/katoolin.git
synced 2026-04-26 17:35:47 +03:00
[GH-ISSUE #363] Missing raw_input Function #291
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#291
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 @CHEGEBB on GitHub (Dec 26, 2023).
Original GitHub issue: https://github.com/LionSec/katoolin/issues/363
Description: The script references the raw_input function, which is not defined in Python 3.
Error Message: NameError: name 'raw_input' is not defined
Solution: Replace instances of raw_input with input in katoolin.py
@ghost commented on GitHub (Jun 15, 2024):
Here's how I installed Katoolin on my Chromebook and fixed raw_input error.
Clone Katoolin from GitHub:
Move the script to
/usr/bin/katoolinand set permissions:Update the script for Python 3:
raw_inputtoinputand added parentheses.Correct the shebang in
/usr/bin/katoolin:#!/usr/bin/python3Make the script executable again:
Katoolin is now running smoothly! Remember to check Python versions and adjust permissions as needed.