Search Results
|
Post |
Author |
Forum |
Replies |
Views
[desc]
|
Posted |
|
|
Thread: 1Password - need help using hashcat
Post: RE: 1Password - need help using hashcat
First you need to find out what encoding to use, then you can create a charset file: https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_charset_files
If you need a multibyte character (utf-8)... |
|
undeath |
hashcat
|
21 |
19,496 |
05-01-2017, 09:54 PM |
|
|
Thread: 1Password - need help using hashcat
Post: RE: 1Password - need help using hashcat
given your number of possibilities you could even try them by hand. If you want to use hashcat you can create a wordlist for the first set of special characters and then run a hybrid attack (mode 6). |
|
undeath |
hashcat
|
21 |
19,496 |
05-05-2017, 09:27 AM |
|
|
Thread: 1Password - need help using hashcat
Post: RE: 1Password - need help using hashcat
I was extremely bored and therefor hacked together this very complicated python3 script:
Code:
--
CHARSET_PREP = '"!ยง'
CHARSET_APP = 'tT'
BASEWORD = 'GreatScript'
print(BASEWORD)
for c1 in list(CH... |
|
undeath |
hashcat
|
21 |
19,496 |
05-05-2017, 04:21 PM |
|
|
Thread: 1Password - need help using hashcat
Post: RE: 1Password - need help using hashcat
In that case generate a list with each word and the special character appended/prepended and apply combinator from hashcat utils until all words have been combined. |
|
undeath |
hashcat
|
21 |
19,496 |
05-05-2017, 06:01 PM |
|
|
Thread: brute-forcing not working with me
Post: RE: brute-forcing not working with me
you did not specify a mask. Also you have to quote your hash file. |
|
undeath |
Very old oclHashcat-plus Support
|
14 |
19,507 |
08-01-2012, 11:20 PM |
|
|
Thread: brute-forcing not working with me
Post: RE: brute-forcing not working with me
Code:
--
8--gpu-loops 256
--
you are missing a blank and you are still missing a mask |
|
undeath |
Very old oclHashcat-plus Support
|
14 |
19,507 |
08-02-2012, 11:18 PM |
|
|
Thread: brute-forcing not working with me
Post: RE: brute-forcing not working with me
|
undeath |
Very old oclHashcat-plus Support
|
14 |
19,507 |
08-06-2012, 06:18 PM |
|
|
Thread: cracking salted SHA1
Post: RE: cracking salted SHA1
format is hash:salt, hash in hex format, salt in binary (if you have non-ascii characters specify the salt in hex and use --hex-salt)
Your hash file has a BOM, you need to remove that. |
|
undeath |
hashcat
|
14 |
19,731 |
06-28-2018, 04:08 PM |
|
|
Thread: cracking salted SHA1
Post: RE: cracking salted SHA1
It's possible your salt is longer than the maximum hashcat expects. How long is it? If your hex-encoded salt is indeed five characters long something is wrong. |
|
undeath |
hashcat
|
14 |
19,731 |
06-28-2018, 05:35 PM |
|
|
Thread: cracking salted SHA1
Post: RE: cracking salted SHA1
Either it's not hex-encoded data but rather ascii-data that happens to use hexadecimal alphabet or you are missing parts. Hex encoding uses two hexadecimal letters to encode one byte. Valid hex-data c... |
|
undeath |
hashcat
|
14 |
19,731 |
06-28-2018, 06:12 PM |
|
|
Thread: cracking salted SHA1
Post: RE: cracking salted SHA1
don't use --hex-salt if your salt is not hex-encoded |
|
undeath |
hashcat
|
14 |
19,731 |
06-28-2018, 06:35 PM |
|
|
Thread: Possible development to support three wordlists at once?
Post: RE: Possible development to support three wordlist...
You can pipe in the output of combinator3. That's only useful for slow hashes though. You will notice speed decrease with hmac-sha256.
Depending on how big your wordlists are you can pre-generate a n... |
|
undeath |
hashcat
|
25 |
19,842 |
06-15-2018, 11:41 AM |
|
|
Thread: Possible development to support three wordlists at once?
Post: RE: Possible development to support three wordlist...
vigilantbag Wrote: (06-15-2018, 07:01 PM)
--
And for your second option on pre-generating a new wordlist, I need to use three separate wordlists, giving me three different word sets per candidate, bu... |
|
undeath |
hashcat
|
25 |
19,842 |
06-15-2018, 11:51 PM |
|
|
Thread: Possible development to support three wordlists at once?
Post: RE: Possible development to support three wordlist...
ok, saving the result of combining such a big wordlist is infeasible. But running that in combinator3 would probably take several years to complete anyway. |
|
undeath |
hashcat
|
25 |
19,842 |
06-16-2018, 12:15 AM |
|
|
Thread: Possible development to support three wordlists at once?
Post: RE: Possible development to support three wordlist...
you're not talking about the 1Password competition, are you? https://hashcat.net/forum/thread-7480.html
That's not "hmac-sha256" but pbkdf2 (with hmac-sha256) with 100k iterations. That's a whole d... |
|
undeath |
hashcat
|
25 |
19,842 |
06-16-2018, 12:36 AM |
|
|
Thread: Possible development to support three wordlists at once?
Post: RE: Possible development to support three wordlist...
I'm pretty sure they were using the "AgileWords.txt" wordlist you can find on the competition's github repo. That's a whole lot smaller than your wordlist. And still, even with a decent hardware clust... |
|
undeath |
hashcat
|
25 |
19,842 |
06-16-2018, 12:47 AM |
|
|
Thread: Possible development to support three wordlists at once?
Post: RE: Possible development to support three wordlist...
There is no hashcat-native way of doing combinator3 with rules. A simple solution would be creating an intermediate wordlist with a space appended to each line, then creating a second intermediate wor... |
|
undeath |
hashcat
|
25 |
19,842 |
06-16-2018, 12:58 AM |
|
|
Thread: Possible development to support three wordlists at once?
Post: RE: Possible development to support three wordlist...
Code:
--
sed 's/$/ /g' wordlist.txt > with-space.txt
combinator.bin with-space.txt with-space.txt > comb-with-space.txt
hashcat -a1 hash.txt comb-with-space.txt wordlist.txt
--
|
|
undeath |
hashcat
|
25 |
19,842 |
06-16-2018, 01:06 AM |
|
|
Thread: hashcat keeps ending with "killed", what am I doing wrong?
Post: RE: hashcat keeps ending with "killed", what am I ...
"Killed" usually happens when your system runs out of ram. |
|
undeath |
Old hashcat Support
|
12 |
19,851 |
08-28-2015, 11:28 PM |
|
|
Thread: Need to find X in SHA1[(AES-128(X)]
Post: RE: Need to find X in SHA1[(AES-128(X)]
|
undeath |
General Help
|
13 |
19,898 |
12-31-2014, 02:43 PM |