forked from cloudflare/bpftools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parsedns
executable file
·184 lines (151 loc) · 5.8 KB
/
parsedns
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#!/usr/bin/env python
import socket
import struct
import sys
import bpftools.utils
def usage():
print """
parsedns.py [ hex string... ]
Read the hex string as a network packet and parse it as it were a DNS
request. Decode it and pretty print it.
""".lstrip()
sys.exit(2)
def unpack_domain(off, l5, rr=False):
off1 = None
while True:
c, = struct.unpack_from('!B', l5, off)
if c == 0x00:
print '.'
off += 1
break
elif (c & 0xC0):
c, = struct.unpack_from('!H', l5, off)
ptr = c ^ 0xc000
off += 2
print 'ptr->#%i' % (ptr,),
if off1 == None:
off1 = off
off = ptr
else:
print '%r' % (l5[off+1:off+1+c],),
off += c + 1
if off1:
off = off1
qtype, qclass = struct.unpack_from('!HH', l5, off)
off += 4
print ' type=0x%04x class=0x%04x' % (qtype, qclass)
if not rr:
return off
ttl, rlength = struct.unpack_from('!IH', l5, off)
off += 6
xxx = l5[off:off+rlength]
print ' ttl=%i rrlen=%i: %s' % (ttl, rlength, xxx.encode('hex'))
if qtype == 0x0029:
print " "*23, "bufsize=%i" % (qclass)
if ttl & (1<<15):
print " "*23, "dnssec_ok_flag"
edns_ver = (ttl >> 16) & 0xFF
if edns_ver:
print " "*23, "ends_version=%i (INVALID!)" % edns_ver
if ttl & (0xFF007FFF):
print " "*23, "extra edns flags %08x" % ttl
while xxx:
code, optlen = struct.unpack_from('!HH', xxx)
xxy, xxx = xxx[4:4+optlen], xxx[4+optlen:]
if code == 0x50fa:
family, mask, scope = struct.unpack_from('!HBB', xxy)
if family == 1:
ip = socket.inet_ntoa(xxy[4:])
else:
ip = xxy[4:].encode('hex')
print " "*23, "family=%i mask=%i scope=%i %s" % (family, mask, scope, ip)
elif code == 3 and len(xxy) == 0:
print " "*23, "nsid request"
else:
print " "*23, "code=%04x data=%s" % (code, xxy.encode('hex'))
off += rlength
return off
def parsedns(raw):
l2len = bpftools.utils.find_ip_offset(raw)
assert l2len is not None
l2, l3 = raw[:l2len], raw[l2len:]
print '[.] l2: %s' % l2.encode('hex')
v_len, = struct.unpack_from('!B', l3)
if v_len & 0xf0 == 0x40:
l3len = (v_len & 0x0F) * 4
l3, l4 = l3[:l3len], l3[l3len:]
print '[.] l3: %s' % l3.encode('hex')
v_len, dscp_ecn, total_length, ip_id, fragment, ttl, protocol, _checksum, sip, dip = struct.unpack_from('!BBHHHBBHII', l3)
ip_extra = l3[20:]
print ' ver: 0x%02x' % ((v_len & 0xf0) >> 4,)
print ' hdl: 0x%02x' % ((v_len & 0x0f),)
print ' ip_id: 0x%04x' % (ip_id,)
print ' fragment: 0x%04x' % (fragment,)
print ' ttl: 0x%02x (%d)' % (ttl, ttl)
print ' protocol: 0x%02x' % (protocol,)
print ' source: 0x%s %s' % (l3[12:16].encode('hex'), socket.inet_ntoa(l3[12:16]))
print ' destination: 0x%s %s' % (l3[16:20].encode('hex'), socket.inet_ntoa(l3[16:20]))
if ip_extra:
print ' ip_extra: %s' % (ip_extra.encode('hex'),)
elif v_len & 0xf0 == 0x60:
l3len = 40
l3, l4 = l3[:l3len], l3[l3len:]
print '[.] l3: %s' % l3.encode('hex')
v_ttl, _class, _flow, payload_length, next_header, ttl = struct.unpack_from('!BBHHBB', l3)
print ' ver: 0x%02x' % ((v_len & 0xf0) >> 4,)
print ' payload_length: 0x%04x' % (payload_length,)
print ' next_header: 0x%02x' % (next_header,)
print ' ttl: 0x%02x' % (ttl,)
print ' source: %s' % (l3[8:24].encode('hex'),)
print ' destination: %s' % (l3[24:40].encode('hex'),)
else:
assert False
l4, l5 = l4[:8], l4[8:]
print '[.] l4: %s' % l4.encode('hex')
spt, dpt, l4len, _checksum = struct.unpack_from('!HHHH', l4)
print ' source port: 0x%04x (%s)' % (spt, spt)
print ' destination port: %s' % (dpt,)
print ' length: %s' % (l4len,)
print '[.] l5: %s' % l5.encode('hex')
dns_id, flags, qdcnt, anscnt, authcnt, extracnt = struct.unpack_from('!HHHHHH', l5)
print ' id: 0x%04x' % (dns_id,)
print ' flags: 0x%04x' % (flags,),
f = []
f.append('response' if flags & (1<<15) else 'query')
if flags & (1<<10):
f.append('authoritative')
if flags & (1<<9):
f.append('truncated')
if flags & (1<<8):
f.append('recursion_desired')
if flags & (1<<7):
f.append('recursion_available')
if flags & (1<<6):
f.append('z')
if flags & (1<<5):
f.append('authenticated_data')
if flags & (1<<4):
f.append('checking_disabled')
f.append( 'op=%x' % ((flags>>11) & 0xF))
f.append( 'rcode=%x' % ((flags) & 0xF))
print ' '.join(f)
print ' questions: %s' % (qdcnt,)
print ' answers: %s' % (anscnt,)
print ' auth: %s' % (authcnt,)
print ' extra: %s' % (extracnt,)
off = 12
for i in xrange(qdcnt):
print '#%3i q[%i]:' % (off-len(l5), i,),
off = unpack_domain(off, l5)
for cnt, n in (anscnt, 'answer'), (authcnt, 'auth'), (extracnt, 'extra'):
for i in xrange(cnt):
print '%14s[%i]:' % (n, i, ),
off = unpack_domain(off, l5, rr=True)
if len(l5) > off:
print ' trailing: %s' % (l5[off:].encode('hex'),)
if __name__ == "__main__":
if not sys.argv[1:]:
usage()
for hexstr in sys.argv[1:]:
parsedns(hexstr.decode('hex'))
print