Expand my Community achievements bar.

Who Me Too'd this topic

Avatar

Level 2

AMS has run a inspection on our dispatcher and asked us to block the below paths:

should NOT respond to GET /bin/querybuilder.feed.css with 200

should NOT respond to GET /bin/querybuilder.json.servlet;%0aa.css with 200

should NOT respond to GET /crx/de/index.jsp;%0aa.css with 200

should NOT respond to GET /crx/explorer/index.jsp;%0aa.css with 200

for that to be implemented I have written the dispatcher rules as below and run the test again

{ /type "deny" /path "/bin/querybuilder*" /selectors '(feed|servlet|json)' /extension '(css)'}

{ /type "deny" /url "/crx/de/index.jsp" /extension '(css)'}

{ /type "deny" /url "/crx/explorer/index.jsp" /extension '(css)'}

but it does not seem to fix the issue, can someone suggest me, where I am going wrong.

Who Me Too'd this topic