Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
545 views

Problem creating info hash of torrent file

I'm creating a BitTorrent site. If a user uploads a .torrent file I need to get the info hash to get more info from the tracker. However I cannot seem to get the correct info hash from the file. ...
3
votes
2answers
740 views

Parsing a torrent file - hash info. (Erlang)

I'm trying to come up with the correct url-encoded info hash to send to the tracker in order to get the peers list. For testing, I tried parsing the torrent in the following url: ...
1
vote
1answer
135 views

MonoTorrent and metadata mode

MonoTorrent client doesn't download file from another peer using matadata mode: var torrentDefaults = new TorrentSettings { UseDht = true, EnablePeerExchange = true }; var engine = new ...
1
vote
1answer
534 views

How do I convert a Bit Torrent info_hash (obtained from Wireshark) to a SHA1 hash

I'm running Snort which detects some P2P activity, specifically the BitTorrent announce request. I see the HTTP GET /announce.php?info_hash=XXX... request and I'm trying to convert this XXX into a ...
1
vote
2answers
818 views

Calculating bittorent info_hash with java

I am trying to calculate the info_hash value for a torrent. I read the whole torrent into StringBuffer, then cut it like the following: d8:announce...info[d6:length...e]e I can't seem to get the ...
0
votes
1answer
201 views

Magnet links library for PHP

Does anyone here know of a magnet-URI-parser for PHP? To validate it, or maybe to extract some information from it?
0
votes
3answers
130 views

Getting a torrent title from metadata or torrent file

Is it possible to extract the torrent title from the meta data loaded from DHT or the file downloaded from some server like TPB? any api,lib any language would do
0
votes
1answer
82 views

How to generate all possible Torrent info hashes?

How do I generate all possible torrent info hashes? I am looking for an elegant way to do so. python code would be immensely appreciated, any other langues are cool too.
0
votes
2answers
412 views

Calculating info_hash from UrlEncoded query string

Basically, I'm building a small tracker for experimental purposes. I've gotten quite far, and am now working on the announce part. What I really can't figure out is how I should decode the info_hash ...