01-08-2017, 08:59 PM
(01-08-2017, 09:43 AM)desperatenoob Wrote:(01-08-2017, 07:54 AM)miccee Wrote: can you do mask attack with custom mask likeBut you may have to change WORD to Word and first and last character to nothing.Code:?1WORD?2?2?2?2?2?2?2?2?2?2?2?2WORD?1 -1=3# -2=KT07x$
Ok.. That seems like it might take a really long time though. I was hoping I could eliminate some more possibilities. Maybe make a couple word lists like:
List 1:
KTKTKT
KT
07
And then List 2:
Word3
WORD#
etc..
And then do a combination attack with a mask on the first list like:
???KT??KT??KT???????
And append list 2 to either side. Can you make a charset that includes a blank? I don't know, my coding experience is limited to a LISP class I took 12 years ago.
Code:
echo $'3Word\n3WORD\n#Word\n#WORD\nWord\nWORD\n' > prepend.txt
Code:
crunch 16 18 -p KT KT KT 07 x x x x '$' '$' '$' '$' > password.txt
Code:
echo $'Word3\nWORD3\nWord#\nWORD#\nWord\nWORD\n' > append.txt
Code:
./combinator3.bin prepend.txt password.txt append.txt > prepend_password_append.txt
The problem with this is your password... all these combined would have a significant amount of hashes
The other solution is making both prepend.txt and append.txt into rule and you just have to mess with password.txt and insert the rule.
I wonder if anyone else has a better idea.