Need to block the below access in dispatcher file
Hi All,
As part of aem_hacker.py reports,requested us block the below access in our application.
bin/querybuilder.json.css
bin/querybuilder.feed.css
ibs/cq/security/userinfo.css
crx/de/index.jsp;%0aa.css
I have tried with the below deny rule in dispatcher.any file and it's not worked
- { /type "deny" /url"/bin/querybuilder.feed.css" }
- { /type "deny" /url"/bin/querybuilder.json.servlet;%0aa.css" }
- { /type "deny" /url"/crx/de/index.jsp;%0aa.css" }
- { /type "deny" /path "/bin/querybuilder*" /selectors '(feed|servlet|json)' /extension '(css)'}
- { /type "deny" /url "*.userinfo.css"}
- { /type "deny" /url "/crx/*.css"
- { /type "deny" /path "/libs/*" }
- { /type "deny" /path "/bin/querybuilder*" }
Could you please suggest with solution to fix the hacker.py report issues ?