LionSec / xerosploit

Efficient and advanced man in the middle framework
GNU General Public License v3.0
2.02k stars 651 forks source link

system0 = raw_input((">>>") #306

Closed RodjAI closed 1 year ago

RodjAI commented 2 years ago

Traceback (most recent call last): File "/root/xerosploit/./install.py", line 65, in main() File "/root/xerosploit/./install.py", line 45, in main system0 = raw_input(">>> ") NameError: name 'raw_input' is not defined

jaynagrecha commented 2 years ago

Please replace all the "raw_input" with only "input". This will resolve the issue. The updated python uses this new syntax and the keyword "raw_input" has been replaced by "input".

RodjAI commented 2 years ago

Thank you very much, I could not decide for 3 days. It turned out that one small detail needed to be replaced.

jaynagrecha commented 2 years ago

Your Welcome!

apambalik1337 commented 2 years ago

Please replace all the "raw_input" with only "input". This will resolve the issue. The updated python uses this new syntax and the keyword "raw_input" has been replaced by "input".

Thankyou!

yoitsankey commented 1 year ago

Step1 . Open install.py and xerosploit.py respectively in a text editor. Step 2. Then Go to Find and Replace. Step 3. Now, Enter "raw_input" in Find section of find and replace tool (without quotations ). Step 4. and then Enter "input" in Replace section of find and replace tool (without quotations). Step 5. Now replace all the occurences with above value. Step 6. save the file and exit. Step 7. Now run the install.py with python3 install it. Step 8. after installation run xerosploit.py with python3 in order to get it working. Step 9. (optional) If you want to directly run xerosploit from the terminal instead of using python3 everytime with xerosploit.py, Go to /opt/xersploit, and now find and replace all the occurences of raw_input with input as explained above.

BOOM!!! Congratulations You get it working