Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime error: index out of range [0] with length 0 while extracting state of of the csrf #2311

Closed
jesinity opened this issue Nov 7, 2023 · 11 comments

Comments

@jesinity
Copy link

jesinity commented Nov 7, 2023

Context

I'm trying to integrate the oauth2-proxy in my app.
Tried so many different options, started from version 7.3 then upgraded to 7.5 unsuccessfully.

Setup

  • authentication provided by an app registration in Azure B2C (got the same error on a plain Azure AD)
  • deployment on Azure Kubernetes Service, with Nginx ingress controller
  • image of oauth2-proxy is: quay.io/oauth2-proxy/oauth2-proxy:7.5.1

Configuration

my app ingress:

...
  annotations:
    cert-manager.io/cluster-issuer: letsencrypt
    meta.helm.sh/release-name: my-app-service
    meta.helm.sh/release-namespace: my-namespace
    nginx.ingress.kubernetes.io/affinity: cookie
    nginx.ingress.kubernetes.io/auth-response-headers: Authorization,X-Forwarded-Uri,X-Forwarded-Access-Token,X-Forwarded-For,X-Forwarded-Proto
    nginx.ingress.kubernetes.io/auth-signin: https://myservice.mydomain.com/oauth2/start?rd=https://myservice.mydomain.com/oauth2/callback
    nginx.ingress.kubernetes.io/auth-url: https://myservice.mydomain.com/oauth2/auth
    nginx.ingress.kubernetes.io/proxy-body-size: 2000m
    nginx.ingress.kubernetes.io/proxy-buffer-size: 64k
    nginx.ingress.kubernetes.io/rewrite-target: /
    nginx.ingress.kubernetes.io/session-cookie-expires: '172800'
    nginx.ingress.kubernetes.io/session-cookie-hash: sha1
    nginx.ingress.kubernetes.io/session-cookie-max-age: '172800'
    nginx.ingress.kubernetes.io/session-cookie-name: route
    nginx.ingress.kubernetes.io/ssl-redirect: 'true'

oauth2-proxy ingress

...
 annotations:
    cert-manager.io/cluster-issuer: letsencrypt
    meta.helm.sh/release-name: my-app-service
    meta.helm.sh/release-namespace: my-domain
    nginx.ingress.kubernetes.io/auth-response-headers: Authorization,X-Forwarded-Access-Token,X-Forwarded-For,X-Forwarded-Uri,X-Forwarded-Proto
    nginx.ingress.kubernetes.io/proxy-body-size: 2000m
    nginx.ingress.kubernetes.io/proxy-buffer-size: 32k
    nginx.ingress.kubernetes.io/proxy-buffers-number: '8'
    nginx.ingress.kubernetes.io/ssl-redirect: 'true'
...

oauth2-proxy deployment

      containers:
        - name: oauth-proxy
          image: quay.io/oauth2-proxy/oauth2-proxy:v7.5.1
          args:
            - '--provider=oidc'
            - '--cookie-secure=true'
            - '--azure-tenant=<my-tenant-id>'
            - '--pass-access-token=true'
            - '--set-xauthrequest=true'
            - '--set-authorization-header=true'
            - '--cookie-name=_proxycookie'
            - '--email-domain=*'
            - '--upstream=file:///dev/null'
            - '--http-address=0.0.0.0:4180'
            - '--whitelist-domain=*.mydomain.com'
            - '--cookie-csrf-per-request=true'
            - '--cookie-csrf-expire=5m'
            - >-
              --oidc-issuer-url=https://login.microsoftonline.com/<my tenant>/v2.0

Behaviour

First off, the flow works correctly if I omit the --whitelist-domain=*.mydomain.com. The oauth flow performs correctly, I authenticated then get redirected to my app.

Then I noticed that I have the cookie, but the bearer token was not propagated to my app: that's what I want to happen to further act on the JWT token that I received.

I further inspected the logs and saw logs like:

Rejecting invalid redirect "https://myservice.mydomain.com/oauth2/callback": domain / port not in whitelist

The I added the whitelist domain mentioned above, that warning disappeared but other issues came about.
The new issue is that, after the successful login, once the app gets redirects to the oauth2/callback#, I get the error

image

So I upgraded to last version, 7.5.1 from 7.3: that has these new options:

--cookie-csrf-per-request=true
--cookie-csrf-expire=5m

as this issue suggests:
#1937

I added these 2 options then I get this new error, quite scary:

[2023/11/07 10:43:05] [session_store.go:170] WARNING: Multiple cookies are required for this session as it exceeds the 4kb cookie limit. Please use server side session storage (eg. Redis) instead.
10.16.0.176:51626 - 8be03117218efab26769455232d4e912 - - [2023/11/07 10:43:04] myservice.mydomain.com GET - "/oauth2/callback?code=<asuperlongHEXstring>&state=<somethingRedacted>%3ahttps%3a%2f%2fmyservice.mydomain.com%2foauth2%2fcallback&session_state=<somethingElseRedacted>" HTTP/1.1 "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.2 Safari/605.1.15" 302 80 0.454
2023/11/07 10:43:05 http: panic serving 10.16.0.176:51626: runtime error: index out of range [0] with length 0
goroutine 81 [running]:
net/http.(*conn).serve.func1()
	/usr/local/go/src/net/http/server.go:1850 +0xbf
panic({0xe00a80, 0xc0000de330})
	/usr/local/go/src/runtime/panic.go:890 +0x262
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc00025f301?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0x203000?, 0xc00024e520)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc0003aeb00, 0x0?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27
main.(*OAuthProxy).OAuthCallback(0xc0002361a0, {0x7efef77e81f8, 0xc000254660}, 0xc0003aeb00)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335
net/http.HandlerFunc.ServeHTTP(0x7efef77e81f8?, {0x7efef77e81f8?, 0xc000254660?}, 0xc000254660?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
main.prepareNoCacheMiddleware.func1({0x7efef77e81f8, 0xc000254660}, 0x4c5017?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c
net/http.HandlerFunc.ServeHTTP(0xc000254630?, {0x7efef77e81f8?, 0xc000254660?}, 0xc00025f418?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7efef77e81f8, 0xc000254660}, 0xc0003aeb00)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf
net/http.HandlerFunc.ServeHTTP(0xab3c7e?, {0x7efef77e81f8?, 0xc000254660?}, 0xc000254630?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7efef77e81f8, 0xc000254660}, 0x1035600?)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4
net/http.HandlerFunc.ServeHTTP(0x1035630?, {0x7efef77e81f8?, 0xc000254660?}, 0x1?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x1035630?, 0xc0000c0340?}, 0xc0003aeb00)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8
net/http.HandlerFunc.ServeHTTP(0xc0002dc000?, {0x1035630?, 0xc0000c0340?}, 0xe7462e?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x1035630?, 0xc0000c0340?}, 0xc0003aeb00?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc0000c0340?}, 0x10?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x1035630, 0xc0000c0340}, 0x4c5001?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc0000c0340?}, 0x0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x10361d0?, 0xc000296000}, 0xc0003aeb00)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127
net/http.HandlerFunc.ServeHTTP(0xc0003aea00?, {0x10361d0?, 0xc000296000?}, 0x102ba01?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x10361d0, 0xc000296000}, 0xc0002545d0?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc
net/http.HandlerFunc.ServeHTTP(0xc0003ae900?, {0x10361d0?, 0xc000296000?}, 0xc00025fa58?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/gorilla/mux.(*Router).ServeHTTP(0xc0003e80c0, {0x10361d0, 0xc000296000}, 0xc0003ae600)
	/go/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf
main.(*OAuthProxy).ServeHTTP(0x0?, {0x10361d0?, 0xc000296000?}, 0x46818e?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a
net/http.serverHandler.ServeHTTP({0xc000200390?}, {0x10361d0, 0xc000296000}, 0xc0003ae600)
	/usr/local/go/src/net/http/server.go:2947 +0x30c
net/http.(*conn).serve(0xc0001aebe0, {0x1036d78, 0xc000120390})
	/usr/local/go/src/net/http/server.go:1991 +0x607
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:3102 +0x4db
2023/11/07 10:43:05 http: panic serving 10.16.0.176:51614: runtime error: index out of range [0] with length 0
goroutine 69 [running]:
net/http.(*conn).serve.func1()
/usr/local/go/src/net/http/server.go:1850 +0xbf
panic({0xe00a80, 0xc0000de390})
	/usr/local/go/src/runtime/panic.go:890 +0x262
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc0001cb301?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0x203000?, 0xc00024e520)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc0003af000, 0x0?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27
main.(*OAuthProxy).OAuthCallback(0xc0002361a0, {0x7efef77e81f8, 0xc000254db0}, 0xc0003af000)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335
net/http.HandlerFunc.ServeHTTP(0x7efef77e81f8?, {0x7efef77e81f8?, 0xc000254db0?}, 0xc000254db0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
main.prepareNoCacheMiddleware.func1({0x7efef77e81f8, 0xc000254db0}, 0x4c5017?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c
net/http.HandlerFunc.ServeHTTP(0xc000254d80?, {0x7efef77e81f8?, 0xc000254db0?}, 0xc0001cb418?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7efef77e81f8, 0xc000254db0}, 0xc0003af000)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf
net/http.HandlerFunc.ServeHTTP(0xab3c7e?, {0x7efef77e81f8?, 0xc000254db0?}, 0xc000254d80?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7efef77e81f8, 0xc000254db0}, 0x1035600?)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4
net/http.HandlerFunc.ServeHTTP(0x1035630?, {0x7efef77e81f8?, 0xc000254db0?}, 0x1?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x1035630?, 0xc0000c0540?}, 0xc0003af000)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8
net/http.HandlerFunc.ServeHTTP(0xc0002dc1b0?, {0x1035630?, 0xc0000c0540?}, 0xe7462e?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x1035630?, 0xc0000c0540?}, 0xc0003af000?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc0000c0540?}, 0x10?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x1035630, 0xc0000c0540}, 0x4c5001?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc0000c0540?}, 0x0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x10361d0?, 0xc0002960e0}, 0xc0003af000)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127
net/http.HandlerFunc.ServeHTTP(0xc0003aef00?, {0x10361d0?, 0xc0002960e0?}, 0x102ba01?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x10361d0, 0xc0002960e0}, 0xc000254cf0?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc
net/http.HandlerFunc.ServeHTTP(0xc0003aee00?, {0x10361d0?, 0xc0002960e0?}, 0xc0001cba58?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/gorilla/mux.(*Router).ServeHTTP(0xc0003e80c0, {0x10361d0, 0xc0002960e0}, 0xc00020fa00)
	/go/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf
main.(*OAuthProxy).ServeHTTP(0x0?, {0x10361d0?, 0xc0002960e0?}, 0x46818e?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a
net/http.serverHandler.ServeHTTP({0xc000295ce0?}, {0x10361d0, 0xc0002960e0}, 0xc00020fa00)
	/usr/local/go/src/net/http/server.go:2947 +0x30c
net/http.(*conn).serve(0xc0002c7680, {0x1036d78, 0xc000120390})
	/usr/local/go/src/net/http/server.go:1991 +0x607
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:3102 +0x4db
2023/11/07 10:43:05 http: panic serving 10.16.0.176:50240: runtime error: index out of range [0] with length 0
goroutine 157 [running]:
net/http.(*conn).serve.func1()
	/usr/local/go/src/net/http/server.go:1850 +0xbf
panic({0xe00a80, 0xc0002060f0})
	/usr/local/go/src/runtime/panic.go:890 +0x262
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc000261301?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0x203000?, 0xc00024e520)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc00020ea00, 0x0?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27
main.(*OAuthProxy).OAuthCallback(0xc0002361a0, {0x7efef77e81f8, 0xc00028e7b0}, 0xc00020ea00)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335
net/http.HandlerFunc.ServeHTTP(0x7efef77e81f8?, {0x7efef77e81f8?, 0xc00028e7b0?}, 0xc00028e7b0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
main.prepareNoCacheMiddleware.func1({0x7efef77e81f8, 0xc00028e7b0}, 0x4c5017?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c
net/http.HandlerFunc.ServeHTTP(0xc00028e780?, {0x7efef77e81f8?, 0xc00028e7b0?}, 0xc000261418?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7efef77e81f8, 0xc00028e7b0}, 0xc00020ea00)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf
net/http.HandlerFunc.ServeHTTP(0xab3c7e?, {0x7efef77e81f8?, 0xc00028e7b0?}, 0xc00028e780?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7efef77e81f8, 0xc00028e7b0}, 0x1035600?)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4
net/http.HandlerFunc.ServeHTTP(0x1035630?, {0x7efef77e81f8?, 0xc00028e7b0?}, 0x1?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x1035630?, 0xc0004422c0?}, 0xc00020ea00)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8
net/http.HandlerFunc.ServeHTTP(0xc00020c120?, {0x1035630?, 0xc0004422c0?}, 0xe7462e?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x1035630?, 0xc0004422c0?}, 0xc00020ea00?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc0004422c0?}, 0x10?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x1035630, 0xc0004422c0}, 0x4c5001?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc0004422c0?}, 0x0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x10361d0?, 0xc00011c380}, 0xc00020ea00)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127
net/http.HandlerFunc.ServeHTTP(0xc00020e900?, {0x10361d0?, 0xc00011c380?}, 0x102ba01?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x10361d0, 0xc00011c380}, 0xc00028e720?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc
net/http.HandlerFunc.ServeHTTP(0xc00020e200?, {0x10361d0?, 0xc00011c380?}, 0xc000359a58?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/gorilla/mux.(*Router).ServeHTTP(0xc0003e80c0, {0x10361d0, 0xc00011c380}, 0xc00020e100)
	/go/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf
main.(*OAuthProxy).ServeHTTP(0x0?, {0x10361d0?, 0xc00011c380?}, 0x46818e?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a
net/http.serverHandler.ServeHTTP({0xc00028e090?}, {0x10361d0, 0xc00011c380}, 0xc00020e100)
	/usr/local/go/src/net/http/server.go:2947 +0x30c
net/http.(*conn).serve(0xc0001aee60, {0x1036d78, 0xc000120390})
	/usr/local/go/src/net/http/server.go:1991 +0x607
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:3102 +0x4db
2023/11/07 10:44:54 http: panic serving 10.16.0.176:54006: runtime error: index out of range [0] with length 0
goroutine 179 [running]:
net/http.(*conn).serve.func1()
/usr/local/go/src/net/http/server.go:1850 +0xbf
panic({0xe00a80, 0xc0000de660})
	/usr/local/go/src/runtime/panic.go:890 +0x262
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc0001c7301?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0x203000?, 0xc00024e520)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc0003af500, 0x0?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27
main.(*OAuthProxy).OAuthCallback(0xc0002361a0, {0x7efef77e81f8, 0xc000255620}, 0xc0003af500)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335
net/http.HandlerFunc.ServeHTTP(0x7efef77e81f8?, {0x7efef77e81f8?, 0xc000255620?}, 0xc000255620?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
main.prepareNoCacheMiddleware.func1({0x7efef77e81f8, 0xc000255620}, 0x4c5017?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c
net/http.HandlerFunc.ServeHTTP(0xc0002555f0?, {0x7efef77e81f8?, 0xc000255620?}, 0xc0001c7418?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7efef77e81f8, 0xc000255620}, 0xc0003af500)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf
net/http.HandlerFunc.ServeHTTP(0xab3c7e?, {0x7efef77e81f8?, 0xc000255620?}, 0xc0002555f0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7efef77e81f8, 0xc000255620}, 0x1035600?)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4
net/http.HandlerFunc.ServeHTTP(0x1035630?, {0x7efef77e81f8?, 0xc000255620?}, 0x1?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x1035630?, 0xc0000c0800?}, 0xc0003af500)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8
net/http.HandlerFunc.ServeHTTP(0xc0002dc360?, {0x1035630?, 0xc0000c0800?}, 0xe7462e?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x1035630?, 0xc0000c0800?}, 0xc0003af500?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc0000c0800?}, 0x10?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x1035630, 0xc0000c0800}, 0x4c5001?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc0000c0800?}, 0x0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x10361d0?, 0xc0002961c0}, 0xc0003af500)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127
net/http.HandlerFunc.ServeHTTP(0xc0003af400?, {0x10361d0?, 0xc0002961c0?}, 0x102ba01?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x10361d0, 0xc0002961c0}, 0xc000255590?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc
net/http.HandlerFunc.ServeHTTP(0xc0003af300?, {0x10361d0?, 0xc0002961c0?}, 0xc00035ea58?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/gorilla/mux.(*Router).ServeHTTP(0xc0003e80c0, {0x10361d0, 0xc0002961c0}, 0xc0003af200)
	/go/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf
main.(*OAuthProxy).ServeHTTP(0x0?, {0x10361d0?, 0xc0002961c0?}, 0x46818e?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a
net/http.serverHandler.ServeHTTP({0xc000254f90?}, {0x10361d0, 0xc0002961c0}, 0xc0003af200)
	/usr/local/go/src/net/http/server.go:2947 +0x30c
net/http.(*conn).serve(0xc0002c60a0, {0x1036d78, 0xc000120390})
	/usr/local/go/src/net/http/server.go:1991 +0x607
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:3102 +0x4db
2023/11/07 10:44:54 http: panic serving 10.16.0.176:54010: runtime error: index out of range [0] with length 0
goroutine 197 [running]:
net/http.(*conn).serve.func1()
/usr/local/go/src/net/http/server.go:1850 +0xbf
panic({0xe00a80, 0xc000206198})
	/usr/local/go/src/runtime/panic.go:890 +0x262
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc000261301?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0x203000?, 0xc00024e520)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc00020f000, 0x0?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27
main.(*OAuthProxy).OAuthCallback(0xc0002361a0, {0x7efef77e81f8, 0xc00028f0e0}, 0xc00020f000)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335
net/http.HandlerFunc.ServeHTTP(0x7efef77e81f8?, {0x7efef77e81f8?, 0xc00028f0e0?}, 0xc00028f0e0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
main.prepareNoCacheMiddleware.func1({0x7efef77e81f8, 0xc00028f0e0}, 0x4c5017?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c
net/http.HandlerFunc.ServeHTTP(0xc00028f0b0?, {0x7efef77e81f8?, 0xc00028f0e0?}, 0xc000261418?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7efef77e81f8, 0xc00028f0e0}, 0xc00020f000)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf
net/http.HandlerFunc.ServeHTTP(0xab3c7e?, {0x7efef77e81f8?, 0xc00028f0e0?}, 0xc00028f0b0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7efef77e81f8, 0xc00028f0e0}, 0x1035600?)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4
net/http.HandlerFunc.ServeHTTP(0x1035630?, {0x7efef77e81f8?, 0xc00028f0e0?}, 0x1?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x1035630?, 0xc000442680?}, 0xc00020f000)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8
net/http.HandlerFunc.ServeHTTP(0xc00020c6c0?, {0x1035630?, 0xc000442680?}, 0xe7462e?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x1035630?, 0xc000442680?}, 0xc00020f000?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc000442680?}, 0x10?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x1035630, 0xc000442680}, 0x4c5001?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc000442680?}, 0x0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x10361d0?, 0xc00011c460}, 0xc00020f000)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127
net/http.HandlerFunc.ServeHTTP(0xc00020ee00?, {0x10361d0?, 0xc00011c460?}, 0x102ba01?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x10361d0, 0xc00011c460}, 0xc00028f050?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc
net/http.HandlerFunc.ServeHTTP(0xc00020ec00?, {0x10361d0?, 0xc00011c460?}, 0xc00035da58?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/gorilla/mux.(*Router).ServeHTTP(0xc0003e80c0, {0x10361d0, 0xc00011c460}, 0xc00020eb00)
	/go/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf
main.(*OAuthProxy).ServeHTTP(0x0?, {0x10361d0?, 0xc00011c460?}, 0x46818e?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a
net/http.serverHandler.ServeHTTP({0xc00028e900?}, {0x10361d0, 0xc00011c460}, 0xc00020eb00)
	/usr/local/go/src/net/http/server.go:2947 +0x30c
net/http.(*conn).serve(0xc0001aefa0, {0x1036d78, 0xc000120390})
	/usr/local/go/src/net/http/server.go:1991 +0x607
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:3102 +0x4db
2023/11/07 10:44:54 http: panic serving 10.16.0.176:54014: runtime error: index out of range [0] with length 0
goroutine 204 [running]:
net/http.(*conn).serve.func1()
	/usr/local/go/src/net/http/server.go:1850 +0xbf
panic({0xe00a80, 0xc000206240})
	/usr/local/go/src/runtime/panic.go:890 +0x262
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc000261301?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0x203000?, 0xc00024e520)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc00020f600, 0x0?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27
main.(*OAuthProxy).OAuthCallback(0xc0002361a0, {0x7efef77e81f8, 0xc00028f9e0}, 0xc00020f600)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335
net/http.HandlerFunc.ServeHTTP(0x7efef77e81f8?, {0x7efef77e81f8?, 0xc00028f9e0?}, 0xc00028f9e0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
main.prepareNoCacheMiddleware.func1({0x7efef77e81f8, 0xc00028f9e0}, 0x4c5017?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c
net/http.HandlerFunc.ServeHTTP(0xc00028f9b0?, {0x7efef77e81f8?, 0xc00028f9e0?}, 0xc000261418?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7efef77e81f8, 0xc00028f9e0}, 0xc00020f600)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf
net/http.HandlerFunc.ServeHTTP(0xab3c7e?, {0x7efef77e81f8?, 0xc00028f9e0?}, 0xc00028f9b0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7efef77e81f8, 0xc00028f9e0}, 0x1035600?)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4
net/http.HandlerFunc.ServeHTTP(0x1035630?, {0x7efef77e81f8?, 0xc00028f9e0?}, 0x1?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x1035630?, 0xc000442940?}, 0xc00020f600)
	/go/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8
