Search Results
|
Post |
Author |
Forum |
Replies
[asc]
|
Views |
Posted |
|
|
Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?
here is some python code. works the same as atom's code but instead of a single hash you specify a hash list. However it's way slower. (at least for small amounts of hashes)
https://pastebin.com/ZFv... |
|
undeath |
Old hashcat Support
|
22 |
44,507 |
01-26-2013, 12:59 AM |
|
|
Thread: 2x7970 freeze windows and linux too
Post: RE: 2x7970 freeze windows and linux too
remove --gpu-loops 4096 and see what happens. |
|
undeath |
General Help
|
22 |
46,991 |
01-30-2013, 10:16 PM |
|
|
Thread: 2x7970 freeze windows and linux too
Post: RE: 2x7970 freeze windows and linux too
probably a defective card. I suspect the GHz edition. Try testing both cards separately. |
|
undeath |
General Help
|
22 |
46,991 |
01-30-2013, 11:04 PM |
|
|
Thread: 2x7970 freeze windows and linux too
Post: RE: 2x7970 freeze windows and linux too
Then this might be a heat problem. Try running both cards with an open case and maybe put another fan there. |
|
undeath |
General Help
|
22 |
46,991 |
01-30-2013, 11:55 PM |
|
|
Thread: Hash bitcoin brain wallet address from passphase?
Post: RE: Hash bitcoin brain wallet address from passpha...
The brain wallet is directly derived from the password. According to the website it's just sha256(pw). That will yield the private key, from which you need to derive the public key, and then the addre... |
|
undeath |
hashcat
|
22 |
17,306 |
07-13-2018, 11:59 AM |
|
|
Thread: Hash bitcoin brain wallet address from passphase?
Post: RE: Hash bitcoin brain wallet address from passpha...
You can use the sha256 kernel and modify that to add ecdsa public key derivation, then ripemd160. But well, that's what needs to be done. |
|
undeath |
hashcat
|
22 |
17,306 |
07-13-2018, 12:15 PM |
|
|
Thread: Hash bitcoin brain wallet address from passphase?
Post: RE: Hash bitcoin brain wallet address from passpha...
instead of using hashcat you are probably better off using an existing implementation: https://github.com/ryancdotorg/brainflayer |
|
undeath |
hashcat
|
22 |
17,306 |
07-13-2018, 12:18 PM |
|
|
Thread: Hash bitcoin brain wallet address from passphase?
Post: RE: Hash bitcoin brain wallet address from passpha...
philsmd Wrote: (07-13-2018, 12:23 PM)
--
You would need to have a huge amount of bitcoin in that wallet and a lot of hardware to throw at it (don't forget about the energy cost etc too) to justify th... |
|
undeath |
hashcat
|
22 |
17,306 |
07-13-2018, 12:49 PM |
|
|
Thread: Same command, different output?
Post: RE: Same command, different output?
but at least cpu hashcat should crack all hashes that have been cracked by oclhashcat. Something doesn't seem right.
For speed comparisons you have to do a mask attack. Dictionary without rules w... |
|
undeath |
Old hashcat Support
|
21 |
41,748 |
12-16-2012, 06:53 PM |
|
|
Thread: Same command, different output?
Post: RE: Same command, different output?
radix Wrote: (12-17-2012, 11:25 AM)
--
CPU only ran 1/3 of the dict
--
as we all know cpu chunks the dict. see the full log. everything is fine. |
|
undeath |
Old hashcat Support
|
21 |
41,748 |
12-17-2012, 08:03 PM |
|
|
Thread: Same command, different output?
Post: RE: Same command, different output?
forgot_my_passwd Wrote: (01-30-2013, 02:38 PM)
--
And who told you I',m cracking other peoples' passwords? I'm writing my engineering thesis on CUDA accelerated applications in cryptography, and I co... |
|
undeath |
Old hashcat Support
|
21 |
41,748 |
01-30-2013, 02:44 PM |
|
|
Thread: 1Password - need help using hashcat
Post: RE: 1Password - need help using hashcat
§ is not an ascii character. Using it in masks or rules is problematic. |
|
undeath |
hashcat
|
21 |
19,495 |
05-01-2017, 05:27 PM |
|
|
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,495 |
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,495 |
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,495 |
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,495 |
05-05-2017, 06:01 PM |
|
|
Thread: Using hashcat to find v3 ethereum wallet password
Post: RE: Using hashcat to find v3 ethereum wallet passw...
If you had used the forum's search function you could have learnt that ethereum support was added in version 3.6.0.
You can extract the necessary info from your wallet file using this script: https... |
|
undeath |
hashcat
|
21 |
25,958 |
06-18-2017, 08:31 PM |
|
|
Thread: Using hashcat to find v3 ethereum wallet password
Post: RE: Using hashcat to find v3 ethereum wallet passw...
You need to specify the correct hash mode (-m). To avoid any interference with your shell you best save the string in a text file. |
|
undeath |
hashcat
|
21 |
25,958 |
06-19-2017, 10:15 AM |
|
|
Thread: Using hashcat to find v3 ethereum wallet password
Post: RE: Using hashcat to find v3 ethereum wallet passw...
try using --scrypt-tmto 4 |
|
undeath |
hashcat
|
21 |
25,958 |
06-19-2017, 07:45 PM |
|
|
Thread: Using hashcat to find v3 ethereum wallet password
Post: RE: Using hashcat to find v3 ethereum wallet passw...
try to further decrease scrypt-tmto |
|
undeath |
hashcat
|
21 |
25,958 |
06-19-2017, 08:01 PM |