Clickjacking example 2
by mbread
HTML
<p>
If you are not redirected in 2 seconds, click <span class="fake-link">here</span>
</p>
<iframe>
Hello
</iframe>
CSS
.fake-link {
color: blue;
text-decoration: underline;
cursor: pointer;
}
by mbread
<p>
If you are not redirected in 2 seconds, click <span class="fake-link">here</span>
</p>
<iframe>
Hello
</iframe>
.fake-link {
color: blue;
text-decoration: underline;
cursor: pointer;
}