custom charset help
#3
ok that worked, thanks

Now i'm getting this error

clCreateCommandQueue(): CL_OUT_OF_HOST_MEMORY

any ideas?

(09-23-2020, 07:30 AM)royce Wrote: Some of the characters are interpreted by your command shell - you might have to backslash one or more of the characters that have special meaning in the shell, such as !, $, ', ", etc.

But in your case, you can use an entire character class instead.
?l = all lower-case
?u = all upper-case
?d = all digits
?s = all special
?a = all of the above (all 95 printable ASCII)

So you can use this instead:

Code:
hashcat -a 3  -m 110 hash ?a?a?a?a?a?a?a?a?a?a?a?a --increment --increment-min 4 --increment-max 12 --hex-salt  pass.txt -O

Note, however, that there are a couple of other issues with this command line:

* ?a x12 will not finish any time soon - like, years
* --hex-salt doesn't do anything if you're not specifying a salt to use
Reply


Messages In This Thread
custom charset help - by ninjahhash - 09-23-2020, 06:47 AM
RE: custom charset help - by royce - 09-23-2020, 07:30 AM
RE: custom charset help - by ninjahhash - 09-23-2020, 07:43 AM
RE: custom charset help - by royce - 09-23-2020, 07:53 AM
RE: custom charset help - by ninjahhash - 09-23-2020, 08:38 AM