!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\   drwxrwxrwx
Free 7.29 GB of 239.26 GB (3.05%)
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:     0.php (2.05 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<? session_start(); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample XHTML Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<?php
$text 
= <<<JDG
PHP (recursive acronym for "PHP: Hypertext Preprocessor") is a
Chapter 5: Text Manipulation
150
widely-used Open Source general-purpose scripting language that
is especially suited for Web development and can be embedded
into HTML.
JDG;

$lines explode("\n"$text);
echo 
"<table border=\"1\">\n";
foreach (
$lines as $line) {
echo 
"<tr>\n<td>$line</td>\n</tr>\n";
}
echo 
"</table>\n";
?>
<br/><br/>
Una forma de librarse de los problemas con las comillas es la siguiente:
<br/><br/>
<? 
$mitexto= <<<TEXTO
Se trata de poder escribir "Palabras", de cualquier 'manera'
y saltando línea o como uno quiera
además
de poder incrustar números 123
79
en donde uno quiera
TEXTO;

$linex = explode("\n", $mitexto);
echo "<table border=\"1\">\n";
foreach ($linex as $line) {
echo "<tr>\n<td>$line</td>\n</tr>\n";
}
echo "</table>\n";
?>
<br/>
<? 
echo $mitexto;

?>
<?php
echo '1st Jan 1899: ' mktime(000111899) . '<br />';
echo 
'1st Jan 1902: ' mktime(000111902) . '<br />';
echo 
'31st Dec 1969: ' mktime(00012311969) . '<br />';
echo 
'1st Jan 1790: ' mktime(000111970) . '<br />';
echo 
'1st Jan 1937: ' mktime(000112037) . '<br />';
echo 
'1st Jan 2038: ' mktime(000112038) . '<br />';
echo 
'19th Jan 2038: ' mktime(0001192038) . '<br />';
echo 
'20th Jan 2038: ' mktime(0001212038) . '<br />';
echo 
'1st Jan 2039: ' mktime(0001192039) . '<br />';
?>
<? 
echo 'La sesión actual es: '.session_id();
$_SESSION['usuario'] = "JAIME";
echo " SESION USUARIO: ".$_SESSION['usuario'];
if($_SESSION) {
echo "SI";
}else{
echo "NO";
}
?>
<br/>
<a href="nombre.php">DOS</a> 
</body>
</html>

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