Permission Issue #1006
-
I am running a podman container w/ the following config:
For some reason I am able to create collections, but I cant change the order of the books in the collection. Also while I can listen to a book and let the player timeout at the end (which will mark it as finished), I cant mark books as finished or not finished. Finally, if I go into settings and change something it says I successfully made the change ... but if I refresh the page the setting reverts. Anyone have any ideas on how I jacked up the permission-ing to accomplish this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
browser console was complaining about error 403 (forbidden) issue was that Mod Security my web application firewall was freaking out cause PATCH method was being used: "producer":{"modsecurity":"ModSecurity v3.0.7 (Linux)","connector":"ModSecurity-nginx v1.0.3","secrules_engine":"Enabled","components":["OWASP_CRS/4.0.0-rc1""]},"messages":[{"message":"Method is not allowed by policy","details":{"match":"Matched "Operator This can be solved by adding the following line in the |
Beta Was this translation helpful? Give feedback.
browser console was complaining about error 403 (forbidden)
issue was that Mod Security my web application firewall was freaking out cause PATCH method was being used:
"producer":{"modsecurity":"ModSecurity v3.0.7 (Linux)","connector":"ModSecurity-nginx v1.0.3","secrules_engine":"Enabled","components":["OWASP_CRS/4.0.0-rc1""]},"messages":[{"message":"Method is not allowed by policy","details":{"match":"Matched "Operator
Within' with parameter
GET HEAD POST OPTIONS' against variableREQUEST_METHOD' (Value:
PATCH' )","reference":"v0,5","ruleId":"911100"https://github.com/SpiderLabs/owasp-modsecurity-crs/blob/v3.3/dev/rules/REQUEST-949-BLOCKING-EVALUATION.conf#L81
This can be solved by addi…