We have developed a web application using Java and GWT, Now we are fixing the following issues:
Security Issues:
- X-Frame-Options:
- X-XSS-Protection:
Cookie:
- HttpOnly and Secure
From the above 3 issues we are able to fix the first 2 issues but unable to fix third issue, because we are accessing cookies created by server at client side which is developed with GWT(javascript). So We are thinking that, it can not be fixed for our application Or can it be ignored because we fixed for "X-Frame-Options" which disallows javascript injection into our website.
Please give me suggestion about our above issue.