I need help with syntax - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html) +--- Thread: I need help with syntax (/thread-3668.html) |
RE: I need help with syntax - undeath - 09-19-2014 have a look at defining custom charsets: https://hashcat.net/wiki/doku.php?id=mask_attack#custom_charsets RE: I need help with syntax - Quest - 09-19-2014 yes you refereed me to the wiki the last time, when I had the same question. Can you stop being a Sneaky Bastard and give me an example syntax? ;P The wiki does not work for me. Just vague notions. I need concrete example, then I will probly understand the wiki.. RE: I need help with syntax - undeath - 09-19-2014 I'm not sure what you mean by "vague notions". Said section of this wiki article provides 8 lines of example code and 4 lines of explanation specifically for this single problem. RE: I need help with syntax - Quest - 09-19-2014 lol, you do realize that we are having a circular discussion? RE: I need help with syntax - undeath - 09-19-2014 so what trouble do you have making up the mask? jk, the following command defines a custom charset that consists of the chars “abcdefghijklmnopqrstuvwxyz0123456789†(aka “lalpha-numericâ€): -1 ?l?d is this more clear? RE: I need help with syntax - Quest - 09-19-2014 lol niope. Not at all. Where is the Capitalized letter in the above example? i need a Capitalized and a lower case on first position, then, 3 lower cases, then, 4 everything except symbols. RE: I need help with syntax - Wushu - 09-19-2014 So, you define a custom character set with the -1, -2, and -3 flags. So in order to do everything except symbols, you could use: -1 ?l?u?d And then uppercase and lowercase would be: -2 ?u?l and then use the following as your mask: ?2?l?l?l?1?1?1?1 RE: I need help with syntax - Quest - 09-19-2014 Ah now i get it. So the definition of the "-1, -2" character set, is in my syntax. So my syntax would look like this.. Code: cd /usr/share/cudahashcat/ && ./cudaHashcat64.bin -w 3 -t 10 -m 2500 /root/capture.hccap -a 3 -1 ?l?u?d -2 ?u?l /usr/share/cudahashcat/masks/8=1Capitalized&lower-3lower-4charNoSymbols.hcmask "8=1Capitalized&lower-3lower-4charNoSymbols.hcmask" being the "?2?l?l?l?1?1?1?1" .hcmask RE: I need help with syntax - epixoip - 09-19-2014 no need to use an hcmask file for a single mask. and if you're going to use an hcmask file, your custom charset defines should go in the hcmask file, like so: ?l?u?d,?u?l,?2?l?l?l?1?1?1?1 RE: I need help with syntax - Quest - 09-19-2014 I understand that also. Beautiful. post#37 and #39 beats the wiki any day of the week and would do miracles to demystify any noob. Thanks Wushu and epixoip!! |