net/http.HandlerFunc.ServeHTTP(0xc00020cb40?, {0x1035630?, 0xc000442940?}, 0xe7462e?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x1035630?, 0xc000442940?}, 0xc00020f600?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc000442940?}, 0x10?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x1035630, 0xc000442940}, 0x4c5001?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd
net/http.HandlerFunc.ServeHTTP(0x0?, {0x1035630?, 0xc000442940?}, 0x0?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x10361d0?, 0xc00011c540}, 0xc00020f600)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127
net/http.HandlerFunc.ServeHTTP(0xc00020f400?, {0x10361d0?, 0xc00011c540?}, 0x102ba01?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x10361d0, 0xc00011c540}, 0xc00028f8f0?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc
net/http.HandlerFunc.ServeHTTP(0xc00020f200?, {0x10361d0?, 0xc00011c540?}, 0xc00035da58?)
	/usr/local/go/src/net/http/server.go:2109 +0x2f
github.com/gorilla/mux.(*Router).ServeHTTP(0xc0003e80c0, {0x10361d0, 0xc00011c540}, 0xc00020f100)
	/go/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf
main.(*OAuthProxy).ServeHTTP(0x0?, {0x10361d0?, 0xc00011c540?}, 0x46818e?)
	/go/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a
net/http.serverHandler.ServeHTTP({0xc00028f260?}, {0x10361d0, 0xc00011c540}, 0xc00020f100)
	/usr/local/go/src/net/http/server.go:2947 +0x30c
net/http.(*conn).serve(0xc0001af0e0, {0x1036d78, 0xc000120390})
	/usr/local/go/src/net/http/server.go:1991 +0x607
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:3102 +0x4db
2023/11/07 10:45:09 http: panic serving 10.16.0.176:40020: runtime error: index out of range [0] with length 0
goroutine 211 [running]:

and the error seems to be in here csrf.go

func ExtractStateSubstring(req *http.Request) string {
	lastChar := csrfStateLength - 1
	stateSubstring := ""

	state := req.URL.Query()["state"]
	if state[0] != "" {
		state := state[0]
		if lastChar <= len(state) {
			stateSubstring = state[0:lastChar]
		}
	}
	return stateSubstring
}

I'm really lost here, but as far as I see from the logs the "state" is there in the URL, it is something that I redacted.
Also it should not fail that miserably, but give some better error messaging on it.

Besides testing it out with the redis cache, I don't know what should I do next and what is the root cause of the problem.
Any suggestions?

@miguelborges99
Copy link
Contributor

miguelborges99 commented Nov 18, 2023

It seems that the state as a HTTP query parameter is not being obtained, what is quite strange.
@jesinity : Is it possible for you to test the PR 2328 ?

I add also some logs to see what is happening.

@JoelSpeed, @tuunit

@miguelborges99
Copy link
Contributor

@jesinity, @JoelSpeed, @tuunit : Do you have an environment to test this?

@JoelSpeed
Copy link
Member

I only have the ability to test this via the local test environments that we have set up here. Very odd indeed that the state parameter isn't being passed through.

Is it possible at all that the ingress is somehow stripping the query string?

@cheungpatrick
Copy link

cheungpatrick commented Dec 12, 2023

Currently, I use docker compose to use keycloak + oauth2 proxy + Redis + nginx proxy manager. This problem also occurs
keycloak Version 23.0.1 latest
oauth2 proxy Version 7.5.1 latest
Redis latest
Also I have very strange problems!!!
When I log in from the oauth2 proxy login interface to keycloak, it is normal and can be redirected to my oauth2 proxy web app.
But when I first log in from keycloak account management, and then go to oauth2 proxy, it is 502 bad gateway, and I cannot authenticate the login normally, and then go to oauth2 proxy web app!!
In addition, the path of oauth2/callback when I use oauth2 proxy web app is also 502 bad gateway. My nginx proxy manager settings are also based on your tutorial.
https://oauth2-proxy.github.io/oauth2-proxy/docs/configuration/overview#configuring-for-use-with-the-nginx-auth_request-directive
How do I solve this problem? I have searched for relevant information on Google and github but cannot solve it!!

My oauth2 proxy docker compose
version: "3.9"

services:

oauth2-proxy:
image: bitnami/oauth2-proxy:latest
container_name: oauth2-code-server
depends_on:
- redis
ports:
- "4180:4180"
command:
- --http-address
- 0.0.0.0:4180
environment:
OAUTH2_PROXY_REVERSE_PROXY: 'true'
OAUTH2_PROXY_UPSTREAMS: 'https://code.xxx.com'
OAUTH2_PROXY_EMAIL_DOMAINS: '*'
OAUTH2_PROXY_PROVIDER: 'keycloak-oidc'
OAUTH2_PROXY_SKIP_PROVIDER_BUTTON: 'true'
OAUTH2_PROXY_REDIRECT_URL: 'https://code.xxx.com/oauth2/callback'
OAUTH2_PROXY_CODE_CHALLENGE_METHOD: 'S256'
OAUTH2_PROXY_OIDC_ISSUER_URL: 'https://sso.xxx.com/auth/realms/xxx'
OAUTH2_PROXY_CLIENT_ID: 'Code_Server'
OAUTH2_PROXY_CLIENT_SECRET: 'XXXXXXXXXXXXXXXXXXXX'
OAUTH2_PROXY_SKIP_JWT_BEARER_TOKENS: 'true'
OAUTH2_PROXY_OIDC_EXTRA_AUDIENCES: 'api://default'
OAUTH2_PROXY_OIDC_EMAIL_CLAIM: 'sub'
OAUTH2_PROXY_COOKIE_SAMESITE: 'lax'
OAUTH2_PROXY_COOKIE_DOMAINS: '.xxx.com'
OAUTH2_PROXY_COOKIE_PATH: '/'
OAUTH2_PROXY_WHITELIST_DOMAINS: '.xxx.com'
OAUTH2_PROXY_SET_AUTHORIZATION_HEADER: 'true'
OAUTH2_PROXY_SET_XAUTHREQUEST: 'true'
OAUTH2_PROXY_PASS_AUTHORIZATION_HEADER: 'true'
OAUTH2_PROXY_PASS_ACCESS_TOKEN: 'true'
OAUTH2_PROXY_SESSION_STORE_TYPE: 'redis'
OAUTH2_PROXY_REDIS_CONNECTION_URL: 'redis://redis:6379'
OAUTH2_PROXY_COOKIE_REFRESH: '30m'
OAUTH2_PROXY_COOKIE_NAME: '__SESSION'
OAUTH2_PROXY_COOKIE_SECRET: 'XXXXXXXXXXXXXXXXXXXX'
OAUTH2_PROXY_COOKIE_CSRF_PER_REQUEST: 'true'
OAUTH2_PROXY_COOKIE_CSRF_EXPIRE: '5m'
OAUTH2_PROXY_SESSION_COOKIE_MINIMAL: ''
OAUTH2_PROXY_COOKIE-SECURE: true'

redis:
image: redis:latest
container_name: oauth2-redis
ports:
- "6379:6379"

@cheungpatrick
Copy link

