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 | : 3.149.214.28
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.back /
v2021 /
framework /
Web /
[ HOME SHELL ]
Name
Size
Permission
Action
Javascripts
[ DIR ]
drwxr-xr-x
Services
[ DIR ]
drwxr-xr-x
UI
[ DIR ]
drwxr-xr-x
TAssetManager.php
11.57
KB
-rw-r--r--
TCacheHttpSession.php
4.06
KB
-rw-r--r--
THttpRequest.php
34.6
KB
-rw-r--r--
THttpResponse.php
20.53
KB
-rw-r--r--
THttpResponseAdapter.php
1.85
KB
-rw-r--r--
THttpSession.php
18.78
KB
-rw-r--r--
THttpUtility.php
1.43
KB
-rw-r--r--
TUrlManager.php
5.07
KB
-rw-r--r--
TUrlMapping.php
31.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : THttpResponseAdapter.php
<?php /** * THttpResponseAdatper class * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ * @package System.Web */ /** * THttpResponseAdapter class. * * THttpResponseAdapter allows the base http response class to change behavior * without change the class hierarchy. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @version $Id$ * @package System.Web * @since 3.0 */ class THttpResponseAdapter extends TApplicationComponent { /** * @var THttpResponse the response object the adapter is attached. */ private $_response; /** * Constructor. Attach a response to be adapted. * @param THttpResponse the response object the adapter is to attach to. */ public function __construct($response) { $this->_response=$response; } /** * @return THttpResponse the response object adapted. */ public function getResponse() { return $this->_response; } /** * This method is invoked when the response flushes the content and headers. * Default implementation calls the attached response flushContent method. */ public function flushContent() { $this->_response->flushContent(); } /** * This method is invoked when the response is to redirect to another page. * @param string new url to redirect to. */ public function httpRedirect($url) { $this->_response->httpRedirect($url); } /** * This method is invoked when a new HtmlWriter needs to be created. * Default implementation calls the attached response createNewHtmlWriter method. * @param string type of the HTML writer to be created. * @param ITextWriter the writer responsible for holding the content. */ public function createNewHtmlWriter($type, $writer) { return $this->_response->createNewHtmlWriter($type,$writer); } }
Close