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
Tunnel SSH Connections Over SSL Using ‘Stunnel’ On Debian 7 / Ubuntu 13.10
Viewed 3501 times since Fri, Sep 28, 2018
What Is /dev/shm And Its Practical Usage
Viewed 8284 times since Tue, Mar 12, 2019
10 nmap Commands Every Sysadmin Should Know
Viewed 10146 times since Wed, May 22, 2019
debian Install a newer kernel in Debian 9 (stretch) stable
Viewed 1956 times since Sun, Sep 23, 2018
RHEL: udev rules basics
Viewed 9199 times since Sat, Jun 2, 2018
How to find the largest files and directories in Linux?
Viewed 3578 times since Sun, May 20, 2018
Linux - How to monitor memory usage
Viewed 3240 times since Fri, Jun 8, 2018
RHEL: Resize/disable /dev/shm filesystem
Viewed 15246 times since Sun, May 27, 2018
Fałszujemy rozpoznania skanerów #1
Viewed 3208 times since Mon, May 21, 2018
Using Kerberos security with Server for NFS
Viewed 10018 times since Wed, Jun 27, 2018