MOON
Server: Apache
System: Linux ip-208-109-13-31.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els4.x86_64 #1 SMP Sat Aug 31 06:58:57 UTC 2024 x86_64
User: durgeshpandey215 (1013)
PHP: 8.1.29
Disabled: NONE
Upload Files
File: /home/durgeshpandey215/public_html/atig313.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ATIG313</title>

<style>
body{
    margin:0;
    background:black;
    color:#00ff00;
    font-family: monospace;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

/* TERMINAL */
#terminal{
    padding:clamp(12px,4vw,30px);
    font-size:clamp(14px,3.5vw,22px);
    white-space:pre-line;
    text-shadow:0 0 8px #00ff00;
    flex:1;
}

/* SCANLINES */
.scanlines::after{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background:
        repeating-linear-gradient(
            transparent 0px,
            rgba(0,255,0,0.04) 2px,
            transparent 4px
        );
}

/* FINAL SCREEN CENTER FIX */
#final{
    position:fixed;
    inset:0;

    display:none;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:red;
    text-shadow:0 0 40px red;

    font-size:clamp(18px,5vw,30px);
    padding:20px;
}

#final div{
    animation: glitch 0.2s infinite;
    line-height:1.4;
}

/* GLITCH */
.glitch{
    animation: glitch 0.2s infinite;
}

@keyframes glitch{
    0%{transform:translate(0);}
    25%{transform:translate(-2px,1px);}
    50%{transform:translate(2px,-1px);}
    75%{transform:translate(-1px,-2px);}
    100%{transform:translate(0);}
}

</style>
</head>

<body class="scanlines">

<div id="terminal"></div>

<div id="final">
    <div>
        SYSTEM OWNED BY ATIG(313)<br>
        Hacked by atig313<br>
        <span style="font-size:1em;"></span>
    </div>
</div>
<script>

const lines = [
    "[+] Connecting to target...",
    "[+] Injecting payload...",
    "[+] Access granted...",
    "[+] Escalating privileges...",
    "[+] Root acquired...",
    "[+] Deploying persistence..."
];

let i = 0;
const terminal = document.getElementById("terminal");

function typeLine(){
    if(i < lines.length){
        terminal.innerHTML += lines[i] + "\n";
        i++;

        setTimeout(typeLine, 450 + Math.random()*200);
    } else {
        setTimeout(()=>{
            document.getElementById("final").style.display = "flex";
        }, 800);
    }
}
typeLine();
</script>
</body>
</html>