You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here I don´t know if I have to install or update something else, but I get the following error:
python3 websploit.py
File "/home/kali/websploit/websploit.py", line 152
print "Wrong Command => ", terminal
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
I know I´m supposed to edit it, however even if I do it (I not a programer so I just try to replicate the same structure to make it "work") it continues to give me an error
So:
mousepad websploit.py
Then I change line 153 from:
print "Wrong Command => ", terminal
to:
print("Wrong Command => ", terminal)
I change nothing else, and then save the file. I open the file again to see if the editing took place and it did.
python3 websploit.py
A different printing error appears:
Traceback (most recent call last):
File "/home/kali/websploit/websploit.py", line 38, in
from core import menu
File "/home/kali/websploit/core/menu.py", line 11
print ""
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
But I don´t see any errors on line 38 or 11, but I´m not a programer and my knowledge goes from limited to unexisting.
I stopped here. I don´t know if I´m missing some requirements (if so, I would need the commands since I don´t know python or coding) or something else
I basically want this or other version because I´m running some bluetooth tests, on my own devices of course, and the current version does not have the bluetooth capabilities that I need.
The bluetooth testing community will appreciate any help here!
Thanks in advance,
The text was updated successfully, but these errors were encountered:
Hi,
This is an amateur question. Besides running git clone https://github.com/The404Hacking/websploit.git what else do I need to do to make this version work?
I did the following on /home/kali:
git clone https://github.com/The404Hacking/websploit.git
ls
cd websploit
ls
python3 websploit.py
Here I don´t know if I have to install or update something else, but I get the following error:
python3 websploit.py
File "/home/kali/websploit/websploit.py", line 152
print "Wrong Command => ", terminal
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
I know I´m supposed to edit it, however even if I do it (I not a programer so I just try to replicate the same structure to make it "work") it continues to give me an error
So:
mousepad websploit.py
Then I change line 153 from:
print "Wrong Command => ", terminal
to:
print("Wrong Command => ", terminal)
I change nothing else, and then save the file. I open the file again to see if the editing took place and it did.
python3 websploit.py
A different printing error appears:
Traceback (most recent call last):
File "/home/kali/websploit/websploit.py", line 38, in
from core import menu
File "/home/kali/websploit/core/menu.py", line 11
print ""
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
But I don´t see any errors on line 38 or 11, but I´m not a programer and my knowledge goes from limited to unexisting.
I stopped here. I don´t know if I´m missing some requirements (if so, I would need the commands since I don´t know python or coding) or something else
I basically want this or other version because I´m running some bluetooth tests, on my own devices of course, and the current version does not have the bluetooth capabilities that I need.
The bluetooth testing community will appreciate any help here!
Thanks in advance,
The text was updated successfully, but these errors were encountered: