Python / Scapy - Timing KeyboardInterrupts

时间:2013-11-12 16:24:34

标签: python scapy sniffing

我不确定这是否可能,但我正在编写一个双面程序,Scapy的sniff()函数会嗅探一段时间,然后分析它的发送方式输入Control-C键盘中断后的另一台主机。然后它会嗅到更多,直到我控制-C等等。有什么方法可以做:

sniff(icmpv6)
time.sleep(5)
python.KeyboardInterrupt()
analyze packets
...
...
sniff(icmpv6)
time.sleep(5)
python.KayboardInterrupt()
analyze more packets
...
...
The End

我还没有能找到任何能做这种事情的事情。有谁知道一种方式?

0 个答案:

没有答案