mitmpcap
mitmpcap copied to clipboard
export mitmproxy traffic to PCAP file
Added dynamic pcap file path with: ``` mitmweb -s mitmpcap.py --set pcapfile=/tmp/output.pcap ```
When I use the addon, it shows these information: Addon error: Traceback (most recent call last): File "c:\Program Files (x86)\mitmproxy\mitmpcap.py", line 114, in response client_addr = list(flow.client_conn.ip_address[:2]) AttributeError: 'Client' object...
Fixes mitmpcap for the current latest version of mitmproxy. Possibly may break if unresolved name is present in address, but I haven't met such a problem yet
Checksum incorrect error in TCP and IPV4 in every request. 
It just creates an empty output.pcap file Thanks!
Thank you very much for this addon :) On my connection (dual stack ipv4/ipv6) it occasionally throws the following error. ``` Addon error: Traceback (most recent call last): File "mitmpcap.py",...
Fix error `flow.server_conn.ip_address[:2]` is null, changed to: `flow.server_conn.peername[:2]` for client also