Some questions on charsets
#4
the first example you had it on bruteforce attack mode but didn't specify a mask

the second example, when -a isn't specified it defaults to -a 0 attack mode. failed because you didn't specify a wordlist

the third example you provided a mask but forgot to put it in bruteforce mode, -a 3

some attack mode examples:
* Attack modes:
0 = Straight
1 = Combination
3 = Brute-force
4 = Permutation
6 = Hybrid dict + mask
7 = Hybrid mask + dict

hashcatexecutable -a 0 hashfile.txt wordlist.txt
hashcatexecutable -a 1 hashfile.txt wordlist1.txt wordlist2.txt
hashcatexecutable -a 3 hashfile.txt ?u?u?u?u?u?u?u?u?u?u
hashcatexecutable -a 4 (never used it so don't know)
hashcatexecutable -a 6 hashfile.txt wordlist.txt ?u?u?u?u
hashcatexecutable -a 7 hashfile.txt ?u?u?u?u wordlist.txt


Messages In This Thread
Some questions on charsets - by 23732 - 09-03-2012, 06:27 PM
RE: Some questions on charsets - by forumhero - 09-03-2012, 08:04 PM
RE: Some questions on charsets - by 23732 - 09-03-2012, 10:48 PM
RE: Some questions on charsets - by forumhero - 09-03-2012, 11:21 PM
RE: Some questions on charsets - by 23732 - 09-04-2012, 07:22 AM
RE: Some questions on charsets - by atom - 09-04-2012, 10:38 AM
RE: Some questions on charsets - by 23732 - 09-04-2012, 06:03 PM
RE: Some questions on charsets - by mastercracker - 09-04-2012, 06:13 PM
RE: Some questions on charsets - by atom - 09-04-2012, 06:13 PM
RE: Some questions on charsets - by 23732 - 09-04-2012, 06:15 PM
RE: Some questions on charsets - by atom - 09-04-2012, 07:34 PM
RE: Some questions on charsets - by 23732 - 09-04-2012, 07:36 PM