06-04-2017, 06:34 AM
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:
2. Escape the apostrophe with a caret (^):
Reference:
https://blogs.msdn.microsoft.com/twistyl...wrong-way/
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/
~