From e05c3fba993951b6929000e24785f6ddca108871 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Mon, 28 Apr 2025 13:53:25 -0500 Subject: [PATCH] Fix pyshark FileCapture parameters in analyze_pcap function --- enrich.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/enrich.py b/enrich.py index 3413b96..d0a2e4d 100755 --- a/enrich.py +++ b/enrich.py @@ -32,7 +32,8 @@ def analyze_pcap(pcapng_path, start_ts, end_ts, ap_bssid, ap_channel): cap = pyshark.FileCapture( pcapng_path, use_json=True, - include_raw=False + include_raw=False, + keep_packets=False ) ap_channel = int(ap_channel)