I have been looking to demo a sample xss attack via GWT(V2.4.0).I created a form(GET Method) with html text area and a submit button ,on submit it calls the server via gwt rpc, if there is a xss vulnerability, sample test case//<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT> // should not be filtered.But this does not work,Could any one please share how to perform xss attack ? just an overview or gist would be fine.
|
|
||||
|
|
|
Look at https://developers.google.com/web-toolkit/articles/security_for_gwt_applications#xss There is an example of how to use inner html to launch an attack. See the section
It gives countermeasures on the page as well. If you are talking about XSRF, then as suggested
you could just make a page to send an (unauthenticated) rpc request, and if your browser passes along an already authenticated user's cookie and the rpc call succeeds, then the attack worked. |
|||||
|