Skip to content
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

More precise set of characters for password recovery #80

Closed
dkdlv opened this issue Sep 15, 2022 · 1 comment
Closed

More precise set of characters for password recovery #80

dkdlv opened this issue Sep 15, 2022 · 1 comment
Labels

Comments

@dkdlv
Copy link

dkdlv commented Sep 15, 2022

Hi!
On the same idea to improve the password finding ( #72 ), is it possible to find a way to give a more precise set of characters?

Maybe on the way John let us give a regex: in my case, I am seaching an uppercase hexadecimal string so being able to give something like that in entry [A-F0-9] should be more efficient on long passwords.

Thanks!

@kimci86
Copy link
Owner

kimci86 commented Sep 15, 2022

Hi,
You can specify characters to use by listing them explicitly. Using predefined character sets such as ?p, ?l, etc is not mandatory. In the case of uppercase hexadecimal digits, you can use 0123456789ABCDEF, or in short ?dABCDEF as the character set.
Being able to use a regex could be nice especially once masks are supported (#55), but it will take me some time to implement it.

For the record, a similar question was asked in #78.
Maybe this deserves some more documentation or a more detailed example in the tutorial.

@kimci86 kimci86 closed this as completed Dec 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants