pyshark を使用してパケットをキャプチャしたい。しかし、Windows 7 ではパケットをキャプチャできませんでした。
これは私のpythonコードです
import pyshark
def NetCap():
print 'capturing...'
livecapture = pyshark.LiveCapture(interface="eth0", output_file='./test.pcapng')
livecapture.sniff(packet_count=10)
print 'end of capture.'
print livecapture
if __name__ == "__main__":
NetCap()
これが結果です
capturing...
end of capture.
<LiveCapture (0 packets)>
Livecapture は 0 パケットです。何が問題なのかわからない。私を助けてください。