我正在尝试使用pyshark从远程计算机上本地托管的网站(测试目的)获取数据包。
这是我的代码:
import pyshark
def print_live_dns():
capture = pyshark.LiveCapture("wlan0")
for packet in capture:
# print(packet)
with open('packets.txt', 'a') as f:
f.write(str(packet))
if "DNS" in packet and not packet.dns.flags_response.int_value:
print(packet.dns.qry_name)
if __name__ == "__main__":
print_live_dns()
使用此代码,我只能从互联网获取数据包。这不是我所需要的。
我该如何实现?使用pyshark, scapy, nmap
等