似乎filter
sniff
函数无效。
我用以下过滤器执行嗅探
a=sniff(count=1,filter="tcp and host 192.168.10.55 and port 14010")
但有时sniff
抓住UDP
这样的数据包:
>>> a=sniff(count=1,filter="tcp and host 192.168.10.55 and port 14010")
>>> a
<Sniffed: TCP:0 UDP:1 ICMP:0 Other:0>
有些时候sniff
捕获带有错误端口的TCP数据包:
>>> a=sniff(count=1,filter="tcp and host 192.168.10.55 and port 14010")
>>> a
<Sniffed: TCP:1 UDP:0 ICMP:0 Other:0>
>>> a[0]
<Ether dst=00:26:55:cb:3b:10 src=00:22:64:55:c8:89 type=0x800 |<IP version=4L ihl=5L tos=0x10 len=92 id=8683 flags=DF frag=0L ttl=64 proto=tcp chksum=0x9484 src=192.168.1.71 dst=192.168.1.133 options=[] |<TCP sport=ssh dport=1874 seq=350107599 ack=2484345720 dataofs=5L reserved=0L flags=PA window=254 chksum=0x846b urgptr=0 options=[] |<Raw load="yn\x01\x9d\xfca\xc9V-8\x18|\xc4\t\xf1\xc4\xd8\xd3\xc6\x95E\x19'h\xc0\x89\xf1\x08g\xa3\x9a\xa9\xf51RF\xc2\x1f\xe5a\xac\x83M\xc9\x0b\x80\x85\x1b\xcf\xb6f\xcc" |>>>>
有时候sniff
抓住ARP
这样的数据包:
>>> a=sniff(count=1,filter="tcp and host 192.168.10.55 and port 14010")
>>> a
<Sniffed: TCP:0 UDP:0 ICMP:0 Other:1>
>>> a[0]
<Ether dst=ff:ff:ff:ff:ff:ff src=00:22:07:2c:53:97 type=0x806 |<ARP hwtype=0x1 ptype=0x800 hwlen=6 plen=4 op=who-has hwsrc=00:22:07:2c:53:97 psrc=192.168.1.178 hwdst=ff:ff:ff:ff:ff:ff pdst=192.168.1.179 |<Padding load='\x00\x07\x00\x00\x00\x00\x00\x00p\x00\x00\x00\x00\x00\x01\x14\x00\x00' |>>>
我在过滤器中遗漏了什么?我怎么能避免这个问题?
答案 0 :(得分:1)
我遇到了相同或类似的问题 - 嗅滤器无效。
安装tcpdump解决了我的问题。
答案 1 :(得分:1)
您可以在以下网站中查看过滤器的语法 http://biot.com/capstats/bpf.html。我遇到了类似的问题,它对我有用。
您可能想参考这个问题:https://stackoverflow.com/questions/37453283/filter-options-for-sniff-function-in-scapy#=
您还可以在运行代码之前打开所需的端口来尝试测试程序。
答案 2 :(得分:0)
我在VM上的Centos遇到了同样的问题。我用ip host代替主机而不是主机。这似乎解决了我的问题。
错误的过滤器#
>>> packets = sniff (filter = "host 176.96.135.80", count =2, iface = "eth0", timeout =10)
>>> packets.summary()
Ether / IP / UDP 172.7.198.136:netbios_ns > 172.7.199.255:netbios_ns / NBNSQueryRequest
Ether / IP / TCP 176.96.135.80:53527 > 172.7.19.58:ssh A / Padding
修正#
>>> packets = sniff (filter = "ip host 176.96.135.80", count =2, iface = "eth0", timeout =10)
此后没有任何问题。
答案 3 :(得分:0)
sniff函数需要tcpdump才能应用“过滤器”。如果没有tcpdump,scapy将报告警告,但不会抛出警告。您可以启用日志记录进行检查。
import logging
import sys
logging.getLogger("scapy").setLevel(1)
logging.basicConfig(stream=sys.stdout, level=logging.INFO)
from scapy.all import *
答案 4 :(得分:0)
过滤器功能存在一些已知的错误(尤其是在使用本地环回网络时!)。建议使用lfilter(并且根据您的需要也使用stop_filter):
用法示例:
lfilter=lambda p: any(proto in [14010]) for proto in [TCP]),
stop_filter =lambda x: x.haslayer(TCP)
有关lfilter的更多详细信息,请参见:https://home.regit.org/2012/06/using-scapy-lfilter/