Was?
Inkohärentes Geschreibsel eines Late Adopters
Ralph
E-Mail oder kontaktiert range im IRCNet oder auf Freenode.
Bilder
Ralphs Bildergalerie
Feed Me!
Hier gibt es einen RSS-Feed. Oder folgt mir bei Twitter.
Februar 2015 | ||||||
---|---|---|---|---|---|---|
So | Mo | Di | Mi | Do | Fr | Sa |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
Auch lesbar
Na, einfach shrek[]
Sieh die Welt mit meinen Augen
Das Schwätzbrett
Das Bildblog
D'ohne Pointe
# md5 hex encoded # SQLPasswordEncoding hex # SQLAuthTypes MD5 # SQLPasswordUserSalt name Prepend # salt == username, password == password /bin/echo -n "usernamepassword" | openssl dgst -hex -md5 d51c9a7e9353746a6020f9602d452929 # md5 HEX encoded # SQLPasswordEncoding HEX # SQLAuthTypes MD5 # SQLPasswordUserSalt name Prepend # salt == username, password == password /bin/echo -n "usernamepassword" | openssl dgst -hex -md5 | tr [:lower:] [:upper:] D51C9A7E9353746A6020F9602D452929 # sha256 base64 encoded # SQLPasswordEncoding base64 # SQLAuthTypes SHA256 # SQLPasswordUserSalt name Prepend # salt == username, password == password /bin/echo -n "usernamepassword" | openssl dgst -binary -sha256 | openssl enc -base64 vtklQtp0DL5YesRbeQEgeheiVjaAss7aMEGVonM/FL4=The other variants are similar. Two important things: you need
echo
-n
as that removes the newline from the echo command and if you use
base64, you need the binary digest - for md5 and all the sha variants. This
is somehow not needed for the hex and HEX encoded passwords.
I hope someone finds this (at all and) useful.
Geschrieben um 12:07