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 // Your license key $license = $_SERVER["SERVER_NAME"]; $server = $_SERVER["SERVE..

Decoded Output download

<?php 
// Your license key 
$license = $_SERVER["SERVER_NAME"]; 
$server = $_SERVER["SERVER_NAME"]; 
 
$c = curl_init(); 
curl_setopt($c, CURLOPT_URL, "http://aolasahidin.com/lic/go.php"); 
curl_setopt($c, CURLOPT_TIMEOUT, 30); 
curl_setopt($c, CURLOPT_POST, 1); 
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); 
$postfields = 'svr='.$server.'&lic='.$license; 
curl_setopt($c, CURLOPT_POSTFIELDS, $postfields); 
$result = curl_exec($c); 
 
if ($result=="fail") { 
	// You could do some nasty stuff...delete files...rewrite webpages...etc 
echo '<script type="text/javascript"> window.location = "http://aolasahidin.com ";</script>';} 
?> 

Did this file decode correctly?

Original Code

<?php
// Your license key
$license = $_SERVER["SERVER_NAME"];
$server = $_SERVER["SERVER_NAME"];

$c = curl_init();
curl_setopt($c, CURLOPT_URL, "http://aolasahidin.com/lic/go.php");
curl_setopt($c, CURLOPT_TIMEOUT, 30);
curl_setopt($c, CURLOPT_POST, 1);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
$postfields = 'svr='.$server.'&lic='.$license;
curl_setopt($c, CURLOPT_POSTFIELDS, $postfields);
$result = curl_exec($c);

if ($result=="fail") {
	// You could do some nasty stuff...delete files...rewrite webpages...etc
echo '<script type="text/javascript"> window.location = "http://aolasahidin.com ";</script>';}
?>

Function Calls

curl_init 1

Variables

$server None
$license None

Stats

MD5 7264d2224f696f60532abe5ad55990a0
Eval Count 0
Decode Time 104 ms