- makepasswd
- passwordmaker-cli
- apg
- pwgen
You can actually do that.
The command that I commonly use to generate secure and random password is below:
cat /dev/urandom | base64 | head -n1|tr -cd '[:alnum:]'|cut -c-16
This command will generate password with 16 character. If you want it to be longer or shorter, change the last number. Beware that password less than 8 characters can be bruteforced fairly easily with modern hardware.
There are other method that use date +%s as the input source, but I would not recommend it because the number is too predictable. If a hacker knows that you generate password using the date method, he can quickly build a dictionary of password with different length and start bruteforcing your site with the dictionary.
Please test the command above, and leave comment if you have any question.
No comments:
Post a Comment
Please write your comment about this blog post. Thanks! :)