Advertisement
ZeeDerp

HttpReceieve

Mar 21st, 2021
659
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function downloadFile(url, file)
  2.     http.request(url)
  3.     event, eUrl, content = os.pullEvent()
  4.     if event == "http_success" then
  5.       body = content.readAll()
  6.       file = fs.open(file, "w")
  7.       file.write(body)
  8.       file.flush()
  9.       file.close()
  10.     end
  11.   end
  12. downloadFile("http://battleboard.xyz:3000/ZeeDerp/PythonCCPayloadDeliv/raw/branch/master/luaHttpReceieve.lua","rec")
  13. shell.run("rec")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement