Combipow doesn't add single characters between words
#1
Hello,

I'm trying to create a wordlist to crack a gpg file on johntheripper. I know the different words it is composed but not the order.

I have a wordlist with the following words:


Code:
word1
word2
word3
.
!

It never adds the . or the ! between words. I will get word1! or word2word3. but not word2.word3

Kind regards
Reply
#2
Generated the dictionary using PrinceProcessor and cracked the password already. I still think the behavior of combipow isn't the one I expected.
Reply
#3
combinator and combinator3 generating passes with . inside like

word1.word1

maybe you found a bug of combipow while handling special chars (the dot is any sign in every regex)
can you open a github issue? otherwise i can do this for you

EDIT:
playing around
file
.
.
results in
.
.
..
which is wrong, should be
.
..
file
.
.
1
results in no output, so yeah, there seems a problem with the .

EDIT 2:
when looking at the wiki and the given example for combipow, there are missing combinations already like
XYZabc123

so it seems a basic problem with combipow
Reply