Skip to content

Instantly share code, notes, and snippets.

@0xMilly
Created October 11, 2020 13:41
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 0xMilly/f14c93ad959dd50549887fd638028e4c to your computer and use it in GitHub Desktop.
Save 0xMilly/f14c93ad959dd50549887fd638028e4c to your computer and use it in GitHub Desktop.
Strong Random Password Alias
alias randpass="python -c \"import random, string;chars=string.ascii_letters + string.digits + string.punctuation;print(''.join(random.choice(chars) for i in range(random.randint(16,32))))\""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment