!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\BLA\boletinlegal\admin\usuarios\include\   drwxrwxrwx
Free 5.01 GB of 239.26 GB (2.1%)
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:     mailer.php (2.45 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php 
/**
 * Mailer.php
 *
 * The Mailer class is meant to simplify the task of sending
 * emails to users. Note: this email system will not work
 * if your server is not setup to send mail.
 *
 * If you are running Windows and want a mail server, check
 * out this website to see a list of freeware programs:
 * <http://www.snapfiles.com/freeware/server/fwmailserver.html>
 *
 * Written by: Jpmaster77 a.k.a. The Grandmaster of C++ (GMC)
 * Last Updated: August 19, 2004
 */
 
class Mailer
{
   
/**
    * sendWelcome - Sends a welcome message to the newly
    * registered user, also supplying the username and
    * password.
    */
   
function sendWelcome($user$email$pass){
      
$from "From: ".EMAIL_FROM_NAME." <".EMAIL_FROM_ADDR.">";
      
$subject "Jpmaster77's Site - Welcome!";
      
$body $user.",\n\n"
             
."Welcome! You've just registered at Jpmaster77's Site "
             
."with the following information:\n\n"
             
."Username: ".$user."\n"
             
."Password: ".$pass."\n\n"
             
."If you ever lose or forget your password, a new "
             
."password will be generated for you and sent to this "
             
."email address, if you would like to change your "
             
."email address you can do so by going to the "
             
."My Account page after signing in.\n\n"
             
."- Jpmaster77's Site";

      return 
mail($email,$subject,$body,$from);
   }
   
   
/**
    * sendNewPass - Sends the newly generated password
    * to the user's email address that was specified at
    * sign-up.
    */
   
function sendNewPass($user$email$pass){
      
$from "From: ".EMAIL_FROM_NAME." <".EMAIL_FROM_ADDR.">";
      
$subject "Jpmaster77's Site - Your new password";
      
$body $user.",\n\n"
             
."We've generated a new password for you at your "
             
."request, you can use this new password with your "
             
."username to log in to Jpmaster77's Site.\n\n"
             
."Username: ".$user."\n"
             
."New Password: ".$pass."\n\n"
             
."It is recommended that you change your password "
             
."to something that is easier to remember, which "
             
."can be done by going to the My Account page "
             
."after signing in.\n\n"
             
."- Jpmaster77's Site";
             
      return 
mail($email,$subject,$body,$from);
   }
};

/* Initialize mailer object */
$mailer = new Mailer;
 
?>

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