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
RHEL: Scan and configure new SAN (fibre channel) LUNs
Viewed 9819 times since Sun, May 27, 2018
Stunnel Setup
Viewed 19320 times since Fri, Sep 28, 2018
RHCS6: Mirror/unmirror a GFS2 volume
Viewed 6083 times since Sun, Jun 3, 2018
Use inotify-tools on CentOS 7 or RHEL 7 to watch files and directories for events
Viewed 15440 times since Fri, Jul 27, 2018
RHEL: Display swap/RAM size
Viewed 4390 times since Sat, Jun 2, 2018
RHCS6: Extend an existing Logical Volume / GFS2 filesystem
Viewed 4205 times since Sun, Jun 3, 2018
LVM: Rename root VG/LV
Viewed 8698 times since Sat, Jun 2, 2018
debian How to check Debian CVE status using python script
Viewed 4623 times since Sun, Sep 23, 2018
Create a Linux Swap File
Viewed 3842 times since Fri, Jun 8, 2018
How To Use the Linux Auditing System on CentOS 7
Viewed 5201 times since Fri, Apr 5, 2019