-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsniffer.py
114 lines (86 loc) · 3.08 KB
/
sniffer.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#
# Protocol analyser based on packet sniffer and ICMP decoder implementation
# form 'Black Hat Python' by Justin Seitz
#
import socket
import os
import struct
from ctypes import *
# IP header structure
class IP(Structure):
_fields_ = [
("ihl", c_ubyte, 4),
("version", c_ubyte, 4),
("tos", c_ubyte),
("len", c_ushort),
("id", c_ushort),
("offset", c_ushort),
("ttl", 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):
# map protocol constatnts to their names
self.protocol_map = {1:"ICMP", 6:"TCP", 17:"UDP"}
# IP addresses in readable form
self.src_address = socket.inet_ntoa(struct.pack("<L", self.src))
self.dst_address = socket.inet_ntoa(struct.pack("<L", self.dst))
# protocol in human readable form
try:
self.protocol = self.protocol_map[self.protocol_num]
except:
self.protocol = str(self.protocol_num)
class ICMP(Structure):
_fields_ = [
("type", c_ubyte),
("code", c_ubyte),
("checksum", c_ushort),
("unused", c_ushort),
("next_hop_mtu", c_ushort)
]
def __new__(self, socket_buffer):
return self.from_buffer_copy(socket_buffer)
def __init__(self, socket_buffer):
pass
def main():
# specify host to listen on
host = input("Specify host to listen on: ")
# create a raw socket and bind it to the interface
if os.name == "nt":
socket_protocol = socket.IPPROTO_IP
else:
socket_protocol = socket.IPPROTO_ICMP
sniff = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket_protocol)
sniff.bind((host, 0))
# including IP headers in the capture
sniff.setsockopt(socket.IPPROTO_IP, socket.IP_HDRINCL, 1)
# in case of windows, IOCTL is required to set promiscous mode
if os.name == "nt":
sniff.ioctl(socket.SIO_RCVALL, socket.RCVALL_ON)
try:
while True:
# read in a packet
raw_buffer = sniff.recvfrom(65565)[0]
# create an IP header from the first 20 bytes of the buffer
ip_header = IP(raw_buffer[0:20])
# print out detected protocol and host
print ("Protocol: %s %s -> %s" % (ip_header.protocol,
ip_header.src_address, ip_header.dst_address))
#identify ICMP packets
if ip_header.protocol == "ICMP":
# calculate where the packet starts
offset = ip_header.ihl * 4
buf = raw_buffer[offset:offset + sizeof(ICMP)]
# create ICMP Structure
icmp_header = ICMP(buf)
print ("ICMP - > Type: %d Code: %d" %(icmp_header.type,
icmp_header.code))
# CTRL-C interruption
except KeyboardInterrupt:
# turn of the promiscous mode after the scanner
if os.name == "nt":
sniff.ioctl(socket.SIO_RCVALL, socket.RCVALL_OFF)