mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.sasl.oauthbearer: Fix traceback on authz in unexpected format
E.g. if you were to just pass "username" without @hostname, the split will return nil, "username" and the nil gets passed to saslprep() and it does not like that.
This commit is contained in:
parent
9e02d322d8
commit
aabfdaf01a
1 changed files with 4 additions and 0 deletions
|
@ -34,6 +34,10 @@ local function oauthbearer(self, message)
|
||||||
|
|
||||||
local username = jid.prepped_split(gs2_authzid);
|
local username = jid.prepped_split(gs2_authzid);
|
||||||
|
|
||||||
|
if not username or username == "" then
|
||||||
|
return "failure", "malformed-request", "Expected authorization identity in the username@hostname format";
|
||||||
|
end
|
||||||
|
|
||||||
-- SASLprep username
|
-- SASLprep username
|
||||||
username = saslprep(username);
|
username = saslprep(username);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue