Reputation: 6619
Which XSS attacks could be done when redirecting with window.location
and user input data.
I think this ones
http://
so the end user ends up on a bad site.javascript:EvilCode()
" I think this will be executed in some browsers?Upvotes: 0
Views: 4231
Reputation: 8785
You are potentially allowing XSS if you don't URL encode the data first.
Upvotes: 3