这里有很多方法可以保护您的代码免受 SQL 注入攻击。但我需要的是如何记录 sql 注入攻击,以便我们可以将他(攻击者用户)添加到 blacklist-users 数据库中。
我在这里需要的是一种函数,如果有 sql 注入,它将返回 true。
<?php
if(isset($_POST['username'])){
// need a function here which will return true if there's
// a sql injection else false
}
?>