hashcat Forum
Statsprocessor specific characters - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html)
+--- Thread: Statsprocessor specific characters (/thread-7132.html)



Statsprocessor specific characters - Crapcathash - 12-23-2017

Hello i want to generate all combinations with this "Hello123" 8 length.

I have one upper "H" and lower "ello" with number "123"

I don't want to use ?l or ?d because it will use all alphabet & numbers

I've trying 

Code:
sp64.exe --pw-min=8 --pw-max=8 --output-file=allcombinations.txt --custom-charset1=Hello123

It is possible with this tool ? thank you


RE: Statsprocessor specific characters - undeath - 12-23-2017

what do you mean by "all combinations with this "Hello123" 8 length."?


RE: Statsprocessor specific characters - Crapcathash - 12-23-2017

(12-23-2017, 05:15 PM)undeath Wrote: what do you mean by "all combinations with this "Hello123" 8 length."?

sorry for bad english but for example

Hello321
lloeH231
123eHoll

etc


RE: Statsprocessor specific characters - philsmd - 12-23-2017

Why do you want to write this to a file ?
Hashcat has in-built support for markov chains and mask attack (-a 3).

Anyways, if you really, really want to write it to a disk (I don't know why), you need to specify also the path to the hashcat.hcstat file and the mask. e.g. something like this:
Code:
sp64.exe --pw-min 8 --pw-max 8 --output-file allcombinations.txt --custom-charset1 Hello123 ..\hashcat.hcstat ?1?1?1?1?1?1?1?1

if instead you use it directly with hashcat you can just run this:
Code:
hashcat.exe -m 0 -a 3 -w 3 --custom-charset1 Hello123 hashes.txt ?1?1?1?1?1?1?1?1



btw: your examples look more like a permute not a mask attack. https://hashcat.net/wiki/doku.php?id=hashcat_utils#permute
e.g. you could run something like this:
Code:
echo Hello123 | permute.exe > allcombinations.txt

(Note: you should sort and unique the output of permute.exe, because it doesn't remove duplicates)


RE: Statsprocessor specific characters - Crapcathash - 12-23-2017

(12-23-2017, 07:28 PM)philsmd Wrote: Why do you want to write this to a file ?
Hashcat has in-built support for markov chains and mask attack (-a 3).

Anyways, if you really, really want to write it to a disk (I don't know why), you need to specify also the path to the hashcat.hcstat file and the mask. e.g. something like this:
Code:
sp64.exe --pw-min 8 --pw-max 8 --output-file allcombinations.txt --custom-charset1 Hello123 ..\hashcat.hcstat ?1?1?1?1?1?1?1?1

if instead you use it directly with hashcat you can just run this:
Code:
hashcat.exe -m 0 -a 3 -w 3 --custom-charset1 Hello123 hashes.txt ?1?1?1?1?1?1?1?1



btw: your examples look more like a permute not a mask attack. https://hashcat.net/wiki/doku.php?id=hashcat_utils#permute
e.g. you could run something like this:
Code:
echo Hello123 | permute.exe > allcombinations.txt

(Note: you should sort and unique the output of permute.exe, because it doesn't remove duplicates)

Thank you ! very well explained