summaryrefslogtreecommitdiff
path: root/classes/api.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-25 15:39:46 +0300
committerAndrew Dolgov <[email protected]>2021-02-25 15:39:46 +0300
commit59c14e9c0001bc7a01763ecc7d3042dcde978a1a (patch)
tree0b50328be7b8374308fc130cb5440edd9f03c5c2 /classes/api.php
parentefd196839a20ae7e38be227c62b9c134ddec4bea (diff)
api: remove base64 encoded passwords (wtf), log all authentication failures in userhelper
Diffstat (limited to 'classes/api.php')
-rwxr-xr-xclasses/api.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/classes/api.php b/classes/api.php
index 3c6795327..a0ee773c1 100755
--- a/classes/api.php
+++ b/classes/api.php
@@ -68,20 +68,15 @@ class API extends Handler {
$login = clean($_REQUEST["user"]);
$password = clean($_REQUEST["password"]);
- $password_base64 = base64_decode(clean($_REQUEST["password"]));
if (Config::get(Config::SINGLE_USER_MODE)) $login = "admin";
if ($uid = UserHelper::find_user_by_login($login)) {
if (get_pref(Prefs::ENABLE_API_ACCESS, $uid)) {
- if (UserHelper::authenticate($login, $password, false, Auth_Base::AUTH_SERVICE_API)) { // try login with normal password
+ if (UserHelper::authenticate($login, $password, false, Auth_Base::AUTH_SERVICE_API)) {
$this->_wrap(self::STATUS_OK, array("session_id" => session_id(),
"api_level" => self::API_LEVEL));
- } else if (UserHelper::authenticate($login, $password_base64, false, Auth_Base::AUTH_SERVICE_API)) { // else try with base64_decoded password
- $this->_wrap(self::STATUS_OK, array("session_id" => session_id(),
- "api_level" => self::API_LEVEL));
- } else { // else we are not logged in
- user_error("Failed login attempt for $login from " . UserHelper::get_user_ip(), E_USER_WARNING);
+ } else {
$this->_wrap(self::STATUS_ERR, array("error" => self::E_LOGIN_ERROR));
}
} else {