2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:3089 +0x5ed -- | -- | -- 2023/12/12 13:18:17 | stderr | created by net/http.(*Server).Serve 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:1995 +0x612 2023/12/12 13:18:17 | stderr | net/http.(*conn).serve(0xc00037e900, {0x103d808, 0xc00043e0f0}) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2936 +0x316 2023/12/12 13:18:17 | stderr | net/http.serverHandler.ServeHTTP({0xc00031b260?}, {0x103cf10, 0xc0000161c0}, 0xc0002a0800) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a 2023/12/12 13:18:17 | stderr | main.(*OAuthProxy).ServeHTTP(0x0?, {0x103cf10?, 0xc0000161c0?}, 0x469a6e?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf 2023/12/12 13:18:17 | stderr | github.com/gorilla/mux.(*Router).ServeHTTP(0xc0005f9bc0, {0x103cf10, 0xc0000161c0}, 0xc0002a0800) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:17 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0002a0900?, {0x103cf10?, 0xc0000161c0?}, 0xc00010c7c0?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc 2023/12/12 13:18:17 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x103cf10, 0xc0000161c0}, 0xc00031b950?) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:17 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0002a0a00?, {0x103cf10?, 0xc0000161c0?}, 0x102f801?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127 2023/12/12 13:18:17 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x103cf10?, 0xc0000161c0}, 0xc0002a0b00) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:17 | stderr | net/http.HandlerFunc.ServeHTTP(0x415e90?, {0x103c370?, 0xc00037b280?}, 0x10?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd 2023/12/12 13:18:17 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x103c370, 0xc00037b280}, 0x4cf101?) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:17 | stderr | net/http.HandlerFunc.ServeHTTP(0x20?, {0x103c370?, 0xc00037b280?}, 0xc0003536f0?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238 2023/12/12 13:18:17 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x103c370?, 0xc00037b280?}, 0xc0002a0b00?) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:17 | stderr | net/http.HandlerFunc.ServeHTTP(0xc00037e990?, {0x103c370?, 0xc00037b280?}, 0x4ebd9e?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8 2023/12/12 13:18:17 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x103c370?, 0xc00037b280?}, 0xc0002a0b00) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:17 | stderr | net/http.HandlerFunc.ServeHTTP(0x103c370?, {0x7fd461d622b8?, 0xc00031b9e0?}, 0xc000353538?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4 2023/12/12 13:18:17 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7fd461d622b8, 0xc00031b9e0}, 0x103c300?) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:17 | stderr | net/http.HandlerFunc.ServeHTTP(0xacd9be?, {0x7fd461d622b8?, 0xc00031b9e0?}, 0xc00031b9b0?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf 2023/12/12 13:18:17 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7fd461d622b8, 0xc00031b9e0}, 0xc0002a0b00) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:17 | stderr | net/http.HandlerFunc.ServeHTTP(0x30?, {0x7fd461d622b8?, 0xc00031b9e0?}, 0xc000353488?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c 2023/12/12 13:18:17 | stderr | main.prepareNoCacheMiddleware.func1({0x7fd461d622b8, 0xc00031b9e0}, 0x4cf1b7?) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:17 | stderr | net/http.HandlerFunc.ServeHTTP(0x7fd461d622b8?, {0x7fd461d622b8?, 0xc00031b9e0?}, 0x30?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335 2023/12/12 13:18:17 | stderr | main.(*OAuthProxy).OAuthCallback(0xc000464000, {0x7fd461d622b8, 0xc00031b9e0}, 0xc0002a0b00) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27 2023/12/12 13:18:17 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc0002a0b00, 0xc000477fc0?) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c 2023/12/12 13:18:17 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0xd39920?, 0xc00042e520) 2023/12/12 13:18:17 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91 2023/12/12 13:18:17 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc000353118?) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/runtime/panic.go:890 +0x263 2023/12/12 13:18:17 | stderr | panic({0xe1dbe0, 0xc00003a3a8}) 2023/12/12 13:18:17 | stderr | /opt/bitnami/go/src/net/http/server.go:1854 +0xbf 2023/12/12 13:18:17 | stderr | net/http.(*conn).serve.func1() 2023/12/12 13:18:17 | stderr | goroutine 1880 [running]: 2023/12/12 13:18:17 | stderr | 2023/12/12 05:18:17 http: panic serving 172.27.0.1:58726: runtime error: index out of range [0] with length 0 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:3089 +0x5ed 2023/12/12 13:18:16 | stderr | created by net/http.(*Server).Serve 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:1995 +0x612 2023/12/12 13:18:16 | stderr | net/http.(*conn).serve(0xc0001d6360, {0x103d808, 0xc00043e0f0}) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2936 +0x316 2023/12/12 13:18:16 | stderr | net/http.serverHandler.ServeHTTP({0xc00037c990?}, {0x103cf10, 0xc0001582a0}, 0xc0000a6600) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a 2023/12/12 13:18:16 | stderr | main.(*OAuthProxy).ServeHTTP(0x0?, {0x103cf10?, 0xc0001582a0?}, 0x469a6e?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf 2023/12/12 13:18:16 | stderr | github.com/gorilla/mux.(*Router).ServeHTTP(0xc0005f9bc0, {0x103cf10, 0xc0001582a0}, 0xc0000a6600) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:16 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0000a6700?, {0x103cf10?, 0xc0001582a0?}, 0xc000118780?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc 2023/12/12 13:18:16 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x103cf10, 0xc0001582a0}, 0xc00037d020?) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:16 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0000a6800?, {0x103cf10?, 0xc0001582a0?}, 0x102f801?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127 2023/12/12 13:18:16 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x103cf10?, 0xc0001582a0}, 0xc0000a6900) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:16 | stderr | net/http.HandlerFunc.ServeHTTP(0x415e90?, {0x103c370?, 0xc0005c24a0?}, 0x10?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd 2023/12/12 13:18:16 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x103c370, 0xc0005c24a0}, 0x4cf101?) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:16 | stderr | net/http.HandlerFunc.ServeHTTP(0x20?, {0x103c370?, 0xc0005c24a0?}, 0xc0003576f0?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238 2023/12/12 13:18:16 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x103c370?, 0xc0005c24a0?}, 0xc0000a6900?) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:16 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0001d63f0?, {0x103c370?, 0xc0005c24a0?}, 0x4ebd9e?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8 2023/12/12 13:18:16 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x103c370?, 0xc0005c24a0?}, 0xc0000a6900) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:16 | stderr | net/http.HandlerFunc.ServeHTTP(0x103c370?, {0x7fd461d622b8?, 0xc00037d0b0?}, 0xc000357538?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4 2023/12/12 13:18:16 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7fd461d622b8, 0xc00037d0b0}, 0x103c300?) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:16 | stderr | net/http.HandlerFunc.ServeHTTP(0xacd9be?, {0x7fd461d622b8?, 0xc00037d0b0?}, 0xc00037d080?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf 2023/12/12 13:18:16 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7fd461d622b8, 0xc00037d0b0}, 0xc0000a6900) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:16 | stderr | net/http.HandlerFunc.ServeHTTP(0x30?, {0x7fd461d622b8?, 0xc00037d0b0?}, 0xc000357488?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c 2023/12/12 13:18:16 | stderr | main.prepareNoCacheMiddleware.func1({0x7fd461d622b8, 0xc00037d0b0}, 0x4cf1b7?) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:16 | stderr | net/http.HandlerFunc.ServeHTTP(0x7fd461d622b8?, {0x7fd461d622b8?, 0xc00037d0b0?}, 0x30?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335 2023/12/12 13:18:16 | stderr | main.(*OAuthProxy).OAuthCallback(0xc000464000, {0x7fd461d622b8, 0xc00037d0b0}, 0xc0000a6900) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27 2023/12/12 13:18:16 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc0000a6900, 0xc000477fc0?) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c 2023/12/12 13:18:16 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0xd39920?, 0xc00042e520) 2023/12/12 13:18:16 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91 2023/12/12 13:18:16 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc000357118?) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/runtime/panic.go:890 +0x263 2023/12/12 13:18:16 | stderr | panic({0xe1dbe0, 0xc00028a0c0}) 2023/12/12 13:18:16 | stderr | /opt/bitnami/go/src/net/http/server.go:1854 +0xbf 2023/12/12 13:18:16 | stderr | net/http.(*conn).serve.func1() 2023/12/12 13:18:16 | stderr | goroutine 1845 [running]: 2023/12/12 13:18:16 | stderr | 2023/12/12 05:18:16 http: panic serving 172.27.0.1:58722: runtime error: index out of range [0] with length 0 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:3089 +0x5ed 2023/12/12 13:18:14 | stderr | created by net/http.(*Server).Serve 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:1995 +0x612 2023/12/12 13:18:14 | stderr | net/http.(*conn).serve(0xc00037e630, {0x103d808, 0xc00043e0f0}) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2936 +0x316 2023/12/12 13:18:14 | stderr | net/http.serverHandler.ServeHTTP({0xc00031aa80?}, {0x103cf10, 0xc0000160e0}, 0xc0002a0400) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a 2023/12/12 13:18:14 | stderr | main.(*OAuthProxy).ServeHTTP(0x0?, {0x103cf10?, 0xc0000160e0?}, 0x469a6e?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf 2023/12/12 13:18:14 | stderr | github.com/gorilla/mux.(*Router).ServeHTTP(0xc0005f9bc0, {0x103cf10, 0xc0000160e0}, 0xc0002a0400) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:14 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0002a0500?, {0x103cf10?, 0xc0000160e0?}, 0xc00010c040?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc 2023/12/12 13:18:14 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x103cf10, 0xc0000160e0}, 0xc00031b080?) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:14 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0002a0600?, {0x103cf10?, 0xc0000160e0?}, 0x102f801?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127 2023/12/12 13:18:14 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x103cf10?, 0xc0000160e0}, 0xc0002a0700) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:14 | stderr | net/http.HandlerFunc.ServeHTTP(0x415e90?, {0x103c370?, 0xc00037b060?}, 0x10?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd 2023/12/12 13:18:14 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x103c370, 0xc00037b060}, 0x4cf101?) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:14 | stderr | net/http.HandlerFunc.ServeHTTP(0x20?, {0x103c370?, 0xc00037b060?}, 0xc0003536f0?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238 2023/12/12 13:18:14 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x103c370?, 0xc00037b060?}, 0xc0002a0700?) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:14 | stderr | net/http.HandlerFunc.ServeHTTP(0xc00037e6c0?, {0x103c370?, 0xc00037b060?}, 0x4ebd9e?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8 2023/12/12 13:18:14 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x103c370?, 0xc00037b060?}, 0xc0002a0700) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:14 | stderr | net/http.HandlerFunc.ServeHTTP(0x103c370?, {0x7fd461d622b8?, 0xc00031b110?}, 0xc000353538?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4 2023/12/12 13:18:14 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7fd461d622b8, 0xc00031b110}, 0x103c300?) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:14 | stderr | net/http.HandlerFunc.ServeHTTP(0xacd9be?, {0x7fd461d622b8?, 0xc00031b110?}, 0xc00031b0e0?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf 2023/12/12 13:18:14 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7fd461d622b8, 0xc00031b110}, 0xc0002a0700) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:14 | stderr | net/http.HandlerFunc.ServeHTTP(0x30?, {0x7fd461d622b8?, 0xc00031b110?}, 0xc000353488?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c 2023/12/12 13:18:14 | stderr | main.prepareNoCacheMiddleware.func1({0x7fd461d622b8, 0xc00031b110}, 0x4cf1b7?) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f 2023/12/12 13:18:14 | stderr | net/http.HandlerFunc.ServeHTTP(0x7fd461d622b8?, {0x7fd461d622b8?, 0xc00031b110?}, 0x30?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335 2023/12/12 13:18:14 | stderr | main.(*OAuthProxy).OAuthCallback(0xc000464000, {0x7fd461d622b8, 0xc00031b110}, 0xc0002a0700) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27 2023/12/12 13:18:14 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc0002a0700, 0xc000477fc0?) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c 2023/12/12 13:18:14 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0xd39920?, 0xc00042e520) 2023/12/12 13:18:14 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91 2023/12/12 13:18:14 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc000353118?) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/runtime/panic.go:890 +0x263 2023/12/12 13:18:14 | stderr | panic({0xe1dbe0, 0xc00003a348}) 2023/12/12 13:18:14 | stderr | /opt/bitnami/go/src/net/http/server.go:1854 +0xbf 2023/12/12 13:18:14 | stderr | net/http.(*conn).serve.func1() 2023/12/12 13:18:14 | stderr | goroutine 1873 [running]: 2023/12/12 13:18:14 | stderr | 2023/12/12 05:18:14 http: panic serving 172.27.0.1:58718: runtime error: index out of range [0] with length 0

@cheungpatrick
Copy link

cheungpatrick commented Dec 12, 2023

Login from the oauth2 proxy login interface to keycloak is normal and can be redirected to my oauth2 proxy web app
螢幕擷取畫面 2023-12-13 002033

After logging in from keycloak account management, and then to oauth2 proxy, it is 502 bad gateway, and the login cannot be verified normally, and then to oauth2 proxy web app!!
螢幕擷取畫面 2023-12-13 002119

@miguelborges99
Copy link
Contributor

@cheungpatrick : In your logs, is there an entry with something like "GET - "/oauth2/callback?code=" ?
Does it has a query parameter "state" ?

@cheungpatrick
Copy link

cheungpatrick commented Dec 12, 2023

@cheungpatrick : In your logs, is there an entry with something like "GET - "/oauth2/callback?code=" ? Does it has a query parameter "state" ?

Complete log. I lost the IP code.

