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 /
federated /
[ HOME SHELL ]
Name
Size
Permission
Action
include
[ DIR ]
drwxr-xr-x
disabled.def
440
B
-rw-r--r--
federated.result
112.41
KB
-rw-r--r--
federated.test
81.83
KB
-rw-r--r--
federated_archive.result
1.26
KB
-rw-r--r--
federated_archive.test
1.2
KB
-rw-r--r--
federated_bug_13118.result
747
B
-rw-r--r--
federated_bug_13118.test
847
B
-rw-r--r--
federated_bug_25714.result
1.21
KB
-rw-r--r--
federated_bug_25714.test
1.62
KB
-rw-r--r--
federated_bug_35333.result
2.67
KB
-rw-r--r--
federated_bug_35333.test
2.48
KB
-rw-r--r--
federated_debug-master.opt
49
B
-rw-r--r--
federated_debug.result
628
B
-rw-r--r--
federated_debug.test
1023
B
-rw-r--r--
federated_innodb-slave.opt
9
B
-rw-r--r--
federated_innodb.result
828
B
-rw-r--r--
federated_innodb.test
1.15
KB
-rw-r--r--
federated_plugin-master.opt
56
B
-rw-r--r--
federated_plugin.result
715
B
-rw-r--r--
federated_plugin.test
1
KB
-rw-r--r--
federated_server.result
8.28
KB
-rw-r--r--
federated_server.test
8.86
KB
-rw-r--r--
federated_transactions-slave.o...
15
B
-rw-r--r--
federated_transactions.result
1.34
KB
-rw-r--r--
federated_transactions.test
1.12
KB
-rw-r--r--
my.cnf
312
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : federated_bug_35333.result
# # Bug 35333 "If a Federated table can't connect to the remote hose, can't retrieve metadata" # # Queries such as SHOW TABLE STATUS and SELECT * FROM INFORMATION_SCHEMA.TABLES fail # when encountering a federated table that cannot connect to its remote table. # # The fix is to store the error text in the TABLE COMMENTS column of I_S.TABLES, clear # the remote connection error and push a warning instead. This allows the SELECT operation # to complete while still indicating a problem. This fix applies to any non-fatal system # error that occurs during a query against I_S.TABLES.de CREATE DATABASE federated; CREATE DATABASE federated; CREATE DATABASE IF NOT EXISTS realdb; DROP TABLE IF EXISTS realdb.t0; DROP TABLE IF EXISTS federated.t0; # # Create the base table to be referenced # CREATE TABLE realdb.t0 (a text, b text) ENGINE=MYISAM; # # Create a federated table with a bogus port number # CREATE TABLE federated.t0 (a text, b text) ENGINE=FEDERATED CONNECTION='mysql://root@127.0.0.1:63333/realdb/t0'; # # Trigger a federated system error during a INFORMATION_SCHEMA.TABLES query # SELECT TABLE_SCHEMA, TABLE_NAME, TABLE_TYPE, ENGINE, ROW_FORMAT, TABLE_ROWS, DATA_LENGTH, TABLE_COMMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'realdb' or TABLE_SCHEMA = 'federated'; TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE ROW_FORMAT TABLE_ROWS DATA_LENGTH TABLE_COMMENT federated t0 BASE TABLE FEDERATED NULL 0 Unable to connect to foreign data source: Can't connect to MySQL server on '127. realdb t0 BASE TABLE MyISAM Dynamic 0 0 Warnings: Warning 1429 Unable to connect to foreign data source: Can't connect to MySQL server on '127.0.0.1' (socket errno) SHOW WARNINGS; Level Code Message Warning 1429 Unable to connect to foreign data source: Can't connect to MySQL server on '127.0.0.1' (socket errno) # # Create a MyISAM table then corrupt the file # USE realdb; CREATE TABLE t1 (c1 int) ENGINE=MYISAM; # # Corrupt the MyISAM table by deleting the base file # # # Trigger a MyISAM system error during an INFORMATION_SCHEMA.TABLES query # SELECT TABLE_SCHEMA, TABLE_NAME, TABLE_TYPE, ENGINE, ROW_FORMAT, TABLE_ROWS, DATA_LENGTH, TABLE_COMMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 't1'; TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE ROW_FORMAT TABLE_ROWS DATA_LENGTH TABLE_COMMENT realdb t1 BASE TABLE NULL NULL NULL NULL Can't find file: 't1' (errno: 2) Warnings: Warning 1017 Can't find file: 't1' (errno: 2) SHOW WARNINGS; Level Code Message Warning 1017 Can't find file: 't1' (errno: 2) # # Cleanup # DROP TABLE IF EXISTS realdb.t0; DROP TABLE IF EXISTS federated.t0; DROP DATABASE realdb; DROP TABLE IF EXISTS federated.t1; DROP DATABASE federated; DROP TABLE IF EXISTS federated.t1; DROP DATABASE federated;
Close