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
Linux nslookup Command Examples for DNS Lookup
Viewed 8894 times since Sat, Sep 29, 2018
Easily Find Bugs In Shell Scripts With ShellCheck
Viewed 3268 times since Thu, Apr 18, 2019
RHCS6: Basic operations on clustered services
Viewed 2611 times since Sun, Jun 3, 2018
HowTo: Send Email from an SMTP Server using the Command Line
Viewed 1868 times since Mon, Feb 18, 2019
ZPOOL: Grow a zpool by adding new device(s)
Viewed 6014 times since Sun, Jun 3, 2018
HowTo: Kill TCP Connections in CLOSE_WAIT State
Viewed 15571 times since Thu, Feb 14, 2019
Setup SSL Tunnel Using Stunnel on Ubuntu
Viewed 2468 times since Fri, Sep 28, 2018
SPRAWDZONA KONFIGURACJA RSYSLOG I LOGROTATE, JAKO ZEWNĘTRZNEGO SERWERA SYSLOG
Viewed 3725 times since Fri, Nov 30, 2018
Learn Linux System Auditing with Auditd Tool on CentOS/RHEL
Viewed 4210 times since Fri, Apr 5, 2019
18 Quick ‘lsof’ command examples for Linux Geeks
Viewed 11483 times since Sun, Jun 30, 2019