Skip to content

Instantly share code, notes, and snippets.

@Sketches-su
Last active August 29, 2015 14:14
Show Gist options
  • Save Sketches-su/9d1664b3e0f283359462 to your computer and use it in GitHub Desktop.
Save Sketches-su/9d1664b3e0f283359462 to your computer and use it in GitHub Desktop.
Some copypaste

12-character password (67 bits entropy) generation bookmarklet

javascript:(function(m){var c="ABCDEFGHKMNPRSTVWXYZabcdefghkmnprstvwxyz23456789",o="";for(i=0;i<10;i++){for(j=0;j<12;j++){o+=c.substr(m.floor(m.random()*(j?48:40)),1)}o+="\n"}alert(o)})(Math);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment