mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-12-07 22:10:59 +01:00
fix possible sql injection in public/forgotpass
This commit is contained in:
parent
9d930af9e1
commit
2352c320c2
@ -688,7 +688,7 @@ class Handler_Public extends Handler {
|
||||
@$method = $_POST['method'];
|
||||
|
||||
if ($hash) {
|
||||
$login = $_REQUEST["login"];
|
||||
$login = $this->dbh->escape_string($_REQUEST["login"]);
|
||||
|
||||
if ($login) {
|
||||
$result = $this->dbh->query("SELECT id, resetpass_token FROM ttrss_users
|
||||
@ -1018,4 +1018,4 @@ class Handler_Public extends Handler {
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user