Confused by the suffixes and parameters
#2
(10-07-2013, 09:17 PM)JayPee Wrote: How do I know which one I have to pick?

use the source, or guess intelligently


(10-07-2013, 09:17 PM)JayPee Wrote: And do I have to put the hash + salt in a certain format?

yes, the format is hashConfusedalt

(10-07-2013, 09:17 PM)JayPee Wrote: I'm pretty sure tho the password only contains letters, numbers, periods ( . ), and dashes/minuses ( - ). Also, for password acceptance there is no difference between upper case and lower case. How do I set this up, -1 $l$u$d.- doesn't seem to work...

you have the right idea, but you're not doing it right. first, it's ?, not $. second, you said there's no difference between ?l and ?u, so you wouldn't want to use both in your charset, you'd be increasing the keyspace for no reason.

so based on what you said above, you'd want to use a custom charset of -1 ?u?d.-


Messages In This Thread
RE: Confused by the suffixes and parameters - by epixoip - 10-08-2013, 03:54 AM