Of all the vulnerability, the most widespread and harmful Web application security vulnerability is Cross Site Scripting attacks (XSS).
Attacks are usually executed with JavaScript, letting hackers manipulate any aspect of a page. In a worst-case scenario, a hacker could steal information and impersonate a user on a bank’s Web site.
Example of malicious code
Three types of Cross Site Scripting
Reflected XSS
So when the user types:
<script type="text/javascript">
alert("Hello World");
</script>
He receives an alert in his browserDanger
Stored XSS
Hostile Data is taken and stored
Then Data is sent back to any visitor of the web site Risk when large number of users can see unfiltered content
DOM Based XSS
Reducing the threat
Recent XSS Attacks:
GoDaddy recently went down with DOS attack by Anonymous Hacker. After GoDaddy CEO declined any such hacks by anonymous, they again penetrated with XSS hacks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.