aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2009-08-19 21:59:16 +0200
committerTobias Markmann <tm@ayena.de>2009-08-19 21:59:16 +0200
commit563d1911f2f8109a12d5ba816deaf2ef7127a96b (patch)
tree5b399d34213d63148eb8d97f9e58845890e99a0d /plugins
parentfdf06e3692b59d4e34da988b9c976336fb15766b (diff)
downloadprosody-563d1911f2f8109a12d5ba816deaf2ef7127a96b.tar.gz
prosody-563d1911f2f8109a12d5ba816deaf2ef7127a96b.zip
Use NODEprep for prepping usernames used during SASL logins.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_saslauth.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua
index 8d1e0529..32269221 100644
--- a/plugins/mod_saslauth.lua
+++ b/plugins/mod_saslauth.lua
@@ -12,7 +12,7 @@ local st = require "util.stanza";
local sm_bind_resource = require "core.sessionmanager".bind_resource;
local sm_make_authenticated = require "core.sessionmanager".make_authenticated;
local base64 = require "util.encodings".base64;
-
+local nodeprep = require "util.encodings".stringprep.nodeprep;
local datamanager_load = require "util.datamanager".load;
local usermanager_validate_credentials = require "core.usermanager".validate_credentials;
local t_concat, t_insert = table.concat, table.insert;
@@ -65,8 +65,12 @@ local function handle_status(session, status)
end
local function password_callback(node, hostname, realm, mechanism, decoder)
- local password = (datamanager_load(node, hostname, "accounts") or {}).password; -- FIXME handle hashed passwords
local func = function(x) return x; end;
+ local node = nodeprep(node);
+ if not node then
+ return func, nil;
+ end
+ local password = (datamanager_load(node, hostname, "accounts") or {}).password; -- FIXME handle hashed passwords
if password then
if mechanism == "PLAIN" then
return func, password;