!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:\cumbreclima\wp-content\plugins\wcp-contact-form\agp-core\classes\persistence\   drwxrwxrwx
Free 4.13 GB of 39.52 GB (10.45%)
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:     Agp_RepositoryAbstract.class.php (1.45 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Webcodin\WCPContactForm\Core;

abstract class 
Agp_RepositoryAbstract {
    private 
$data;
    
    public 
$entityClass '';    
    
    public function 
__construct($data NULL) {
        
$this->refresh($data);
    }
   
    abstract public function 
init();

    public function 
refresh($data NULL) {
        
$this->deleteAll();        
        if (
$this->entityClass && !empty($data) && is_array($data)) {
            foreach (
$data as $value) {
                
$this->add(new $this->entityClass($value));
            }                    
            
$this->init();
        }        
    }

    
    public function 
add(Agp_EntityAbstract $entity) {
        if (!isset(
$this->data[$entity->getId()])) {
            
$this->data[$entity->getId()] = $entity;    
        }
    }
    
    public function 
delete($id) {
        if (isset(
$this->data[$id])) {
            unset(
$this->data[$id]);
        }
    }        
    
    public function 
deleteAll() {
        unset(
$this->data);
        
$this->data = array();
    }            
    
    public function 
findById ($id) {
        return 
$result = &$this->data[$id];
    }
    
    public function 
getAll () {
        return 
$result = &$this->data;
    }

    public function 
getFirst () {
        if (!empty(
$this->data)) {
            
$data = &$this->data;
            return 
$result reset($data);    
        }
    }    
    
    public function 
getCount () {
        return 
count($this->data);
    }    
}

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