!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 

uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC
2014 x86_64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/squirrelmail/plugins/listcommands/   drwxr-xr-x
Free 129.83 GB of 142.11 GB (91.36%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     mailout.php (2.82 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * mailout.php
 *
 * Copyright (c) 1999-2010 The SquirrelMail Project Team
 * Licensed under the GNU GPL. For full terms see the file COPYING.
 *
 * $Id: mailout.php 13893 2010-01-25 02:47:41Z pdontthink $
 * @package plugins
 * @subpackage listcommands
 */

define('SM_PATH','../../');

/* SquirrelMail required files. */
require_once(SM_PATH 'include/validate.php');
include_once(
SM_PATH 'functions/page_header.php');
include_once(
SM_PATH 'include/load_prefs.php');
include_once(
SM_PATH 'functions/html.php');
require_once(
SM_PATH 'functions/identity.php');

displayPageHeader($colornull);

/* get globals */
sqgetGlobalVar('mailbox'$mailboxSQ_GET);
sqgetGlobalVar('send_to'$send_toSQ_GET);
sqgetGlobalVar('subject'$subjectSQ_GET);
sqgetGlobalVar('body',    $body,    SQ_GET);
sqgetGlobalVar('action',  $action,  SQ_GET);

switch ( 
$action ) {
case 
'help':
    
$out_string _("This will send a message to %s requesting help for this list. You will receive an emailed response at the address below.");
    break;
case 
'subscribe':
    
$out_string _("This will send a message to %s requesting that you will be subscribed to this list. You will be subscribed with the address below.");
    break;
case 
'unsubscribe':
    
$out_string _("This will send a message to %s requesting that you will be unsubscribed from this list. It will try to unsubscribe the adress below.");
    break;
default:
    
error_box(sprintf(_("Unknown action: %s"),htmlspecialchars($action)), $color);
    exit;
}

echo 
html_tag('p''''left' ) .
html_tag'table''''center'$color[0], 'border="0" width="75%"' ) . "\n" .
    
html_tag'tr',
        
html_tag'th'_("Mailinglist") . ' ' _($action), ''$color[9] )
    ) .
    
html_tag'tr' ) .
    
html_tag'td''''left' );


printf$out_stringhtmlspecialchars($send_to) );

echo 
'<form method="post" action="../../src/compose.php">';

$idents get_identities();

echo 
html_tag('p''''center' ) . _("From:") . ' ';

if (
count($idents) > 1) {
    echo 
'<select name="identity">';
    foreach(
$idents as $nr=>$data) {
        echo 
'<option value="' $nr '">' .
            
htmlspecialchars(
                
$data['full_name'].' <'.
                
$data['email_address'] . ">\n");
    }
    echo 
'</select>' "\n" ;
} else {
    echo 
htmlspecialchars('"'.$idents[0]['full_name'].'" <'.$idents[0]['email_address'].'>');
}

echo 
'<br /><br />'
'<input type="hidden" name="send_to" value="' htmlspecialchars($send_to) . '">'
'<input type="hidden" name="subject" value="' htmlspecialchars($subject) . '">'
'<input type="hidden" name="body" value="' htmlspecialchars($body) . '">'
'<input type="hidden" name="mailbox" value="' htmlspecialchars($mailbox) . '">'
'<input type="submit" name="send" value="' _("Send Mail") . '"><br /><br />'
'</form></td></tr></table></body></html>';


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.02 ]--