!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\w3-total-cache\lib\EDD\   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:     integration.php (3.5 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Activates a license
 *
 * @param $license
 * @param $version
 * @return array|bool|mixed
 */
function edd_w3edge_w3tc_activate_license($license$version) {

        
// data to send in our API request
        
$api_params = array(
            
'edd_action'=> 'activate_license',
            
'license'     => $license,
            
'item_name' => urlencodeEDD_W3EDGE_W3TC_NAME ), // the name of our product in EDD
            
'r' => rand(),
            
'version' => $version
        
);

        
// Call the custom API.
        
$response wp_remote_getadd_query_arg$api_paramsEDD_W3EDGE_STORE_URL ), array( 'timeout' => 15'sslverify' => false ) );
        if ( 
is_wp_error$response ) )
            return 
false;

        
// decode the license data
        
$license_data json_decodewp_remote_retrieve_body$response ) );
        return 
$license_data;
}

/**
 * Deactivates a license
 *
 * @param string $license
 * @return bool
 */
function edd_w3edge_w3tc_deactivate_license($license) {
        
// data to send in our API request
        
$api_params = array(
            
'edd_action'=> 'deactivate_license',
            
'license'     => $license,
            
'item_name' => urlencodeEDD_W3EDGE_W3TC_NAME ), // the name of our product in EDD,
            
'r' => rand()
        );

        
// Call the custom API.
        
$response wp_remote_getadd_query_arg$api_paramsEDD_W3EDGE_STORE_URL ), array( 'timeout' => 15'sslverify' => false ) );

        
// make sure the response came back okay
        
if ( is_wp_error$response ) )
            return 
false;

        
// decode the license data
        
$license_data json_decodewp_remote_retrieve_body$response ) );

        
// $license_data->license will be either "deactivated" or "failed"
        
return $license_data->license == 'deactivated';
}

/**
 * Checks if a license key is still valid
 *
 * @param $license
 * @param $version
 * @return array|bool|mixed
 */
function edd_w3edge_w3tc_check_license($license$version) {

    global 
$wp_version;

    
$api_params = array(
        
'edd_action' => 'check_license',
        
'license' => $license,
        
'item_name' => urlencodeEDD_W3EDGE_W3TC_NAME ),
        
'r' => rand(),
        
'version' => $version
    
);

    
// Call the custom API.
    
$response wp_remote_getadd_query_arg$api_paramsEDD_W3EDGE_STORE_URL ), array( 'timeout' => 15'sslverify' => false ) );

    if ( 
is_wp_error$response ) )
        return 
false;
    
$license_data json_decodewp_remote_retrieve_body$response ) );
    return 
$license_data;
}

/**
 * Verifies a license key
 *
 * @param $license
 * @param $version
 * @return array|bool|mixed
 */
function edd_w3edge_w3tc_verify_license($license$version) {

    global 
$wp_version;

    
$api_params = array(
        
'edd_action' => 'verify_license',
        
'license' => $license,
        
'item_name' => urlencodeEDD_W3EDGE_W3TC_NAME ),
        
'r' => rand(),
        
'version' => $version
    
);

    
// Call the custom API.
    
$response wp_remote_getadd_query_arg$api_paramsEDD_W3EDGE_STORE_URL ), array( 'timeout' => 15'sslverify' => false ) );

    if ( 
is_wp_error$response ) )
        return 
false;
    
$body wp_remote_retrieve_body$response );
    
$license_data json_decode$body );
    return 
$license_data;
}

/**
 * Return product type
 * @param bool $license
 * @param $version
 * @return mixed
 */
function edd_w3edge_w3tc_check_license_product($license$version) {
    
$license edd_w3edge_w3tc_check_license($license$version);
    return 
$license->type;
}

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