User Profile

Daedro

(no biography information)

Id 115
Member for15 years, 7 months, 6 days
Comments made1
Documents authored0
News posted0
Packets authored0
Servers owned0

Comments

Daedro
🔎

How to get the port # from DWORD with Python:
socket.ntohs(struct.unpack("< i", "\x17\xe0\x00\x00")[0])

How to convert port to DWORD with Python:
struct.pack("< i", socket.htons(6112))

Remove the space between < and i, these docs dont parse code comments well.

How to get the IP from DWORD with Python:
socket.inet_ntoa("\x3f\xf1\x53\x12")

How to convert IP to DWORD with Python:
socket.inet_aton("63.241.83.18")

Remove the extra quotation marks, these docs dont parse code comments well.