Add files via upload

This commit is contained in:
Narsty
2023-05-12 22:22:16 -05:00
committed by GitHub
parent 7371efd58c
commit 24c95c32c0
+37
View File
@@ -0,0 +1,37 @@
REM This script automates the process of generating
REM a strong and secure password on macOS.
REM Author: Narsty
REM Title: Password Generator
REM Version 1.0 MacOs
DELAY 2000
GUI SPACE
DELAY 500
STRING terminal
ENTER
DELAY 500
STRING echo "USB Script Utility"
ENTER
DELAY 500
STRING echo "-------------------"
ENTER
DELAY 500
STRING echo "Generating Password..."
ENTER
DELAY 500
STRING password=$(openssl rand -base64 12)
ENTER
DELAY 500
STRING echo "Generated Password: $password"
ENTER
DELAY 500
STRING echo "-------------------"
ENTER