!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:\copia nuevo\php\pear\phing\tasks\system\   drwxrwxrwx
Free 4.99 GB of 239.26 GB (2.08%)
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:     TouchTask.php (5.36 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 *  $Id: TouchTask.php 526 2009-08-11 12:11:17Z mrook $
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information please see
 * <http://phing.info>.
 */

require_once 'phing/Task.php';
include_once 
'phing/util/DirectoryScanner.php';
include_once 
'phing/types/FileSet.php';
include_once 
'phing/util/FileUtils.php';
include_once 
'phing/system/io/PhingFile.php';
include_once 
'phing/system/io/IOException.php';

/**
 * Touch a file and/or fileset(s); corresponds to the Unix touch command.
 *
 * If the file to touch doesn't exist, an empty one is created.
 *
 * @version $Revision: 526 $
 * @package phing.tasks.system
 */
class TouchTask extends Task {

    private 
$file;
    private 
$millis    = -1;
    private 
$dateTime;
    private 
$filesets = array();
    private 
$fileUtils;

    function 
__construct() {
        
$this->fileUtils = new FileUtils();
    }

    
/**
     * Sets a single source file to touch.  If the file does not exist
     * an empty file will be created.
     */
    
function setFile(PhingFile $file) {        
        
$this->file $file;
    }

    
/**
     * the new modification time of the file
     * in milliseconds since midnight Jan 1 1970.
     * Optional, default=now
     */
    
function setMillis($millis) {
        
$this->millis = (int) $millis;
    }

    
/**
     * the new modification time of the file
     * in the format MM/DD/YYYY HH:MM AM or PM;
     * Optional, default=now
     */
    
function setDatetime($dateTime) {
        
$this->dateTime = (string) $dateTime;
    }

    
/**
     * Nested creator, adds a set of files (nested fileset attribute).
     * @return FileSet
     */
    
function createFileSet() {
        
$num array_push($this->filesets, new FileSet());
        return 
$this->filesets[$num-1];
    }

    
/**
     * Execute the touch operation.
     */
    
function main() {
        
$savedMillis $this->millis;

        if (
$this->file === null && count($this->filesets) === 0) {
            throw new 
BuildException("Specify at least one source - a file or a fileset.");
        }

        if (
$this->file !== null && $this->file->exists() && $this->file->isDirectory()) {
            throw new 
BuildException("Use a fileset to touch directories.");
        }

        try { 
// try to touch file
            
if ($this->dateTime !== null) {
                
$this->setMillis(strtotime($this->dateTime));
                if (
$this->millis 0) {
                    throw new 
BuildException("Date of {$this->dateTime} results in negative milliseconds value relative to epoch (January 1, 1970, 00:00:00 GMT).");
                }
            }
            
$this->_touch();
        } catch (
Exception $ex) {
            throw new 
BuildException("Error touch()ing file"$ex$this->location);
        }
        
        
$this->millis $savedMillis;
        
    }

    
/**
     * Does the actual work.
     */
    
function _touch() {
        if (
$this->file !== null) {
            if (!
$this->file->exists()) {
                
$this->log("Creating " $this->file->__toString(), Project::MSG_INFO);
                try { 
// try to create file
                    
$this->file->createNewFile();
                } catch(
IOException  $ioe) {
                    throw new 
BuildException("Error creating new file " $this->file->__toString(), $ioe$this->location);
                }
            }
        }

        
$resetMillis false;
        if (
$this->millis 0) {
            
$resetMillis true;
            
$this->millis Phing::currentTimeMillis();
        }

        if (
$this->file !== null) {
            
$this->touchFile($this->file);
        }

        
// deal with the filesets
        
foreach($this->filesets as $fs) {
        
            
$ds $fs->getDirectoryScanner($this->getProject());
            
$fromDir $fs->getDir($this->getProject());

            
$srcFiles $ds->getIncludedFiles();
            
$srcDirs $ds->getIncludedDirectories();

            for (
$j=0,$_j=count($srcFiles); $j $_j$j++) {
                
$this->touchFile(new PhingFile($fromDir, (string) $srcFiles[$j]));
            }
            
            for (
$j=0,$_j=count($srcDirs); $j $_j $j++) {
                
$this->touchFile(new PhingFile($fromDir, (string) $srcDirs[$j]));
            }
        }

        if (
$resetMillis) {
            
$this->millis = -1;
        }
    }

    private function 
touchFile($file) {
        if ( !
$file->canWrite() ) {
            throw new 
BuildException("Can not change modification date of read-only file " $file->__toString());
        }
        
$file->setLastModified($this->millis);
    }

}


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