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
Using renice and taskset to manage process priority and CPU affinity with Linux OEL 6.4
Viewed 3784 times since Mon, Feb 17, 2020
Sample logrotate configuration and troubleshooting part 2
Viewed 9635 times since Fri, Nov 30, 2018
RHCS6: Clustered LVM
Viewed 2405 times since Sun, Jun 3, 2018
How to find your System details using inxi
Viewed 3512 times since Sat, Jun 2, 2018
Using stunnel to Encrypt Database Connections
Viewed 3971 times since Fri, Sep 28, 2018
tcpdump
Viewed 9429 times since Fri, Jul 27, 2018
Linux File Systems (mkfs, mount, fstab) ext4
Viewed 3310 times since Sat, Jun 2, 2018
stunnel Securing telnet connections with stunnel
Viewed 1641 times since Sun, Dec 6, 2020
Get UUID of Hard Disks [Update]
Viewed 2346 times since Tue, Jul 17, 2018
Open SSL Encrypt & Decrypt Files With Password Using OpenSSL
Viewed 8592 times since Mon, Feb 18, 2019