Markus Blaschke
Markus Blaschke
I haven't found the code where this happens but my rough guess: When a new session is created it's passed to the decode function which fails because the session was...
i reused the example from https://github.com/kataras/iris/issues/1877 should i avoid using? ``` app.Use(sess.Handler()) ``` I tried to verify the issue why sometimes sessions are dropped (still working on an example) so...
I can confirm the session id is not send back to the client but the session is invalidated at that point. The reason for recreation of session is https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#renew-the-session-id-after-any-privilege-level-change Also...
It's working but i found a way to reproduce (but not with an example app) it so i'm currently digging into the iris code (12.2.0-beta4) to find a clue what's...
to fix the endless invalid session loop i've moved `RemoveCookie` up before the cookieValue check. this at least solved to kill the invalid session. github.com/kataras/iris/v12/sessions/sessions.go: ```go // Destroy removes the...
found one issue: i've forgot to enable `AllowReclaim`. Then it's working but only without securecookie 🤔
Do you also need/want a docker github action workflow?
maybe have a look at https://github.com/webdevops/azure-metrics-exporter/blob/main/.github/workflows/release-docker.yml this is a pipeline to build multi-arch images
hm.. i'm thinking about the signed package but not sure it this is a real benefit when shipping docker images. it would make more sense to sign the docker image...
We want to build a documentation on readthedocs for the 1.0.0 build with a good documentation how to manipulate our docker images and how the provision system is used. Currently...