!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)

C:\dmz\php\pear\phing\tasks\system\   drwxrwxrwx
Free 3.24 GB of 39.52 GB (8.2%)
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:     MoveTask.php (7.13 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 *  $Id: MoveTask.php 985 2010-11-11 15:58:35Z 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/tasks/system/CopyTask.php';
include_once 
'phing/system/io/PhingFile.php';
include_once 
'phing/system/io/IOException.php';

/**
 * Moves a file or directory to a new file or directory.
 * 
 * By default, the destination file is overwritten if it
 * already exists.  When overwrite is turned off, then files
 * are only moved if the source file is newer than the
 * destination file, or when the destination file does not
 * exist.
 *
 * Source files and directories are only deleted when the file or
 * directory has been copied to the destination successfully.
 *
 * @version $Revision: 985 $
 * @package phing.tasks.system
 */
class MoveTask extends CopyTask {

    function 
__construct() {
        
parent::__construct();
        
$this->forceOverwrite true;
    }
    
    
/**
     * Validates attributes coming in from XML
     *
     * @access  private
     * @return  void
     * @throws  BuildException
     */
    
protected function validateAttributes() {    
        if (
$this->file !== null && $this->file->isDirectory()) {
            if ((
$this->destFile !== null && $this->destDir !== null)
                || (
$this->destFile === null && $this->destDir === null)) {
                    throw new 
BuildException("One and only one of tofile and todir must be set.");
            }
            
            if (
$this->destFile === null)
            {
                
$this->destFile = new PhingFile($this->destDir$this->file->getName());
            }
            
            if (
$this->destDir === null)
            {
                
$this->destDir $this->destFile->getParentFile();
            }
            
            
$this->completeDirMap[$this->file->getAbsolutePath()] = $this->destFile->getAbsolutePath();
            
            
$this->file null;
        } else {
            
parent::validateAttributes();
        }
    }
    
    protected function 
doWork() {
        if (
count($this->completeDirMap) > 0)
        {
            foreach (
$this->completeDirMap as $from => $to)
            {
                
$f = new PhingFile($from);
                
$d = new PhingFile($to);
                
                
$moved false;
                try { 
// try to rename                    
                    
$this->log("Attempting to rename $from to $to"$this->verbosity);
                    
$this->fileUtils->copyFile($f$d$this->forceOverwrite$this->preserveLMT$this->filterChains$this->getProject(), $this->mode);
                    
$f->delete(true);
                    
$moved true;
                } catch (
IOException $ioe) {
                    
$moved false;
                    
$this->logError("Failed to rename $from to $to: " $ioe->getMessage());
                }
            }
        }
    
        
$copyMapSize count($this->fileCopyMap);
        if (
$copyMapSize 0) {
            
// files to move
            
$this->log("Moving $copyMapSize files to " $this->destDir->getAbsolutePath());

            foreach(
$this->fileCopyMap as $from => $to) {
                if (
$from == $to) {
                    
$this->log("Skipping self-move of $from"$this->verbosity);
                    continue;
                }

                
$f = new PhingFile($from);
                
$d = new PhingFile($to);
                
                try { 
// try to move
                    
$this->log("Moving $from to $to"$this->verbosity);

                    
$this->fileUtils->copyFile($f$d$this->forceOverwrite$this->preserveLMT$this->filterChains$this->getProject(), $this->mode);

                    
$f->delete();
                } catch (
IOException $ioe) {
                    
$this->logError("Failed to move $from to $to: " $ioe->getMessage(), $this->location);
                }
            } 
// foreach fileCopyMap
        
// if copyMapSize

        // handle empty dirs if appropriate
        
if ($this->includeEmpty) {
            
$e array_keys($this->dirCopyMap);
            
$count 0;
            foreach (
$e as $dir) {
                
$d = new PhingFile((string) $dir);
                if (!
$d->exists()) {
                    if (!
$d->mkdirs()) {
                        
$this->logError("Unable to create directory " $d->getAbsolutePath());
                    } else {
                        
$count++;
                    }
                }
            }
            if (
$count 0) {
                
$this->log("moved $count empty director" . ($count == "y" "ies") . " to " $this->destDir->getAbsolutePath());
            }
        }

        if (
count($this->filesets) > 0) {
            
// process filesets
            
foreach($this->filesets as $fs) {
                
$dir $fs->getDir($this->project);
                if (
$this->okToDelete($dir)) {
                    
$this->deleteDir($dir);
                }
            }
        }
    }

    
/** Its only ok to delete a dir tree if there are no files in it. */
    
private function okToDelete($d) {
        
$list $d->listDir();
        if (
$list === null) {
            return 
false;     // maybe io error?
        
}
        
        foreach(
$list as $s) {
            
$f = new PhingFile($d$s);
            if (
$f->isDirectory()) {
                if (!
$this->okToDelete($f)) {
                    return 
false;
                }
            } else {
                
// found a file
                
return false;
            }
        }
        return 
true;
    }

    
/** Go and delete the directory tree. */
    
private function deleteDir($d) {
    
        
$list $d->listDir();
        if (
$list === null) {
            return;      
// on an io error list() can return null
        
}
        
        foreach(
$list as $fname) {
            
$f = new PhingFile($d$fname);
            if (
$f->isDirectory()) {
                
$this->deleteDir($f);
            } else {
                throw new 
BuildException("UNEXPECTED ERROR - The file " $f->getAbsolutePath() . " should not exist!");
            }
        }

        
$this->log("Deleting directory " $d->getPath(), $this->verbosity);
        try {
            
$d->delete();
        } catch (
Exception $e) {
            
$this->logError("Unable to delete directory " $d->__toString() . ": " $e->getMessage());
        }
    }
}

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