Search Results
|
Post |
Author |
Forum
[asc]
|
Replies |
Views |
Posted |
|
|
Thread: hashcat manual
Post: RE: hashcat manual
too bad that was three years ago. |
|
epixoip |
Old hashcat Support
|
3 |
12,009 |
07-04-2014, 12:45 AM |
|
|
Thread: Identical username password case
Post: RE: Identical username password case
cut -d: -f1 hashfile >usernames, then use usernames as a wordlist. |
|
epixoip |
Old hashcat Support
|
3 |
6,353 |
07-14-2014, 10:02 AM |
|
|
Thread: Identical username password case
Post: RE: Identical username password case
|
epixoip |
Old hashcat Support
|
3 |
6,353 |
07-14-2014, 01:03 PM |
|
|
Thread: Antminer U1 1.6GH/s with Hashcat
Post: RE: Antminer U1 1.6GH/s with Hashcat
|
epixoip |
Old hashcat Support
|
2 |
6,048 |
07-22-2014, 08:52 AM |
|
|
Thread: Oracle 10 hash type
Post: RE: Oracle 10 hash type
https://hashcat.net/wiki/doku.php?id=example_hashes |
|
epixoip |
Old hashcat Support
|
3 |
7,324 |
07-22-2014, 04:41 PM |
|
|
Thread: .cap hash extraction
Post: RE: .cap hash extraction
you are specifying a salted hash mode without supplying the hash and salt in "hash:salt" format. it looks like you are just concatenating the salt with the hash. |
|
epixoip |
Old hashcat Support
|
9 |
39,553 |
08-25-2014, 12:30 AM |
|
|
Thread: Line length exception with sha1-hmac (mode 150)
Post: RE: Line length exception with sha1-hmac (mode 150...
you're exceeding the maximum salt length that oclHashcat supports. there's no way around this. |
|
epixoip |
Old hashcat Support
|
2 |
8,442 |
09-03-2014, 01:44 PM |
|
|
Thread: Password length issues
Post: RE: Password length issues
you're trying to brute force a 65-character password? |
|
epixoip |
Old hashcat Support
|
5 |
8,315 |
10-23-2014, 04:41 AM |
|
|
Thread: Speedcheck please
Post: RE: Speedcheck please
how long did it take you to think that up? ;) |
|
epixoip |
Old hashcat Support
|
7 |
12,656 |
10-25-2014, 02:44 AM |
|
|
Thread: Hashcat reading from stdin
Post: RE: Hashcat reading from stdin
use a named pipe on hashcat |
|
epixoip |
Old hashcat Support
|
5 |
10,729 |
11-06-2014, 05:32 AM |
|
|
Thread: Hashcat reading from stdin
Post: RE: Hashcat reading from stdin
|
epixoip |
Old hashcat Support
|
5 |
10,729 |
11-06-2014, 10:54 PM |
|
|
Thread: Totally lost!
Post: RE: Totally lost!
you are confusing online password cracking and offline password cracking. what you are looking to do is online password cracking, but hashcat is for offline password cracking. so hashcat cannot do wha... |
|
epixoip |
Old hashcat Support
|
5 |
9,459 |
12-03-2014, 06:15 AM |
|
|
Thread: Totally lost!
Post: RE: Totally lost!
offline password cracking is for cracking password hashes that have been recovered from a password database or sniffed off the wire, and also for non-hash formats such as encrypted files.
for onlin... |
|
epixoip |
Old hashcat Support
|
5 |
9,459 |
12-03-2014, 07:39 AM |
|
|
Thread: Question re attacking one (1) hash....!
Post: RE: Question re attacking one (1) hash....!
If I understand correctly, you want to brute force both the key AND part of the message?
To approach this with hashcat you will need to generate 10000 possible messages, one for each possible value... |
|
epixoip |
Old hashcat Support
|
1 |
3,849 |
12-08-2014, 08:41 AM |
|
|
Thread: How to hashcat crack password?
Post: RE: How to hashcat crack password?
Code:
--
h = hash algorithm
p = candidate password
T = target hash
foreach p in candidates {
if ( h(p) == T ) {
print T + ":" + p
return
}
}
--
|
|
epixoip |
Old hashcat Support
|
3 |
6,742 |
12-08-2014, 11:26 PM |
|
|
Thread: how to crack MD5 middle with MASK attacking mode?
Post: RE: how to crack MD5 middle with MASK attacking mo...
what you are looking to do is not supported by hashcat |
|
epixoip |
Old hashcat Support
|
5 |
11,642 |
12-10-2014, 06:08 AM |
|
|
Thread: how to crack MD5 middle with MASK attacking mode?
Post: RE: how to crack MD5 middle with MASK attacking mo...
hm didn't know atom implemented that, or how exactly he did implement it. maybe he can chime in on exactly how it works. |
|
epixoip |
Old hashcat Support
|
5 |
11,642 |
12-10-2014, 09:19 AM |
|
|
Thread: Who hashcat code source v0.48 for me please?
Post: RE: Who hashcat code source v0.48 for me please?
hashcat was born through immaculate conception. there is no source code. merry christmas. |
|
epixoip |
Old hashcat Support
|
4 |
7,188 |
12-11-2014, 06:45 AM |
|
|
Thread: MD5 salted hashs
Post: RE: MD5 salted hashs
Works for me.
Code:
--
epixoip@token:~/hashcat-0.48$ echo '01dfae6e5d4d90d9892622325959afbe:7050461' >testhash
epixoip@token:~/hashcat-0.48$ echo 'hashcat' >testdict
epixoip@token:~/hashcat-0.... |
|
epixoip |
Old hashcat Support
|
4 |
8,169 |
12-22-2014, 04:06 AM |
|
|
Thread: MD5 salted hashs
Post: RE: MD5 salted hashs
Correct.
Code:
--
epixoip@token:~/hashcat-0.48$ echo -n 'knickyM7j' | md5sum
e8f17a431edd2b7edb1ab6b3ceb6f7d5 -
epixoip@token:~/hashcat-0.48$ echo knicky >>testdict
epixoip@token:~/hashcat-0... |
|
epixoip |
Old hashcat Support
|
4 |
8,169 |
12-22-2014, 05:30 AM |