<html>
<body>
<!--StartFragment-->
2023/12/13 00:36:49 | stdout | xx.xxx.xx.xxx - fe41745c-e868-4cab-9780-34e35082a422 - - [2023/12/12 16:36:49] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 518 0.002
-- | -- | --
2023/12/13 00:36:49 | stdout | xx.xxx.xx.xxx - c0fffd1f-f544-40ce-a839-7e6fb1974436 - - [2023/12/12 16:36:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:3089 +0x5ed
2023/12/13 00:36:49 | stderr | created by net/http.(*Server).Serve
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:1995 +0x612
2023/12/13 00:36:49 | stderr | net/http.(*conn).serve(0xc00048c990, {0x103d808, 0xc0004fa480})
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2936 +0x316
2023/12/13 00:36:49 | stderr | net/http.serverHandler.ServeHTTP({0xc0000a9890?}, {0x103cf10, 0xc00010a380}, 0xc00040e800)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a
2023/12/13 00:36:49 | stderr | main.(*OAuthProxy).ServeHTTP(0x0?, {0x103cf10?, 0xc00010a380?}, 0x469a6e?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf
2023/12/13 00:36:49 | stderr | github.com/gorilla/mux.(*Router).ServeHTTP(0xc000130240, {0x103cf10, 0xc00010a380}, 0xc00040e800)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0xc00040e900?, {0x103cf10?, 0xc00010a380?}, 0xc0003f2140?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x103cf10, 0xc00010a380}, 0xc0004fa060?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0xc00040ea00?, {0x103cf10?, 0xc00010a380?}, 0x102f801?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x103cf10?, 0xc00010a380}, 0xc00040eb00)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x415e90?, {0x103c370?, 0xc0003f9440?}, 0x10?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x103c370, 0xc0003f9440}, 0x4cf101?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x20?, {0x103c370?, 0xc0003f9440?}, 0xc0004e56f0?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x103c370?, 0xc0003f9440?}, 0xc00040eb00?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0xc00048cbd0?, {0x103c370?, 0xc0003f9440?}, 0x4ebd9e?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8
2023/12/13 00:36:49 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x103c370?, 0xc0003f9440?}, 0xc00040eb00)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x103c370?, {0x7f4d0494da90?, 0xc0004fa0f0?}, 0xc0004e5538?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4
2023/12/13 00:36:49 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7f4d0494da90, 0xc0004fa0f0}, 0x103c300?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0xacd9be?, {0x7f4d0494da90?, 0xc0004fa0f0?}, 0xc0004fa0c0?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf
2023/12/13 00:36:49 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7f4d0494da90, 0xc0004fa0f0}, 0xc00040eb00)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x30?, {0x7f4d0494da90?, 0xc0004fa0f0?}, 0xc0004e5488?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c
2023/12/13 00:36:49 | stderr | main.prepareNoCacheMiddleware.func1({0x7f4d0494da90, 0xc0004fa0f0}, 0x4cf1b7?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x7f4d0494da90?, {0x7f4d0494da90?, 0xc0004fa0f0?}, 0x30?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335
2023/12/13 00:36:49 | stderr | main.(*OAuthProxy).OAuthCallback(0xc0001e2000, {0x7f4d0494da90, 0xc0004fa0f0}, 0xc00040eb00)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc00040eb00, 0xc0004a2d90?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0xd39920?, 0xc000446520)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc0004e5118?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/runtime/panic.go:890 +0x263
2023/12/13 00:36:49 | stderr | panic({0xe1dbe0, 0xc00044c2e8})
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:1854 +0xbf
2023/12/13 00:36:49 | stderr | net/http.(*conn).serve.func1()
2023/12/13 00:36:49 | stderr | goroutine 3569 [running]:
2023/12/13 00:36:49 | stderr | 2023/12/12 16:36:49 http: panic serving 172.27.0.1:37326: runtime error: index out of range [0] with length 0
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:3089 +0x5ed
2023/12/13 00:36:49 | stderr | created by net/http.(*Server).Serve
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:1995 +0x612
2023/12/13 00:36:49 | stderr | net/http.(*conn).serve(0xc00020afc0, {0x103d808, 0xc0004fa480})
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2936 +0x316
2023/12/13 00:36:49 | stderr | net/http.serverHandler.ServeHTTP({0xc000219590?}, {0x103cf10, 0xc0005fc2a0}, 0xc0000ed000)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a
2023/12/13 00:36:49 | stderr | main.(*OAuthProxy).ServeHTTP(0x0?, {0x103cf10?, 0xc0005fc2a0?}, 0x469a6e?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf
2023/12/13 00:36:49 | stderr | github.com/gorilla/mux.(*Router).ServeHTTP(0xc000130240, {0x103cf10, 0xc0005fc2a0}, 0xc0000ed000)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0000ed100?, {0x103cf10?, 0xc0005fc2a0?}, 0xc000222300?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x103cf10, 0xc0005fc2a0}, 0xc000219b90?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0000ed200?, {0x103cf10?, 0xc0005fc2a0?}, 0x102f801?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x103cf10?, 0xc0005fc2a0}, 0xc0000ed300)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x415e90?, {0x103c370?, 0xc0000c5c60?}, 0x10?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x103c370, 0xc0000c5c60}, 0x4cf101?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x20?, {0x103c370?, 0xc0000c5c60?}, 0xc00009b6f0?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x103c370?, 0xc0000c5c60?}, 0xc0000ed300?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0xc00020b050?, {0x103c370?, 0xc0000c5c60?}, 0x4ebd9e?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8
2023/12/13 00:36:49 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x103c370?, 0xc0000c5c60?}, 0xc0000ed300)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x103c370?, {0x7f4d0494da90?, 0xc000219c20?}, 0xc00009b538?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4
2023/12/13 00:36:49 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7f4d0494da90, 0xc000219c20}, 0x103c300?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0xacd9be?, {0x7f4d0494da90?, 0xc000219c20?}, 0xc000219bf0?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf
2023/12/13 00:36:49 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7f4d0494da90, 0xc000219c20}, 0xc0000ed300)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x30?, {0x7f4d0494da90?, 0xc000219c20?}, 0xc00009b488?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c
2023/12/13 00:36:49 | stderr | main.prepareNoCacheMiddleware.func1({0x7f4d0494da90, 0xc000219c20}, 0x4cf1b7?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:49 | stderr | net/http.HandlerFunc.ServeHTTP(0x7f4d0494da90?, {0x7f4d0494da90?, 0xc000219c20?}, 0x30?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335
2023/12/13 00:36:49 | stderr | main.(*OAuthProxy).OAuthCallback(0xc0001e2000, {0x7f4d0494da90, 0xc000219c20}, 0xc0000ed300)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc0000ed300, 0xc0004a2d90?)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0xd39920?, 0xc000446520)
2023/12/13 00:36:49 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91
2023/12/13 00:36:49 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc00009b118?)
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/runtime/panic.go:890 +0x263
2023/12/13 00:36:49 | stderr | panic({0xe1dbe0, 0xc0000d86c0})
2023/12/13 00:36:49 | stderr | /opt/bitnami/go/src/net/http/server.go:1854 +0xbf
2023/12/13 00:36:49 | stderr | net/http.(*conn).serve.func1()
2023/12/13 00:36:49 | stderr | goroutine 3550 [running]:
2023/12/13 00:36:49 | stderr | 2023/12/12 16:36:49 http: panic serving 172.27.0.1:37321: runtime error: index out of range [0] with length 0
2023/12/13 00:36:47 | stdout | xx.xxx.xx.xxx - b1de45ca-d757-4c80-a085-0fe577c68ecb - - [2023/12/12 16:36:47] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 518 0.002
2023/12/13 00:36:47 | stdout | xx.xxx.xx.xxx - 70674dd2-6cf7-4ece-89f6-e47c9f35ad4d - - [2023/12/12 16:36:47] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:3089 +0x5ed
2023/12/13 00:36:47 | stderr | created by net/http.(*Server).Serve
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:1995 +0x612
2023/12/13 00:36:47 | stderr | net/http.(*conn).serve(0xc00048c900, {0x103d808, 0xc0004fa480})
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2936 +0x316
2023/12/13 00:36:47 | stderr | net/http.serverHandler.ServeHTTP({0xc00010c030?}, {0x103cf10, 0xc0005fc000}, 0xc0000ec100)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:531 +0x2a
2023/12/13 00:36:47 | stderr | main.(*OAuthProxy).ServeHTTP(0xc00027e015?, {0x103cf10?, 0xc0005fc000?}, 0x469a6e?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x1cf
2023/12/13 00:36:47 | stderr | github.com/gorilla/mux.(*Router).ServeHTTP(0xc000130240, {0x103cf10, 0xc0005fc000}, 0xc0000ec100)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:47 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0000ec200?, {0x103cf10?, 0xc0005fc000?}, 0x1?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/scope.go:19 +0xcc
2023/12/13 00:36:47 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.NewScope.func1.1({0x103cf10, 0xc0005fc000}, 0xc00010ce40?)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:47 | stderr | net/http.HandlerFunc.ServeHTTP(0xc0000ec400?, {0x103cf10?, 0xc0005fc000?}, 0x102f801?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/request_logger.go:27 +0x127
2023/12/13 00:36:47 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.requestLogger.func1({0x103cf10?, 0xc0005fc000}, 0xc0000ec500)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:47 | stderr | net/http.HandlerFunc.ServeHTTP(0x415e90?, {0x103c370?, 0xc0000c4340?}, 0x10?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/healthcheck.go:40 +0xbd
2023/12/13 00:36:47 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.healthCheck.func1({0x103c370, 0xc0000c4340}, 0x4cf101?)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:47 | stderr | net/http.HandlerFunc.ServeHTTP(0x20?, {0x103c370?, 0xc0000c4340?}, 0xc00009b6f0?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/middleware/readynesscheck.go:38 +0x238
2023/12/13 00:36:47 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/middleware.readynessCheck.func1({0x103c370?, 0xc0000c4340?}, 0xc0000ec500?)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:47 | stderr | net/http.HandlerFunc.ServeHTTP(0xc00020a120?, {0x103c370?, 0xc0000c4340?}, 0x4ebd9e?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:146 +0xb8
2023/12/13 00:36:47 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerCounter.func1({0x103c370?, 0xc0000c4340?}, 0xc0000ec500)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:47 | stderr | net/http.HandlerFunc.ServeHTTP(0x103c370?, {0x7f4d0494da90?, 0xc00010d6e0?}, 0xc00009b538?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:60 +0xd4
2023/12/13 00:36:47 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerInFlight.func1({0x7f4d0494da90, 0xc00010d6e0}, 0x103c300?)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:47 | stderr | net/http.HandlerFunc.ServeHTTP(0xacd9be?, {0x7f4d0494da90?, 0xc00010d6e0?}, 0xc00010d650?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/pkg/mod/github.com/prometheus/[email protected]/prometheus/promhttp/instrument_server.go:108 +0xbf
2023/12/13 00:36:47 | stderr | github.com/prometheus/client_golang/prometheus/promhttp.InstrumentHandlerDuration.func2({0x7f4d0494da90, 0xc00010d6e0}, 0xc0000ec500)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:47 | stderr | net/http.HandlerFunc.ServeHTTP(0x30?, {0x7f4d0494da90?, 0xc00010d6e0?}, 0xc00009b488?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:1012 +0x5c
2023/12/13 00:36:47 | stderr | main.prepareNoCacheMiddleware.func1({0x7f4d0494da90, 0xc00010d6e0}, 0x4cf1b7?)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:2122 +0x2f
2023/12/13 00:36:47 | stderr | net/http.HandlerFunc.ServeHTTP(0x7f4d0494da90?, {0x7f4d0494da90?, 0xc00010d6e0?}, 0x30?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/oauthproxy.go:825 +0x335
2023/12/13 00:36:47 | stderr | main.(*OAuthProxy).OAuthCallback(0xc0001e2000, {0x7f4d0494da90, 0xc00010d6e0}, 0xc0000ec500)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:77 +0x27
2023/12/13 00:36:47 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.LoadCSRFCookie(0xc0000ec500, 0xc00010d890?)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:94 +0x2c
2023/12/13 00:36:47 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.GenerateCookieName(0xd39920?, 0xc000446520)
2023/12/13 00:36:47 | stderr | /bitnami/blacksmith-sandox/oauth2-proxy-7.5.1/src/github.com/oauth2-proxy/oauth2-proxy/pkg/cookies/csrf.go:222 +0x91
2023/12/13 00:36:47 | stderr | github.com/oauth2-proxy/oauth2-proxy/v7/pkg/cookies.ExtractStateSubstring(0xc00009b118?)
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/runtime/panic.go:890 +0x263
2023/12/13 00:36:47 | stderr | panic({0xe1dbe0, 0xc0000d80f0})
2023/12/13 00:36:47 | stderr | /opt/bitnami/go/src/net/http/server.go:1854 +0xbf
2023/12/13 00:36:47 | stderr | net/http.(*conn).serve.func1()
2023/12/13 00:36:47 | stderr | goroutine 3520 [running]:
2023/12/13 00:36:47 | stderr | 2023/12/12 16:36:47 http: panic serving 172.27.0.1:37305: runtime error: index out of range [0] with length 0
2023/12/13 00:36:44 | stdout | xx.xxx.xx.xxx - ae6679a6-2f36-430f-9c60-db7d738ef322 - - [2023/12/12 16:36:44] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 507 0.001
2023/12/13 00:36:44 | stdout | xx.xxx.xx.xxx - 9ad51d06-caf7-41d1-b446-e2e930a59a6e - - [2023/12/12 16:36:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:28:07 | stdout | xx.xxx.xx.xxx - d4d15dfa-b918-4eef-b833-e318f1e05a82 - - [2023/12/12 16:28:07] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.001
2023/12/13 00:28:07 | stdout | xx.xxx.xx.xxx - b66eb17c-982c-43b2-bb27-031f95d662db - - [2023/12/12 16:28:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:07 | stderr | [2023/12/12 16:28:07] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:07 | stdout | xx.xxx.xx.xxx - be380298-643e-4a2f-8d29-8405166576d5 - - [2023/12/12 16:28:07] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 549 0.001
2023/12/13 00:28:07 | stdout | xx.xxx.xx.xxx - c5ee76bd-760d-42c7-b7f7-ffa3e3c60d87 - - [2023/12/12 16:28:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:07 | stderr | [2023/12/12 16:28:07] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:07 | stdout | xx.xxx.xx.xxx - fd879903-32d9-4b3e-b94a-70fececd606b - - [2023/12/12 16:28:07] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.001
2023/12/13 00:28:07 | stdout | xx.xxx.xx.xxx - f71a4c9f-defb-4b8e-84c2-ebf71257e152 - - [2023/12/12 16:28:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:07 | stderr | [2023/12/12 16:28:07] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 69cbad6b-1e47-413d-8eb9-1e7528860a0d - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.001
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - fef46ff6-a85b-4d8b-b931-b14cb8b10a88 - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:06 | stderr | [2023/12/12 16:28:06] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - af580067-0612-4474-b3ba-c30f362690bc - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.002
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 72ab89cf-3991-4a53-89c0-af4e91971731 - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:06 | stderr | [2023/12/12 16:28:06] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 070bbc57-7862-46f6-901c-5c507ac2a447 - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.001
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - d8c2cedd-0f4e-4c38-850d-d9f6e5a3ea23 - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:06 | stderr | [2023/12/12 16:28:06] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 1c208af1-d579-44f0-9e80-c4931af854ed - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 622 0.003
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - b594016c-6caf-4b94-b2f8-9ba36f8b9b00 - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 623 0.002
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 84c9ccda-7a37-4209-8cf3-6c343ef29903 - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 51141215-6cdf-4b03-a2c1-1689ceb5217c - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:06 | stderr | [2023/12/12 16:28:06] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:06 | stderr | [2023/12/12 16:28:06] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 8ee6cdd1-d002-45c0-ae42-a4b1e28d3ec6 - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 724 0.001
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 880ff03c-e439-4b40-bb48-a3ede443fed5 - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:06 | stderr | [2023/12/12 16:28:06] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 9b1e7719-63e9-4023-a270-bd6598a5ac47 - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 554 0.001
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - f0d2b68f-ad25-49a4-a0f5-244d4794238e - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:06 | stderr | [2023/12/12 16:28:06] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 7f95fd0f-44b9-4707-b83c-e5f373b4e55a - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 521 0.001
2023/12/13 00:28:06 | stdout | xx.xxx.xx.xxx - 52f61a39-7df3-406c-9349-854b8fa4c31e - - [2023/12/12 16:28:06] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:06 | stderr | [2023/12/12 16:28:06] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - 692c13e8-a1a7-4861-9fb1-b66becbbfc2a - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.001
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - 495c9131-869a-4647-aff4-6b1d56b74c1e - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:05 | stderr | [2023/12/12 16:28:05] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - f921a061-8a4f-4c03-bec0-02dd385549c9 - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.001
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - c5e6ad19-fb56-4b60-adf0-a46f1efb8b4d - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:05 | stderr | [2023/12/12 16:28:05] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - f111eb0f-2f33-4cba-b305-cced60e3ba2d - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.002
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - 5dbbe1d0-9277-4ffe-9065-a93ba0d83b4b - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:05 | stderr | [2023/12/12 16:28:05] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - 66dbe6d1-74a2-438f-bab0-bb3d1b42202e - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.002
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - 67693294-b871-4582-a702-58d4e3a56449 - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:05 | stderr | [2023/12/12 16:28:05] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - aa8f9a47-c7d2-42e3-9f50-d3043df632ee - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 666 0.001
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - e600ba74-becc-446d-9ebf-613ba9021224 - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:05 | stderr | [2023/12/12 16:28:05] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - 742b2487-1508-4ce3-abbb-e9ef8f4885f9 - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 520 0.002
2023/12/13 00:28:05 | stdout | xx.xxx.xx.xxx - 4c6c03ed-a3a3-41cf-bb98-c8baaf044af8 - - [2023/12/12 16:28:05] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/13 00:28:05 | stderr | [2023/12/12 16:28:05] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:20:59 | stdout | xx.xxx.xx.xxx - 4ade0689-2b69-41a2-8402-a877857fd35e - - [2023/12/12 16:20:59] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 507 0.002
2023/12/13 00:20:59 | stdout | xx.xxx.xx.xxx - a2104028-c9ab-49f5-8c8a-423acae74bc5 - - [2023/12/12 16:20:59] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:42 | stdout | xx.xxx.xx.xxx - 6aec6fe4-311f-4f13-8e0c-c09942167b58 - - [2023/12/12 16:20:42] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:42 | stdout | xx.xxx.xx.xxx - 0f7d0808-e7cc-43ef-9200-12e90e27e380 - - [2023/12/12 16:20:42] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:42 | stdout | xx.xxx.xx.xxx - bedea13d-8899-4c29-a86a-aec6e473134c - - [2023/12/12 16:20:42] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:42 | stdout | xx.xxx.xx.xxx - e997db85-bb65-4d71-b635-b2537af860b3 - - [2023/12/12 16:20:42] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:40 | stdout | xx.xxx.xx.xxx - 054a6db9-969d-42cf-bf84-57ca4d28c759 - - [2023/12/12 16:20:40] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:40 | stdout | xx.xxx.xx.xxx - 2371dba2-a79f-4464-94a9-2ce2f26d08bc - - [2023/12/12 16:20:40] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:40 | stdout | xx.xxx.xx.xxx - 498d0c6b-6579-4e5c-8cac-6567a63a3fd1 - - [2023/12/12 16:20:40] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:40 | stdout | xx.xxx.xx.xxx - becdec5e-7e9c-4c6f-a32e-8614e8f02d4e - - [2023/12/12 16:20:40] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:39 | stdout | xx.xxx.xx.xxx - c49c9da9-b917-4d28-837a-178b3e059827 - - [2023/12/12 16:20:39] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.003
2023/12/13 00:20:39 | stdout | xx.xxx.xx.xxx - 37c5c9df-72c0-4d73-90c3-9b7834053f8a - - [2023/12/12 16:20:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:39 | stdout | xx.xxx.xx.xxx - 79fa1e1c-ec35-4aa2-ba39-d06f81f2bf64 - - [2023/12/12 16:20:39] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:39 | stdout | xx.xxx.xx.xxx - a84a8a68-02b6-4cf3-876e-d535aae32f47 - - [2023/12/12 16:20:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:29 | stdout | xx.xxx.xx.xxx - fa183a27-395d-45c2-aacc-6c2905949157 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:29 | stdout | xx.xxx.xx.xxx - a9b8b482-2c1a-4061-8a2c-fe7e83f7be8d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:29 | stdout | xx.xxx.xx.xxx - 1d71d446-ed61-4600-8329-56aedf9961c6 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:29 | stdout | xx.xxx.xx.xxx - afdf7c44-c590-4a17-80cd-d7e3ac2cafee - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:27 | stdout | xx.xxx.xx.xxx - 7a993d66-2e82-4b3e-aebe-190dc53a4ca7 - - [2023/12/12 16:20:27] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:27 | stdout | xx.xxx.xx.xxx - 8ab8d51d-4b97-40ef-a90b-557c88d1619e - - [2023/12/12 16:20:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:26 | stdout | xx.xxx.xx.xxx - ad204df9-8a4f-4046-a1ce-cb777a6067a4 - - [2023/12/12 16:20:26] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:26 | stdout | xx.xxx.xx.xxx - 7ac23252-c841-47fe-a8cd-0501e7ccfe2c - - [2023/12/12 16:20:26] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:25 | stdout | xx.xxx.xx.xxx - 9027099d-5d45-4a6f-bfd2-e27e26ae134f - - [2023/12/12 16:20:25] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:25 | stdout | xx.xxx.xx.xxx - d4c3e0bb-5e35-4bc5-9d1a-5df2efc30d8c - - [2023/12/12 16:20:25] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:25 | stdout | xx.xxx.xx.xxx - a8b60dec-854a-493d-bd3a-e0f5a5e752b2 - - [2023/12/12 16:20:25] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.001
2023/12/13 00:20:25 | stdout | xx.xxx.xx.xxx - 85b8fa67-2457-4c6a-9edd-2104ae138e25 - - [2023/12/12 16:20:25] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:17 | stdout | xx.xxx.xx.xxx - e8f11a77-a724-49f3-8c6b-b54f3b813ddd - - [2023/12/12 16:20:17] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:17 | stdout | xx.xxx.xx.xxx - 60b5d2aa-7265-4c0a-bd89-25111623e00f - - [2023/12/12 16:20:17] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:17 | stdout | xx.xxx.xx.xxx - 84780d7d-e87a-4335-a25c-d08cf277ee1b - - [2023/12/12 16:20:17] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:17 | stdout | xx.xxx.xx.xxx - d935e978-84fc-444d-bb2b-d348ea4713bd - - [2023/12/12 16:20:17] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:11 | stdout | xx.xxx.xx.xxx - a0784b20-bda8-4349-b9fe-9150c7d21562 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:11] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:10 | stdout | xx.xxx.xx.xxx - 50a13c7a-a9e4-4831-9079-c774c228d77d - - [2023/12/12 16:20:10] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:10 | stdout | xx.xxx.xx.xxx - 2da54713-cf6c-42dc-9eb7-469d714c1db8 - - [2023/12/12 16:20:10] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:10 | stdout | xx.xxx.xx.xxx - 8bb09069-e379-44ac-ba7c-38090bc23baf - - [2023/12/12 16:20:10] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:10 | stdout | xx.xxx.xx.xxx - db9653cd-d2d0-4cc5-9949-a5c4c2a95f3e - - [2023/12/12 16:20:10] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:10 | stdout | xx.xxx.xx.xxx - 51e98c24-cf33-496c-b94a-c949105f95f1 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:10] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:10 | stdout | xx.xxx.xx.xxx - 9bb69692-1258-43ed-b8ca-3ec2d4a46204 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:10] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:10 | stdout | xx.xxx.xx.xxx - 273f6ea1-e2d8-4053-aa47-8025a7f094b2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:10] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - cc4d4ba4-7d85-4b27-9323-1b280c39ea42 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - e91aad2b-1790-4bdb-bbea-d62989f1a623 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - 14dc41aa-384c-4fa8-893d-218ce65a442b - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - cff86cc2-0680-4665-bcd7-d801c382ae96 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - ac295d8e-4787-4c10-8a86-ad3fb962254c - - [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - f85139ff-f846-4de6-b4fc-0f41b8295704 - - [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - 7636c1ca-7aaa-4642-b92d-f193bf41a6bd - - [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.001
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - b0dfe153-f478-47d8-9742-6d04fc235465 - - [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - c3bc51db-2115-402f-8922-92a05a6388b2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - 311ac1e6-42ff-4f61-8df5-3cdffb2f2c94 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - 0aaf846b-6da2-4d1a-8f69-c3ffe458c71f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - c54114f7-d774-4ab2-94a6-4079fcf5ddfb - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - 70458150-3663-44fe-af37-a8f748b66960 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - 6f99fc49-942a-4f52-8e0b-fc626d08a53f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/13 00:20:09 | stdout | xx.xxx.xx.xxx - 71aa070d-32a9-4be2-a8fd-7044690cd6a7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:08 | stdout | xx.xxx.xx.xxx - cba986f6-2727-475e-9c7d-43fde0a69259 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/13 00:20:08 | stdout | xx.xxx.xx.xxx - 7545eacf-2404-4e89-aa2b-c2a9ffcd1c24 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:08 | stdout | xx.xxx.xx.xxx - aac32182-5512-4c3c-afb3-4a375b9f4def - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/13 00:20:08 | stdout | xx.xxx.xx.xxx - 4557585d-0540-4ad4-b378-ec24d8e0a406 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/13 00:20:08 | stdout | xx.xxx.xx.xxx - df6d7a5b-c787-4735-83a1-59a63f9ff19a - - [2023/12/12 16:20:08] code.xxx.com GET - "/oauth2/callback?state=x27UMVey9W7HuhHYrUcPVKVpez-lHOiVcffF8NnSi10%3A%2F&session_state=77078bbd-e0de-4acb-a1ad-9756bba3c146&iss=https%3A%2F%2Fsso.xxx.com%2Fauth%2Frealms%2Fxxx&code=20c69887-cd28-4686-a433-ff8ba02f41bf.77078bbd-e0de-4acb-a1ad-9756bba3c146.a611beea-e9ca-4820-aeb5-19e8fe8fcbee" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 24 0.031
2023/12/13 00:20:08 | stdout | xx.xxx.xx.xxx - df6d7a5b-c787-4735-83a1-59a63f9ff19a - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 16:20:08] [AuthSuccess] Authenticated via OAuth2: Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 16:20:08.235277719 +0000 UTC m=+16028.468310250 expires:2023-12-12 16:25:08.233315536 +0000 UTC m=+16328.466348077 refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}
2023/12/13 00:20:02 | stdout | xx.xxx.xx.xxx - 063115aa-22f7-4c46-a89c-f70d5485a9eb - - [2023/12/12 16:20:02] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 507 0.002
2023/12/13 00:20:02 | stdout | xx.xxx.xx.xxx - 37964742-f51d-4d00-91fd-c93a954b3124 - - [2023/12/12 16:20:02] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:19:48 | stdout | xx.xxx.xx.xxx - b8f84bb8-b2be-4b9d-a669-976dcb5536fa - - [2023/12/12 16:19:48] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 549 0.001
2023/12/13 00:19:48 | stdout | xx.xxx.xx.xxx - e45ac705-3d86-4560-81df-d87de47dcd9b - - [2023/12/12 16:19:48] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.001
2023/12/13 00:19:48 | stderr | [2023/12/12 16:19:48] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:19:39 | stdout | xx.xxx.xx.xxx - fd7c0c93-e64b-401b-9c38-437ceb79848b - - [2023/12/12 16:19:39] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:19:39 | stdout | xx.xxx.xx.xxx - 96864bea-124e-4cc7-bc66-5e700b3e333c - - [2023/12/12 16:19:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:19:39 | stdout | xx.xxx.xx.xxx - 7e388b0c-7848-4ea0-b74e-d92001ca489d - - [2023/12/12 16:19:39] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 543 0.001
2023/12/13 00:19:39 | stdout | xx.xxx.xx.xxx - 5d384b9e-30b1-4492-8a0f-9b698a14584e - - [2023/12/12 16:19:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.001
2023/12/13 00:19:39 | stderr | [2023/12/12 16:19:39] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:19:39 | stdout | xx.xxx.xx.xxx - de242a47-b97e-4a11-9391-b5a743a5f41b - - [2023/12/12 16:19:39] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.001
2023/12/13 00:19:39 | stdout | xx.xxx.xx.xxx - edd156ae-d4c2-4999-a41b-2dbc357bfb2d - - [2023/12/12 16:19:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:19:32 | stdout | xx.xxx.xx.xxx - 5b686aa4-3950-4f5d-b3e6-9c1c6ac5a4ea - - [2023/12/12 16:19:32] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:19:32 | stdout | xx.xxx.xx.xxx - 628c0b55-9d47-4fd1-b93f-9b19429b14df - - [2023/12/12 16:19:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:19:32 | stdout | xx.xxx.xx.xxx - fbde434b-a8fb-4db1-8106-bff1e7dc2a0a - - [2023/12/12 16:19:32] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:19:32 | stdout | xx.xxx.xx.xxx - 3a93abc0-38b5-4bdf-812e-1291cff5f459 - - [2023/12/12 16:19:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - 1da188f1-3a3d-4432-abb7-391f97a718f4 - - [2023/12/12 16:19:31] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 553 0.002
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - b88d36a8-9b8b-405a-b053-d2c7abc7aa5d - - [2023/12/12 16:19:31] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 520 0.002
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - 49a72abf-7066-4a03-a6e3-1cab5cb04d2f - - [2023/12/12 16:19:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.257
2023/12/13 00:19:31 | stderr | [2023/12/12 16:19:31] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 15:25:07.589622845 +0000 UTC expires:2023-12-12 15:30:07.587683341 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): could not load session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - db48d5bb-066c-4863-afdf-896a24fe07ce - - [2023/12/12 16:19:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.247
2023/12/13 00:19:31 | stderr | [2023/12/12 16:19:31] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 15:25:07.589622845 +0000 UTC expires:2023-12-12 15:30:07.587683341 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): could not load session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - e35eee79-096c-4807-943e-e752ff159ea9 - - [2023/12/12 16:19:31] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 543 0.002
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - 00055fba-8a8f-43e2-a96f-ec40f41c167b - - [2023/12/12 16:19:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.233
2023/12/13 00:19:31 | stderr | [2023/12/12 16:19:31] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 15:25:07.589622845 +0000 UTC expires:2023-12-12 15:30:07.587683341 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): could not load session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - f6152e62-73cc-4476-b1b4-9d735185f469 - - [2023/12/12 16:19:31] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 614 0.001
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - e3d241e8-e3f2-4a98-92dc-d25d605f9c08 - - [2023/12/12 16:19:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.223
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - 585f2837-7eec-4429-b7d1-fa9968b7efa5 - - [2023/12/12 16:19:31] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 724 0.002
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - 7d7d7129-a53c-4f48-bed6-5d44d887b89a - - [2023/12/12 16:19:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.175
2023/12/13 00:19:31 | stderr | [2023/12/12 16:19:31] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 15:25:07.589622845 +0000 UTC expires:2023-12-12 15:30:07.587683341 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): could not load session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:19:31 | stderr | [2023/12/12 16:19:31] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 15:25:07.589622845 +0000 UTC expires:2023-12-12 15:30:07.587683341 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): could not load session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - 1e1355ad-56af-49ab-b741-b4ffbf8f8906 - - [2023/12/12 16:19:31] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 565 0.001
2023/12/13 00:19:31 | stderr | [2023/12/12 16:19:31] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 15:25:07.589622845 +0000 UTC expires:2023-12-12 15:30:07.587683341 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): session is expired, removing session
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - 8c12d0ad-c3c5-4f5b-888c-ef7434abee0b - - [2023/12/12 16:19:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.204
2023/12/13 00:19:31 | stderr | Response: {"error":"invalid_grant","error_description":"Token is not active"}
2023/12/13 00:19:31 | stderr | [2023/12/12 16:19:31] [stored_session.go:193] Unable to refresh session: error refreshing tokens: unable to redeem refresh token: failed to get token: oauth2: cannot fetch token: 400 Bad Request
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - 8d32a1f8-8baa-4564-b325-3a7a05d03a9e - - [2023/12/12 16:19:31] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.001
2023/12/13 00:19:31 | stdout | xx.xxx.xx.xxx - d1f39c3e-4869-464c-9041-8a82c05ad794 - - [2023/12/12 16:19:31] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:19:30 | stdout | xx.xxx.xx.xxx - b1504180-e736-43ae-a37c-a1fabaea87da - - [2023/12/12 16:19:30] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 557 0.002
2023/12/13 00:19:30 | stdout | xx.xxx.xx.xxx - 08e7cbf3-7703-45fc-8b7e-6674e414fe84 - - [2023/12/12 16:19:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/13 00:19:30 | stdout | [2023/12/12 16:19:30] [stored_session.go:189] Refreshing session - User: 16983840-a13c-4059-8fcd-3d7f0096d734; SessionAge: 54m22.410377155s
2023/12/13 00:06:55 | stdout | 172.27.0.1 - 81dbae6c-b0a6-4241-b347-1da052a85669 - - [2023/12/12 16:06:55] 192.168.1.10:4180 GET - "/" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 507 0.027
2023/12/13 00:06:55 | stderr | [2023/12/12 16:06:55] [cookies.go:87] Warning: request host is "192.168.1.10" but using configured cookie domain of ".xxx.com"
2023/12/13 00:06:55 | stderr | [2023/12/12 16:06:55] [cookies.go:21] Warning: request host "192.168.1.10:4180" did not match any of the specific cookie domains of ".xxx.com"
2023/12/13 00:06:55 | stdout | [2023/12/12 16:06:55] [oauthproxy.go:970] No valid authentication in request. Initiating login.
2023/12/12 23:25:10 | stdout | xx.xxx.xx.xxx - 364b3b8a-83d0-4f3a-abcd-4428e78e946f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:10] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 23:25:08 | stdout | xx.xxx.xx.xxx - 8aef029b-232b-44c9-8f37-8c8300544012 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 23:25:08 | stdout | xx.xxx.xx.xxx - 1dcb4abc-a972-4708-b062-05601d89180a - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 23:25:08 | stdout | xx.xxx.xx.xxx - 4ceb3bd2-e389-4c98-b000-b956fd94994f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 23:25:08 | stdout | xx.xxx.xx.xxx - 0d8363e4-2bbc-4303-a080-0493308522f5 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - 03d3117c-7fa3-4469-ab16-4d096f24cfd9 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.003
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - 707ad619-f85e-41a5-81a4-43c5c240ae31 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - 4cd9cc9b-5b79-40db-884a-0317f6e69471 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - ab4224a1-e711-4f91-bf09-4a1f9b4b15a5 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - 6d3e6983-3978-48b9-b502-a4761b665213 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - ab799d47-4e74-4a31-91eb-f649a8838a8c - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - ee39bfb0-30b2-4159-95c5-e4e683daf9f9 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - b1b23b8f-ff8c-4d37-8340-a9fea5060858 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - 2d29012c-2558-4482-90e7-1d2e46935219 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - d1bf4fc1-41cd-4470-b405-05252a502e57 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - 26c2b602-674e-423f-9b2a-bbde44c1aa2d - - [2023/12/12 15:25:07] code.xxx.com GET - "/oauth2/callback?state=DhEW8YlJRkAStVleAst171Ytwp8Rj2ZmNHLrsQVZNLQ%3A%2F&session_state=26d7aaaf-1ead-4282-88a6-9ce27f0ce1dd&iss=https%3A%2F%2Fsso.xxx.com%2Fauth%2Frealms%2Fxxx&code=87d208ac-2214-4fc3-88d9-fe518a46c7af.26d7aaaf-1ead-4282-88a6-9ce27f0ce1dd.a611beea-e9ca-4820-aeb5-19e8fe8fcbee" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 24 0.033
2023/12/12 23:25:07 | stdout | xx.xxx.xx.xxx - 26c2b602-674e-423f-9b2a-bbde44c1aa2d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 15:25:07] [AuthSuccess] Authenticated via OAuth2: Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 15:25:07.589622845 +0000 UTC m=+12727.822655366 expires:2023-12-12 15:30:07.587683341 +0000 UTC m=+13027.820715882 refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}
2023/12/12 23:25:03 | stdout | xx.xxx.xx.xxx - 2d7a5323-b841-4cf9-88ea-ab245b777f44 - - [2023/12/12 15:25:03] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 549 0.001
2023/12/12 23:25:03 | stdout | xx.xxx.xx.xxx - 3e53f0b0-b08f-4627-9e3e-917f17ff1b77 - - [2023/12/12 15:25:03] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.001
2023/12/12 23:25:03 | stderr | [2023/12/12 15:25:03] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 23:25:03 | stdout | xx.xxx.xx.xxx - a64ffe46-ab87-453d-9cbe-22be73899b06 - - [2023/12/12 15:25:03] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 23:25:03 | stdout | xx.xxx.xx.xxx - 8c7f1c73-bcb3-48f7-91df-d2c66dde6856 - - [2023/12/12 15:25:03] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.001
2023/12/12 23:25:03 | stderr | [2023/12/12 15:25:03] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 23:24:59 | stdout | xx.xxx.xx.xxx - b0f31b83-0dd5-45bc-b4ac-4c1d82b6067b - - [2023/12/12 15:24:59] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 23:24:59 | stdout | xx.xxx.xx.xxx - 1e13c8f8-4ac6-4723-9e72-1608485f1624 - - [2023/12/12 15:24:59] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.212
2023/12/12 23:24:59 | stderr | [2023/12/12 15:24:59] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 09:25:56.224516602 +0000 UTC expires:2023-12-12 09:30:56.222470649 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): session is expired, removing session
2023/12/12 23:24:59 | stderr | Response: {"error":"invalid_grant","error_description":"Token is not active"}
2023/12/12 23:24:59 | stderr | [2023/12/12 15:24:59] [stored_session.go:193] Unable to refresh session: error refreshing tokens: unable to redeem refresh token: failed to get token: oauth2: cannot fetch token: 400 Bad Request
2023/12/12 23:24:59 | stdout | [2023/12/12 15:24:59] [stored_session.go:189] Refreshing session - User: 16983840-a13c-4059-8fcd-3d7f0096d734; SessionAge: 5h59m2.775483398s
2023/12/12 22:19:08 | stdout | xx.xxx.xx.xxx - 330ff080-7fa2-4cc5-ab8f-204b5aa694f2 - - [2023/12/12 14:19:08] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.001
2023/12/12 22:19:08 | stdout | xx.xxx.xx.xxx - a6f185e1-8700-4fec-b1df-1f3bd1d59016 - - [2023/12/12 14:19:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:19:08 | stderr | [2023/12/12 14:19:08] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:12:04 | stdout | xx.xxx.xx.xxx - 6b26dcba-e74a-4f31-9258-099519160fd8 - - [2023/12/12 14:12:04] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.001
2023/12/12 22:12:04 | stdout | xx.xxx.xx.xxx - fd21d711-4231-41c8-b110-3b24ca855f28 - - [2023/12/12 14:12:04] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:12:04 | stderr | [2023/12/12 14:12:04] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:12:03 | stdout | xx.xxx.xx.xxx - daa3e63a-f252-462f-a7a9-c545e3e65771 - - [2023/12/12 14:12:03] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.002
2023/12/12 22:12:03 | stdout | xx.xxx.xx.xxx - b51acdb8-d29e-420c-bc3c-d51520b7e230 - - [2023/12/12 14:12:03] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:12:03 | stderr | [2023/12/12 14:12:03] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:11:33 | stdout | xx.xxx.xx.xxx - cd404b0e-828f-40dd-857e-cfafffbfa174 - - [2023/12/12 14:11:33] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.001
2023/12/12 22:11:33 | stdout | xx.xxx.xx.xxx - aebd2cb8-453e-4448-9f21-3a4b7bc6c134 - - [2023/12/12 14:11:33] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:11:33 | stderr | [2023/12/12 14:11:33] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:11:32 | stdout | xx.xxx.xx.xxx - 5378b3ac-b0bc-4863-a0c7-5847316c4578 - - [2023/12/12 14:11:32] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.001
2023/12/12 22:11:32 | stdout | xx.xxx.xx.xxx - dd286f10-e9f6-4a8c-b753-e6e8ec5c9cc5 - - [2023/12/12 14:11:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:11:32 | stderr | [2023/12/12 14:11:32] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:11:15 | stdout | xx.xxx.xx.xxx - 1e8d0e49-2150-4b3a-9f1a-bd88e627cda2 - - [2023/12/12 14:11:15] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.002
2023/12/12 22:11:15 | stdout | xx.xxx.xx.xxx - e1cc42be-b985-4ed3-9158-1864cc472831 - - [2023/12/12 14:11:15] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:11:15 | stderr | [2023/12/12 14:11:15] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:11:15 | stdout | xx.xxx.xx.xxx - 2340c4a3-f09f-45ab-9da2-92083f4a70df - - [2023/12/12 14:11:15] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.001
2023/12/12 22:11:15 | stderr | [2023/12/12 14:11:15] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:11:15 | stdout | xx.xxx.xx.xxx - cb8874bc-81a4-431c-b7de-d527e12acb9a - - [2023/12/12 14:11:15] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:11:04 | stdout | xx.xxx.xx.xxx - 98a55bbf-6074-447d-8bc7-1567abcefaf7 - - [2023/12/12 14:11:04] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.001
2023/12/12 22:11:04 | stdout | xx.xxx.xx.xxx - d4609dfa-36b4-409e-a236-9d7aec580b4a - - [2023/12/12 14:11:04] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:11:04 | stderr | [2023/12/12 14:11:04] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:11:04 | stdout | xx.xxx.xx.xxx - 5fbcd7ad-bf38-4a61-9e09-da3a1ab786ce - - [2023/12/12 14:11:04] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.002
2023/12/12 22:11:04 | stdout | xx.xxx.xx.xxx - 6a56455c-0b4a-4006-a63f-4b2ff0331ab7 - - [2023/12/12 14:11:04] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:11:04 | stderr | [2023/12/12 14:11:04] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:11:04 | stdout | xx.xxx.xx.xxx - d80ea524-8e57-4d3a-9cd0-037634c7a6a8 - - [2023/12/12 14:11:04] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.001
2023/12/12 22:11:04 | stdout | xx.xxx.xx.xxx - edc533b2-6c6d-4e47-a576-a43041fdc071 - - [2023/12/12 14:11:04] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:11:04 | stderr | [2023/12/12 14:11:04] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:11:03 | stdout | xx.xxx.xx.xxx - ce8224c1-a190-4be9-bd2e-6808de4770a6 - - [2023/12/12 14:11:03] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.002
2023/12/12 22:11:03 | stdout | xx.xxx.xx.xxx - 02f09e30-b409-4bdf-a226-eb1a7ac701ac - - [2023/12/12 14:11:03] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 22:11:03 | stderr | [2023/12/12 14:11:03] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 22:11:03 | stdout | xx.xxx.xx.xxx - 08b33763-ba9e-4d68-a28d-5b5fe920267f - - [2023/12/12 14:11:03] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.002
2023/12/12 22:11:03 | stdout | xx.xxx.xx.xxx - 29014454-f2f4-4880-8358-19fd47df0f5e - - [2023/12/12 14:11:03] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.124
2023/12/12 22:11:03 | stderr | [2023/12/12 14:11:03] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 13:36:09.708776859 +0000 UTC expires:2023-12-12 13:41:09.706781625 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): session is expired, removing session
2023/12/12 22:11:03 | stderr | Response: {"error":"invalid_grant","error_description":"Token is not active"}
2023/12/12 22:11:03 | stderr | [2023/12/12 14:11:03] [stored_session.go:193] Unable to refresh session: error refreshing tokens: unable to redeem refresh token: failed to get token: oauth2: cannot fetch token: 400 Bad Request
2023/12/12 22:11:03 | stdout | [2023/12/12 14:11:03] [stored_session.go:189] Refreshing session - User: 16983840-a13c-4059-8fcd-3d7f0096d734; SessionAge: 34m53.291223141s
2023/12/12 22:03:37 | stdout | xx.xxx.xx.xxx - 8ceea752-f14d-4e65-92e8-c8ecd6f6dcaa - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:37] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:03:37 | stdout | xx.xxx.xx.xxx - 15c525b7-0d5a-4879-95cf-8814fda6e7f9 - - [2023/12/12 14:03:37] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 557 0.003
2023/12/12 22:03:37 | stdout | xx.xxx.xx.xxx - 4da8e736-51f4-41eb-b93d-ef1f1b6cf697 - - [2023/12/12 14:03:37] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 557 0.001
2023/12/12 22:03:37 | stdout | xx.xxx.xx.xxx - cb2760b7-e3e5-4943-9bef-cbb6145c3554 - - [2023/12/12 14:03:37] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.000
2023/12/12 22:03:37 | stdout | xx.xxx.xx.xxx - 77a539bf-f3c8-422d-a7d6-7cf0945dd4c9 - - [2023/12/12 14:03:37] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.000
2023/12/12 22:03:37 | stdout | xx.xxx.xx.xxx - ddfac9cf-c083-4911-bfbc-1ce06382a940 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:37] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:03:35 | stdout | xx.xxx.xx.xxx - 8e2dce72-3838-4f8d-b6bf-0bbc6f83a92a - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:35] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:03:35 | stdout | xx.xxx.xx.xxx - f51a1cb3-d5c7-45a0-bac8-ff7b42f841e7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:35] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 22:03:34 | stdout | xx.xxx.xx.xxx - 33ab0e1b-32cb-442a-85c6-03f7ddc03d42 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 22:03:34 | stdout | xx.xxx.xx.xxx - 6c1140ea-7bd6-440d-86f7-b796696a8b1f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:03:34 | stdout | xx.xxx.xx.xxx - a7a976a2-eb83-4985-8d67-02a18e0df327 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:03:34 | stdout | xx.xxx.xx.xxx - 3c58a033-c09e-4500-ac4e-8de529169c23 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:03:34 | stdout | xx.xxx.xx.xxx - 668a5eb4-3c8f-4730-a731-b372d9775ba0 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:03:34 | stdout | xx.xxx.xx.xxx - 163cb263-a3ed-4725-ad71-960531230270 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 22:03:33 | stdout | xx.xxx.xx.xxx - e8155007-295c-4339-a587-4fbe95082ba1 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:33] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 22:03:33 | stdout | xx.xxx.xx.xxx - f4e19d54-e89d-42aa-bc8e-9413ea06f437 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:33] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:03:32 | stdout | xx.xxx.xx.xxx - d94ff44e-6a03-45f6-9adb-095c9630742e - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 22:03:32 | stdout | xx.xxx.xx.xxx - e9683377-d10b-4231-b98a-775f24d525bf - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:03:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:32 | stdout | xx.xxx.xx.xxx - 17013f16-ca34-41be-b8b2-793423fe7f2a - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:32 | stdout | xx.xxx.xx.xxx - c8e9f235-cce1-4584-9b01-15d6ef6de5cf - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:32 | stdout | xx.xxx.xx.xxx - 07787607-3e1b-48ba-bea9-48c0c97e9eb2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - aab54b0a-e220-4018-ba79-a7524699c748 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - df195ec8-c374-4824-bbae-db2056a0b953 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - ca13c1b7-0c2e-4b89-9fdd-c5db3b2e38e5 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - 49fd9733-87d4-4c40-8d70-55d5e28b5358 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - 4b2bfaee-2132-4579-81d5-cec59ba3d9e3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - d4b475be-2ebc-4424-aa8d-a4c8c0609318 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - 32413fd9-68af-4a50-8b89-94d3ec61d558 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - df3decc0-174c-4bb1-baef-20ce715764c7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - f6caa090-516b-403a-bffd-009e9beaa966 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - 152e96f3-8634-4abb-a49d-c34e64fc540a - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - e41691b3-abf8-40c8-a4a2-5a440eb4aca4 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - 65ef0aa6-610a-4cfc-b6bb-0ec405811ca4 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.002
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - 57db40a6-06e4-449d-a200-7ad9a28e3e66 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 22:00:30 | stdout | xx.xxx.xx.xxx - 64bfc047-69b1-4da0-ae70-5a9f17de45a4 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 14:00:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 21:59:28 | stdout | xx.xxx.xx.xxx - 68d6cdf6-ee92-488d-bd39-30fc4bf9c3f9 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:59:28] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:59:28 | stdout | xx.xxx.xx.xxx - 460d79a6-c062-4904-87dc-25e58c27ec84 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:59:28] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:59:28 | stdout | xx.xxx.xx.xxx - 710fff16-5c17-450c-bb78-d128bc147bd1 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:59:28] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:59:28 | stdout | xx.xxx.xx.xxx - 138a079c-d5ad-4243-8bcf-dfacc0d119ba - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:59:28] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.003
2023/12/12 21:59:28 | stdout | xx.xxx.xx.xxx - 50389450-5823-4892-bcab-f93dbe40846c - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:59:28] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.002
2023/12/12 21:59:28 | stdout | xx.xxx.xx.xxx - 36765cb7-54c7-4034-8192-26e4228c34b8 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:59:28] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:59:27 | stdout | xx.xxx.xx.xxx - a1908afd-cb81-4ba3-9cc3-b0a1ee593145 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:59:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:14 | stdout | xx.xxx.xx.xxx - 3d7f7830-1d4c-4ebf-9b1f-fe4623950139 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:14] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:12 | stdout | xx.xxx.xx.xxx - 83497be5-61b0-464e-9169-31286e9dc5a2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:12] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:12 | stdout | xx.xxx.xx.xxx - 6c80a636-d72e-4093-b5e9-acc09e5a254c - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:12] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:12 | stdout | xx.xxx.xx.xxx - c10588a2-b124-4011-85a5-24fcf1b12821 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:12] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:12 | stdout | xx.xxx.xx.xxx - 4e599d17-abdf-4943-86a9-62dd87679878 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:12] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:12 | stdout | xx.xxx.xx.xxx - fa2bba46-100a-47b1-bdc8-cf90b0526dd7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:12] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 21:36:11 | stdout | xx.xxx.xx.xxx - 80d47071-d77a-4849-8d49-1208d8bcc4e1 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:11] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:11 | stdout | xx.xxx.xx.xxx - 6589159f-0af3-4c17-bd30-88b6a3f1557b - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:11] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 21:36:11 | stdout | xx.xxx.xx.xxx - 9d41ccd5-cb08-4222-9a65-618f1ae91811 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:11] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:11 | stdout | xx.xxx.xx.xxx - 838662a3-4b19-4be4-a49d-308343b3352e - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:11] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 21:36:09 | stdout | xx.xxx.xx.xxx - ec0c0225-a745-46b1-b1c8-c32980471bde - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:09 | stdout | xx.xxx.xx.xxx - 14cda2f9-d7ec-4a40-99b7-f4074564eb0b - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 21:36:09 | stdout | xx.xxx.xx.xxx - 0654ef4c-74f1-477d-956b-eb4f7e6bb535 - - [2023/12/12 13:36:09] code.xxx.com GET - "/oauth2/callback?state=0L2VS377ipB1p9vkliwX4kxbklK6mUvq6pTyBmSb0FU%3A%2F&session_state=6fc735a1-5f38-4c48-8a44-e0d15a06549c&iss=https%3A%2F%2Fsso.xxx.com%2Fauth%2Frealms%2Fxxx&code=7fb3459e-bbc2-41b4-8085-d8a1827eab71.6fc735a1-5f38-4c48-8a44-e0d15a06549c.a611beea-e9ca-4820-aeb5-19e8fe8fcbee" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 24 0.244
2023/12/12 21:36:09 | stdout | xx.xxx.xx.xxx - 0654ef4c-74f1-477d-956b-eb4f7e6bb535 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:36:09] [AuthSuccess] Authenticated via OAuth2: Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 13:36:09.708776859 +0000 UTC m=+6189.941809390 expires:2023-12-12 13:41:09.706781625 +0000 UTC m=+6489.939814166 refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}
2023/12/12 21:36:08 | stdout | xx.xxx.xx.xxx - 11555878-8e08-4877-86b1-25e8ed2a4891 - - [2023/12/12 13:36:08] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 549 0.002
2023/12/12 21:36:08 | stdout | xx.xxx.xx.xxx - f0e04fb9-9763-4881-b27d-0f506c307ba3 - - [2023/12/12 13:36:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 21:36:08 | stderr | [2023/12/12 13:36:08] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 21:36:04 | stdout | xx.xxx.xx.xxx - 551371cf-aea0-4a92-9144-ca57cd36a01a - - [2023/12/12 13:36:04] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 507 0.001
2023/12/12 21:36:04 | stdout | xx.xxx.xx.xxx - d2144db1-3854-4794-989d-39aab44cfeda - - [2023/12/12 13:36:04] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.002
2023/12/12 21:36:04 | stderr | [2023/12/12 13:36:04] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 21:03:51 | stdout | 192.168.1.1 - 0ff21c66-e999-43d1-b2be-fb7fc9284583 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:51] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:49 | stdout | 192.168.1.1 - fa1b1d42-b413-4917-a5ad-a9e0137b2a07 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.002
2023/12/12 21:03:49 | stdout | 192.168.1.1 - 7f099e11-95c0-489d-9d58-2c1951a3b5d2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:49 | stdout | 192.168.1.1 - 8d8558b2-9860-4628-843c-ca8334d5f239 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:49 | stdout | 192.168.1.1 - a07ac620-aa67-40a7-baca-3fb9ec787aa3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:49 | stdout | 192.168.1.1 - 8dacf838-5eeb-42a9-8fc8-dd9f63e843f4 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:49 | stdout | 192.168.1.1 - 781f1b7c-8789-43c6-b192-895da475222f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:49 | stdout | 192.168.1.1 - 5e2a7c8b-4757-4829-a7ba-ca7b80c8474d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:49 | stdout | 192.168.1.1 - c4bf1fae-2128-48d1-8ab2-f9e8a4f36878 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:47 | stdout | 192.168.1.1 - 9b126bc0-b051-4b96-a127-60da996e40a6 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:47] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:47 | stdout | 192.168.1.1 - 4d754cb0-3177-4086-bee9-2420eafb882e - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:47] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:46 | stdout | 192.168.1.1 - 1da424fc-3568-4aa8-adf3-942164265b56 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:46] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.005
2023/12/12 21:03:46 | stdout | 192.168.1.1 - 6902b39c-8da7-46b4-b17e-0c259979507c - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:46] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:45 | stdout | 192.168.1.1 - 09b9dd57-bf51-40bf-94f4-af1940415350 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:45 | stdout | 192.168.1.1 - 14b92f29-4471-4696-9993-e3ac6fd8f52d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:45 | stdout | 192.168.1.1 - cabd4420-1b28-43f9-b7f3-cc2a8f246a1f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:45 | stdout | 192.168.1.1 - fd7257e5-562c-4fd9-acbf-c7f2f7736b7c - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.030
2023/12/12 21:03:45 | stdout | 192.168.1.1 - 3baf1542-fe9c-4231-a479-742088432d4d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:45 | stdout | 192.168.1.1 - 6d38365a-9204-4222-937e-c6ca483034e3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:44 | stdout | 192.168.1.1 - f43900e8-62da-4f16-ba5b-378d49720915 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:44 | stdout | 192.168.1.1 - c232e7d6-5446-48c5-95ab-7782bbc7eace - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:44 | stdout | 192.168.1.1 - 177786db-c8aa-4ee9-87ed-64241aedaf3e - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:44 | stdout | 192.168.1.1 - d658c686-3701-494f-8609-bcbb82211ebe - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:44 | stdout | 192.168.1.1 - fbb19843-f42a-425e-93c9-3cfd2f7d054d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:44 | stdout | 192.168.1.1 - 2ae04393-d8e4-43e2-9944-f5dce23b9a02 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:44 | stdout | 192.168.1.1 - b9bbfb58-f374-4a17-a710-0a463c94e1ae - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:44 | stdout | 192.168.1.1 - 3c9e3af0-998e-4631-9f9d-08cb4d98d381 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:44 | stdout | 192.168.1.1 - cd1448a9-3f77-4415-b6b4-fae2218d66e2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:43 | stdout | 192.168.1.1 - 9c222671-dabb-4616-bdec-a4f28c78ab14 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:43] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.003
2023/12/12 21:03:43 | stdout | 192.168.1.1 - 2cc0f391-39f4-4739-8726-40970b531eb3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:43] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.004
2023/12/12 21:03:43 | stdout | 192.168.1.1 - b027699d-5d55-49dc-b4dc-0c636e39ea96 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:43] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:43 | stdout | 192.168.1.1 - b48ad4f7-1a3c-4410-bf9a-d914577f4cae - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:43] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.002
2023/12/12 21:03:43 | stdout | 192.168.1.1 - 5d02c1a2-1ed7-413b-926b-ce86d45a267a - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:43] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:43 | stdout | 192.168.1.1 - 3b779af4-9156-4fdc-9c0f-2010eaed8953 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:43] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:41 | stdout | 192.168.1.1 - 172a55a4-e3a6-4062-be49-adc733c11999 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:41] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 21:03:41 | stdout | 192.168.1.1 - 25c795f5-bbec-41bb-829f-08d326d5f217 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:41] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 21:03:41 | stdout | 192.168.1.1 - 808c4e88-bc5b-462a-89c7-79835a6b8866 - - [2023/12/12 13:03:40] code.xxx.com GET - "/oauth2/callback?state=4sewMFnQ6tDg3_0XQdBH4C7K7IQkKFxlKOgy0ubtuzs%3A%2F&session_state=2e437cc4-e0fe-4ed4-9517-f497bdb0e84a&iss=https%3A%2F%2Fsso.xxx.com%2Fauth%2Frealms%2Fxxx&code=00d35710-3297-4989-ba7a-e50f38a282c6.2e437cc4-e0fe-4ed4-9517-f497bdb0e84a.a611beea-e9ca-4820-aeb5-19e8fe8fcbee" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 24 0.281
2023/12/12 21:03:41 | stdout | 192.168.1.1 - 808c4e88-bc5b-462a-89c7-79835a6b8866 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 13:03:41] [AuthSuccess] Authenticated via OAuth2: Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 13:03:41.112634174 +0000 UTC m=+4241.345666715 expires:2023-12-12 13:08:41.110619501 +0000 UTC m=+4541.343652042 refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}
2023/12/12 21:03:34 | stdout | 192.168.1.1 - d5d0004e-8c3a-4334-98c5-04afed61e3d8 - - [2023/12/12 13:03:34] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 21:03:34 | stdout | 192.168.1.1 - 9fd66129-ae91-4ead-a7fe-bea15aa937b6 - - [2023/12/12 13:03:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/12 21:03:34 | stdout | 192.168.1.1 - 59918b5a-0d6b-4f0b-8d72-2411d332f717 - - [2023/12/12 13:03:34] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 549 0.001
2023/12/12 21:03:34 | stdout | 192.168.1.1 - d8f452e2-1d38-4199-9881-8cadfe955379 - - [2023/12/12 13:03:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/12 21:03:21 | stdout | 192.168.1.1 - 01963c00-1ece-4562-aa24-ba90ecbc8e00 - - [2023/12/12 13:03:21] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 21:03:21 | stdout | 192.168.1.1 - b25efd3b-b74b-49d3-ac6f-bfebb9ad8167 - - [2023/12/12 13:03:21] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.000
2023/12/12 20:47:32 | stdout | xxx.xxx.xxx.xxx - 496d47d2-26aa-4ecc-b47c-cb16c76df462 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:47:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:47:29 | stdout | xxx.xxx.xxx.xxx - ef00ad80-eec9-487b-8d4a-8cc1ac69ad5c - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:47:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:47:28 | stdout | xxx.xxx.xxx.xxx - 5a4aa454-0108-497f-8d55-2348e999b268 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:47:28] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:42:08 | stdout | xx.xxx.xx.xxx - cab59650-51e9-4c56-87ad-b0d466ae7fca - - [2023/12/12 12:42:08] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 549 0.002
2023/12/12 20:42:08 | stdout | xx.xxx.xx.xxx - a05b6cd3-10ef-4ed5-8ea0-e40645958b82 - - [2023/12/12 12:42:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 20:42:08 | stderr | [2023/12/12 12:42:08] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 20:42:03 | stdout | xx.xxx.xx.xxx - f7ef4796-a3a4-4bf4-b688-83eb4cd0527a - - [2023/12/12 12:42:03] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 507 0.001
2023/12/12 20:42:03 | stdout | xx.xxx.xx.xxx - 8311c126-a75d-4a0b-833f-8a8ebf8957bc - - [2023/12/12 12:42:03] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 20:42:03 | stderr | [2023/12/12 12:42:03] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 20:42:00 | stdout | xx.xxx.xx.xxx - df03508d-49c6-487f-98f0-a7c1f959b087 - - [2023/12/12 12:42:00] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 507 0.001
2023/12/12 20:42:00 | stdout | xx.xxx.xx.xxx - 8216fe90-6e32-4d56-b559-5385e7fa6aee - - [2023/12/12 12:42:00] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 20:42:00 | stderr | [2023/12/12 12:42:00] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 20:41:58 | stdout | xx.xxx.xx.xxx - cc178b5a-09b8-4a7a-93f6-bd5568a2eb71 - - [2023/12/12 12:41:58] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 20:41:58 | stdout | xx.xxx.xx.xxx - 70a3dcdc-23b4-429a-bc31-d29371a83ea0 - - [2023/12/12 12:41:58] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 401 13 0.001
2023/12/12 20:41:58 | stderr | [2023/12/12 12:41:58] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 20:41:58 | stdout | xx.xxx.xx.xxx - 18f2259c-4a72-44eb-bf27-96a988ec790d - - [2023/12/12 12:41:58] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 507 0.001
2023/12/12 20:41:58 | stdout | xx.xxx.xx.xxx - af70b239-c0c5-46b6-ae1b-a99f3aa19e99 - - [2023/12/12 12:41:58] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 20:41:58 | stderr | [2023/12/12 12:41:58] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 20:41:46 | stdout | xx.xxx.xx.xxx - 5bb92220-95fc-4c65-a056-f398a186ef04 - - [2023/12/12 12:41:46] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 20:41:46 | stdout | xx.xxx.xx.xxx - fef9fda8-58be-4b65-a35a-58f74a45cbf3 - - [2023/12/12 12:41:46] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 401 13 0.001
2023/12/12 20:41:46 | stderr | [2023/12/12 12:41:46] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 20:41:24 | stdout | xx.xxx.xx.xxx - b29c1788-c9e5-4a06-8319-371ed590014d - - [2023/12/12 12:41:24] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 549 0.001
2023/12/12 20:41:24 | stdout | xx.xxx.xx.xxx - 143f1b8d-1225-47b9-8c92-d1b3cb3b3ff8 - - [2023/12/12 12:41:24] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 20:41:24 | stderr | [2023/12/12 12:41:24] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 20:41:20 | stdout | xx.xxx.xx.xxx - 63e66687-5522-4e8a-9637-6ae33e31c656 - - [2023/12/12 12:41:20] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 20:41:20 | stdout | xx.xxx.xx.xxx - 1deecb38-1b54-4faa-886d-53113c1277d6 - - [2023/12/12 12:41:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 401 13 0.191
2023/12/12 20:41:20 | stderr | [2023/12/12 12:41:20] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 11:57:18.785179114 +0000 UTC expires:2023-12-12 12:02:18.78321839 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): session is expired, removing session
2023/12/12 20:41:20 | stderr | Response: {"error":"invalid_grant","error_description":"Token is not active"}
2023/12/12 20:41:20 | stderr | [2023/12/12 12:41:20] [stored_session.go:193] Unable to refresh session: error refreshing tokens: unable to redeem refresh token: failed to get token: oauth2: cannot fetch token: 400 Bad Request
2023/12/12 20:41:19 | stdout | [2023/12/12 12:41:19] [stored_session.go:189] Refreshing session - User: 16983840-a13c-4059-8fcd-3d7f0096d734; SessionAge: 44m0.214820886s
2023/12/12 20:40:20 | stdout | xxx.xxx.xxx.xxx - 5bb13c72-c589-46d4-8963-b97fad1d05a9 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:40:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:40:20 | stdout | xxx.xxx.xxx.xxx - 8c6eb329-1bc6-4c67-be89-ff21465a6178 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:40:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.004
2023/12/12 20:40:20 | stdout | xxx.xxx.xxx.xxx - 3b01d471-3a0b-4e44-8616-380c101b1154 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:40:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.003
2023/12/12 20:40:20 | stdout | xxx.xxx.xxx.xxx - 36de8378-45ff-4e92-83e7-47ccf2110bc7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:40:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:47 | stdout | xxx.xxx.xxx.xxx - 85b642ee-a757-47ce-b664-0d38214bcf09 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:47] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:38:46 | stdout | xxx.xxx.xxx.xxx - 6ee4d638-c9e2-4543-8cb4-998405d73604 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:46] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:46 | stdout | xxx.xxx.xxx.xxx - 97ab9ccd-9b0c-4614-9202-6200b08d1007 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:46] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:46 | stdout | xxx.xxx.xxx.xxx - 3134dedc-6c49-4593-b517-1f3bdb8f8b33 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:46] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:45 | stdout | xxx.xxx.xxx.xxx - 46d272d9-aebf-4c0e-8923-b9215d3a1dc0 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:45 | stdout | xxx.xxx.xxx.xxx - 62f945a8-84a5-48bb-ba5d-015ed02298c6 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:45 | stdout | xxx.xxx.xxx.xxx - 150bfb68-a96c-4f99-bcf3-78a326d5c08b - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:38:45 | stdout | xxx.xxx.xxx.xxx - 2ab21f86-2c20-4b76-8ea6-0f8783d42b0b - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:38:44 | stdout | xxx.xxx.xxx.xxx - 605a1c03-466a-46aa-abe1-1d3b8edf43a7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:44 | stdout | xxx.xxx.xxx.xxx - 98fabbd8-ffd5-49d0-9e67-4a931f72dac0 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:44 | stdout | xxx.xxx.xxx.xxx - 5c0ad0be-9b45-4808-a7e2-7f419ca69ed6 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:44 | stdout | xxx.xxx.xxx.xxx - 194d11a4-2df4-402f-9f9e-29f1b7587461 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:44 | stdout | xxx.xxx.xxx.xxx - 52b7a24b-d93d-4847-9152-ff3ee5c15766 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:44 | stdout | xxx.xxx.xxx.xxx - cbab7c3f-8722-433f-bdce-32e597fb37f3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:44] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:43 | stdout | xxx.xxx.xxx.xxx - dae45b82-46d5-4b41-a978-bd06f1f8a213 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:43] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:38:43 | stdout | xxx.xxx.xxx.xxx - 17e2d4e7-a59d-4d66-b6a6-703c147c7572 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:38:43] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - 862ea006-cc65-460d-ade1-7d61c06b4a68 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.351
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - ffea5f03-2137-4272-8a38-7cbcfcfae5d8 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.352
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - fc748053-0419-456a-b966-1ff260ed8fba - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.352
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - 8f61354d-a369-4f5a-97d5-7cd7a9d9cf96 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.113
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - 8546e415-7411-45b3-a3dc-ad7ac81d8327 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.105
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - f6a81bf1-3519-48de-9f2b-0dfc2c5b649c - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.104
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - 96e4c729-428b-4494-88fc-f87c4be3621d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.111
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - 8d54db4c-60d4-41fc-b283-45b191b46733 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.007
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - 8f5f0957-ca73-4f0c-8cbd-8695e05497a5 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.102
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - eef954ef-8dfe-4eac-a63c-ed10d089b444 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.109
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - 87c9886b-a5eb-45e8-8686-b244f925f099 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.002
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - 240e6a02-b22f-47fd-831a-32418436802d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.098
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - c217f582-b0e7-4f6d-afc9-c755b68326c1 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - df4f17ab-c777-4a59-a20c-1f1306225661 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:35:19 | stdout | xxx.xxx.xxx.xxx - bfdd9efd-d85f-4a13-8d8d-d1edf6fdd0bb - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:35:19] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.002
2023/12/12 20:25:10 | stdout | xxx.xxx.xxx.xxx - 2585ca8f-ee43-420a-8c27-021f849ed9e4 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:25:10] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.002
2023/12/12 20:25:10 | stdout | xxx.xxx.xxx.xxx - 17c32f05-007c-49d4-b83f-047aff8610a1 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:25:10] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:25:09 | stdout | xxx.xxx.xxx.xxx - 705940c9-abb3-44d7-9d91-4870da3d60dc - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:25:09] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:25:08 | stdout | xxx.xxx.xxx.xxx - 2e63bacf-d727-4d10-9ec4-61c9a34f2410 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:25:08] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:24:56 | stdout | xxx.xxx.xxx.xxx - a21f4126-86f9-4c43-a1f6-f53d6eba40f6 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:24:56] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:24:00 | stdout | xxx.xxx.xxx.xxx - f23febc6-dc4d-43f6-ba39-fe30c8f33f35 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:24:00] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:23:59 | stdout | xxx.xxx.xxx.xxx - 508b50da-b1c0-4c6a-926e-ac3aae3e412d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:23:59] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:23:59 | stdout | xxx.xxx.xxx.xxx - d3576dee-c714-4792-8181-f91094485218 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:23:59] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:21:54 | stdout | xxx.xxx.xxx.xxx - 7cfb2ec9-06b9-46fd-b20a-ffe9f10b0206 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:54] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:54 | stdout | xxx.xxx.xxx.xxx - a7813150-1f6a-4691-9080-36fe6454ddd7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:54] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:47 | stdout | xxx.xxx.xxx.xxx - 88904f53-59ff-4747-bb62-9cf8fca64100 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:47] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:47 | stdout | xxx.xxx.xxx.xxx - 1cf0c9bf-fe95-4ea4-bb48-ceb1d93c9121 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:47] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:37 | stdout | xxx.xxx.xxx.xxx - 35fb015c-c628-4260-9427-0e328ca4e3a8 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:37] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:35 | stdout | xxx.xxx.xxx.xxx - c873c2e4-902d-4d1f-ad5b-4a3c30e0fa77 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:35] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:35 | stdout | xxx.xxx.xxx.xxx - e4bd7e8a-3e9a-4110-a78e-fa6e92850707 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:35] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:35 | stdout | xxx.xxx.xxx.xxx - bc100d10-9cd0-4707-9ffe-446525501cd8 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:35] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:21:35 | stdout | xxx.xxx.xxx.xxx - 9f53f394-d014-4f17-964e-8f81da2e0d52 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:35] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:21:34 | stdout | xxx.xxx.xxx.xxx - d933aaf1-dc4e-4776-a64c-5fcbbd20dabe - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:21:34 | stdout | xxx.xxx.xxx.xxx - c913ece5-1afe-463f-9a09-39ce4ffa7924 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:21:34 | stdout | xxx.xxx.xxx.xxx - 38b190e2-2cf9-4e27-9e87-ba5cc28e7bf3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:34 | stdout | xxx.xxx.xxx.xxx - 6bfa2492-0dbc-42d5-a252-1a304302207b - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:21:34 | stdout | xxx.xxx.xxx.xxx - 2730d501-f637-4af9-b733-64e890298c4f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:34 | stdout | xxx.xxx.xxx.xxx - 5d4494b7-999b-416f-8448-08cb215612d7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:21:34 | stdout | xxx.xxx.xxx.xxx - 1d9f5aca-7b42-4581-aff8-d74649ad37db - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:34 | stdout | xxx.xxx.xxx.xxx - 3c1bd18d-a584-4e79-8612-1aae9e2b018d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:21:33 | stdout | xxx.xxx.xxx.xxx - c44933ce-2210-4459-a618-1c71830fe273 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:33] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:21:33 | stdout | xxx.xxx.xxx.xxx - ebd2f10b-c36a-467c-a45e-916ef48b7461 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:33] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:21:33 | stdout | xxx.xxx.xxx.xxx - 3cf9693c-0a14-429b-9e62-617804c1f1c7 - - [2023/12/12 12:21:33] code.xxx.com GET - "/oauth2/callback?state=1_VraCMUrLocZLlHOl_10ewrdeHwTsUK_SE0e_uQeUE%3A%2F&session_state=a9ac9a00-f278-45d2-95b4-9e5bf497bb95&iss=https%3A%2F%2Fsso.xxx.com%2Fauth%2Frealms%2Fxxx&code=08a48408-f3c3-490c-91ca-130898664855.a9ac9a00-f278-45d2-95b4-9e5bf497bb95.a611beea-e9ca-4820-aeb5-19e8fe8fcbee" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 24 0.033
2023/12/12 20:21:33 | stdout | xxx.xxx.xxx.xxx - 3cf9693c-0a14-429b-9e62-617804c1f1c7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:21:33] [AuthSuccess] Authenticated via OAuth2: Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 12:21:33.460538242 +0000 UTC m=+1713.693570763 expires:2023-12-12 12:26:33.458577398 +0000 UTC m=+2013.691609929 refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}
2023/12/12 20:21:32 | stdout | xxx.xxx.xxx.xxx - 00033885-62da-4738-a6d2-949a3c3b752c - - [2023/12/12 12:21:32] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 549 0.001
2023/12/12 20:21:32 | stdout | xxx.xxx.xxx.xxx - 5656abf6-f41f-45aa-8e82-17b1167991f3 - - [2023/12/12 12:21:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.001
2023/12/12 20:21:32 | stderr | [2023/12/12 12:21:32] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 20:21:28 | stdout | xxx.xxx.xxx.xxx - 67abc96e-1a23-4e04-a7a3-88d1a8d7baa8 - - [2023/12/12 12:21:28] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 20:21:28 | stdout | xxx.xxx.xxx.xxx - 3da24931-6a17-46f8-838b-f05460f8d4af - - [2023/12/12 12:21:28] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" 401 13 0.169
2023/12/12 20:21:28 | stderr | [2023/12/12 12:21:28] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 11:41:13.990352124 +0000 UTC expires:2023-12-12 11:46:13.97765998 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): session is expired, removing session
2023/12/12 20:21:28 | stderr | Response: {"error":"invalid_grant","error_description":"Token is not active"}
2023/12/12 20:21:28 | stderr | [2023/12/12 12:21:28] [stored_session.go:193] Unable to refresh session: error refreshing tokens: unable to redeem refresh token: failed to get token: oauth2: cannot fetch token: 400 Bad Request
2023/12/12 20:21:28 | stdout | [2023/12/12 12:21:28] [stored_session.go:189] Refreshing session - User: 16983840-a13c-4059-8fcd-3d7f0096d734; SessionAge: 40m14.009647876s
2023/12/12 20:14:54 | stdout | xx.xxx.xx.xxx - 3e18f4e5-e4c7-46d9-a18f-ea76f6437863 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:54] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 20:14:52 | stdout | xx.xxx.xx.xxx - c1e8df2c-1c60-495a-96ef-c31d7c83759a - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:52] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:14:52 | stdout | xx.xxx.xx.xxx - 7035b066-51fe-4c88-a0f0-6b5d4a0e4bd1 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:52] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 20:14:52 | stdout | xx.xxx.xx.xxx - 1f0c7999-3806-4484-a4b4-e0deef587316 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:52] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:14:52 | stdout | xx.xxx.xx.xxx - 6103d468-fedd-4e31-9002-1f8019cceafc - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:52] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:14:52 | stdout | xx.xxx.xx.xxx - 2a05ac99-af95-4895-a281-f571184afdd0 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:52] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:14:50 | stdout | xx.xxx.xx.xxx - 63ce3de7-7ba8-493b-a19c-0c59abf172bc - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:50] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:14:50 | stdout | xx.xxx.xx.xxx - 7662a1c3-0c40-4a67-9cf4-c8c1f61fa00d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:50] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 20:14:50 | stdout | xx.xxx.xx.xxx - f4a8797e-9064-4a71-a0a5-0fc629da9a1d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:50] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:14:50 | stdout | xx.xxx.xx.xxx - 079cd24b-5ec2-40f3-a1ac-d8254b551311 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:50] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:14:49 | stdout | xx.xxx.xx.xxx - c9e3c949-8260-4b1c-8b9c-194d25654422 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:49] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 20:14:48 | stdout | xx.xxx.xx.xxx - 6c711ea5-e0f8-436e-adeb-ea40bb5d7d20 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 12:14:48] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:57:23 | stdout | xx.xxx.xx.xxx - a5aea7dc-9bb4-4f70-9a0d-362dfaf56c2d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:23] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 19:57:21 | stdout | xx.xxx.xx.xxx - 315f3437-42b3-4cc7-b0b3-9666461e93dd - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:21] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 19:57:21 | stdout | xx.xxx.xx.xxx - 8b30a87e-9a4a-49b8-9228-373d6c7713de - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:21] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 19:57:21 | stdout | xx.xxx.xx.xxx - 4331456d-2dfa-44fa-922a-af84f0441fdc - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:21] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 19:57:21 | stdout | xx.xxx.xx.xxx - 202f2006-bf3a-4de1-9c0f-71e9518e8f31 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:21] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 19:57:21 | stdout | xx.xxx.xx.xxx - f4e2edd1-ef01-4e2a-b145-252ea468a1ac - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:21] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 19:57:20 | stdout | xx.xxx.xx.xxx - 02bbfc08-2da7-4b15-ad20-7c44f1b0fef4 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 19:57:20 | stdout | xx.xxx.xx.xxx - 5ff27e70-ceb7-439e-9f89-0b1be71a8be9 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 19:57:20 | stdout | xx.xxx.xx.xxx - 56f74f7c-a9a7-46fc-a634-36c4fba6f729 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 19:57:20 | stdout | xx.xxx.xx.xxx - 55bf9a9b-511d-42ad-89ba-289f57be050d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 19:57:20 | stdout | xx.xxx.xx.xxx - 4a34dc28-f6ac-4882-9d3e-b283112d43f2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 19:57:20 | stdout | xx.xxx.xx.xxx - f400fb4b-827e-461b-8887-08dd7f5814eb - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:20] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.000
2023/12/12 19:57:18 | stdout | xx.xxx.xx.xxx - d73696f1-cddf-4f1b-8f1b-1d366637ff87 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:18] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 202 0 0.001
2023/12/12 19:57:18 | stdout | xx.xxx.xx.xxx - 6ec5a1f8-3a0a-4b73-973b-f4f5d731a1d3 - - [2023/12/12 11:57:18] code.xxx.com GET - "/oauth2/callback?state=GhWw2xh3nn3sfMsJOA447bz54hM_mEpUeCTE_foxtEU%3A%2F?folder%3D%2Fconfig%2Fworkspace%2F&session_state=90c8bd61-525a-4aa2-92b0-49a2fc3f0225&iss=https%3A%2F%2Fsso.xxx.com%2Fauth%2Frealms%2Fxxx&code=27a190d6-8599-4b90-a5f4-8687f48f908d.90c8bd61-525a-4aa2-92b0-49a2fc3f0225.a611beea-e9ca-4820-aeb5-19e8fe8fcbee" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 50 0.033
2023/12/12 19:57:18 | stdout | xx.xxx.xx.xxx - 6ec5a1f8-3a0a-4b73-973b-f4f5d731a1d3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:57:18] [AuthSuccess] Authenticated via OAuth2: Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 11:57:18.785179114 +0000 UTC m=+259.018211635 expires:2023-12-12 12:02:18.78321839 +0000 UTC m=+559.016250941 refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}
2023/12/12 19:57:17 | stdout | xx.xxx.xx.xxx - a9f02765-3894-468a-ad7b-15b72ff827f8 - - [2023/12/12 11:57:17] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 549 0.002
2023/12/12 19:57:17 | stdout | xx.xxx.xx.xxx - 09855922-8bab-4f09-af53-dbd9e3d98c7f - - [2023/12/12 11:57:17] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 19:57:17 | stderr | [2023/12/12 11:57:17] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 19:57:13 | stdout | xx.xxx.xx.xxx - ed68b9e1-dc4f-4c98-9666-304579c6f272 - - [2023/12/12 11:57:13] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 543 0.001
2023/12/12 19:57:13 | stdout | xx.xxx.xx.xxx - 7b3c4d0c-9ade-46ac-874a-e719cdbe9cc7 - - [2023/12/12 11:57:13] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.000
2023/12/12 19:57:13 | stderr | [2023/12/12 11:57:13] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 19:57:12 | stdout | xx.xxx.xx.xxx - 12379e7a-2614-4456-be2a-833faef1a0d4 - - [2023/12/12 11:57:12] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.001
2023/12/12 19:57:12 | stdout | xx.xxx.xx.xxx - 04478571-b5c5-4f0d-a59d-772480f1695a - - [2023/12/12 11:57:12] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.001
2023/12/12 19:57:12 | stderr | [2023/12/12 11:57:12] [stored_session.go:94] Error loading cookied session: failed to load the session state with the ticket: error loading redis session: redis: nil, removing session
2023/12/12 19:57:12 | stdout | xx.xxx.xx.xxx - 8943cca4-ec76-4233-9839-0558bcbf1309 - - [2023/12/12 11:57:12] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 302 665 0.002
2023/12/12 19:57:12 | stdout | xx.xxx.xx.xxx - eb46cec4-e411-4a6b-9ebd-20cd07261191 - - [2023/12/12 11:57:12] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36" 401 13 0.218
2023/12/12 19:57:12 | stderr | [2023/12/12 11:57:12] [stored_session.go:94] Error loading cookied session: error refreshing access token for session (Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 10:37:19.313937715 +0000 UTC expires:2023-12-12 10:42:19.311965941 +0000 UTC refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}): session is expired, removing session
2023/12/12 19:57:12 | stderr | Response: {"error":"invalid_grant","error_description":"Token is not active"}
2023/12/12 19:57:12 | stderr | [2023/12/12 11:57:12] [stored_session.go:193] Unable to refresh session: error refreshing tokens: unable to redeem refresh token: failed to get token: oauth2: cannot fetch token: 400 Bad Request
2023/12/12 19:57:12 | stdout | [2023/12/12 11:57:12] [stored_session.go:189] Refreshing session - User: 16983840-a13c-4059-8fcd-3d7f0096d734; SessionAge: 1h19m52.686062285s
2023/12/12 19:53:45 | stdout | xxx.xxx.xxx.xx - 79ea79e9-0434-470a-a8fd-81b376f62c4d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:45] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:42 | stdout | xxx.xxx.xxx.xx - 4fd9f1f1-7504-4dbe-a624-42f93f3702a5 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:42] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:41 | stdout | xxx.xxx.xxx.xx - d735fdd1-0497-4f6e-9188-2a8ed8a23d2f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:41] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:40 | stdout | xxx.xxx.xxx.xx - 226be95c-6ede-40e4-8023-b32482841b24 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:40] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:40 | stdout | xxx.xxx.xxx.xx - 34889223-562c-452e-9052-7e160821718f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:40] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:40 | stdout | xxx.xxx.xxx.xx - 744dc31a-9694-4a04-9f6a-4c72211f5925 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:40] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:40 | stdout | xxx.xxx.xxx.xx - 96d4be35-8e48-4665-9071-213a32069364 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:40] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:39 | stdout | xxx.xxx.xxx.xx - d0474bcc-71d9-4c3c-8cff-2d5c1a8da492 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:39 | stdout | xxx.xxx.xxx.xx - 14113f0f-aa39-4ee8-8222-4e6d40b3f1da - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:39 | stdout | xxx.xxx.xxx.xx - d1799132-2d34-4cf6-8dee-3f163e28c723 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:39 | stdout | xxx.xxx.xxx.xx - cbec524b-2883-45d8-9f20-66304457ed63 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:39 | stdout | xxx.xxx.xxx.xx - cf919d19-c14c-46ff-b25a-abfb1e57ece7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:39 | stdout | xxx.xxx.xxx.xx - d2010ec9-f071-48a1-a568-45deff311050 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:39 | stdout | xxx.xxx.xxx.xx - 652f382e-2737-4633-a973-65a88f6498d4 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:39 | stdout | xxx.xxx.xxx.xx - e45bfbfc-3be8-4d39-9ecf-b0dabea21866 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:39] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:38 | stdout | xxx.xxx.xxx.xx - 47f58586-82ba-4a88-8f2c-c12247bf228e - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:38] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:38 | stdout | xxx.xxx.xxx.xx - 7829bb71-0c7c-448a-a944-5e5a50af8fc9 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:38] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:37 | stdout | xxx.xxx.xxx.xx - 281c72da-c8c8-4cd6-aa50-53f0ab7ac1c7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:37] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:37 | stdout | xxx.xxx.xxx.xx - c9f27c4b-d898-4028-936d-df843bb338a8 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:37] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:37 | stdout | xxx.xxx.xxx.xx - 02e7b239-b7d2-4eca-a4f6-00561a228a3c - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:37] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:37 | stdout | xxx.xxx.xxx.xx - 8738851c-564c-4e32-9612-56221ad2dea2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:37] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:36 | stdout | xxx.xxx.xxx.xx - bf6dad68-6b29-4459-9a03-f40a28b3da08 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:36] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:36 | stdout | xxx.xxx.xxx.xx - 840c338c-aa59-4e49-9ca7-b439e19c7ad5 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:36] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:36 | stdout | xxx.xxx.xxx.xx - 7bb87aa1-11b5-45b3-b0ae-4b7e50e880b2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:36] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:35 | stdout | xxx.xxx.xxx.xx - c35507fe-4eaf-4e2f-bf44-71856b3ddac7 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:35] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:35 | stdout | xxx.xxx.xxx.xx - 1f27d6f5-a4cb-41cd-95a6-47f48042b289 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:35] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:35 | stdout | xxx.xxx.xxx.xx - 66f9a40d-cac9-485a-b4eb-b9db5de73e6f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:35] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:34 | stdout | xxx.xxx.xxx.xx - 430df28b-5cf0-43c6-9c87-f82999c1b0a6 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:34 | stdout | xxx.xxx.xxx.xx - 7c067295-1319-4df0-8fe0-73f224d63368 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:34] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 598cc6f8-0b31-4967-92d7-c072a335305b - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 628b538b-2632-45bc-8b32-910787c82260 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 3d01101d-49a1-4f26-9f6d-09dbb3f42259 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - f89d8ff8-2585-4f76-bafe-549884ff9d92 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 6b2833d4-dc89-4a3e-a793-dcd026046eac - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 2d71ed47-47d4-4f49-a471-5b11f7b78af3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 819894c7-f448-40ec-9eda-f5f81a1fa2f3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.004
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 31424a9c-e75b-4d96-8820-4b59c4913e2f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - ec6c48a4-3741-418e-9902-9b6231038496 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 8f101c73-80e2-4340-ac62-b3d9a01dbfb5 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - fcd0b84c-2d2c-443e-91c3-aee5e66a7c39 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 651fa2eb-5fce-4c96-bcc6-231e8f270e8a - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - e6f6881c-5d44-4060-8a4f-15c1e7b9d678 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 02223d6f-d920-4839-bcc6-83fc69217951 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.002
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - bf2df55c-7415-4cfa-918c-2d9f4a17dfca - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 283ff2e9-db46-4634-8622-df391cde4cd2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.002
2023/12/12 19:53:32 | stdout | xxx.xxx.xxx.xx - 3f185004-4f8d-4bc6-af8d-6e92ce3a40f4 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:32] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:31 | stdout | xxx.xxx.xxx.xx - fb685629-0fe3-4cbe-92b7-4a40d948a4a4 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:31] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:31 | stdout | xxx.xxx.xxx.xx - f3787dce-9e71-4954-b235-aeeaccdf77b3 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:31] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:31 | stdout | xxx.xxx.xxx.xx - d6f376ba-ca5c-4914-96dc-f27938a51554 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:31] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:31 | stdout | xxx.xxx.xxx.xx - d53103a3-96d5-416f-bed5-65cd5bf211bf - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:31] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.002
2023/12/12 19:53:31 | stdout | xxx.xxx.xxx.xx - 27129f99-f00b-43be-a5b6-1c34cbf6ead2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:31] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:31 | stdout | xxx.xxx.xxx.xx - 6687e68d-edbe-41be-a31f-9896c0fedc16 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:31] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:30 | stdout | xxx.xxx.xxx.xx - 816d61fc-a626-4e9a-8c0c-5b867095e64c - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:30 | stdout | xxx.xxx.xxx.xx - 660291c4-e1dc-4c3b-8ac7-af2b33bd6b58 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:30 | stdout | xxx.xxx.xxx.xx - 6ed16e0f-2812-4b7c-b443-0b109846735d - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:30 | stdout | xxx.xxx.xxx.xx - a5917ed3-545c-471d-9570-1bbb22277466 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:30] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - 3a298686-30fb-4a25-8f6d-429b59d2a43f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - d6e0e40a-1da9-4c43-8db6-a7aca94b7514 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - af2c86cc-b26f-4ed7-ab87-f38f4dde29e2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - 3960cb95-3297-4752-ac44-7c392bf1c5a8 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - 1b201dbe-d606-4cd3-a34d-c4e549e58a72 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - eb054d1e-1ec4-4a2c-8191-718d868da441 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - cddfe5ea-e910-48bc-bce9-b7d26b551e45 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - 018afc7e-8ef0-45dc-be9a-243a619a15fe - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - 6c90a067-fbd0-41cd-bbcc-ec01a4bd8f00 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - 7ca3b1e2-06ce-46d9-bddb-6e8d17a422f6 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - 84687a58-9e1e-43a2-9c25-2495f9fb2d0f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - 54bb89f1-e10e-429d-9a83-96d19afbc7b6 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:29 | stdout | xxx.xxx.xxx.xx - acb50d26-846f-4f56-983e-8d060f7446d9 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:29] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.000
2023/12/12 19:53:28 | stdout | xxx.xxx.xxx.xx - c12e4708-2fda-44a7-9c19-619124ba2164 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:28] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - c16122f0-fd97-4843-9606-2e7882701b34 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.005
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - 1f5465af-b0a4-47d3-a6c1-5536956de68f - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.007
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - b27cb864-bc6b-40aa-b61f-e12945c9eda6 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - e8bbfec0-5c8c-4a68-b185-9384edee65b2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.007
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - 59e95a1d-a1da-4128-b703-80532fe0829b - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.002
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - f19d4b34-2d20-425c-88d5-587113b992df - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - 1e8c4497-1df0-4053-946a-c4ea934abad2 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - d64700e9-214f-48c0-8d4e-470681f14c94 - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:27] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 202 0 0.001
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - f9df210c-795c-4bb2-8d41-115838745c6e - - [2023/12/12 11:53:27] code.xxx.com GET - "/oauth2/callback?state=gqyOIsrOBgDB7n2ZoqQo0_93XPKIIIFj97k0mBV36N0%3A%2F&session_state=511025d0-c5ac-4ba3-ab30-76be7b9a939e&iss=https%3A%2F%2Fsso.xxx.com%2Fauth%2Frealms%2Fxxx&code=1cfbbde7-6769-486b-9dd3-1c505887f88f.511025d0-c5ac-4ba3-ab30-76be7b9a939e.a611beea-e9ca-4820-aeb5-19e8fe8fcbee" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 302 24 0.045
2023/12/12 19:53:27 | stdout | xxx.xxx.xxx.xx - f9df210c-795c-4bb2-8d41-115838745c6e - 16983840-a13c-4059-8fcd-3d7f0096d734 [2023/12/12 11:53:27] [AuthSuccess] Authenticated via OAuth2: Session{email:16983840-a13c-4059-8fcd-3d7f0096d734 user:16983840-a13c-4059-8fcd-3d7f0096d734 PreferredUsername:patrick token:true id_token:true created:2023-12-12 11:53:27.291656265 +0000 UTC m=+27.524688796 expires:2023-12-12 11:58:27.28018581 +0000 UTC m=+327.513218331 refresh_token:true groups:[default-roles-xxx offline_access uma_authorization Code_Server role:default-roles-xxx role:offline_access role:uma_authorization role:Code_Server role:account:manage-account role:account:manage-account-links role:account:view-profile]}
2023/12/12 19:53:22 | stdout | xxx.xxx.xxx.xx - f4627e79-a0e8-40e6-95cd-94a451fe0d37 - - [2023/12/12 11:53:22] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 19:53:22 | stdout | xxx.xxx.xxx.xx - 969c86d9-f588-4334-b74e-064f8bfc0fdf - - [2023/12/12 11:53:22] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 401 13 0.000
2023/12/12 19:53:12 | stdout | xxx.xxx.xxx.xx - bd8926c3-a8a6-48e2-8131-f52e4c32b044 - - [2023/12/12 11:53:12] code.xxx.com GET - "/oauth2/sign_in" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 302 507 0.001
2023/12/12 19:53:12 | stdout | xxx.xxx.xxx.xx - ce84f07f-e62e-4f3f-a3cb-e9e410e889a7 - - [2023/12/12 11:53:12] code.xxx.com GET - "/oauth2/auth" HTTP/1.1 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" 401 13 0.000
2023/12/12 19:53:00 | stdout | [2023/12/12 11:53:00] [oauthproxy.go:172] Cookie settings: name:__SESSION secure(https):true httponly:true expiry:168h0m0s domains:.xxx.com path:/ samesite:lax refresh:after 30m0s
2023/12/12 19:53:00 | stdout | [2023/12/12 11:53:00] [oauthproxy.go:166] OAuthProxy configured for Keycloak OIDC Client ID: Code_Server
2023/12/12 19:53:00 | stdout | [2023/12/12 11:53:00] [oauthproxy.go:156] Skipping JWT tokens from configured OIDC issuer: "https://sso.xxx.com/auth/realms/xxx"
2023/12/12 19:53:00 | stdout | [2023/12/12 11:53:00] [proxy.go:89] mapping path "/" => upstream "https://code.xxx.com"
2023/12/12 19:52:59 | stdout | [2023/12/12 11:52:59] [provider.go:55] Performing OIDC Discovery...

<!--EndFragment-->
</body>
</html>

@tuunit tuunit added the bug label Dec 20, 2023
@farouqy
Copy link

farouqy commented Feb 14, 2024

@jesinity did you manage to fix your issue ? I have the same

Copy link
Contributor

This issue has been inactive for 60 days. If the issue is still relevant please comment to re-activate the issue. If no action is taken within 7 days, the issue will be marked closed.

@github-actions github-actions bot added the Stale label Apr 15, 2024
@tuunit tuunit removed the Stale label Apr 15, 2024
Copy link
Contributor

This issue has been inactive for 60 days. If the issue is still relevant please comment to re-activate the issue. If no action is taken within 7 days, the issue will be marked closed.

@github-actions github-actions bot added the Stale label Jun 15, 2024
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Jun 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants