-
Notifications
You must be signed in to change notification settings - Fork 431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with installing sslstrip #27
Comments
adding to what i have posted earlier pip3 install sslstrip
|
We removed sslstrip and python-twisted-web from kali because the packages are in Python 2 (EOL). |
Then now what I should do to install the sslstrip ? |
There's a way to install python2 on Kali2020.3 without breaking anything. I got it working like this: sudo -i Add following lines to /root/.bashrc exit After this I was able to run sslstrip again. I got some errors in console sometimes but functionality was there. |
Oh. Do go back to python3 just remove the lines in .bashrc and start a new shell. |
Hi,
I am facing some issues while installing the sslstrip
I run the following command:
python setup.py build && python setup.py install
then when i run:
sslstrip -h
Traceback (most recent call last):
File "/usr/local/bin/sslstrip", line 27, in
from twisted.web import http
ImportError: No module named twisted.web
I have tried installing twisted module using apt-get but unfortunately it is not there anymore
apt-get install python-twisted
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package python-twisted 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
E: Package 'python-twisted' has no installation candidate
when i install it using pip3 is shows that it is there
pip3 install twisted
Requirement already satisfied: twisted in /usr/lib/python3/dist-packages (18.9.0)
so please can you guide me for the proper way to install it
The text was updated successfully, but these errors were encountered: