what is wrong as hex i am getting error
#1
hi everybody.

My old bitcoin wallet password has 3 special characters. ( ALT+255) special space

When ı convert this  special space to hex it becomes a0

ı created  a mask file.I wrote the masks in hex.

example : 151569  this is password in hex mode : 313531353639  and at the end of the password  two special space

 and  ı use in hach cat code 

sudo hashcat -m 11300 -w 4 -a 3  --hex-charset -1 c2 -2 a0  '/home/a/masaüstü/hash.txt'  ' /home/a/masaüstü/masklarr.txt'  --force


but  ı get error see pictures
Invalid hex character detected in mask 

.jpeg   1.jpeg (Size: 227.42 KB / Downloads: 5)
Reply
#2
sudo hashcat -m 11300 -w 4 -a 3  --hex-charset -1 c2a0313531353639 ?1?1?1?1?1?1?1?1?1?1 '/home/a/masaüstü/hash.txt'

Try it like that.
Reply
#3
The command-line options -1 and -2 don't work with mask files.
In a mask file, you write something like that:
c2,a0,?d?l?s?1?2
Reply
#4
https://github.com/hashcat/hashcat/issues/3749
Reply
#5
(05-27-2023, 09:00 AM)aikiuslik Wrote: sudo hashcat -m 11300 -w 4 -a 3  --hex-charset -1 c2a0313531353639 ?1?1?1?1?1?1?1?1?1?1 '/home/a/masaüstü/hash.txt'

Try it like that.

not working
Reply