PDA

View Full Version : I can't use sslstrip in kali linux 2020.



beepbeep
2020-03-19, 09:48
I cant find sslstrip in my os( kali linux). I tried installing it with 'apt-get install sslstrip', but it says 'couldn't find package'.
Also I found that I have sslsplit instead of sslstrip, so is there any difference between the two? Can I use it instead of sslstrip?

Hypercore
2020-04-19, 00:21
Heya,

I was also looking for the same help, but I have found that SSLSTRIP was removed from the distro as per this link: https://pkg.kali.org/pkg/sslstrip

Further to that, I also went down the rabbit hole on getting it to work, trying find python-twisted-web, or install twisted via pip, which also needs to be installed etc etc. Basically after a day of effort I still hadn?t been able to get SSLSTRIP to work, I haven?t been able to get all the dependencies etc.

I?m interested in a fix so I can complete a part of my online course.
Ive also seem that SSLSTRIP is a dependency for a couple of other tools too, so if there is a fix to get this running then I?d be interested for sure.

But anyhow, this is the conclusion I came to: SSLSTRIP might not be relevant anymore, it is an old tool and there are other options now I believe, I think I also read somewhere that this vulnerability has been patched on practically all websites now.

Sorry I haven?t got a great solution ahha but hopefully you can get something from my experience of trying to make it work.

Here?s what I?ve learnt doesn?t work/tried:

Need to install PIP, but I could only get PIP3, I found a get-pip script that also installed SETUPTOOLS which was required for pip.
Use PIP3 to install Twisted (twisted python)
Use GIT to CLONE and install SSLSTRIP
Find that there was an error when starting SSLSTRIP, it can?t find the openSSL module.
Threw in the hat haha.

I guess there is a reason the Kali gods took it out, or maybe I?m just stupid haha.
Either way, I think it might be a lost cause.

I?m going to look into bettercap and mitmf and see if they are similar.

Dennis Dunbar
2020-05-11, 22:16
I am trying to build a complete airgeddon under Kali Linux on a Raspberry Pi 4.
I got all the dependencies OK except sslstrip.
I found sslstrip and downloaded to my desktop but where do I put the various files?
I cannot find anything to tell me where to put them or how to make a proper installation. Help!

Triple_Octopus
2020-06-12, 08:56
If you're trying to get sslstrip for airgeddon , then it's not that hard actually, first of all i went onto GitHub and got the sslstrip package (https://github.com/moxie0/sslstrip/releases/tag/v0.9) i installed it using pip but it needed some packages and python modules like python-setuptools and pyopenssl and others and then i installed sslstrip and it works,just remember to use python 2.7 here because the package is really old,hope i helped

Triple_Octopus
2020-06-12, 09:39
Heya,

I was also looking for the same help, but I have found that SSLSTRIP was removed from the distro as per this link: https://pkg.kali.org/pkg/sslstrip

Further to that, I also went down the rabbit hole on getting it to work, trying find python-twisted-web, or install twisted via pip, which also needs to be installed etc etc. Basically after a day of effort I still hadn?t been able to get SSLSTRIP to work, I haven?t been able to get all the dependencies etc.

I?m interested in a fix so I can complete a part of my online course.
Ive also seem that SSLSTRIP is a dependency for a couple of other tools too, so if there is a fix to get this running then I?d be interested for sure.

But anyhow, this is the conclusion I came to: SSLSTRIP might not be relevant anymore, it is an old tool and there are other options now I believe, I think I also read somewhere that this vulnerability has been patched on practically all websites now.

Sorry I haven?t got a great solution ahha but hopefully you can get something from my experience of trying to make it work.

Here?s what I?ve learnt doesn?t work/tried:

Need to install PIP, but I could only get PIP3, I found a get-pip script that also installed SETUPTOOLS which was required for pip.
Use PIP3 to install Twisted (twisted python)
Use GIT to CLONE and install SSLSTRIP
Find that there was an error when starting SSLSTRIP, it can?t find the openSSL module.
Threw in the hat haha.

I guess there is a reason the Kali gods took it out, or maybe I?m just stupid haha.
Either way, I think it might be a lost cause.

I?m going to look into bettercap and mitmf and see if they are similar.

the module that you're missing is pyOpenSSL so that's how you should install it

Abhishek Karna
2020-07-03, 15:03
I hade also faced same problem. As the main setup link of sslstrip was missing. pip and apt-get were also not working. But after installing airgeddon, there came an option to install missing necessary files. From there sslstrip easily got installed. Have a try. To install airgeddon:


git clone https://github.com/v1s1t0r1sh3r3/airgeddon.git
cd airgeddon
bash airgeddon.sh

Then follow the instructions

Dennis Dunbar
2020-07-09, 18:39
I hade also faced same problem. As the main setup link of sslstrip was missing. pip and apt-get were also not working. But after installing airgeddon, there came an option to install missing necessary files. From there sslstrip easily got installed. Have a try. To install airgeddon:


git clone https://github.com/v1s1t0r1sh3r3/airgeddon.git
cd airgeddon
bash airgeddon.sh

Then follow the instructions

I still get:
Optional tools: checking...
sslstrip .... Error (Possible package name : sslstrip)

!xunil_stI
2020-10-15, 15:03
You can install sslstrip the official way by adding these two repos to your sources.list:-

deb http://old.kali.org/kali/ sana main non-free contrib
deb http://old.kali.org/kali/ moto main non-free contrib

After adding these two, I think you'll most probably be able to do a successful apt-get install sslstrip.



P.S:-For any further help, reply to this thread.

saltedegg
2020-10-27, 22:43
is it ok with the warning? can i just ignore it? 2020.3 btw
4337

juanelas
2020-11-03, 18:57
I have slightly patched sslstrip to make it work with Kali 2020 (and any other linux using python 2.7). In the repository you can also find installation instructions that do work with Kali 2020.

https://github.com/juanelas

DemiScuzz
2021-04-08, 06:46
I was having some difficulty installing sslstrip too. tried all of the above to no avail. This is what worked for me.

I started with a fresh copy of kali then ran pimpmykali from "https://github.com/Dewalt-arch/pimpmykali"

After this a couple of python modules where next on the list.

twisted and service_identity.
'pip install twisted'
With service_identity I first downloaded the '.whl' from https://pypi.org/project/service_identity/#files
'pip install service_identity-18.1.0-py2.py3-none-any.whl '


After that 'python sslstrip' works like a charm.