Does generate-rules.exe not have a help? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Does generate-rules.exe not have a help? (/thread-7074.html) |
Does generate-rules.exe not have a help? - DKblue - 12-04-2017 c:\hcu\bin>generate-rules.exe -h invalid rule count c:\hcu\bin>generate-rules.exe -help invalid rule count c:\hcu\bin>generate-rules.exe /? invalid rule count c:\hcu\bin>generate-rules.exe /h invalid rule count c:\hcu\bin>generate-rules.exe /help invalid rule count c:\hcu\bin>generate-rules.exe --h invalid rule count c:\hcu\bin>generate-rules.exe --help invalid rule count c:\hcu\bin>generate-rules.exe usage: generate-rules.exe number [seed] RE: Does generate-rules.exe not have a help? - royce - 12-04-2017 Many tools from hashcat-utils are pretty minimal. The wiki has a summary of usage: https://hashcat.net/wiki/doku.php?id=hashcat_utils#generate-rules RE: Does generate-rules.exe not have a help? - DKblue - 12-04-2017 (12-04-2017, 08:46 AM)royce Wrote: Many tools from hashcat-utils are pretty minimal. The wiki has a summary of usage: Thank U! I got it and studying now. RE: Does generate-rules.exe not have a help? - DKblue - 12-04-2017 (12-04-2017, 08:46 AM)royce Wrote: Many tools from hashcat-utils are pretty minimal. The wiki has a summary of usage: actually the past 30 hours I suffered quite a lot on this : I wanna making some append number rules mainly year month date,and some chinese-favored lucky num. And so I did a lot of "ctrl+v" to insert dollar symble and blank space,each column one by one. Felt so boring I try really hard on generate-rules.exe but failed. Then after tons of Google and Bai-idiot-du serching ,finally I decided studying awk/sed to get it done. list one,from 1970 to 2017 list 2,from 0101 to 1231 no.3 , 19700101 to 20171231 nl. 4,700101 to 171231 Finally happy to see all these things like 20171201 turned to $2 $0 $1 $6 $1 $2 $2 $9 I convert them all by semi-automatic way.(I really think not smart and felt a little stupid) If there r someone else suffered the same,maybe I can share my "not so smart" methods here. Short answer : something like these awk '{print "X"$0}' test awk '{print $0"X"}' test awk '$O=$O" X"' test awk 'NR==row{$NF="RR"$NF}' test I knew nothings of these commands,guess and test and with a few luck I finished it. RE: Does generate-rules.exe not have a help? - DKblue - 12-04-2017 and forgot this one sed 's/^../&X/' test |