forked from spyr0-sec/helper-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyshark.py
30 lines (22 loc) · 1011 Bytes
/
pyshark.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python3
import socket, struct, time, argparse, os
# Argparser to handle the usage / argument handling
parser = argparse.ArgumentParser(description="Raw packet capturer for offline analysis")
parser.add_argument('--out', '-o', default='capture.pcap', help='Name of capture file. (Accepts absolute paths)')
args = parser.parse_args()
if not '.pcap' in args.out:
args.out = args.out + '.pcap'
# If a path is provided then save where requested, else save in working directory
if '/' in args.out:
capture_file = args.out
else:
capture_file = os.getcwd() + os.sep + args.out
# Write data to capture file
with open(capture_file,"wb") as file_writer:
file_writer.write(struct.pack('!IHHIIII',0xa1b2c3d4,2,4,0,0,65535,1))
s=socket.socket(socket.PF_PACKET, socket.SOCK_RAW, socket.htons(0x3))
while True:
t,p=time.time(),s.recvfrom(65535)
ts=int(t)
tu=int((t-ts)*1000000)
file_writer.write(struct.pack('!IIII',ts,tu,len(p[0]),len(p[0]))+p[0])