packet sniffer of specific process with wireshark!
- Install wireshark
- install Python dependencies
pip3 install -r requirements.txt
redirect stdout from Python into wireshark
from cmd
(only cmd
support pipe):
python sniff.py -p chrome.exe | "C:\Program Files\Wireshark\Wireshark.exe" -k -i -
It will open wireshark and display all the packets arrived in that process name (from chrome.exe).