Packing
p64(addr)
p64(0x04030201) == b'\x01\x02\x03\x04'
context.endian = 'big'
p64(0x04030201) == b'\x04\x03\x02\x01'u64(data)
flat(*args)
payload = flat(
0x01020304,
0x59549342,
0x12186354
)Last updated
Was this helpful?