Posts: 18
Threads: 2
Joined: Dec 2017
12-23-2017, 01:44 AM
(This post was last modified: 12-23-2017, 01:44 AM by resiak.)
Code:
./hashcat64.bin -m6223 -a3 vol.tc -i --increment-min 5 --increment-max 9 -1 custom.hcchr -2 custom1.hcchr ?u?1?1?1?2?2?2?2?2
I want the first letter to be a capital A-Z. When I run this the first character includeds lower case and numbers. Am I doing something wrong?
Thanks.
Posts: 930
Threads: 4
Joined: Jan 2015
I'm not able to reproduce this.
Code:
$ hashcat -a 3 --stdout -i --increment-min 5 --increment-max 9 -1 custom.hcchr -2 custom1.hcchr ?u?1?1?1?2?2?2?2?2 | head -100000 | cut -b1 | sort -u | xargs
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
~