util.sasl.oauthbearer: Tighter parsing of SASL message
authorKim Alvefur <zash@zash.se>
Fri, 26 May 2023 17:39:53 +0200
changeset 13116 b6aaab0846fe
parent 13115 8576f94ac90a
child 13117 191fe4866e3e
util.sasl.oauthbearer: Tighter parsing of SASL message Previously the kvsep before and after the kvpairs would have been included in kvpairs, which is incorrect but should be harmless.
util/sasl/oauthbearer.lua
--- a/util/sasl/oauthbearer.lua	Wed May 24 15:35:28 2023 +0200
+++ b/util/sasl/oauthbearer.lua	Fri May 26 17:39:53 2023 +0200
@@ -11,12 +11,14 @@
 		return "failure", "not-authorized";
 	end
 
-	local gs2_header, kvpairs = message:match("^(n,[^,]*,)(.+)$");
+	-- gs2-header kvsep *kvpair kvsep
+	local gs2_header, kvpairs = message:match("^(n,[^,]*,)\001(.+)\001$");
 	if not gs2_header then
 		return "failure", "malformed-request";
 	end
 	local gs2_authzid = gs2_header:match("^[^,]*,a=([^,]*),$");
 
+	-- key "=" value kvsep
 	local auth_header;
 	for k, v in kvpairs:gmatch("([a-zA-Z]+)=([\033-\126 \009\r\n]*)\001") do
 		if k == "auth" then