special char in mask
#2
On the (Windows?) command line, you'll need to handle differently any strings that contain an apostrophe (').

One of these may work:

1. Double quotes around the entire mask:

Code:
hashcat64.exe -a3 -m 6211 ..\dd\64.bin -1 ?l?u?d "?1?1´"

2. Escape the apostrophe with a caret (^):

Code:
hashcat64.exe -a3 -m 6211 ..\dd\64.bin -1 ?l?u?d ?1?1^´


Reference:

https://blogs.msdn.microsoft.com/twistyl...wrong-way/
~


Messages In This Thread
special char in mask - by uczi - 06-04-2017, 01:34 AM
RE: special char in mask - by royce - 06-04-2017, 06:34 AM
RE: special char in mask - by Jiminy - 06-04-2017, 02:55 PM