Skip to content

Instantly share code, notes, and snippets.

@jakekarnes42
Last active November 1, 2019 21:04
Show Gist options
  • Save jakekarnes42/9f914603f791e9526b79f84abcdef644 to your computer and use it in GitHub Desktop.
Save jakekarnes42/9f914603f791e9526b79f84abcdef644 to your computer and use it in GitHub Desktop.
PoC to show a site could be embedded in an iFrame
<!-- Replace the iFrame source with victim URL-->
<html>
<style>
iframe {
width:1000px;
height:500px;
top:0; left:0;
border: 10px solid black;
}
</style>
<body>
<h1>Framed Site:</h2>
<iframe src="http://localhost:3001" width="800" height="400"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment