!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)

E:\nuevo\htdocs\bogotacumbredelclima\wp-content\plugins\contact-form-7\admin\   drwxrwxrwx
Free 4.97 GB of 239.26 GB (2.08%)
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:     admin-functions.php (4.13 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

function wpcf7_current_action() {
    if ( isset( 
$_REQUEST['action'] ) && -!= $_REQUEST['action'] )
        return 
$_REQUEST['action'];

    if ( isset( 
$_REQUEST['action2'] ) && -!= $_REQUEST['action2'] )
        return 
$_REQUEST['action2'];

    return 
false;
}

function 
wpcf7_admin_has_edit_cap() {
    return 
current_user_can'wpcf7_edit_contact_forms' );
}

function 
wpcf7_add_tag_generator$name$title$elm_id$callback$options = array() ) {
    global 
$wpcf7_tag_generators;

    
$name trim$name );
    if ( 
'' == $name )
        return 
false;

    if ( ! 
is_array$wpcf7_tag_generators ) )
        
$wpcf7_tag_generators = array();

    
$wpcf7_tag_generators[$name] = array(
        
'title' => $title,
        
'content' => $elm_id,
        
'options' => $options );

    if ( 
is_callable$callback ) )
        
add_action'wpcf7_admin_footer'$callback );

    return 
true;
}

function 
wpcf7_tag_generators() {
    global 
$wpcf7_tag_generators;

    
$taggenerators = array();

    foreach ( (array) 
$wpcf7_tag_generators as $name => $tg ) {
        
$taggenerators[$name] = array_merge(
            (array) 
$tg['options'],
            array( 
'title' => $tg['title'], 'content' => $tg['content'] ) );
    }

    return 
$taggenerators;
}

function 
wpcf7_save_contact_form$post_id = -) {
    if ( -
!= $post_id ) {
        
$contact_form wpcf7_contact_form$post_id );
    }

    if ( empty( 
$contact_form ) ) {
        
$contact_form WPCF7_ContactForm::get_template();
    }

    if ( isset( 
$_POST['wpcf7-title'] ) ) {
        
$contact_form->set_title$_POST['wpcf7-title'] );
    }

    if ( isset( 
$_POST['wpcf7-locale'] ) ) {
        
$locale trim$_POST['wpcf7-locale'] );

        if ( 
wpcf7_is_valid_locale$locale ) ) {
            
$contact_form->locale $locale;
        }
    }

    
$properties $contact_form->get_properties();

    if ( isset( 
$_POST['wpcf7-form'] ) ) {
        
$properties['form'] = trim$_POST['wpcf7-form'] );
    }

    
$mail $properties['mail'];

    if ( isset( 
$_POST['wpcf7-mail-subject'] ) ) {
        
$mail['subject'] = trim$_POST['wpcf7-mail-subject'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-sender'] ) ) {
        
$mail['sender'] = trim$_POST['wpcf7-mail-sender'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-body'] ) ) {
        
$mail['body'] = trim$_POST['wpcf7-mail-body'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-recipient'] ) ) {
        
$mail['recipient'] = trim$_POST['wpcf7-mail-recipient'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-additional-headers'] ) ) {
        
$mail['additional_headers'] = trim$_POST['wpcf7-mail-additional-headers'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-attachments'] ) ) {
        
$mail['attachments'] = trim$_POST['wpcf7-mail-attachments'] );
    }

    
$mail['use_html'] = ! empty( $_POST['wpcf7-mail-use-html'] );
    
$mail['exclude_blank'] = ! empty( $_POST['wpcf7-mail-exclude-blank'] );

    
$properties['mail'] = $mail;

    
$mail_2 $properties['mail_2'];

    
$mail_2['active'] = ! empty( $_POST['wpcf7-mail-2-active'] );

    if ( isset( 
$_POST['wpcf7-mail-2-subject'] ) ) {
        
$mail_2['subject'] = trim$_POST['wpcf7-mail-2-subject'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-2-sender'] ) ) {
        
$mail_2['sender'] = trim$_POST['wpcf7-mail-2-sender'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-2-body'] ) ) {
        
$mail_2['body'] = trim$_POST['wpcf7-mail-2-body'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-2-recipient'] ) ) {
        
$mail_2['recipient'] = trim$_POST['wpcf7-mail-2-recipient'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-2-additional-headers'] ) ) {
        
$mail_2['additional_headers'] = trim(
            
$_POST['wpcf7-mail-2-additional-headers'] );
    }

    if ( isset( 
$_POST['wpcf7-mail-2-attachments'] ) ) {
        
$mail_2['attachments'] = trim$_POST['wpcf7-mail-2-attachments'] );
    }

    
$mail_2['use_html'] = ! empty( $_POST['wpcf7-mail-2-use-html'] );
    
$mail_2['exclude_blank'] = ! empty( $_POST['wpcf7-mail-2-exclude-blank'] );

    
$properties['mail_2'] = $mail_2;

    foreach ( 
wpcf7_messages() as $key => $arr ) {
        
$field_name 'wpcf7-message-' strtr$key'_''-' );

        if ( isset( 
$_POST[$field_name] ) ) {
            
$properties['messages'][$key] = trim$_POST[$field_name] );
        }
    }

    if ( isset( 
$_POST['wpcf7-additional-settings'] ) ) {
        
$properties['additional_settings'] = trim(
            
$_POST['wpcf7-additional-settings'] );
    }

    
$contact_form->set_properties$properties );

    
do_action'wpcf7_save_contact_form'$contact_form );

    return 
$contact_form->save();
}

?>

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