mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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);
|
||||
|
||||
if not username or username == "" then
|
||||
return "failure", "malformed-request", "Expected authorization identity in the username@hostname format";
|
||||
end
|
||||
|
||||
-- SASLprep username
|
||||
username = saslprep(username);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue