Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.144.82.191
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
mysql /
mysql-test /
suite /
ndb_ddl /
[ HOME SHELL ]
Name
Size
Permission
Action
alter_rename.inc
4.59
KB
-rw-r--r--
alter_rename_copying.result
414
B
-rw-r--r--
alter_rename_copying.test
277
B
-rw-r--r--
alter_rename_inplace_force.res...
188
B
-rw-r--r--
alter_rename_inplace_force.tes...
698
B
-rw-r--r--
alter_rename_inplace_implicit....
192
B
-rw-r--r--
alter_rename_inplace_implicit....
567
B
-rw-r--r--
alter_rename_simple.result
302
B
-rw-r--r--
alter_rename_simple.test
301
B
-rw-r--r--
cleanup.inc
219
B
-rw-r--r--
list_objects.inc
1.61
KB
-rw-r--r--
my.cnf
554
B
-rw-r--r--
rename_single.result
331
B
-rw-r--r--
rename_single.test
456
B
-rw-r--r--
setup.inc
2.88
KB
-rw-r--r--
verify_mysql_dd.inc
850
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : list_objects.inc
if (!$create_table_name) { die Need the name of temporary table where to put list of objects; } if (!$list_table_name) { die Need the name of the table to list objects for; } --disable_query_log # Create temporary table for storing the original # list of objects in the table eval CREATE TEMPORARY TABLE $create_table_name ( id INT UNSIGNED PRIMARY KEY, type INT UNSIGNED, version INT UNSIGNED, state INT UNSIGNED, parent_obj_type INT UNSIGNED, parent_obj_id INT UNSIGNED, fq_name VARCHAR(512) ); # Split the table_name variable into db and name part # since ndbinfo.ndb$dict_obj_info.parent_fq_name uses format # db/catalog/name let $_db = `SELECT IF(INSTR('$list_table_name', '.'), SUBSTRING_INDEX('$list_table_name', '.', 1), 'ndb_ddl_test')`; # Default to ndb_ddl_test let $_name = `SELECT SUBSTRING_INDEX('$list_table_name', '.', -1)`; # Create a view on top of ndbinfo.ndb$dict_obj_info (as otherwise # the dollar sign is evaluated as a dollar-variable and there seem # to be no way to escape it) CREATE VIEW test.ndbinfo_dict_obj_info as SELECT id, type, version, state, parent_obj_type, parent_obj_id, fq_name FROM ndbinfo.ndb$dict_obj_info; let $table_id = `SELECT id FROM test.ndbinfo_dict_obj_info WHERE fq_name = '$_db/def/$_name'`; eval INSERT INTO $create_table_name SELECT * FROM test.ndbinfo_dict_obj_info WHERE parent_obj_id = $table_id; DROP VIEW test.ndbinfo_dict_obj_info; # Show the object list #eval select * from $create_table_name; --enable_query_log # Reset arguments let $create_table_name =; let $list_table_name =;
Close