special char in mask
#1
Hello,

how can I input the char ´ into an mask attack?
When I use this command:
hashcat64.exe -a3 -m 6211 ..\dd\64.bin -1 ?l?u?d ?1?1´
it transforms to a wrong char:
Guess.Mask.......: ?1?1'┤' [5]

TIA
#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/
~