Cant make it work
#10
Yeah, so the mask (the ?1?1...) has to be at least as long as the minimum length of the plaintext you're trying to compute. Each ?<something> stands for one character in the plaintext. For a plaintext of 8 characters you would want:
?1?1?1?1?1?1?1?1

If you knew the first 3 characters were the string "abc" and you only needed to brute-force guess the last 5 characters, you would do the mask like this:
abc?1?1?1?1?1

If you knew the last two characters were @$, but needed to brute-force the first 6, the mask would be like this:
?1?1?1?1?1?1@$

Make sense?
BTW if you're trying to do SL3 unlock then you need to use the binary character set as atom described (00010203...).


Messages In This Thread
Cant make it work - by Marabunta - 10-23-2011, 09:09 PM
RE: Cant make it work - by atom - 10-23-2011, 09:20 PM
RE: Cant make it work - by Marabunta - 10-23-2011, 09:27 PM
RE: Cant make it work - by atom - 10-23-2011, 09:32 PM
RE: Cant make it work - by Marabunta - 10-23-2011, 09:39 PM
RE: Cant make it work - by chort - 10-23-2011, 10:13 PM
RE: Cant make it work - by Marabunta - 10-23-2011, 11:20 PM
RE: Cant make it work - by chort - 10-23-2011, 11:35 PM
RE: Cant make it work - by Marabunta - 10-24-2011, 05:52 PM
RE: Cant make it work - by chort - 10-24-2011, 10:04 PM