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
Do you Know These 5 Use of V$session View ?
Viewed 105046 times since Thu, Jun 21, 2018
Red Hat 8 How to Set Up Automatic Updates for CentOS 8
Viewed 3588 times since Fri, Sep 25, 2020
RHCS: Install a two-node basic cluster
Viewed 9892 times since Sun, Jun 3, 2018
HowTo: The Ultimate Logrotate Command Tutorial with 10 Examples
Viewed 5035 times since Fri, Nov 30, 2018
How to encrypt a partition with DM-Crypt LUKS on Linux
Viewed 8122 times since Fri, Jul 13, 2018
How to recover error - Audit error: dispatch err (pipe full) event lost
Viewed 25441 times since Tue, Aug 6, 2019
How to enable automatic security updates on CentOS 7 with yum-cron
Viewed 2402 times since Fri, Oct 26, 2018
Linux Kernel /etc/sysctl.conf Security Hardening
Viewed 23440 times since Fri, Aug 3, 2018
LUKS List available methods of encryption for LUKS
Viewed 2863 times since Fri, Jul 13, 2018
6 easy steps to setup offline two factor authentication in Linux
Viewed 12602 times since Mon, Apr 6, 2020