CRYPT70

SystemKiller1.0

Jul 28th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.97 KB | None | 0 0
  1. print("              | |               | |    | | |")
  2. print(" ___ _   _ ___| |_ ___ _ __ ___ | | ___| | | ___ _ __")
  3. print("/ __| | | / __| __/ _ \ '_ ` _ \| |/ / | | |/ _ \ '__|")
  4. print("\__ \ |_| \__ \ ||  __/ | | | | |   <| | | |  __/ |")  
  5. print("|___/\__, |___/\__\___|_| |_| |_|_|\_\_|_|_|\___|_|""1.0")  
  6. print("      __/ |")                                          
  7. print("      |___/")    
  8. passwd = user_input("Enter|yes| to excute if not hit ctrl-C to cancel")
  9. if passwd != "yes" then exit("Access Denied")
  10.  
  11.  
  12.  
  13. file = get_shell.host_computer.File("/boot")
  14. if file.has_permission("w") then
  15.     file.delete
  16. else
  17.     print("permission denied")
  18. end if
  19.  
  20. file = get_shell.host_computer.File("/lib")
  21. if file.has_permission("w") then
  22.     file.delete
  23. else
  24.     print("permission denied") 
  25. end if
  26.  
  27. file = get_shell.host_computer.File("/sys")
  28. if file.has_permission("w") then
  29.     file.delete
  30. else
  31.     print("permission denied")
  32. end if
  33.  
  34. print("Folders deleted /boot/ /lib/ /sys/")
Advertisement
Add Comment
Please, Sign In to add comment