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 $post = array( "file"=>"@a.php", "api_key"=>"1c2755023f3548..

Decoded Output download

<?php 
    $post = array( 
         "file"=>"@a.php", 
         "api_key"=>"1c2755023f354893ed17c99182d44464", 
    ); 
    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_URL, 'http://www.unphp.net/api/v2/post'); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 
    curl_setopt($ch, CURLOPT_POST, 1); 
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post); 
    echo curl_exec($ch); 
    echo curl_error($ch); 
    curl_close($ch); 
?>

Did this file decode correctly?

Original Code

<?php
    $post = array(
         "file"=>"@a.php",
         "api_key"=>"1c2755023f354893ed17c99182d44464",
    );
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, 'http://www.unphp.net/api/v2/post');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
    echo curl_exec($ch);
    echo curl_error($ch);
    curl_close($ch);
?>

Function Calls

curl_init 1

Variables

$post [{'key': 'file', 'value': '@a.php'}, {'key': 'api_key', 'value': '1c2755023f354893ed17c99182d44464'}]

Stats

MD5 7e7d6a08892e1293ff7fa5fa7c46da2f
Eval Count 0
Decode Time 73 ms