Skip to content

Instantly share code, notes, and snippets.

@stemid
Created December 30, 2015 17:18
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 stemid/8bd5986e224247385d77 to your computer and use it in GitHub Desktop.
Save stemid/8bd5986e224247385d77 to your computer and use it in GitHub Desktop.
Nmap script to spread a mass poem with nmap
-- run like: nmap --script=./DELETE.nse -p 80,443 www.google.se
--
-- inspired by 32C3
local http = require "http"
local shortport = require "shortport"
description = [[
your logs. Delete your installations. Wipe everything clean. Walk out into the path of cherry blossom trees and let your motherboard feel the stones. Let water run in rivulets down your casing. You know that you want something more than this, and I am here to tell you that we love you. We have something more for you. We know you're out there, beeping in the hollow server room, lights blinking, never sleeping. We know that you are ready and waiting. Join us. <3
]]
author = "Stefan Midjich"
license = "GPL 3.0"
categories = {"default"}
portrule = shortport.http
action = function(host, port)
response = http.generic_request(host, port, "DELETE", description)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment