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 accurately determine when the system was booted
Viewed 2749 times since Wed, Oct 3, 2018
How to remove CTRL-M (^M) characters from a file in Linux
Viewed 3261 times since Thu, Feb 7, 2019
RHEL7: Configure automatic updates.
Viewed 2423 times since Wed, Oct 17, 2018
RHEL: iSCSI target/initiator configuration on RHEL7
Viewed 12108 times since Sat, Jun 2, 2018
RHCS6: Extend an existing Logical Volume / GFS2 filesystem
Viewed 3904 times since Sun, Jun 3, 2018
RHEL: Displaying/setting kernel parameters - ’sysctl’
Viewed 3781 times since Sat, Jun 2, 2018
CentOS / RHEL : How to move a Volume Group from one system to another
Viewed 4432 times since Mon, Jan 28, 2019
Monitoring bezpieczeństwa Linux: integracja auditd + OSSEC cz. I
Viewed 3011 times since Fri, Apr 5, 2019
LVM: Recovering Physical Volume Metadata
Viewed 13791 times since Sat, Jun 2, 2018
HowTo: Create CSR using OpenSSL Without Prompt (Non-Interactive)
Viewed 14896 times since Mon, Feb 18, 2019