diff options
author | Rahiel Kasim <rahielkasim@gmail.com> | 2017-03-08 16:42:05 +0100 |
---|---|---|
committer | Rahiel Kasim <rahielkasim@gmail.com> | 2017-03-08 16:42:05 +0100 |
commit | 171b630ff9846e53b0c3c0f609e6b478d18fb9f3 (patch) | |
tree | db209f16e9082f61338b05e1c948736e34cd83a8 | |
parent | 87acdabf12de89da1f79a61610aa4464e1698c61 (diff) |
41: teaching John to crack 1337speak
-rw-r--r-- | 41-hashes.txt | 7 | ||||
-rw-r--r-- | 41-slightly-harder-passwords.md | 27 |
2 files changed, 34 insertions, 0 deletions
diff --git a/41-hashes.txt b/41-hashes.txt new file mode 100644 index 0000000..2866ec0 --- /dev/null +++ b/41-hashes.txt @@ -0,0 +1,7 @@ +APv5ukZ2CTO/g +mz65wuZtW9vn6 +UHmZiQDuLENss +dKNQU0QG3qqiY +B1.DQ6.WHqzwE +bO7Pnu.uSIS2w +nQomsFR84vPLU diff --git a/41-slightly-harder-passwords.md b/41-slightly-harder-passwords.md new file mode 100644 index 0000000..ac61e62 --- /dev/null +++ b/41-slightly-harder-passwords.md @@ -0,0 +1,27 @@ +# Slightly harder passwords + +The [hint][] makes them easy again. You may need [this][] to follow the hint, I +used the jumbo version of JtR. + +``` shell +wget -O 41-rules.txt http://contest-2010.korelogic.com/rules.txt +sudo bash -c "cat 41-rules.txt >> /etc/john/john.conf" +john --wordlist=/usr/share/dict/words --rules=KoreLogicRulesL33t 41-hashes.txt +``` + +With as result: +``` text +?:u$e +?:Th3 +?:l4$t +?:0f +?:3@ch +?:w0rd + +6 password hashes cracked, 1 left +``` + +John didn't crack the hash for "letter", but we can guess it. + +[hint]: https://twitter.com/id0rsa/status/761809948388958208 +[this]: http://www.openwall.com/lists/john-users/2012/12/29/27 |