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
20 Linux Command Tips and Tricks That Will Save You A Lot of Time linux
Viewed 4280 times since Thu, Apr 18, 2019
tcpdump
Viewed 8729 times since Fri, Jul 27, 2018
Nagrywanie sesji SSH do pliku
Viewed 2657 times since Thu, May 24, 2018
SSH: Execute Remote Command or Script – Linux
Viewed 2074 times since Mon, Feb 18, 2019
logrotate Log Rotate Configuration
Viewed 2935 times since Sun, Jan 12, 2020
ubuntu How to reset lost root password on Ubuntu 16.04 Xenial Xerus Linux
Viewed 7972 times since Tue, Dec 8, 2020
ZPOOL: Add a mirror to a concat zpool
Viewed 3237 times since Sun, Jun 3, 2018
RHEL: iSCSI target/initiator configuration on RHEL7
Viewed 10476 times since Sat, Jun 2, 2018
Linux – How to check the exit status of several piped commands
Viewed 2709 times since Wed, Jul 25, 2018
RHEL7: Create and configure LUKS-encrypted partitions and logical volumes to prompt for password and mount a decrypted file system at boot.
Viewed 10859 times since Mon, Aug 6, 2018