mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
Merge branch 'ent-12752-unauth-time-based-sql-injection' into 'develop'
Ent 12752 Unauth Time-Based SQL Injection See merge request artica/pandorafms!6861
This commit is contained in:
commit
013d2119d6
@ -23,7 +23,10 @@ if ($headers['X-DS-Authorization']) {
|
||||
|
||||
list($user, $password) = explode(':', base64_decode($headers['X-DS-Authorization']));
|
||||
|
||||
// Check user login
|
||||
// Prevent sql injection.
|
||||
$user = mysqli_real_escape_string($config['dbconnection'], $user);
|
||||
|
||||
// Check user login.
|
||||
$user_in_db = process_user_login($user, $password, true);
|
||||
|
||||
if ($user_in_db !== false) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user