I mean, I suppose PyShark continues listening. My code is (within a class):
def Capture(self, incoming):
capture = pyshark.LiveCapture()
capture.sniff(timeout=int(incoming))
print('TIMEOUT: ' + str(int(incoming)))
print(capture)
print("Len" + str(len(capture)))
pktList = []
count=0
for pkt in capture:
count=count+1
pktList.append([int(pkt.layers[1].version), pkt.layers[2].layer_name, pkt.length])
print(f"Saved packet #{count}")
print(pktList)
print("Job is done.")
Output shows that despite after the timeout of 2 seconds the capture consists of a single packet, the program somehow continues reading some data. Output:
TIMEOUT: 2
<LiveCapture (0 packets)>
Len 0
Saved packet #1
[[4, 'tcp', '108']]
Saved packet #2
[[4, 'tcp', '108'], [4, 'tcp', '112']]
Saved packet #3
[[4, 'tcp', '108'], [4, 'tcp', '112'], [4, 'tcp', '108']]
Saved packet #4
[[4, 'tcp', '108'], [4, 'tcp', '112'], [4, 'tcp', '108'], [4, 'tcp', '112']]
Saved packet #5
[[4, 'tcp', '108'], [4, 'tcp', '112'], [4, 'tcp', '108'], [4, 'tcp', '112'], [4, 'tcp', '54']]
...............
How can I fix it?
I tried to use your code, but I couldn't get it to work correctly.
I know that there are some known issues with the way that capture.sniff(timeout=x) works, so I put together some other code that is using apply_on_packets with a timeout.
I decided to rework your code. The code below works with capture.sniff(timeout=x).
I will answer any questions you have about the code examples above.