Ask Customs Chracter Set - 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: Ask Customs Chracter Set (/thread-3706.html) |
Ask Customs Chracter Set - DAP - 10-02-2014 How do I set the character as you wish. I remember the password begins with a 141-xxxxxxxxxx and I do not know what x was. If I am looking for a 14 character it will take a long time. Is it possible to set a character in a brute-force without having to 14 characters, so only the 10 characters behind that? So custom like 141-? |? |? |? |? |? |? |? | What's the solution? Or use the rules? its hash using SHA256 Thank you RE: Ask Customs Chracter Set - atom - 10-02-2014 Yes, use rules. There are already hybrid rules available for that, just stack them using: ./oclHashcat ... -r rules/hybrid/prepend_d.rule -r rules/hybrid/prepend_d.rule -r rules/hybrid/prepend_d.rule 3 times for 000 - 999 2 times for 00 - 99 1 time for 0-9 RE: Ask Customs Chracter Set - DAP - 10-02-2014 (10-02-2014, 04:00 PM)atom Wrote: Yes, use rules. There are already hybrid rules available for that, just stack them using: Thank for reply atom I've tried with mask attack , and I wrote ?d?d-?a?a?a?a?a?a?a?a?a?a but ?a contains all the characters . Can I just take the character of the lower , upper and digits only ? without character « space » ! " # $ % & ' ( ) * + , - . / :; < = > ? @ [ \ ] ^ _ ` { | } ~ I saw on the wiki only ?a = ?l?u?d?s , And it contains all Thank you RE: Ask Customs Chracter Set - philsmd - 10-02-2014 All of this is explained in the wiki ( https://hashcat.net/wiki/ ) See http://hashcat.net/wiki/doku.php?id=mask_attack#custom_charsets with -1, -2, -3, -4 you define "custom charsets". So for instance your custom charset would look like this: Code: -1 ?l?u?d which is the same as Code: -1 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 After you define it you need to *use* your custom charset within the mask. For instance, it could look like: Code: -1 ?l?u?d 141-?1?1?1?1?1?1?1?1?1?1 this means: #1. define a custom charset that can be used with ?1 in the mask #2. use the mask starting w/ 4 hardcoded chars ("141-"), and 10 times the chars defined in #1 RE: Ask Customs Chracter Set - DAP - 10-02-2014 (10-02-2014, 05:44 PM)philsmd Wrote: All of this is explained in the wiki ( https://hashcat.net/wiki/ ) Thank you Phil I using hascat not oclhastcat, and i found it on oclhastcat. Solved Thank you |