All Projects → muzuiget → mitmpcap

muzuiget / mitmpcap

Licence: other
export mitmproxy traffic to PCAP file

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to mitmpcap

capture-dns
A simple program to capture and show DNS queries
Stars: ✭ 33 (-21.43%)
Mutual labels:  pcap
Werk
High-throughput / low-latency C++ application framework
Stars: ✭ 30 (-28.57%)
Mutual labels:  pcap
flow-indexer
Flow-Indexer indexes flows found in chunked log files from bro,nfdump,syslog, or pcap files
Stars: ✭ 43 (+2.38%)
Mutual labels:  pcap
Red-Rabbit-V4
The Red Rabbit project is just what a hacker needs for everyday automation. Red Rabbit unlike most frameworks out there does not automate other peoples tools like the aircrack suite or the wifite framework, it rather has its own code and is raw source with over 270+ options. This framework might just be your everyday key to your workflow
Stars: ✭ 123 (+192.86%)
Mutual labels:  pcap
PassivesScan
《被动扫描资源汇总》
Stars: ✭ 27 (-35.71%)
Mutual labels:  mitmproxy
jmitm
Java版本的mitmproxy,对本地浏览器所有的Http(s)请求和响应进行拦截并「重制」;也可充当轻量级B/S版抓包软件;
Stars: ✭ 19 (-54.76%)
Mutual labels:  mitmproxy
appdata-environment-desktop
A selection of script and the manual for Privacy International's data interception environment
Stars: ✭ 70 (+66.67%)
Mutual labels:  mitmproxy
mps
MPS is a high-performance HTTP(S) proxy library that supports forward proxies, reverse proxies, man-in-the-middle proxies, tunnel proxies, Websocket proxies. MPS 是一个高性能HTTP(s)中间代理库,它支持正向代理、反向代理、中间人代理、隧道代理、Websocket代理
Stars: ✭ 64 (+52.38%)
Mutual labels:  mitmproxy
network-tools
Network Tools
Stars: ✭ 27 (-35.71%)
Mutual labels:  pcap
PassiveScanner
a passive scanner based on Mitmproxy and Arachni
Stars: ✭ 108 (+157.14%)
Mutual labels:  mitmproxy
hbase-packet-inspector
Analyzes network traffic of HBase RegionServers
Stars: ✭ 35 (-16.67%)
Mutual labels:  pcap
pcap-file
Crate to read and write pcap and pcapng files in RUST.
Stars: ✭ 25 (-40.48%)
Mutual labels:  pcap
gomitmproxy
Simple golang mitm proxy implementation
Stars: ✭ 70 (+66.67%)
Mutual labels:  mitmproxy
wiresham
Simple TCP service mocking tool for replaying https://www.wireshark.org and http://www.tcpdump.org captured service traffic
Stars: ✭ 44 (+4.76%)
Mutual labels:  pcap
sip3-captain-ce
SIP3 Captain (Community Edition)
Stars: ✭ 73 (+73.81%)
Mutual labels:  pcap
youtube-or-pornhub
Service identification on ciphered traffic.
Stars: ✭ 26 (-38.1%)
Mutual labels:  pcap
packet cafe
A platform built for easy-to-use automated network traffic analysis
Stars: ✭ 40 (-4.76%)
Mutual labels:  pcap
Z-Spider
一些爬虫开发的技巧和案例
Stars: ✭ 33 (-21.43%)
Mutual labels:  mitmproxy
packiffer
lightweight cross-platform networking toolkit
Stars: ✭ 52 (+23.81%)
Mutual labels:  pcap
RaspberryPi-Packet-Sniffer
An HTTP and HTTPS sniffing tool created using a Raspberry Pi
Stars: ✭ 79 (+88.1%)
Mutual labels:  mitmproxy

mitmpcap

This is a mitmproxy addon script, it exports traffic to PCAP file, so you can view the decoded HTTPS or HTTP/2 traffic in other programs.

Usage

Use as addon for mitmproxy/mitmweb/mitmdump command:

mitmweb -s mitmpcap.py

By default, it exports to filename output.pcap.

Setting

Edit the mitmpcap.py file, change the File class argument at the end of file:

addons = [Addon(lambda: File('output.pcap'))]

You also can pipe the PCAP data to other program, use the Pipe class:

addons = [Addon(lambda: Pipe('weer -'))]

This will start Weer as child process to receive the PCAP data.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].