!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\includes\   drwxrwxrwx
Free 4.95 GB of 239.26 GB (2.07%)
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:     meta-boxes.php (5.24 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/* Form */

function wpcf7_form_meta_box$post ) {
?>
<div class="half-left"><textarea id="wpcf7-form" name="wpcf7-form" cols="100" rows="24"><?php echo esc_textarea$post->prop'form' ) ); ?></textarea></div>

<div class="half-right"><div id="taggenerator"></div></div>

<br class="clear" />
<?php
}

/* Mail */

function wpcf7_mail_meta_box$post$box ) {
    
$args = isset( $box['args'] ) && is_array$box['args'] )
        ? 
$box['args'] : array();

    
$args wp_parse_args$args, array(
        
'id' => 'wpcf7-mail',
        
'name' => 'mail',
        
'use' => null ) );

    
$id esc_attr$args['id'] );

    
$mail wp_parse_args$post->prop$args['name'] ), array(
        
'active' => false'recipient' => '''sender' => '',
        
'subject' => '''body' => '''additional_headers' => '',
        
'attachments' => '''use_html' => false'exclude_blank' => false ) );

    if ( ! empty( 
$args['use'] ) ) :
?>
<div class="mail-field">
<label for="<?php echo $id?>-active">
<input type="checkbox" id="<?php echo $id?>-active" name="<?php echo $id?>-active" class="check-if-these-fields-are-active" value="1"<?php echo ( $mail['active'] ) ? ' checked="checked"' ''?> />
<?php echo esc_html$args['use'] ); ?>
</label>
<div class="pseudo-hr"></div>
</div>

<br class="clear" />
<?php endif; ?>

<div class="mail-fields">
<div class="half-left">
    <div class="mail-field">
    <label for="<?php echo $id?>-recipient"><?php echo esc_html__'To:''contact-form-7' ) ); ?></label><br />
    <input type="text" id="<?php echo $id?>-recipient" name="<?php echo $id?>-recipient" class="wide" size="70" value="<?php echo esc_attr$mail['recipient'] ); ?>" />
    </div>

    <div class="mail-field">
    <label for="<?php echo $id?>-sender"><?php echo esc_html__'From:''contact-form-7' ) ); ?></label><br />
    <input type="text" id="<?php echo $id?>-sender" name="<?php echo $id?>-sender" class="wide" size="70" value="<?php echo esc_attr$mail['sender'] ); ?>" />
    </div>

    <div class="mail-field">
    <label for="<?php echo $id?>-subject"><?php echo esc_html__'Subject:''contact-form-7' ) ); ?></label><br />
    <input type="text" id="<?php echo $id?>-subject" name="<?php echo $id?>-subject" class="wide" size="70" value="<?php echo esc_attr$mail['subject'] ); ?>" />
    </div>

    <div class="pseudo-hr"></div>

    <div class="mail-field">
    <label for="<?php echo $id?>-additional-headers"><?php echo esc_html__'Additional headers:''contact-form-7' ) ); ?></label><br />
    <textarea id="<?php echo $id?>-additional-headers" name="<?php echo $id?>-additional-headers" cols="100" rows="2"><?php echo esc_textarea$mail['additional_headers'] ); ?></textarea>
    </div>

    <div class="mail-field">
    <label for="<?php echo $id?>-attachments"><?php echo esc_html__'File attachments:''contact-form-7' ) ); ?></label><br />
    <textarea id="<?php echo $id?>-attachments" name="<?php echo $id?>-attachments" cols="100" rows="2"><?php echo esc_textarea$mail['attachments'] ); ?></textarea>
    </div>

    <div class="pseudo-hr"></div>

    <div class="mail-field">
    
    <label for="<?php echo $id?>-use-html">
    <input type="checkbox" id="<?php echo $id?>-use-html" name="<?php echo $id?>-use-html" value="1"<?php echo ( $mail['use_html'] ) ? ' checked="checked"' ''?> />
    <?php echo esc_html__'Use HTML content type''contact-form-7' ) ); ?>
    </label>
    </div>
</div>

<div class="half-right">
    <div class="mail-field">
    <label for="<?php echo $id?>-body"><?php echo esc_html__'Message body:''contact-form-7' ) ); ?></label><br />
    <textarea id="<?php echo $id?>-body" name="<?php echo $id?>-body" cols="100" rows="18"><?php echo esc_textarea$mail['body'] ); ?></textarea>
    </div>

    <div class="mail-field">
    
    <label for="<?php echo $id?>-exclude-blank">
    <input type="checkbox" id="<?php echo $id?>-exclude-blank" name="<?php echo $id?>-exclude-blank" value="1"<?php echo ( ! empty( $mail['exclude_blank'] ) ) ? ' checked="checked"' ''?> />
    <?php echo esc_html__'Exclude lines with blank mail-tags from output''contact-form-7' ) ); ?>
    </label>
    </div>
</div>

<br class="clear" />
</div>
<?php
}

function 
wpcf7_messages_meta_box$post ) {
    
$updated = isset( $_REQUEST['message'] )
        && 
in_array$_REQUEST['message'], array( 'saved''created' ) );
    
$count 0;
    
$messages wpcf7_messages();

    foreach ( 
$messages as $key => $arr ) {
        
$count += 1;
        
$field_name 'wpcf7-message-' strtr$key'_''-' );

?>
<div class="message-field">
<p class="description"><label for="<?php echo $field_name?>"><?php echo esc_html$arr['description'] ); ?></label></p>
<input type="text" id="<?php echo $field_name?>" name="<?php echo $field_name?>" class="wide" size="70" value="<?php echo esc_attr$post->message$keyfalse ) ); ?>" />
</div>
<?php

        
if ( ! $updated && 10 <= count$messages ) ) {
            if ( 
== $count ) {
                echo 
'<p><a href="#" id="show-all-messages">' esc_html__'Show all messages''contact-form-7' ) ) . '</a></p>' "\n";
                echo 
'<div class="hide-initially">';
            }

            if ( 
count$messages ) == $count ) {
                echo 
'</div>';
            }
        }
    }
}

function 
wpcf7_additional_settings_meta_box$post ) {
?>
<textarea id="wpcf7-additional-settings" name="wpcf7-additional-settings" cols="100" rows="8"><?php echo esc_textarea$post->prop'additional_settings' ) ); ?></textarea>
<?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 ]--