Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
Nível 1
Nível 2
Faça login na Comunidade
Faça logon para exibir todas as medalhas
Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
As part of our environment Scan from AMSSEC suggested this to be fixed. "should NOT respond to GET /bin/querybuilder.feed.css with 200" In the scan it turned out to be Green, which AMS prefers it to be Red. How do I get this fixed?
Solucionado! Ir para a Solução.
Visualizações
respostas
Total de curtidas
Block this specific url or "feed*" in dispatcher.any based on your requirements
/0090 { /type "deny" /url"/bin/querybuilder.feed.css" } or
/0090 { /type "deny" /glob "* *.feed.css*" } or
/0090 { /type "deny" /glob "* *.feed.*" } or
/006 {
/type "deny"
/path "/bin/*"
/selectors '(feed|rss|pages|languages|blueprint|infinity|tidy)'
/extension '(css)'
}
Visualizações
respostas
Total de curtidas
Block this specific url or "feed*" in dispatcher.any based on your requirements
/0090 { /type "deny" /url"/bin/querybuilder.feed.css" } or
/0090 { /type "deny" /glob "* *.feed.css*" } or
/0090 { /type "deny" /glob "* *.feed.*" } or
/006 {
/type "deny"
/path "/bin/*"
/selectors '(feed|rss|pages|languages|blueprint|infinity|tidy)'
/extension '(css)'
}
Visualizações
respostas
Total de curtidas
I am trying to block these:
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
so does this work?
Visualizações
respostas
Total de curtidas
for #3 and #4, /crx/de and /crx/explorer can be blocked at AEM itself otherwise for dispatcher you should deny all and allow only relevant paths.
You should have /0001 { /type "deny" /glob "*" } to take care of "/crx" and other paths
for #1 and #2, use "selectors" and "extension"
/006 {
/type "deny"
/path "/bin/*" or /path "/bin/querybuilder*"
/selectors '(feed|servlet|json)'
/extension '(css)'
}
refer - Dispatcher- publisher System/console is giving 500 error.
Visualizações
respostas
Total de curtidas
Do you mean that this doesn't work for CRX?
Visualizações
respostas
Total de curtidas
It would work fine but in ideal scenario (per best practices), you are supposed to deny all paths and allow only specific paths. When you deny all paths, /crx is covered under that.
HTH
Visualizações
respostas
Total de curtidas
How can I do that in AEM itself?
How it can be done using /path, /selectors, /extension?
Thanks
Visualizações
respostas
Total de curtidas
check Security Checklist
Check if the CRX development bundles are present
These development OSGi bundles should be uninstalled on both author and publish productive systems before making them accessible.
Visualizações
respostas
Total de curtidas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas