!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\htdocs\cumbreclima\wp-content\plugins\contact-form-7\includes\   drwxrwxrwx
Free 1.04 GB of 239.26 GB (0.44%)
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:     pipe.php (1.3 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

class WPCF7_Pipe {

    public 
$before '';
    public 
$after '';

    public function 
__construct$text ) {
        
$text = (string) $text;

        
$pipe_pos strpos$text'|' );

        if ( 
false === $pipe_pos ) {
            
$this->before $this->after trim$text );
        } else {
            
$this->before trimsubstr$text0$pipe_pos ) );
            
$this->after trimsubstr$text$pipe_pos ) );
        }
    }
}

class 
WPCF7_Pipes {

    private 
$pipes = array();

    public function 
__construct( array $texts ) {
        foreach ( 
$texts as $text ) {
            
$this->add_pipe$text );
        }
    }

    private function 
add_pipe$text ) {
        
$pipe = new WPCF7_Pipe$text );
        
$this->pipes[] = $pipe;
    }

    public function 
do_pipe$before ) {
        foreach ( 
$this->pipes as $pipe ) {
            if ( 
$pipe->before == $before ) {
                return 
$pipe->after;
            }
        }

        return 
$before;
    }

    public function 
collect_befores() {
        
$befores = array();

        foreach ( 
$this->pipes as $pipe ) {
            
$befores[] = $pipe->before;
        }

        return 
$befores;
    }

    public function 
collect_afters() {
        
$afters = array();

        foreach ( 
$this->pipes as $pipe ) {
            
$afters[] = $pipe->after;
        }

        return 
$afters;
    }

    public function 
zero() {
        return empty( 
$this->pipes );
    }

    public function 
random_pipe() {
        if ( 
$this->zero() )
            return 
null;

        return 
$this->pipes[array_rand$this->pipes )];
    }
}

?>

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