summary refs log tree commit diff
path: root/pkgs/servers/nginx-sso/rune.patch
blob: 5e5480787deca1b02bb6266948af315b1964f021 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git i/main.go w/main.go
index bf80f3d..632f7d6 100644
--- i/main.go
+++ w/main.go
@@ -174,7 +174,7 @@ func handleAuthRequest(res http.ResponseWriter, r *http.Request) {
 	case plugins.ErrNoValidUserFound:
 		// No valid user found, check whether special anonymous "user" has access
 		// Username is set to 0x0 character to prevent accidental whitelist-match
-		if mainCfg.ACL.HasAccess(string(0x0), nil, r) {
+		if mainCfg.ACL.HasAccess(string(rune(0x0)), nil, r) {
 			mainCfg.AuditLog.Log(auditEventValidate, r, map[string]string{"result": "anonymous access granted"}) // #nosec G104 - This is only logging
 			res.WriteHeader(http.StatusOK)
 			return