12-25-2017, 08:47 PM
One-character parameters (single hyphen) don't work with equals signs, but multi-character (two hyphens) should work with equals signs.
Code:
$ echo blah | hashcat --hash-type=1000 --stdout
blah
$ echo blah | hashcat -m=1000 --stdout
The specified parameter cannot use '=1000' as a value - must be a number.
~