cyber-security-resources/programming_and_scripting_for_cybersecurity/exploitation/pyshark_example.py
2021-07-17 11:36:49 -04:00

16 lines
572 B
Python

#!/usr/bin/python
# Author: Omar Santos @santosomar
# version 1.0
# This is a quick demonstration on how to use the python pyshark library
# * Pre-requisite: pyshark python library.
# * Install it with pip install pyshark
# PyShark is a Python wrapper for tshark,
# allowing python packet parsing using wireshark dissectors.
#####################################################################
import pyshark
capture = pyshark.LiveCapture(interface='eth0')
for packet in capture.sniff_continuously(packet_count=5):
print ('You just captured a packet:', packet)