Skip to content

Instantly share code, notes, and snippets.

@Thelouras58
Last active September 13, 2020 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Thelouras58/90158aa26eb0aa0cf2a134e590788ae3 to your computer and use it in GitHub Desktop.
Save Thelouras58/90158aa26eb0aa0cf2a134e590788ae3 to your computer and use it in GitHub Desktop.
#Generate Random Passwords from the CMD
openssl rand -base64 8
#or
openssl rand -hex 8
#From the current dates with some hash:
date |md5 | head -c8; echo
#Or even from a ping:
ping -c 1 yahoo.com |md5 | head -c8; echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment