-
-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tips on speeding up bkcrack #124
Comments
I believe there would be a great speed up by running the password recovery on GPU but it is not implemented at the moment. I hope to implement it eventually (see #75). There is an implementation of the password recovery algorithm on GPU in hashcat. The speed up compared to bkcrack depends on your GPU. See discussion #69 for more details about this. I don't know how fast the GPU in Apple M1 Pro would be for this. If you try, I would be curious to see some time measurement. |
Maybe the most important tip is to select the smallest character set that contains all the password characters. Of course, it requires some guesswork because the password is unknown, but a smaller character set is explored much faster. |
Thanks. I've been trying a lot of things around the character set since I have some idea of what the password was like. I am also using hashcat at the same time as bkcrack (CPU and GPU maxed out). I have an issue with hashcat that I can't run a mask attack of more than a certain number of characters because it runs out of integer space. I think my issue is that the password is looking like it's 14 or more characters and that's a big search space. |
Implementing mask attack for password recovery could also save a lot of time if you have more precise knowledge about what the password looks like. It is not implemented at the moment in bkcrack (#55) but you got me thinking about it again. Maybe I will give it a try in the coming days or weeks 🤞 |
I am pretty sure that the password is "some number of upper case letters followed by a small number of digits". |
Also it would be great to speed up keys searching with GPU |
I've successfully used bkcrack to get the decryption key for an old PKZIP file. Thank you. I am currently trying to obtain the original password and I am running into difficulty. Currently I am running:
bkcrack -k $KEY -r 1..16 '?p' -j 10
on a Apple M1 Pro. Although bkcrack has found 'passwords' (collisions) along the way none are the original password (which is definitely only printable ASCII). I am current about 30% through passwords of length 14.
What are the best tips for speeding this up? Has anyone looked at a distributed or GPU optimized version of bkcrack?
The text was updated successfully, but these errors were encountered: