I have been experimenting with some hacking tools (like hydro) recently and I came across a tool called Responder. It basically opens an SMB server that grabs the NetNTLMv for the administrative user from a server/client (BTW I am still a beginner so please go easy on me if I am wrong). I tried to run the script by typing ./Responder.py -I tun0
but it said /usr/bin/env: ‘python’: No such file or directory
. I understood that python was not installed so I ran sudo apt install python
but instead of it telling me that the installation was complete, it told me this:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package python is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
2to3 python2-minimal:i386 python2:i386 python2-minimal python2 dh-python
python-is-python3
E: Package 'python' has no installation candidate
The output remained the same even after running sudo apt update && sudo apt upgrade
and after rebooting.
I remember python working before the last update so I'm not really sure what to do.
Version: Ubuntu 22.04 amd64
(Note: I tapped into the Responder.py code and I saw that in the shebang line, it specifically required python 1, so python 2 and 3 aren't supposed to work...I tried it anyways and as I guessed, it did not work.)