I want to know the logic behind such comparison. Same is being done by BtReannouncer.net

Do the torrents have similar hash or do they compare it by size and name?

Most torrents on piratebay do not have trackers other than piratebay, but torrentz.com provides a complete list of all the trackers that are tracking the same torrent.

link|improve this question

Could you clarify (by editing the question): are you asking how it is done (which would probably require inspection of their source code)? Or are you asking for hypotheses on how it could be done? – bignose Feb 20 '10 at 7:43
I only wanted to know the way it could be done. Xolrev & Martin have explained it. :) – Jagira Feb 20 '10 at 8:22
If you found our answers useful, please uprate and mark one as correct. :) – Xorlev Feb 21 '10 at 16:32
feedback

1 Answer

up vote 2 down vote accepted

Each torrent file contains a hash id which identifies it as unique. As this torrent is passed around to more trackers, the hash id stays. It's also frequently known as an info hash.

febd9a2cb755ec82e6e7a015a8dc497fde9dd507 would be an example hash id.

If you Google it you'll notice that it shows up at many different trackers. Spidering search results and checking in on the major torrent sites can let you index which sites host the torrents, then correlate the intersecting info hashes (Something like, SELECT trackers FROM torrents WHERE info_hash="xxx"). So you'll have torrents with the same info hashes from The Pirate Bay, Mininova, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.