Sunda Cyber Army


* Sunda Cyber Army 2k17 *
Indonesia Defacer ~


Path : /home/dent/public_html/home/000~ROOT~000/proc/self/cwd/
File Upload :
Current File : /home/dent/public_html/home/000~ROOT~000/proc/self/cwd/counter.php

<?php
 session_start();
//  session_destroy();

$_SESSION["loggedin"] = "no";
if(empty($_SESSION["counter"])) {
    $_SESSION["counter"] = 1;
} else {
    $_SESSION["counter"]++;
}

/*
$_SESSION["username"] = "patrick";
$_SESSION["favcolor"] = "teal";
 *
 */
print_r($_SESSION);
?>
<style>
    #counter {
        width: 100px; height: 100px;
        background-color: lightsteelblue;
        color: steelblue;
        font-size: 24pt;
        text-align: center;
        position: fixed;
        bottom: 0px; right: 0px;
        line-height: 100px;
    }
</style>
<div id="counter">
    <?=  $_SESSION["counter"] ?>
</div>