-
Cheating on HQMusic
I tried to cheat with mratio and using also mratio fixer, i follow every step on mratio fixer, here what i got.
Code:
[9/18/2020 5:13:02 PM] Torrent data and settings loaded.
[9/18/2020 5:13:02 PM] Torrent settings saved.
[9/18/2020 5:13:07 PM] [Waffles Method] Starting by user request.
[9/18/2020 5:13:07 PM] Creating START announce ...
[9/18/2020 5:13:07 PM] Establishing a connection ... hqmusic.info
[9/18/2020 5:13:07 PM] Sending data ... GET /asdasd/announce?info_hash=%e3T%9e%1c%7c%90%fb%7c%cb%fd%16%ea7r%a8-Y%cf_%d3&peer_id=-TR3000-asdasd&port=25521&uploaded=0&downloaded=0&left=0&numwant=80&key=66ae7ced&compact=1&supportcrypto=1&event=started HTTP/1.1
Host: hqmusic.info:34000
User-Agent: Transmission/3.00
Accept: */*
Accept-Encoding: deflate, gzip
[9/18/2020 5:13:07 PM] Receiving data ...
[9/18/2020 5:13:09 PM] Input string was not in a correct format.
[9/18/2020 5:13:09 PM] Now seeding ...
[9/18/2020 5:13:09 PM] Torrent settings saved.
[9/18/2020 5:13:18 PM] The torrent is stopping ...
[9/18/2020 5:13:18 PM] Creating STOP announce ...
[9/18/2020 5:13:18 PM] Establishing a connection ... hqmusic.info
[9/18/2020 5:13:18 PM] Sending data ... GET /asdasd/announce?info_hash=%e3T%9e%1c%7c%90%fb%7c%cb%fd%16%ea7r%a8-Y%cf_%d3&peer_id=-TR3000-asdsd&port=25521&uploaded=4778029676&downloaded=0&left=0&numwant=0&key=66ae7ced&compact=1&supportcrypto=1&event=stopped HTTP/1.1
Host: hqmusic.info:34000
User-Agent: Transmission/3.00
Accept: */*
Accept-Encoding: deflate, gzip
[9/18/2020 5:13:18 PM] Receiving data ...
[9/18/2020 5:13:20 PM] Input string was not in a correct format.
[9/18/2020 5:13:20 PM] Torrent is now stopped.
[9/18/2020 5:13:20 PM] Torrent settings saved.
Any Solutions ?
-
Quote:
Host: hqmusic.info:34000
The non-standard port means mRatio Fixer must be specifically scripted to handle this particular tracker. Please upload the .torrent file to https://tmp.ninja/ or https://www.file.io/ and send me the link, so that I can have a closer look and get back to you with an updated redirect.py file.
-
-
Okay, replace the contents of redirect.py with this and hqmusic.info should work. You don't need to close Fixer before editing, it will reload the file automatically.
Code:
def request(flow):
if flow.request.scheme == "https":
flow.request.port = 443
if flow.request.scheme == "http":
flow.request.port = 80
if flow.request.pretty_host == "tracker.anthelion.me":
flow.request.port = 34001
flow.request.scheme = 'https'
if flow.request.pretty_host == "tracker.pussytorrents.org":
flow.request.port = 3000
flow.request.scheme = 'http'
if flow.request.pretty_host == "hqmusic.info":
flow.request.port = 34000
flow.request.scheme = 'http'
def response(flow):
if "Content-Encoding" in flow.response.headers:
if flow.response.headers["Content-Encoding"] == "gzip":
flow.response.raw_content = flow.response.content
flow.response.headers["Content-Encoding"] = "identity"
flow.response.headers["Content-Length"] = str(len(flow.response.content))
-
thank you so muchhhhh, i will try and give feedback to you