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
How To Set Up an SSL Tunnel Using Stunnel on Ubuntu
Viewed 3103 times since Fri, Sep 28, 2018
Red Hat Enterprise Linux - Allow Root Login From a Specific IP Address Only
Viewed 2640 times since Wed, Oct 3, 2018
Epoch & Unix Timestamp Conversion Tools
Viewed 55872 times since Fri, Jun 22, 2018
RHEL: Forgotten ’root’ password / using single-user to gain access
Viewed 7176 times since Sat, Jun 2, 2018
How to encrypt a partition with DM-Crypt LUKS on Linux
Viewed 8079 times since Fri, Jul 13, 2018
ZFS: Verify/change properties of a zfs filesystem
Viewed 2446 times since Sun, Jun 3, 2018
How to automate SSH login with password? ssh autologin
Viewed 2566 times since Fri, Jun 8, 2018
zabbix linux How to solve apache error No space left on device: Cannot create SSLMutex
Viewed 2255 times since Wed, Nov 11, 2020
Linux - How to unlock and reset user’s account
Viewed 4189 times since Fri, Jun 8, 2018
RHEL: Change system’s hostname
Viewed 3324 times since Sun, May 27, 2018