It seems there are some new animations with a new password. I'll see if I can get the password before the eventual scan comes out.
EDIT. This time I'm exhausting keyspaces one at a time, e.g. passwords with 7 or less characters first, then 8, then 9, etc.. And only lower case characters, of course. I'm currently doing 8 characters which will take about 5 hours. 9 characters will take 5 days. I might look into making some custom rules like excluding some rarely used characters (so far x hasn't been used in the passwords, for example) but I'd need to know something about the Japanese language and more specifically its romanization to build efficient custom modes. Any help regarding this would be appreciated.
EDIT2. I created a custom character set based on the [
en.wikipedia.org]
hepburn romanization chart (gojūon) and the previous passwords (excluding "paradise" and the number password). This speeds up the cracking quite a bit, since there are now only 22 characters in the set I can now get the 9 character space tested in about 31 hours. I suspect the password is at least 10 characters long though which is a bit discouraging since the 10 characters space will take about a month finish (assuming the password isn't found earlier than that, of course).
If anyone else wants to create their own character set it's done with with the command
CODE
john --make-charset=kaitsushin_v1.chr
.
For this you'll need to edit the john.pot file to contain only the characters you want to have in the character set, separated by a new line and a colon. This file contains the passwords you've previously cracked so if you want to keep them you need to save them somewhere else. Below is what the john.pot file I used to generate my character set.
CODE
:mikkago
:inaka
:umitsushin
:nyaa
:kaitsushin
:ka
:ki
:ku
:ke
:ko
:sa
:shi
:su
:se
:so
:ta
:chi
:tsu
:te
:to
:na
:ni
:nu
:ne
:no
:ha
:hi
:fu
:he
:ho
:ma
:mi
:mu
:me
:mo
:ya
:yu
:yo
:ra
:ri
:ru
:re
:ro
:wa
:ga
:gi
:gu
:ge
:go
:za
:ji
:zu
:ze
:zo
:da
:ji
:zu
:de
:do
:ba
:bi
:bu
:be
:bo
:pa
:pi
:pu
:pe
:po
EDIT3. 9 characters is done, no password found. 10 characters completition estimate is 3-4 weeks presuming I run it 24/7.
This post has been edited by Huggarine: Jan 21 2016, 05:52