mp64: generate total random words - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html) +--- Thread: mp64: generate total random words (/thread-1107.html) |
mp64: generate total random words - M@LIK - 04-22-2012 how can i generate words in random?? let's say:: Code: mp64 -1 ?l?d ?1?1?1?1?1?1?1?1 Code: mp64 -1 ?l?d ?1?1?1?1?1?1?1?1 -s10000000 -l11000000 Code: 100001q0 what i want to see is:: Code: 1w6675qE RE: mp64: generate total random words - atom - 04-23-2012 You can not generate random words with maskprocessor. RE: mp64: generate total random words - M@LIK - 04-23-2012 this wasnt what i wanted to hear.. : / any idea how to do that even without mp?? RE: mp64: generate total random words - en-tee-el-em - 04-23-2012 <random gibberish> Could you take any small binary on your system , send it through the "octal dump" unix util "od -c" > trap the output in a text file, clean it up, send half of that through a rot13 and have through a rot20 , then pipe through "translate" tool tr [A-Z] [a-z] then through "cut -c1-8" ?? </random gibberish> RE: mp64: generate total random words - M@LIK - 04-23-2012 @en-tee-el-em:: could be.. thanks.. i'll try to do that : ) i also thought about this:: Code: mp64 -oOUT.out -1 MGUI -2 4193 -3 yoct -4 2568 ?1?2?3?4?1?2?3?4 r.rule Code: : Code: hc64 OUT_s.out -rr.rule --stdout nul nul > OUT_s_r.out results?? Code: 4c5G1y2G its like "in ur face atom".. LOL just joking pal.. PS:: it needs more work.. coz its showing only certain characters.. but i believe that could be done also!! RE: mp64: generate total random words - undeath - 04-23-2012 you might be interested in the fingerprint attack. Take a close look at the expander. (hashcat-utils) RE: mp64: generate total random words - atom - 04-23-2012 (04-23-2012, 12:28 PM)M@LIK Wrote: its like "in ur face atom".. LOL just joking pal.. nah, love to see when hashcat user are creative. RE: mp64: generate total random words - M@LIK - 04-23-2012 @undeath:: wacthed purehate's video couple of times + read the wiki couple of times = never understood it... maybe now i can?? lol @atom:: : ) RE: mp64: generate total random words - en-tee-el-em - 04-23-2012 could you butcher this python found on tintertubes import string import random FILE = open("test.txt","a") i = 0 while i <= 1000: i+=1 d = [random.choice(string.letters) for x in xrange(8)] s = "".join(d) writing= s.lower()+"\n" FILE.write(writing) FILE.close() RE: mp64: generate total random words - M@LIK - 05-05-2012 After more than a week of researches : P... I believe I found the best way to do this. Unique, pure, random words xD All in one liner (Only for Linux) (On Windows you can use Cygwin): Code: cat /dev/urandom | tr -cd '[charset]' | head -c[size_of_output_in_bytes] | fold -w[string_length] | sort -u | awk "length==[string_length]" (sort -u is not necessary too, you would rarely find dupes [optional]) charset = is the desired character-set: Code: a-z = ?l size_of_output_in_bytes = is the maximum output size: Code: 1024=1024 (1 kilobyte) string_length = is the desired length. Examples: Code: cat /dev/urandom | tr -cd 'a-z' | head -c1048576 | fold -w8 | sort -u | awk "length==8" Code: ... Code: cat /dev/urandom | tr -cd 'a-zA-Z0-9' | head -c2048 | fold -w15 | sort -u | awk "length==15" Code: ... Let's go HARDCORE! Code: cat /dev/urandom | tr -cd 'a-zA-Z0-9\ -~' | head -c2048 | fold -w32 | sort -u | awk "length==32" Code: ... LOL I must say, I'm loving the rubbish this is giving me. xD |