Jak wygenerować silne hasła jednorazowe w Linuksie?
Article Number: 40 | Rating: Unrated | Last Updated: Thu, May 24, 2018 4:12 PM
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=
Posted - Thu, May 24, 2018 3:59 PM. This article has been viewed 2490 times.
Filed Under:
Linux
There are no attachments for this article.
There are no comments for this article. Be the first to post a comment.
Related Articles

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
RHEL: udev rules basics
Viewed 9199 times since Sat, Jun 2, 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