mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_saslauth: Don't print raw SASL data to avoid logging passwords unnecessarily
This commit is contained in:
parent
dfab166079
commit
88c9871069
1 changed files with 3 additions and 3 deletions
|
@ -69,13 +69,13 @@ local anonymous_authentication_profile = {
|
||||||
local function build_reply(status, ret, err_msg)
|
local function build_reply(status, ret, err_msg)
|
||||||
local reply = st.stanza(status, {xmlns = xmlns_sasl});
|
local reply = st.stanza(status, {xmlns = xmlns_sasl});
|
||||||
if status == "challenge" then
|
if status == "challenge" then
|
||||||
log("debug", "%s", ret or "");
|
--log("debug", "CHALLENGE: %s", ret or "");
|
||||||
reply:text(base64.encode(ret or ""));
|
reply:text(base64.encode(ret or ""));
|
||||||
elseif status == "failure" then
|
elseif status == "failure" then
|
||||||
reply:tag(ret):up();
|
reply:tag(ret):up();
|
||||||
if err_msg then reply:tag("text"):text(err_msg); end
|
if err_msg then reply:tag("text"):text(err_msg); end
|
||||||
elseif status == "success" then
|
elseif status == "success" then
|
||||||
log("debug", "%s", ret or "");
|
--log("debug", "SUCCESS: %s", ret or "");
|
||||||
reply:text(base64.encode(ret or ""));
|
reply:text(base64.encode(ret or ""));
|
||||||
else
|
else
|
||||||
module:log("error", "Unknown sasl status: %s", status);
|
module:log("error", "Unknown sasl status: %s", status);
|
||||||
|
@ -123,7 +123,7 @@ local function sasl_handler(session, stanza)
|
||||||
local text = stanza[1];
|
local text = stanza[1];
|
||||||
if text then
|
if text then
|
||||||
text = base64.decode(text);
|
text = base64.decode(text);
|
||||||
log("debug", "%s", text:gsub("[%z\001-\008\011\012\014-\031]", " "));
|
--log("debug", "AUTH: %s", text:gsub("[%z\001-\008\011\012\014-\031]", " "));
|
||||||
if not text then
|
if not text then
|
||||||
session.sasl_handler = nil;
|
session.sasl_handler = nil;
|
||||||
session.send(build_reply("failure", "incorrect-encoding"));
|
session.send(build_reply("failure", "incorrect-encoding"));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue