Posts: 7
Threads: 3
Joined: Oct 2014
10-02-2014, 12:30 PM
(This post was last modified: 10-02-2014, 12:33 PM by DAP.)
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
Posts: 5,185
Threads: 230
Joined: Apr 2010
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
Posts: 7
Threads: 3
Joined: Oct 2014
(10-02-2014, 04:00 PM)atom Wrote: 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
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
Posts: 2,267
Threads: 16
Joined: Feb 2013
All of this is explained in the wiki (
https://hashcat.net/wiki/ )
See
http://hashcat.net/wiki/doku.php?id=mask...m_charsets
with -1, -2, -3, -4 you define "custom charsets".
So for instance your custom charset would look like this:
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
Posts: 7
Threads: 3
Joined: Oct 2014
(10-02-2014, 05:44 PM)philsmd Wrote: All of this is explained in the wiki ( https://hashcat.net/wiki/ )
See http://hashcat.net/wiki/doku.php?id=mask...m_charsets
with -1, -2, -3, -4 you define "custom charsets".
So for instance your custom charset would look like this:
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
Thank you Phil
I using hascat not oclhastcat, and i found it on oclhastcat.
Solved Thank you