forked from hipstercat/giantsd
10 lines
304 B
Python
10 lines
304 B
Python
|
from dpnet.EnumQuery import EnumQuery
|
||
|
from dpnet.netclient import Netclient
|
||
|
|
||
|
client = Netclient("163.158.182.243", 19711)
|
||
|
eq = EnumQuery()
|
||
|
eq.ApplicationGUID = b"\x10\x5e\x62\xa7\x96\x1a\xd2\x11\x9a\xfc\x00\x60\x08\x45\xe5\x71"
|
||
|
client.send(eq.to_packet())
|
||
|
data = client.receive()
|
||
|
print("<R", data.hex())
|