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


Viewing file:     options_order.php (6.02 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * options_order.php
 *
 * Displays messagelist column order options
 *
 * @copyright 1999-2010 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: options_order.php 13893 2010-01-25 02:47:41Z pdontthink $
 * @package squirrelmail
 * @subpackage prefs
 */

/** This is the options_order page */
define('PAGE_NAME''options_order');

/**
 * Path for SquirrelMail required files.
 * @ignore
 */
define('SM_PATH','../');

/* SquirrelMail required files. */
require_once(SM_PATH 'include/validate.php');
require_once(
SM_PATH 'functions/global.php');
require_once(
SM_PATH 'functions/display_messages.php');
require_once(
SM_PATH 'functions/imap.php');
require_once(
SM_PATH 'functions/plugin.php');
require_once(
SM_PATH 'functions/html.php');
require_once(
SM_PATH 'functions/forms.php');

/* get globals */
if (sqgetGlobalVar('num'$numSQ_GET))  
   
$num = (int)$num;
else
   
$num 0;

sqgetGlobalVar('add',       $add,       SQ_POST);

sqgetGlobalVar('submit',    $submit);
sqgetGlobalVar('method',    $method);
if (!
sqgetGlobalVar('smtoken',$submitted_tokenSQ_FORM)) {
    
$submitted_token '';
}
/* end of get globals */

displayPageHeader($color'None');

   echo
   
html_tag'table''''center''''width="95%" border="0" cellpadding="1" cellspacing="0"' ) . 
   
html_tag'tr' ) . 
   
html_tag'td''''center'$color[0] ) .
   
'<b>' _("Options") . ' - ' _("Index Order") . '</b>' .
   
html_tag'table''''''''width="100%" border="0" cellpadding="8" cellspacing="0"' ) . 
   
html_tag'tr' ) . 
   
html_tag'td''''center'$color[4] );
 
    
$available[1] = _("Checkbox");
    
$available[2] = _("From");
    
$available[3] = _("Date");
    
$available[4] = _("Subject");
    
$available[5] = _("Flags");
    
$available[6] = _("Size");
    
    if (! isset(
$method)) { $method ''; }
 
    if (
$method == 'up' && $num && $num 1) {
        
$prev $num-1;
        
$tmp $index_order[$prev];
        
$index_order[$prev] = $index_order[$num];
        
$index_order[$num] = $tmp;
    } else if (
$method == 'down' && $num && $num count($index_order)) {
        
$next $num++;
        
$tmp $index_order[$next];
        
$index_order[$next] = $index_order[$num];
        
$index_order[$num] = $tmp;
    } else if (
$method == 'remove' && $num 0) {

        
// first do a security check
        
sm_validate_security_token($submitted_token3600TRUE);

        for (
$i=1$i 8$i++) {
            
removePref($data_dir$username"order$i"); 
        }
        for (
$j=1,$i=1$i <= count($index_order); $i++) {
           if (
$i != $num) {
               
$new_ary[$j] = $index_order[$i];
               
$j++;
           }
        }
        
$index_order = array();
        
$index_order $new_ary;
        if (
count($index_order) < 1) {
           include_once(
SM_PATH 'include/load_prefs.php');
        }
    } else if (
$method == 'add' && $add) {

        
// first do a security check
        
sm_validate_security_token($submitted_token3600TRUE);

        
/* User should not be able to insert PHP-code here */
        
$add str_replace ('<?''..'$add);
        
$add preg_replace ('/<.*script.*language.*php.*>/''..'$add);
        
$add str_replace ('<%''..'$add);
        
$index_order[count($index_order)+1] = $add;
    }
 
    if (
$method) {
        for (
$i=1$i <= count($index_order); $i++) {
           
setPref($data_dir$username"order$i"$index_order[$i]);
        }
    }
    echo 
html_tag'table',
                
html_tag'tr',
                    
html_tag'td',
                        
_("The index order is the order that the columns are arranged in the message index. You can add, remove, and move columns around to customize them to fit your needs.")
                    )
                ) ,
            
'''''''width="65%" border="0" cellpadding="0" cellspacing="0"' ) . "<br />\n";
 
    if (
count($index_order))
    {
        echo 
html_tag'table'''''''' cellspacing="0" cellpadding="0" border="0"' ) . "\n";
        for (
$i=1$i <= count($index_order); $i++) {
            
$tmp $index_order[$i];
            echo 
html_tag'tr' );
            echo 
html_tag'td''<small><a href="options_order.php?method=up&amp;num=' $i '">'_("up") .'</a></small>' );
            echo 
html_tag'td''<small>&nbsp;|&nbsp;</small>' );
            echo 
html_tag'td''<small><a href="options_order.php?method=down&amp;num=' $i '">'_("down") .'</a></small>' );
            echo 
html_tag'td''<small>&nbsp;|&nbsp;</small>' );
            echo 
html_tag'td' );
            
/* Always show the subject */
            
if ($tmp != 4)
               echo 
'<small><a href="options_order.php?method=remove&amp;num=' $i '&smtoken=' sm_generate_security_token() . '">' _("remove") . '</a></small>';
            else
               echo 
'&nbsp;'
            echo 
'</td>';
            echo 
html_tag'td''<small>&nbsp;-&nbsp;</small>' );
            echo 
html_tag'td'$available[$tmp] );
            echo 
'</tr>' "\n";
        }
        echo 
'</table>' "\n";
    }
    
    if (
count($index_order) != count($available)) {
        echo 
'<form name="f" method="post" action="options_order.php">' "\n"
           
addHidden('smtoken'sm_generate_security_token())
           . 
'<select name="add">' "\n";
        for (
$i=1$i <= count($available); $i++) {
            
$found false;
            for (
$j=1$j <= count($index_order); $j++) {
                if (
$index_order[$j] == $i) {
                    
$found true;
                }
            }
            if (!
$found) {
                echo 
"<option value=\"$i\">$available[$i]</option>";
            }
        }
        echo 
'</select>';
        echo 
'<input type="hidden" value="add" name="method" />';
        echo 
'<input type="submit" value="'._("Add").'" name="submit" />';
        echo 
'</form>';
    }
 
    echo 
html_tag'p''<a href="../src/options.php">' _("Return to options page") . '</a></p><br />' );

?>
    </td></tr>
    </table>

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