!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:\Users\DMZ\Desktop\cumbreclima0909\wp-content\plugins\wcp-contact-form\classes\widget\   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:     SCFP_FormWidget.class.php (1.94 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

class SCFP_FormWidget extends WP_Widget {
    
    
/**
     * Sets up the widgets name etc
     */
    
public function __construct() {
            
$widget_ops = array( 'description' => __"Adds contact form to your sidebar") );
            
parent::__construct('scfp_form_widget'__('WCP Contact Form'), $widget_ops);
    }
    
    
/**
     * Outputs the content of the widget
     *
     * @param array $args
     * @param array $instance
     */
    
public function widget$args$instance ) {
        echo 
$args['before_widget'];
        if (!empty( 
$instance['title'])) {
            echo 
$args['before_title'] . apply_filters'widget_title'$instance['title'] ). $args['after_title'];
        }
        
        
$atts = array();
        
$atts['id'] = 'scfp-' $this->id;
            
        echo 
SCFP()->doContactFormWidget($atts);
        
        echo 
$args['after_widget'];
    }

    
/**
     * Outputs the options form on admin
     *
     * @param array $instance The widget options
     */
    
public function form$instance ) {
            
$title = !empty($instance['title']) ? $instance['title'] : '';
            
        
?>
            <p><?php $this->renderTitleField($title); ?></p>
           
    <?php    
    
}
    
    
    
/**
     * Processing widget options on save
     *
     * @param array $new_instance The new options
     * @param array $old_instance The previous options
     */
    
public function update$new_instance$old_instance ) {
            
$instance = array();

            
$instance['title'] = (!empty($new_instance['title'])) ? strip_tags$new_instance['title'] ) : '';

            return 
$instance;
    }    
    
    public function 
renderTitleField ($title) {
    
?>
        <label for="<?php echo esc_attr$this->get_field_id'title' ) ); ?>"><?php _e'Title:' ); ?></label> 
        <input class="widefat" id="<?php echo $this->get_field_id'title' ); ?>" name="<?php echo $this->get_field_name'title' ); ?>" type="text" value="<?php echo esc_attr$title ); ?>">    
    <?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 ]--