Python Forum
error trying to install sslstrip - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: error trying to install sslstrip (/thread-32866.html)



error trying to install sslstrip - NullAdmin - Mar-11-2021

I was trying to install sslstrip in my computer, so this is what i did:
Downloaded sslstrip-master.zip from github
Downloaded and install airgeddon
Installed setup.py which was in sslstrip-master folder. (Note: there were some mistakes like unclosed parethses in setup.py and i fixed then)
But when i typed sslstrip --help to test to see if working, this happened:

Error:
File "/usr/local/bin/sslstrip", line 30, in <module> from sslstrip.StrippingProxy import StrippingProxy File "/usr/local/lib/python3.8/dist-packages/sslstrip/StrippingProxy.py", line 20, in <module> from ClientRequest import ClientRequest ModuleNotFoundError: No module named 'ClientRequest'
Can someone please tell me if there is a module called ClientRequest because when i went to PIP website it wasnt there. If it isnt then are there any replacemnts?
Thanks, nulladmin


RE: error trying to install sslstrip - buran - Mar-11-2021

it is part of sslstrip
https://github.com/graingert/sslstrip/blob/master/src/sslstrip/ClientRequest.py

now, why it does not see it is another question

and by the way sslstrip is also available on pypi and it's a python2 package