mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_tokenauth: Fix parsing binary part of tokens
Fixes parsing of tokens that happen to have a `;` in their secret part, otherwise it splits there and the later bit goes into the username and hitting the "Invalid token in storage" condition.
This commit is contained in:
parent
816d0819f2
commit
a68169b93e
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ local function parse_token(encoded_token)
|
|||
if not encoded_data then return nil; end
|
||||
local token = base64.decode(encoded_data);
|
||||
if not token then return nil; end
|
||||
local token_id, token_secret, token_jid = token:match("^2;([^;]+);([^;]+);(.+)$");
|
||||
local token_id, token_secret, token_jid = token:match("^2;([^;]+);(..................);(.+)$");
|
||||
if not token_id then return nil; end
|
||||
local token_user, token_host = jid.split(token_jid);
|
||||
return token_id, token_user, token_host, token_secret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue