SQL injection authentication bypass
I am testing a SQLi login bypass on the PHP code below:
if(isset($_POST[“login”]) && isset($_POST[“password”])) {
$sql=”select * from users where login='{$_POST[“login”]}’ and password='{$_POST[“password”]}'”;
… Continue reading SQL injection authentication bypass