Slide 30
Slide 30 text
题型6. 字符替换空型WAF
$str = str_replace("select", "", $str);
$str = str_replace("union", "", $str);
$str = str_replace("into", "", $str);
test.php?str=-1 uniunionon selselectect 1,2,3,4,5 from `admin` limit 1
常见纸老虎1:一大堆非常严格的过滤,最后出现一处字符串替换空型WAF。
30