hashcat Forum
Space character with custom charset - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: Space character with custom charset (/thread-5942.html)



Space character with custom charset - devilsadvocate - 10-09-2016

Is there a way to include the space character with a custom character set?

Perhaps something like --custom-charset1= 012345689

The above would be a space followed by digits, 1-9.

With all of the attempts that I have tried on the command line, I can't seem to include a space character.

Also, this doesn't seem to be addressed in the mask attack section of the wiki.
https://hashcat.net/wiki/doku.php?id=mask_attack


RE: Space character with custom charset - kiara - 10-09-2016

maybe that would help

https://hashcat.net/forum/thread-2850-post-17052.html#pid17052


RE: Space character with custom charset - atom - 10-10-2016

You just need to quote correctly then it will use space, too


RE: Space character with custom charset - jodler303 - 10-10-2016

how to escape ',' and ' ' in a custom charset inside a maskfile?

e.g.

test.hcmask
==============================
<space><comma>,abcdef,?1?1?1?2?2?2


RE: Space character with custom charset - atom - 10-11-2016

With \


RE: Space character with custom charset - vagantis - 04-19-2017

Code:
hashcat64.exe -a 3 -m 10500 -w 4 -D 2 -1 ?d\ _,.-/:  -o found_pdf.txt hash_pdf.txt ?1?1?1?1?1?1?1?1?1?1?1?1?1 --increment

Somehow, when I type this command, I get the following exception.

Code:
Hash '_,.-/:': Line-length exception

No hashes loaded

It looks like proceeding space with \ doesn't work in arg list. What am I doing wrong?


RE: Space character with custom charset - d2 - 04-19-2017

Try with single or double quotes


RE: Space character with custom charset - vagantis - 04-19-2017

(04-19-2017, 12:06 PM)d2 Wrote: Try with single or double quotes

Thanks, it worked when I typed it like this:

Code:
-1"?d\ _,.-/:"

Don't know why I haven't thought of that earlier Smile