Clickjacking
Theory
Practice

Resources
Last updated
Was this helpful?

Last updated
Was this helpful?
Was this helpful?
<html>
<head>
<title>Clickjacking / framing test</title>
</head>
<body>
<h1>Test a page for clickjacking/framing vulnerability</h1>
<p>Enter the URL to frame:</p>
<input id="url" type="text" value="http://TARGET.com"></input>
<button id="submit-test" onclick='document.getElementById("iframe").src=document.getElementById("url").value'>Test it!</button>
<br />
<br />
<hr>
<br />
<iframe src="about:blank" id="iframe" width="100%" height="75%"></iframe>
</body>
</html>