Created
September 18, 2019 12:50
-
-
Save cubapp/dec68ea01655ed85e3cda84a4b5d56ae to your computer and use it in GitHub Desktop.
Generate MD5 hash password with given salt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python -c "import random,string,crypt; not_so_randomsalt = 'synergy'; | |
print crypt.crypt('', '\$1\$%s\$' % not_so_randomsalt)" | |
$1$synergy$O31nVEgYyKUdmjDRPUq8p. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment