!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\xampp\xampp\htdocs\jaime\Xcode\DateTime\   drwxrwxrwx
Free 8.8 GB of 239.26 GB (3.68%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     12.php (1.99 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Include DateMath class
require_once ('DateTime/DateMath.php');
// Include the TimeUnitValidator
require_once ('DateTime/TimeUnitValidator.php');

// Include Calendar and subclasses
require_once ('DateTime/Calendar.php');
require_once (
'DateTime/Year.php');
require_once (
'DateTime/Month.php');

//Initialize $_GET variables to this year and month if not set
if ( !isset($_GET['y']) ) $_GET['y'] = date('Y');
if ( !isset(
$_GET['m']) ) $_GET['m'] = date('m');

// Create a new Year object
$year=new Year($_GET['y']);

$selectedMonths = array(
    new 
Month($_GET['y'],$_GET['m'])
    );

// Instruct the Year to build Month objects
$year->build($selectedMonths);

$prev $_SERVER['PHP_SELF']."?y=".$year->lastYear();
$next $_SERVER['PHP_SELF']."?y=".$year->nextYear();

// Start building HTML
$calendar="<table>\n";
$calendar.=
    
"<caption><a href=\"".$prev."\" class=\"nav\"><<</a> ".
    
$year->thisYear().
    
" <a href=\"".$next."\" class=\"nav\">>></a></caption>\n";

while ( 
$month $year->fetch() ) {
    
$calendar.="<tr>\n";
    
$link $_SERVER['PHP_SELF']."?y=".$month->thisYear()."&m=".$month->thisMonth();
    if ( !
$month->isSelected() ) {
        
$calendar.="<td><a href=\"".$link."\">".date('F',$month->thisMonth(true))."</a></td>\n";
    } else {
        
$calendar.="<td class=\"selected\"><a href=\"".$link."\">".date('F',$month->thisMonth(true))."</a></td>\n";
    }
    
$calendar.="</tr>\n";
}
$calendar.="</table>\n";
?>
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> Months in the Year </title>
<style type="text/css">
table {
    background-color: silver;
    width: 300px;
}
caption {
    font-family: verdana;
    font-size: 11px;
    text-align: center;
    background-color: white;
}
.nav {
    font-size: 9px;
}
td {
    font-family: verdana;
    font-size: 11px;
}
.selected {
    background-color: yellow;
}
</style>
</head>
<body>
<?php
echo ( $calendar );
?>
</body>
</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0156 ]--