Posts: 1
Threads: 1
Joined: Jul 2023
07-16-2023, 06:00 AM
(This post was last modified: 07-16-2023, 06:00 AM by stevenstrom.
Edit Reason: Spelling error
)
I saw a few hash modes like md5(md5($pass)) and was wondering if there is any way to do this manually and set it to run each pass through MD5 10 times, or a few times through MD5 and another few times through SHA1 or something. Apologies if this has already been asked. I tried searching here and other places for an answer, but found nothing.
Posts: 57
Threads: 0
Joined: Dec 2022
07-16-2023, 06:57 AM
(This post was last modified: 07-16-2023, 06:58 AM by buka.)
It's not possible*, but John The Ripper has a dynamic format which is closer to what you want:
https://github.com/openwall/john/blob/bl...oc/DYNAMIC
* Unless you code that yourself.
Posts: 930
Threads: 4
Joined: Jan 2015
07-16-2023, 09:11 AM
(This post was last modified: 07-16-2023, 09:11 AM by royce.)
For arbitrary iterations of hashes, mdxfind's -i flag can also be used.
~