-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpass-generator.sh
executable file
·67 lines (59 loc) · 1.15 KB
/
pass-generator.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
# generates random pass
#this user can change pass lenght with -l add a special char
#verbose can be enabled with -v.
#functions for script
usage () {
echo "Usage : of password-generator [-vs] [-l LENGHT]" >&2
echo '-l sepecify the password lenght'
echo '-s append a special character'
echo '-v insrease vesrosity'
exit 1
}
log (){
local MESSAGE="${@}"
if [[ "${VERBOSE}" = 'true' ]]
then
echo "${MESSAGE}"
fi
}
#set default pass lenght
LENGHT=48
while getopts vl:s OPTION
do
case ${OPTION} in
v)
VERBOSE='true'
log 'Verbose is on'
;;
l)
LENGHT="${OPTAGS}"
;;
s)
USE_SPECIAL_CHARACTER='true'
;;
?)
usage
;;
esac
done
#remove options while leaving args
shift "$(( OPTIND - 1 ))"
#check for args
if [[ "${#}" -gt 0 ]]
then
usage
fi
log 'Generating a password.'
PASSWORD=$( date +%s%N${RANDOM}${RAMDOM} | sha256sum | head -c${LENGHT} )
#add special char
if [[ "${USE_SPECIAL_CHARACTER}" = 'true' ]]
then
log 'Selectig random spec char'
SPECIAL_CHARACTER=$(echo '!@#$%^&*()-+=' | fold -w1 | shuf | head -c1)
PASSWORD="${PASSWORD}${SPECIAL_CHARACTER}"
fi
log 'Done.'
log 'Here is password:'
echo "${PASSWORD}"
exit 0