Need HELP - Im Close to the right Password form my SSD - 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: Need HELP - Im Close to the right Password form my SSD (/thread-10979.html) |
Need HELP - Im Close to the right Password form my SSD - criptoon - 08-22-2022 Hello HashCats, I forgot my password from my new Luke SSD but i know mutch about it. Please help me with the right Charset and Mask Syntax (or else). How can i BrutForce only Passwords with the follow parts nothing other: "123" "qwe" "456" "!" as Example the Password looks close to: 123!456qwe123! 123!qwe!456!qwe The Password length is 12 - 15 -i --increment-min 12 --increment-max 15 Iam far away from the right solution with: Code: sudo ./hashcat.bin -a 3 -m 14600 /dev/sda1 -1 '123' -2 '123qwe!' 123?2?2?2?2?2?2?2?2?2?2 -i --increment-min 12 --increment-max 15 How can i BruteForce only with the Parts i set? Thank you for reading, have a nice time. RE: Need HELP - Im Close to the right Password form my SSD - walterlacka - 08-22-2022 Using princeprocessor with a dictionary of words consisting of: 123 qwe 456 ! Pipe princeprocessor into hashcat. More info: https://reusablesec.blogspot.com/2014/12/tool-deep-dive-prince.html RE: Need HELP - Im Close to the right Password form my SSD - criptoon - 08-23-2022 (08-22-2022, 11:11 PM)walterlacka Wrote: Using princeprocessor with a dictionary of words consisting of: Thank you very mutch, this way looks good. i will try to got it next time and let you know what i done. RE: Need HELP - Im Close to the right Password form my SSD - criptoon - 10-19-2022 Okay here is my way i tryed, Hashcat work very nice and fast. But i found not the right Password. Can someone please check my step 3 and 4? At the botom you can see the informations of my Luks partition maybe the solution is to change something in step 3 or 4, else i must try other parts in step 1. Step 1: Code: # cat my-word-list.txt Step 2: Code: # sudo princeprocessor --elem-cnt-min=4 --elem-cnt-max=10 --pw-min=12 --pw-max=22 my-word-list.txt > price-list.txt Step 3: Code: # sudo dd if=/dev/sda1 of=my-sda1.luks bs=512 count=4097 Step 4: Code: # sudo ./hashcat-6.2.5/hashcat.bin -a 0 -m 14600 my-sda1.luks price-list.txt Informations about my Luks partition Code: # sudo cryptsetup luksDump /dev/sda1 Thank you very mutch for reading, have a nice day |