mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Sanitize debugging information so it won't break terminal emulation when using GSSAPI auth.
This commit is contained in:
parent
6a6004339d
commit
04a38eb6c5
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ local function sasl_handler(session, stanza)
|
|||
local text = stanza[1];
|
||||
if text then
|
||||
text = base64.decode(text);
|
||||
log("debug", "%s", text); -- FIXME: binary output will screw up the terminal
|
||||
log("debug", "%s", text:gsub("[%z\001-\009\011\012\014-\031]", " "));
|
||||
if not text then
|
||||
session.sasl_handler = nil;
|
||||
session.send(build_reply("failure", "incorrect-encoding"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue