Allow ampersands in passwords for SASL PLAIN mechanism. sasl

Fri, 28 Aug 2009 19:20:12 +0200

author
Tobias Markmann <tm@ayena.de>
date
Fri, 28 Aug 2009 19:20:12 +0200
branch
sasl
changeset 2176
8de2f7f5b870
parent 2175
c985536d5452
child 2177
d5cd6a868959

Allow ampersands in passwords for SASL PLAIN mechanism.

util/sasl.lua file | annotate | diff | comparison | revisions
--- a/util/sasl.lua	Fri Aug 28 13:04:38 2009 +0200
+++ b/util/sasl.lua	Fri Aug 28 19:20:12 2009 +0200
@@ -119,9 +119,9 @@
 --SASL PLAIN
 local function sasl_mechanism_plain(self, message)
 	local response = message
-	local authorization = s_match(response, "([^&%z]+)")
-	local authentication = s_match(response, "%z([^&%z]+)%z")
-	local password = s_match(response, "%z[^&%z]+%z([^&%z]+)")
+	local authorization = s_match(response, "([^%z]+)")
+	local authentication = s_match(response, "%z([^%z]+)%z")
+	local password = s_match(response, "%z[^%z]+%z([^%z]+)")
 
 	if authentication == nil or password == nil then
 		return "failure", "malformed-request";

mercurial