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
CONFIGURE FOR ASM Linux
Viewed 5747 times since Sat, Jun 2, 2018
Fedora 32: Simple Local File-Sharing with Samba CIFS Linux
Viewed 9062 times since Sun, Dec 6, 2020
RHEL: Extending a multipath LUN
Viewed 5367 times since Sun, May 27, 2018
How to create a Systemd service in Linux
Viewed 3222 times since Mon, Dec 7, 2020
RHEL: Crash kernel dumps configuration and analysis on RHEL 5
Viewed 7512 times since Sat, Jun 2, 2018
RHEL: GPT/MBR partition tables (using disks larger than 2 TiB)
Viewed 12557 times since Sun, May 27, 2018
Linux Find Large Files
Viewed 3128 times since Mon, Oct 29, 2018
Manage SSH Key File With Passphrase
Viewed 2454 times since Tue, Mar 5, 2019
LUKS List available methods of encryption for LUKS
Viewed 3178 times since Fri, Jul 13, 2018
UUIDs and Linux: Everything you ever need to know [Update]
Viewed 5136 times since Tue, Jul 17, 2018