09-15-2015, 10:38 PM
(09-15-2015, 04:05 PM)alert Wrote: but you can also try thoses two for example wich are not saltedI tried these, but it doesn't work. Probably it's salted.
md5(strtoupper(md5($pass)))
md5(sha1($pass))
(09-15-2015, 04:05 PM)alert Wrote: I guess if it's 32 alphanumeric chars it is MD5 but then to corectly guess what you're asking for, if it's salted you'll have to bruteforce the salt and it's position ...Yes, it's 32 alphanumeric chars.
What commandline parameters can I use to bruteforce salt?
For example, let's start with this:
md5($pass.$salt)
if i understood what you said, I need to to this:
pass
passa
passb
passc
....
passaa
passab
...
and so on...
What commandline parameters can I use to do this?
Can I use a dictionary for salt instead of brute-force?