Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
//Your users unique license key define( "LICENSE_KEY", "Tab3na-News-elasemaalaan-01019021..
Decoded Output download
<? //Your users unique license key
define( "LICENSE_KEY", "Tab3na-News-elasemaalaan-01019021071" );
//Checks license server to see if the license key is valid for this script.
if( !( ini_get(allow_url_fopen) ) ) exit('Configuration Error: allow_url_fopen must be enabled on your server for this script to work');
define( "LICENSE_SERV", "https://lic.tab3na.com/check.php?key=" );
$LICENSE_SERV=LICENSE_SERV;
$LICENSE_KEY=LICENSE_KEY;
$licserv = "$LICENSE_SERV$LICENSE_KEY";
$lines = @file($licserv);
foreach ($lines as $line_num => $line) {
$license = htmlspecialchars($line);
if ($license == "INVALID") {
exit("<font color=black><b>Invalid License Key</b></font>");
}
} ?>
Did this file decode correctly?
Original Code
//Your users unique license key
define( "LICENSE_KEY", "Tab3na-News-elasemaalaan-01019021071" );
//Checks license server to see if the license key is valid for this script.
if( !( ini_get(allow_url_fopen) ) ) exit('Configuration Error: allow_url_fopen must be enabled on your server for this script to work');
define( "LICENSE_SERV", "https://lic.tab3na.com/check.php?key=" );
$LICENSE_SERV=LICENSE_SERV;
$LICENSE_KEY=LICENSE_KEY;
$licserv = "$LICENSE_SERV$LICENSE_KEY";
$lines = @file($licserv);
foreach ($lines as $line_num => $line) {
$license = htmlspecialchars($line);
if ($license == "INVALID") {
exit("<font color=black><b>Invalid License Key</b></font>");
}
}
Function Calls
define | 1 |
Stats
MD5 | cefea9d112afb5222bc088bde39b0335 |
Eval Count | 0 |
Decode Time | 55 ms |