blob: 42a951e8573a8b47059aceb14372e8eb55506bc2 (
plain) (
blame)
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
|
"""
User Datagram Protocol (TCP/IP protocol stack)
"""
from construct import *
import six
from binascii import unhexlify
udp_header = Struct("udp_header",
Value("header_length", lambda ctx: 8),
UBInt16("source"),
UBInt16("destination"),
ExprAdapter(UBInt16("payload_length"),
encoder = lambda obj, ctx: obj + 8,
decoder = lambda obj, ctx: obj - 8,
),
UBInt16("checksum"),
)
if __name__ == "__main__":
cap = unhexlify(six.b("0bcc003500280689"))
obj = udp_header.parse(cap)
print (obj)
print (repr(udp_header.build(obj)))
|