05-13-2017, 09:58 AM
If you want to use some static string like "#&33;" within a mask, you just need to put it there for instance like this (file mask_file.hcmask):
but as you might know, it is not always clever to use some long constant string (it is especially bad for the speed whenever it is at the beginning of the mask) within the masks... but you can test it anyway and see
Note: the custom charset including ?l?u?d (lower, upper, digits) and the mask length is just an example (you might need to change it depending on your situation)
Code:
?l?u?d,?1?1?1?1?1#&33;
?l?u?d,?1?1?1?1#&33;?1
?l?u?d,?1?1?1#&33;?1?1
?l?u?d,?1?1#&33;?1?1?1
...
but as you might know, it is not always clever to use some long constant string (it is especially bad for the speed whenever it is at the beginning of the mask) within the masks... but you can test it anyway and see
Note: the custom charset including ?l?u?d (lower, upper, digits) and the mask length is just an example (you might need to change it depending on your situation)