Skip to content

Instantly share code, notes, and snippets.

@wadetb
Last active May 21, 2017 13:08
Show Gist options
  • Save wadetb/baea39ffabd851c3f8956a564277eb26 to your computer and use it in GitHub Desktop.
Save wadetb/baea39ffabd851c3f8956a564277eb26 to your computer and use it in GitHub Desktop.
Diceware password Python script
import random, requests; print('\n'.join(random.sample(requests.get('https://www.eff.org/files/2016/07/18/eff_large_wordlist.txt').content.decode().split('\n'), 5)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment