-
Notifications
You must be signed in to change notification settings - Fork 1
/
wireshark.py
68 lines (56 loc) · 2.1 KB
/
wireshark.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
"""
========================================
Name:Paladin Author: Lalevin Martin
Mailbox: [email protected]
Github: http://github.com/nacglalevin
Written in 2022-10-17
==================NACG==================
"""
import socket
import os
import sys
from ctypes import *
import struct
class IP(Structure):
_fields_ = [("inl", c_ubyte, 4),("version", c_ubyte, 4),("tos", c_ubyte),("len", c_ushort),("id", c_ushort),("offset", c_ubyte),("protocol_num", c_ubyte),("sum", c_ushort),("src", c_ulong),("dst", c_ulong)]
def __new__(self, socket_buffer=None):
return self.from_buffer_copy(socket_buffer)
def __init__(self, socket_buffer=None):
self.protocol_map = {1:'ICMP', 6:'TCP', 17:'UDP'}
self.src_address = socket.inet_ntoa(struct.pack('<L', self.src))
self.dst_address = socket.inet_ntoa(struct.pack('<L', self.dst))
try:
self.protocol = self.protocol_map[self.protocol_num]
except:
self.protocol = str(self.protocol_num)
try:
host = sys.argv[1]
encodeIP = True
encodeIP = sys.argv[2]
except:
print "[!] Usage: [ip] [encode:True and False]"
try:
if os.name == "nt":
sock = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_IP)
else:
sock = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_ICMP)
sock.bind((host, 0))
sock.setsockopt(socket.IPPROTO_IP, socket.IP_HDRINCL, 1)
if os.name == "nt":
sock.ioctl(socket.SIO_RCVALL, socket.RCVALL_ON)
while True:
try:
if encodeIP == True:
sock_buffer = sock.recvfrom(65565)[0]
ip_header = IP(sock_buffer[0:20])
print "Protocol: %s:%s -> %s" % (ip_header.protocol, ip_header.src_address, ip_header.dst_address)
else:
print sock.recvfrom(65565)
except KeyboardInterrupt:
print "[*] KeyboardInterrupt Stop..."
sys.exit(0)
if os.name == "nt":
sock.ioctl(socket.SIO_RCVALL, socket.RCVALL_OFF)
except:
print "[*] Stop..."
sys.exit(0)