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 IOzone for Linux disk performance analysis
Viewed 8407 times since Wed, Jul 25, 2018
Create a Linux Swap File
Viewed 3170 times since Fri, Jun 8, 2018
Lsyncd: live file syncronization across multiple Linux servers
Viewed 7158 times since Wed, Oct 31, 2018
How to enable Proxy Settings for Yum Command on RHEL / CentOS Servers
Viewed 12794 times since Thu, Jul 19, 2018
Index » Community Contributions » System encryption using LUKS and GPG encrypted keys for arch linux
Viewed 3359 times since Fri, Jul 13, 2018
Red Hat Cluster Tutorial
Viewed 2219 times since Sun, Jun 3, 2018
Linux: how to monitor the nofile limit
Viewed 10824 times since Wed, Jul 25, 2018
Linux - How to get CPU information
Viewed 2358 times since Fri, Jun 8, 2018
Tilix: Advanced Tiling Terminal Emulator for Power Users
Viewed 6703 times since Thu, Apr 18, 2019
OpenSSL: Find Out SSL Key Length – Linux Command Line
Viewed 7295 times since Mon, Feb 18, 2019