ultrasecurity/webkiller

Error while launching it

Opened this issue · 3 comments

$ python webkiller.py
File "webkiller.py", line 16
print '\r'
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('\r')?
$ python webkiller.py
File "webkiller.py", line 16
print '\r'
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('\r')?
$

I'm having the same issue on windows. I'll try it on kali when I get home.

use kali linux

probably because you're using python 3 so that the syntax is different so that instead of print'\r' it should be
print("\r")
so that you should modify every print