I'm just trying to get a response from router.utorrent.com
to potentially make a DHT service down the track. For example, given a magnet link with:
xt=urn:btih:a78c852bcc0379e612e1bd794e1fd19061b84d11
the hash is:
a78c852bcc0379e612e1bd794e1fd19061b84d11
Then in the terminal I entered this:
nc -u router.utorrent.com 6881
d1:ad2:id20:a78c852bcc0379e612e1bd794e1fd19061b84d11e1:q4:ping1:t1:01:y1:qe
based on this documentation but i dont get any response. I even tried Wireshark to check if any packet at all was coming back and still nothing. Why doesn't μTorrent talk to me?
The hash should be in binary. In bencoding the number + colon is the length prefix for a string. A sha1 in hex is 40 bytes long, for it to be actually 20 bytes long it needs to be the raw output of the hash function.
You basically need to conver the hex string to binary (40 hex -> 20 binary) for it to work.