Custom charset help - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Custom charset help (/thread-9438.html) |
Custom charset help - gpunerd - 08-04-2020 Hi guys, I'm trying to bruteforce a pdf hash, I know which characters are used in password, but do not know password. I have tried multiple commands but none of them is working. Here are the cmds: Code: hashcat -m 10500 -a 3 hash -1 WNRCEOIDLHwnrceoidlh0123456789 Code: hashcat -m 10500 -a 3 hash --increment --increment-min=6 --increment-max=14 --custom-charset1 WNRCEOIDLHwnrceoidlh ?d Code: hashcat -m 10500 -a 3 hash --custom-charset1 WNRCEOIDLHwnrceoidlh ?d RE: Custom charset help - slyexe - 08-04-2020 you need to specify the mask length as suggested. Code: hashcat -m 10500 -a 3 hash -1 WNRCEOIDLHwnrceoidlh0123456789 --increment --increment-min=6 --increment-max=14 ?1?1?1?1?1?1?1?1?1?1?1?1?1?1 RE: Custom charset help - gpunerd - 08-06-2020 (08-04-2020, 03:43 PM)slyexe Wrote: you need to specify the mask length as suggested. Hi, thanks for your quick help. Its solved my issue. I have another question: Code: Case 1. Regards RE: Custom charset help - gpunerd - 08-20-2020 (08-06-2020, 12:11 PM)gpunerd Wrote:(08-04-2020, 03:43 PM)slyexe Wrote: you need to specify the mask length as suggested. please help RE: Custom charset help - S_g - 08-20-2020 I think a custom dictionary combined with the prince pre-processor and some rules would do what you want. |