|
Password generator
|
|
| · | Do not use the password format from any of the examples; it might be possible for a hacker to disassemble the password generation algorithm, but by creating your own format and by using your own characters, you make it completely impossible to regenerate passwords (unless an intruder gets hold of your SetupBatcher script with the source strings).
|
| · | Once again: for good password security you MUST create your own format. You should also change format often.
|
| · | Different operating systems handles special characters differently. You must make sure that all your client operating systems can handle all the special characters that you specify. The only way to do this is to create some accounts, for which you use your selected special characters as password, and then try to logon to the accounts on all your client operating systems - example: one XP machine, one Windows 9x machine, one Linux machine etc.
|
| · | Do not create passwords shorter than 8 characters.
|
| · | Create a strong password policy.
|
| · | Make your users change their passwords often or make sure to change passwords for them.
|
| · | Remember to print or save the text file with the generated passwords before you exit SetupBatcher or else they will be lost.
|
| · | Never save the file with the passwords on a hard drive, instead use a removable media. Store the media in a safe place.
|
|
Generator.Password.DestCol
|
Destination column
|
|
Generator.Password.Random.Len
|
Password length
|
|
Generator.Password.Random.Chars
|
Characters to include
|
| · | Use as many different characters as possible in Generator.Password.Random.Chars - numbers, uppercase letters, lowercase letters and special characters - "Generator.Password.Random.Chars=01234567890ABCDEFGYabcdefgh+-_*/" etc.
|
| · | Mix characters in the source character strings and use the same character more than once - "Generator.Password.Random.Chars=0349a4bcdeeac1234bb56789".
|
|
Generator.Password.DestCol
|
Destination column
|
|
Generator.Password.Special.Vowels, Generator.Password.Special.Consonants, Generator.Password.Special.Numbers and Generator.Password.Special.Special
|
Character sets
|
|
Generator.Password.Special.File,
Generator.Password.Special.File2 |
Text files with words, one per row
|
|
Generator.Password.Special.Format
|
Format
|
|
a
|
vowels (lowercase)
|
|
A
|
vowels (UPPERCASE)
|
|
b
|
consonants (lowercase)
|
|
B
|
consonants (UPPERCASE)
|
|
f
|
[if Generator.Password.Special.File setting present]
A random word from file 1 |
|
g
|
[if Generator.Password.Special.File2 setting present]
A random word from file 2 |
|
n
|
numbers
|
|
s
|
special characters (+#¤%"!%&-_',.<>|@½$£§ etc.)
|
|
r
|
random - any character of a, A, b, B, n and s
|
| · | To add a fixed string to all passwords, put the string between quotes.
|
| · | To add the current date to all passwords, add the text "%date=format%" to the password format. The date format is the same as the password sheet account expiration date format.
|
|
rnBababas
|
"k4Keqifo!", "93Bogaly%", "+5Lipewu¤"
|
|
Ababasrn
|
"Ereli#q8", "Yseja&+2", "Uvako%o6"
|
|
HHH"ab
|
"HHHuj", "HHHen", "HHHow"
|
|
%date=mmddyy%bb"ERER"
|
"042901lsERER", "042901dvERER" and "042901rgERER"
|
| · | Use as many different characters as possible in the source character strings.
|
| · | Mix the characters in the character sets and use the same character more than once - "Generator.Password.Special.Vowels=yiuaeiouy", etc.
|