···11-diff --git i/main.go w/main.go
22-index bf80f3d..632f7d6 100644
33---- i/main.go
44-+++ w/main.go
55-@@ -174,7 +174,7 @@ func handleAuthRequest(res http.ResponseWriter, r *http.Request) {
66- case plugins.ErrNoValidUserFound:
77- // No valid user found, check whether special anonymous "user" has access
88- // Username is set to 0x0 character to prevent accidental whitelist-match
99-- if mainCfg.ACL.HasAccess(string(0x0), nil, r) {
1010-+ if mainCfg.ACL.HasAccess(string(rune(0x0)), nil, r) {
1111- mainCfg.AuditLog.Log(auditEventValidate, r, map[string]string{"result": "anonymous access granted"}) // #nosec G104 - This is only logging
1212- res.WriteHeader(http.StatusOK)
1313- return