Brcypt efficiency 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: Brcypt efficiency help (/thread-10855.html) |
Brcypt efficiency help - fortress - 06-28-2022 Hello All, hoping someone can help me with ideas to a specific attack I'd like to run, or point me to a thread if it exists on this topic. Basically, I have a list of $Bcrypt hashes, with a known password for each. The catch is, I have an all LOWER version of the password, meaning I need to run a toggle attack on the password to actually match it. Applying a rule that toggles the casing is easy enough, no problem.. However here's my puzzle: I want to apply a toggle.rule to lc($pass1), and use the resulting dictionary for specifically $Bcrypt1. I'm trying to avoid applying the resulting dictionary to the entire Bcrypt hash list. So visually... Code: pAss1 --> Bcrypt1 The data I have is essentially in the following format, so it is easy to match the correct lc($pass) to each $bcrypt. $bcrypt: MD5(lc($pass)): lc($pass) Code: $2a$12$4FOWYjeL4AtnSuWqP7.1NeeBejEvwBFI/K3Pjt2r0jg5RhnPF38ja:158b297d0ef08840de89398a34b1c600:123abc Any ideas welcome! |