Jak wygenerować silne hasła jednorazowe w Linuksie?

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=

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
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
watchdog How to restart a process out of crontab on a Linux/Unix
Viewed 5473 times since Tue, Jul 31, 2018
Red Hat Cluster Tutorial
Viewed 1712 times since Sun, Jun 3, 2018
How to remove CTRL-M (^M) characters from a file in Linux
Viewed 1938 times since Thu, Feb 7, 2019
How to schedule crontab in Unix Operating Systems
Viewed 1616 times since Fri, Jun 8, 2018
Cron YUM How to use yum-cron to automatically update RHEL/CentOS Linux
Viewed 2086 times since Fri, Oct 26, 2018
Linux File Systems (mkfs, mount, fstab) ext4
Viewed 2696 times since Sat, Jun 2, 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