在 hakipedia 上通过 sql 注入,我知道注入被假定为沿着一个参数(它成为服务器端 sql 查询的一部分)。
例如
select news from news_table where id=1
被攻击为
select news from news_table where id=NULL UNION ALL select * from users
但是,在信息模式(http://hakipedia.com/index.php/SQL_Injection#INFORMATION_SCHEMA)和 Mysql Benchmark(http://hakipedia.com/index.php/SQL_Injection#MySQL_BENCHMARK)注入向量中,UNION ALL 之前的 NULL 是没有明确说明。这是正确的还是我错过了什么?