Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
random gen
05-11-2012, 09:17 PM
Post: #1
random gen
so i've like many des and md5'nix to do, everything randomly generated 8 chars lowercase digits

kind like

xys3rkvq
iu23lmja
9ruyadf
.
.
.

first approach i tried the easy brain way, creating wl's of thousands of words to soon realize i was just loosing my time - sucess rate was not even 1% :\

then and now i was thinking in trying with custom charset masks
like

-1 ?l ?1?1?1?1 -2 ?d ?1 -3 ?l ?1?1?1

this would mean 8 chars lenght first 4 lowercase (a-z) 1 middle one digit(5ªposition 0-9) 3 last ones lowercase (a-z) , right?
if so how could i join all together to switch the digit position along the charset (from position 1 to 8) ?
if not...excuse my lammeness and show me the light, please.
thank you so much in advance.
Find all posts by this user
Quote this message in a reply
05-11-2012, 09:25 PM (This post was last modified: 05-11-2012 09:33 PM by M@LIK.)
Post: #2
RE: random gen
Gosh, Too many people have the same problems as mine, but I only solve them.


Just joking. : P

I discussed this here: http://hashcat.net/forum/thread-1107.html
Post:#10 is the "light". LOL

And atom, it's +2 til now for that random generator. xD
Find all posts by this user
Quote this message in a reply
05-11-2012, 11:44 PM
Post: #3
RE: random gen
he doesn't need your random generator "solution"

he just needs to read the wiki
or
for 8 char length with lowercase in positions 0-3 digits in position 4 and lowercase in 5-7
?l?l?l?l?d?l?l?l
or all together
-1=?l?d ?1?1?1?1?1?1?1?1
Find all posts by this user
Quote this message in a reply
05-11-2012, 11:56 PM
Post: #4
RE: random gen
@restrictedbytes:: Yes, you are right, he made a mistake with the mask.
But, what was more important is he wanted to generate random strings, and the mask thing was just an attempt to do that...
(05-11-2012 09:17 PM)=||=cat Wrote:  if so how could i join all together to switch the digit position along the charset (from position 1 to 8) ?
Can you do that?

I've tried his way too, see the thread Post:#5.
But it wasn't too easy.

So I suggested him my "solution" : )
Find all posts by this user
Quote this message in a reply
05-12-2012, 12:02 AM
Post: #5
RE: random gen
yes i can do that....it's called scripting

your solution just does not seem useful to me.
Find all posts by this user
Quote this message in a reply
05-12-2012, 08:34 PM
Post: #6
RE: random gen
thanks for your support guys.
when and if i figure out a way to make some progress i'll share it here.
meanwhile if you find anything useful feel free to share it too.
i'll try your method m@lik matey, thank you.
rbytes tbh, and excuse my noobness, i'm still not able to reach what you're talking about, sorry.
btw, that u stated,
Code:
for 8 char length with lowercase in positions 0-3 digits in position 4 and lowercase in 5-7
?l?l?l?l?d?l?l?l
or all together
-1=?l?d ?1?1?1?1?1?1?1?1
is the very same ?!
thanks in adv.

cheers guys!


cheers guys!
Find all posts by this user
Quote this message in a reply
Post Reply