mod_saslauth: Sanitize debugging information so it won't break terminal emulation when using GSSAPI auth.

This commit is contained in:
Tobias Markmann 2009-12-23 23:09:44 +01:00
parent 6a6004339d
commit 04a38eb6c5

View file

@ -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"));