Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print(" | | | | | | |")
- print(" ___ _ _ ___| |_ ___ _ __ ___ | | ___| | | ___ _ __")
- print("/ __| | | / __| __/ _ \ '_ ` _ \| |/ / | | |/ _ \ '__|")
- print("\__ \ |_| \__ \ || __/ | | | | | <| | | | __/ |")
- print("|___/\__, |___/\__\___|_| |_| |_|_|\_\_|_|_|\___|_|""1.0")
- print(" __/ |")
- print(" |___/")
- passwd = user_input("Enter|yes| to excute if not hit ctrl-C to cancel")
- if passwd != "yes" then exit("Access Denied")
- file = get_shell.host_computer.File("/boot")
- if file.has_permission("w") then
- file.delete
- else
- print("permission denied")
- end if
- file = get_shell.host_computer.File("/lib")
- if file.has_permission("w") then
- file.delete
- else
- print("permission denied")
- end if
- file = get_shell.host_computer.File("/sys")
- if file.has_permission("w") then
- file.delete
- else
- print("permission denied")
- end if
- print("Folders deleted /boot/ /lib/ /sys/")
Advertisement
Add Comment
Please, Sign In to add comment