LibreY/engines/bittorrent/get_magnet_1337x.php
2025-02-21 21:50:36 +05:30

15 lines
474 B
PHP

<?php
require_once "../../misc/tools.php";
$config = require_once "../../config.php";
$url = $_REQUEST["url"];
$response = request($url, $config->curl_settings);
$xpath = get_xpath($response);
$magnet = $xpath->query("//main/div/div/div/div/div/ul/li/a/@href")[0]->textContent;
$magnet_without_tracker = explode("&tr=", $magnet)[0];
$magnet = $magnet_without_tracker . $config->bittorrent_trackers;
header("Location: $magnet")
?>