Jak wygenerować silne hasła jednorazowe w Linuksie?
Article Number: 40 | Rating: Unrated | Last Updated: Thu, May 24, 2018 4:12 PM
pwgen -sy 30
date +%s | sha256sum | base64 | head -c 30 ; echo
strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 30 | tr -d '\n'; echo
< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-30}; echo;
gpg --gen-random --armor 1 30
openssl rand -base64 30
darkstar:~ $ openssl rand -base64 48
TIsXtvV8GYVwLfmu/3QBSgjtYkMt0igSnptSutQaPzBPj5mG5hScYduUlvF7bEQv
darkstar:~ $ openssl rand -base64 8
g3hWwwomLIY=
Posted - Thu, May 24, 2018 3:59 PM. This article has been viewed 1892 times.
Filed Under:
Linux
There are no attachments for this article.
There are no comments for this article. Be the first to post a comment.
Related Articles

A Quick and Practical Reference for tcpdump
Viewed 11913 times since Fri, Jul 27, 2018
How to clear swap memory in Linux
Viewed 1470 times since Mon, Nov 23, 2020
Red Hat Cluster Tutorial
Viewed 1712 times since Sun, Jun 3, 2018
ZFS: Create a new zfs filesystem
Viewed 2188 times since Sun, Jun 3, 2018
logrotate Understanding logrotate utility
Viewed 1468 times since Sun, Jan 12, 2020