Single blog// see post details
Creating random passwords
- 4311 Views
- /
- 0 Comments
- /
- in Informational, Server Admin
- /
- by admin
Creating a randomized password can be very quick and efficient. It’s important to have an unguessable password. Brute forcers rely on passwords being based on words. Try using this script to generate random passwords.
#!/bin/bash date +%s | sha256sum | base64 | head -c 32 ; echo