mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
* missing base64 decode of SASL response
This commit is contained in:
parent
a7012d4923
commit
0b6ee8b38a
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ function sasl:new_plain(onAuth, onSuccess, onFail, onWrite)
|
|||
object.feed = function(self, stanza)
|
||||
if (stanza.name ~= "response") then self.onFail() end
|
||||
if (stanza.attr.xmlns ~= "urn:ietf:params:xml:ns:xmpp-sasl") then self.onFail() end
|
||||
local response = stanza.tag[1]
|
||||
local response = base64.decode(stanza.tag[1])
|
||||
local authorization = string.match(response, [[([^&\0]+)]])
|
||||
local authentication = string.match(response, [[\0([^&\0]+)\0]])
|
||||
local password = string.match(response, [[\0[^&\0]+\0([^&\0]+)]])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue