Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can i do this
04-25-2012, 01:12 AM
Post: #1
Question How can i do this
in hashcat lite i was trying to crack a mysql5 password and after a few days of no progress i tried to create one hash of my own, in mysql and sha1 and the default crack method could not crack it, i belive that i have to use a mask.
i thought that the bruteforce method covered all the possible occurrences but i created the simple password "AAAa" and no luck at all.
Please help me understand this.
For example, how can i try to crack a password that can have all uppercase, or lowercase, or digits or special characters from 1 to 8?

Thanks in advance
Find all posts by this user
Quote this message in a reply
04-25-2012, 01:23 AM
Post: #2
RE: How can i do this
and don't go directly without specifying some parameters
and for the last request u wanted::
Code:
MySQL5:
cudaHashcat-lite64 -m300 -1 ?l?d?u [your_hash] ?1?1?1?1?1?1?1?1
SHA-1:
cudaHashcat-lite64 -m100 -1 ?l?d?u [your_hash] ?1?1?1?1?1?1?1?1
or replace "cudaHashcat-lite64" with the used exe on ur system..
u have to use masks for better results

read the wiki again and agian : )
Find all posts by this user
Quote this message in a reply
04-25-2012, 03:31 AM
Post: #3
RE: How can i do this
thank you but i get this error with my command:
"ERROR: no combinations possible on left side"

cudaHashcat-lite64.exe --hash-type 100 --outfile out.out --pw-min 4 --pw-max 8 --gpu-async --gpu-devices 1 [myhash] ?l?d?u ?1?1?1?1?1?1?1?1

im also using the latest version of hashcat gui
Find all posts by this user
Quote this message in a reply
04-25-2012, 03:44 AM (This post was last modified: 04-25-2012 03:45 AM by M@LIK.)
Post: #4
RE: How can i do this
u have to define the character set 1st:: (using -1)
cudaHashcat-lite64.exe --hash-type 100 --outfile out.out --pw-min 4 --pw-max 8 --gpu-async --gpu-devices 1 [myhash] -1 ?l?d?u ?1?1?1?1?1?1?1?1

so ur command::
Code:
cudaHashcat-lite64 -m100 -oOut.out --pw-min 4 --pw-max 8 --gpu-async --gpu-devices 1 -1 ?l?d?u [ur_hash] ?1?1?1?1?1?1?1?1
Find all posts by this user
Quote this message in a reply
04-25-2012, 04:02 AM
Post: #5
RE: How can i do this
ok this time the command worked. but the hash was not cracked
with your command it worked.
with the gui using the same configuration the hash is placed before the ?l?d?u ?1?1?1?1?1?1?1?1 and not in the middle.
i will use the command more often i belive it's working at 100% with the command line instead of the gui.
once again, thanks
Find all posts by this user
Quote this message in a reply
04-25-2012, 04:47 AM
Post: #6
RE: How can i do this
it can be done in GUI too..
[Image: 12345oj.jpg]
i miss my graphical skills : P
Find all posts by this user
Quote this message in a reply
04-25-2012, 09:42 AM
Post: #7
RE: How can i do this
(04-25-2012 03:44 AM)M@LIK Wrote:  
Code:
cudaHashcat-lite64 -m100 -oOut.out --pw-min 4 --pw-max 8 --gpu-async --gpu-devices 1 -1 ?l?d?u [ur_hash] ?1?1?1?1?1?1?1?1

of course it doesn't crack.
100 = sha1
300 = mysql5
Find all posts by this user
Quote this message in a reply
04-25-2012, 11:02 AM (This post was last modified: 05-10-2012 04:28 AM by M@LIK.)
Post: #8
RE: How can i do this
(04-25-2012 09:42 AM)undeath Wrote:  of course it doesn't crack.
100 = sha1
300 = mysql5

O_o

(04-25-2012 04:02 AM)droidman Wrote:  with your command it worked.
Find all posts by this user
Quote this message in a reply
04-25-2012, 11:20 AM
Post: #9
RE: How can i do this
(04-25-2012 04:02 AM)droidman Wrote:  ok this time the command worked. but the hash was not cracked[...]

Wink
Find all posts by this user
Quote this message in a reply
04-25-2012, 12:12 PM
Post: #10
RE: How can i do this
makes no sense
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply