この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Is AEM completely xss secure. I know using HTL makes sure that you're protected from xss. But what about ajax calls? Responses returned from Servlets?
In other words, are there areas or flows where it's up to the site developer to implement xss protection mechanisms?
Thanks.
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
When you implement servlets, you have to ensure that your code emits safe output (you can use the slingXSSApi [1] for this). HTL scripts are safe unless you explicitly use the unsafe context.
表示
返信
いいね!の合計
Please read relevant documentation: Security
表示
返信
いいね!の合計
Thanks Hamid. The documentation doesn't answer question raised in the original post. i.e. If a servlet is expected to return HTML content, should we (the site developer) be using AntiSamy API to filter out problematic content? Or is that already addressed somewhere in AEM request / response chain?
表示
返信
いいね!の合計
I would request you to check OOTB servlets and write the custom code accordingly. As long as you are using OOTB API's , the code will be XSS protected.
Also, If you go to [1], you can see all the XSS rules defined . If you are using anything custom, you can overlay this file under /apps and make the neccassary changes.
[1] /libs/cq/xssprotection/config.xml
you can also use XSSAPI class to implement your own custom rules for security. For Details
XSSAPI ("The Adobe AEM Quickstart and Web Application.")
表示
返信
いいね!の合計
HTL is XSS protected until you don't use an unsafe context.
If you are rendering DOM based on form parameter then you have to be careful.
Make sure you encode all the request parameter values before use in the form
There are some practical example
5 Practical Scenarios for XSS Attacks | Pentest-Tools.com Blog
表示
返信
いいね!の合計
When you implement servlets, you have to ensure that your code emits safe output (you can use the slingXSSApi [1] for this). HTL scripts are safe unless you explicitly use the unsafe context.
表示
返信
いいね!の合計
Thanks. This is what I was looking for thank you
表示
返信
いいね!の合計