Jackett: elitetorrent-biz: download links are not working

Created on 17 Oct 2020  路  7Comments  路  Source: Jackett/Jackett

empty query

10-17 11:56:12 Error Error downloading. indexer: elitetorrent-biz path: https://www.elitetorrent.com/peliculas/ben-10-versus-el-universo/
System.Exception: Download selector a[href^="magnet:?"] didn't match
   at Jackett.Common.Indexers.CardigannIndexer.Download(Uri link) in /home/repositories/Jackett/src/Jackett.Common/Indexers/CardigannIndexer.cs:line 1817
   at Jackett.Server.Controllers.DownloadController.Download(String indexerID, String path, String jackett_apikey, String file) in /home/repositories/Jackett/src/Jackett.Server/Controllers/DownloadController.cs:line 56 
Confirmed

All 7 comments

the site no longer has a magnet href in the details page.
can you work out how the magnet is fetched?
https://www.elitetorrent.com/peliculas/la-caza-3/

Seems to be in a debugger VM script which also clears the console every 150ms:

setInterval(function(){console.clear();},150);if($("#elitetorrent_com_torrent").length){$("#elitetorrent_com_torrent").click(function(event){event.preventDefault();window.open('/wp-content/uploads/files/1602723150-tt2106476 720 es.torrent');});}if($("#elitetorrent_com_magnet").length){$("#elitetorrent_com_magnet").click(function(event){event.preventDefault();window.open('magnet:?xt=urn:btih:b03c36a35bb1be32719a8b7dc2527e2d32be2c5b&dn=tt2106476+720+es&xl=1749177940&tr=udp://tracker.openbittorrent.com:80/announce&tr=udp://tracker.opentrackr.org:1337/announce');})};if(document.location.host.replace('www.','')!==window.atob('ZWxpdGV0b3JyZW50LmNvbQ')){window.location.href='https://'+window.atob('ZWxpdGV0b3JyZW50LmNvbQ');}

Or unminified:

setInterval(function() {
    console.clear();
}, 150);
if ($("#elitetorrent_com_torrent").length) {
    $("#elitetorrent_com_torrent").click(function(event) {
        event.preventDefault();
        window.open('/wp-content/uploads/files/1602723150-tt2106476 720 es.torrent');
    });
}
if ($("#elitetorrent_com_magnet").length) {
    $("#elitetorrent_com_magnet").click(function(event) {
        event.preventDefault();
        window.open('magnet:?xt=urn:btih:b03c36a35bb1be32719a8b7dc2527e2d32be2c5b&dn=tt2106476+720+es&xl=1749177940&tr=udp://tracker.openbittorrent.com:80/announce&tr=udp://tracker.opentrackr.org:1337/announce');
    })
}
;if (document.location.host.replace('www.', '') !== window.atob('ZWxpdGV0b3JyZW50LmNvbQ')) {
    window.location.href = 'https://' + window.atob('ZWxpdGV0b3JyZW50LmNvbQ');
}

if the site now requires JS to be running to generate the .torrent or magnet then this indexer will need to be converted to C#

@ilike2burnthing we need to execute the JS code (eval) to get the real JS code. I think this requires a lot of effort in C#. If we can't find a better way I think we should remove this indexer.

Site is currently timing out with a 522 error. Who knows, maybe it will come back with their magnet links being usable again...

TL;DR - I thought I was onto something, but the more I looked, the more problems and exceptions I found. Unless someone else can get the link more easily, it doesn't look workable.


The only other way I can see is by using their format for naming their torrent files, but it's not completely consistent, and not all of the information if readily available.

e.g. - https://www.elitetorrent.com/wp-content/uploads/files/1602723150-tt2106476%20720%20es.torrent

https://www.elitetorrent.com/wp-content/uploads/files/ is always the same.

The random number at the start is nearly the same as for the image, but minus 1 or 2 - /wp-content/uploads/portadas/elitetorrent.com-la-caza-1602723152.jpg

Next we have a hyphen and the IMDB ID - tt2106476, but this isn't present in the HTML.

Then there is a space, followed by the quality 1080 720 hdrip dvdrip, then another space, and a 2 letter language code - es for Spanish, vo for original, la for Spanish Latino.


But of course to make things more interesting, their microHD releases throw that out the window and use a similar structure to the page URL (kinda...):
https://www.elitetorrent.com/peliculas/una-historia-de-venganza-microhd-2-bittorrent-hd-1/
https://www.elitetorrent.com/wp-content/uploads/files/una-historia-de-venganza-microhd-2.torrent

Titles which include accents get changed, e.g. savva. el coraz贸n del guerrero:
https://www.elitetorrent.com/peliculas/savva-el-corazon-del-guerrero-microhd-bittorrent-hd-1/
https://www.elitetorrent.com/wp-content/uploads/files/savva-el-coraza-sup3-n-del-guerrero-microhd.torrent

Or manual de un taca帽o:
https://www.elitetorrent.com/peliculas/manual-de-un-tacano-microhd/
https://www.elitetorrent.com/wp-content/uploads/files/manual-de-un-tacaa-plusmn-o-microhd.torrent

And single word titles differ too, just for fun, e.g. fences:
https://www.elitetorrent.com/peliculas/fences/
https://www.elitetorrent.com/wp-content/uploads/files/fences-P3j5f.torrent
P3j5f is found nowhere in the HTML.

They did a good job hiding the URLS. We should remove this tracker. There are better alternatives for Spanish speakers out there.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

silverbullettruck2001 picture silverbullettruck2001  路  4Comments

annomatik picture annomatik  路  3Comments

thexa4 picture thexa4  路  3Comments

ewtoombs picture ewtoombs  路  3Comments

ade05fr picture ade05fr  路  3Comments