Generated wordlist size is not right?
#1
Hi I would love to crack a password of length 8 with a combination of upper/lower/digit and !@#$%^&*?

I did a rough calculation which should be equal to 71^8 = 6.45753531245761 × 10^14.

But this is what hashcat gave me


Session..........: hashcat
Status...........: Running
Hash.Type........: NetNTLMv1-VANILLA / NetNTLMv1+ESS
Hash.Target......: /home/yuri/Desktop/hashes/unsw/unihashes_converted
Time.Started.....: Sun Mar 26 10:32:09 2017 (3 mins, 41 secs)
Time.Estimated...: Tue Apr 18 10:42:25 2017 (23 days, 1 hour)
Input.Mask.......: ?2?2?2?2?2?2?2?2 [8]
Input.Charset....: -1 myowncharset, -2 ?1?l?u?d, -3 Undefined, -4 Undefined
Input.Queue......: 1/1 (100.00%)
Speed.Dev.#1.....: 19780.4 MH/s (63.60ms)
Recovered........: 0/61 (0.00%) Digests, 0/61 (0.00%) Salts
Progress.........: 4387273441280/39390965405991421 (0.01%)
Rejected.........: 0/4387273441280 (0.00%)
Restore.Point....: 13107200/128100283921 (0.01%)
Candidates.#1....: s!v2^S!! -> k1r4wZ!!
HWMon.Dev.#1.....: Temp: 74c Fan: 73% Util: 94% Core:1860MHz Mem:4513MHz Lanes:16

The value 39390965405991421 is way more than i expected.
 

Did I do anything wrong?
#2
Is it because I have 61 hashes, thats why it just multiply by 61.
#3
You're right - I'm running it against a single hash, and I get the number you're expecting:

Code:
$ cat myowncharset
!@#$%^&*?

$ ./hashcat -m 5500 -a 3 -1 myowncharset -2 ?1?l?u?d test.hash ?2?2?2?2?2?2?2?2

[snip]

Session..........: hashcat
Status...........: Running
Hash.Type........: NetNTLMv1-VANILLA / NetNTLMv1+ESS
Hash.Target......: u4-netntlm::kNS:338d08f8e26de933000000000000000000000...c4736c
Time.Started.....: Sat Mar 25 16:17:19 2017 (2 mins, 39 secs)
Time.Estimated...: Sun Mar 26 08:37:34 2017 (16 hours, 17 mins)
Guess.Mask.......: ?2?2?2?2?2?2?2?2 [8]
Guess.Charset....: -1 myowncharset, -2 ?1?l?u?d, -3 Undefined, -4 Undefined
Guess.Queue......: 1/1 (100.00%)
Speed.Dev.#1.....:  8131.4 MH/s (6.37ms)
Speed.Dev.#2.....:  2846.9 MH/s (6.87ms)
Speed.Dev.#*.....: 10978.3 MH/s
Recovered........: 0/1 (0.00%) Digests, 0/1 (0.00%) Salts
Progress.........: 1803795398656/645753531245761 (0.28%)
Rejected.........: 0/1803795398656 (0.00%)
Restore.Point....: 356974592/128100283921 (0.28%)
Candidates.#1....: baq@$*8! -> Ubmi908!
Candidates.#2....: NvXhW&8! -> CxI@$*8!
HWMon.Dev.#1.....: Temp: 75c Fan: 54% Util: 98% Core:1252MHz Mem:3004MHz Bus:8
HWMon.Dev.#2.....: Temp: 48c Fan: 32% Util: 97% Core:1163MHz Mem:2700MHz Bus:8

And you've got it - 645753531245761 x 61 = 39390965405991421, so the number increases as a factor of the number of hashes, because each hash has what is effectively a unique salt.
~