From 24c95c32c0d3ef068b63121e4ad864ce0dff9083 Mon Sep 17 00:00:00 2001 From: Narsty <132179825+narstybits@users.noreply.github.com> Date: Fri, 12 May 2023 22:22:16 -0500 Subject: [PATCH] Add files via upload --- Goodusb/Password Generator.txt | 37 ++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Goodusb/Password Generator.txt diff --git a/Goodusb/Password Generator.txt b/Goodusb/Password Generator.txt new file mode 100644 index 0000000..153348a --- /dev/null +++ b/Goodusb/Password Generator.txt @@ -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 + + + + + + +