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

C:\dmz\htdocs\xampp\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.4%)
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:     mailsend.php (1.86 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
    
include "langsettings.php";
    
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang, Carsten Wiedmann">
        <link href="xampp.css" rel="stylesheet" type="text/css">
        <title>Mercury Mail Server</title>
    </head>

    <body>
        &nbsp;<p>
        <h1><?php echo $TEXT['mail-sendnow']; ?></h1>
        <i>(Requests allowed from localhost only)</i><br/><br/>
        <table>
            <tr>
                <td>&nbsp;<p>
                    <?php
                        
if (empty($_POST['knownsender'])) {
                            
$_POST['knownsender'] = '';
                        }
                        if (empty(
$_POST['recipients'])) {
                            
$_POST['recipients'] = '';
                        }
                        if (empty(
$_POST['ccaddress'])) {
                            
$_POST['ccaddress'] = '';
                        }
                        if (empty(
$_POST['subject'])) {
                            
$_POST['subject'] = '';
                        }
                        if (empty(
$_POST['message'])) {
                            
$_POST['message'] = '';
                        }
                        
$mailtos $_POST['recipients'];
                        
$subject $_POST['subject'];
                        
$message $_POST['message'];

                        
$header  'MIME-Version: 1.0' "\r\n";
                        
$header .= "Content-type: text/html; charset=iso-8859-1" "\r\n";
                        
$header .= "To: $_POST[recipients]"\r\n"

                        if ((
$_POST['ccaddress'] == "") || ($_POST['ccaddress'] == " ")) {
                            
$header .= "From: $_POST[knownsender]"\r\n";
                        } else {
                            
$header .= "From: $_POST[knownsender]"\r\n";
                            
$header .= "Cc: $_POST[ccaddress]"\r\n";
                        }

                        if (@
mail($mailtos$subject$message$header)) {
                            echo 
"<i>".$TEXT['mail-sendok']."</i>";
                        } else {
                            echo 
"<i>".$TEXT['mail-sendnotok']."</i>";
                        }
                    
?>
                </td>
            </tr>
            <tr>
                <td>&nbsp;<p>&nbsp;<p>&nbsp;<p>
                    <a href="javascript:history.back()">Zurück zum Formular</a>
                </td>
            </tr>
        </table>
    </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.0156 ]--