I have spring application. I have read about XSS attach And I globally disabled by the answer here How do I prevent people from doing XSS in Spring MVC?
(I put the context-param in web.xml)
But still I do able to do xss attack in URL by giving the script in URL
https://localhost/sam/pop/viewProfile?id=/%3E%3Cscript%3Ealert%28123%29%3C/script%3E
How to solve this?