mitmpcap icon indicating copy to clipboard operation
mitmpcap copied to clipboard

export mitmproxy traffic to PCAP file

Results 7 mitmpcap issues
Sort by recently updated
recently updated
newest added

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. ![Screenshot from 2022-05-13 11-54-11](https://user-images.githubusercontent.com/105490500/168414404-879d03a2-33db-412d-a84d-b1629d1df406.png)

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