Help with spaces and rules - 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: Help with spaces and rules (/thread-7268.html) |
Help with spaces and rules - Azimuth7 - 02-06-2018 Guys and Gals I´m pretty new to hashcat and this community and I´m needing some help I´m trying to make a rule to add a plain space after a wordlist in a way i can have a word and some numbers separated by a space. So instead of having for example the word blah01 I´m looking for blah 01 The question is pretty silly but I didn´t have any success in doing a rule to append a plain space character. How can i do that? Since I´ve tried $" " and $ with a space after and Hashcat returns a syntax error. Anybody can help me? Thanks in advance. RE: Help with spaces and rules - royce - 02-06-2018 Maybe single quotes vs double quotes? (Are you Windows?) Here's a working example. I generate a ruleset that sounds sort of like what you're after (though I'm *appending* space and two digits): Code: $ mp64 '$ $?d $?d' | head And here I show that ruleset in action, operating on a single-word wordlist ("blah"), piped in, and using --stdout to show the candidate passwords being generated: Code: $ echo blah | hashcat --stdout -r append_space2d.rule | head RE: Help with spaces and rules - Azimuth7 - 02-06-2018 Yes Royce! Many thanks for your help, that was exactly what i was looking for! I use both windows and linux (The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali)) I'll rewrite my rules as you suggested. Thank you! RE: Help with spaces and rules - Azimuth7 - 02-07-2018 Can you clarify me please what the "|head" does on your code? thank you. RE: Help with spaces and rules - royce - 02-10-2018 'head' just shows the first X lines of output (the default is 10 lines). This is just to make the output shorter, and give a sample from the beginning of the output. RE: Help with spaces and rules - Azimuth7 - 02-14-2018 Thank you Royce! |