Search Results
|
Post |
Author |
Forum |
Replies |
Views
[desc]
|
Posted |
|
|
Thread: build for windows from linux
Post: RE: build for windows from linux
this has nothing to do on where you use the "win32" target, because it doesn't exists anymore! it's just a very recent change:
https://github.com/hashcat/hashcat/commit/68d6d36761e7f5ddb3b58cb90b6a8... |
|
philsmd |
hashcat
|
3 |
2,032 |
03-03-2019, 09:31 AM |
|
|
Thread: Hashcat not working
Post: RE: Hashcat not working
-a 1 is for concatenating two dicts, use -a 0 instead (with one dict)
Code:
--
hashcat -m 0 -a 0 '/root/md5/hashpassword.txt' '/root/md5/rockyou.txt'
--
the correct answer was already provid... |
|
philsmd |
hashcat
|
4 |
2,032 |
05-24-2019, 09:23 PM |
|
|
Thread: what the hash is this?
Post: RE: what the hash is this?
-m 500 = md5crypt
see also https://hashcat.net/wiki/example_hashes |
|
philsmd |
General Talk
|
1 |
2,034 |
11-23-2017, 04:32 PM |
|
|
Thread: hcstat to hcstat2
Post: RE: hcstat to hcstat2
well, in theory one could develop a tool to convert .hcstat files into .hcstat2 files, but at the end it doesn't make much sense because the new file format of course has several advantages (most impo... |
|
philsmd |
hashcat
|
2 |
2,035 |
11-29-2018, 10:44 AM |
|
|
Thread: Increment knowing the last chars of password
Post: RE: Increment knowing the last chars of password
... or hashcat mask files (https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files)
... or salted hash types instead of unsalted ones (if there are alternative -m modes available for that... |
|
philsmd |
hashcat
|
2 |
2,038 |
05-12-2018, 12:42 PM |
|
|
Thread: Need help with cracking a blockchain wallet version 2
Post: RE: Need help with cracking a blockchain wallet ve...
try to crack the example hash from https://hashcat.net/wiki/doku.php?id=example_hashes
after that try to create a new wallet (of course backup your other wallet first) with a known password and try... |
|
philsmd |
hashcat
|
13 |
2,038 |
06-11-2020, 07:50 AM |
|
|
Thread: Need help with cracking a blockchain wallet version 2
Post: RE: Need help with cracking a blockchain wallet ve...
that's just a warning that says that your amount of password candidates (and speed that results from this small input) doesn't allow full acceleration. This doesn't mean that it's not able to crack.
... |
|
philsmd |
hashcat
|
13 |
2,038 |
06-11-2020, 07:04 PM |
|
|
Thread: Need help with cracking a blockchain wallet version 2
Post: RE: Need help with cracking a blockchain wallet ve...
seems everything is working. Why do you assume something is wrong ?
Please test the example hash for -m 15200 = Blockchain, My Wallet, V2 from https://hashcat.net/wiki/doku.php?id=example_hashes w... |
|
philsmd |
hashcat
|
13 |
2,038 |
06-11-2020, 09:11 PM |
|
|
Thread: Need help with cracking a blockchain wallet version 2
Post: RE: Need help with cracking a blockchain wallet ve...
you should try the example hash with a dictionary attack where the word list contains the password
Code:
--
hashcat.exe -m 15200 -a 0 -w 3 -r rules\best64.txt hash.txt dict.txt
--
hash.txt i... |
|
philsmd |
hashcat
|
13 |
2,038 |
06-11-2020, 09:28 PM |
|
|
Thread: Need help with cracking a blockchain wallet version 2
Post: RE: Need help with cracking a blockchain wallet ve...
okay sorry, it's rules\best64.rule
Code:
--
hashcat.exe -m 15200 -a 0 -w 3 -r rules\best64.rule hash.txt dict.txt
--
|
|
philsmd |
hashcat
|
13 |
2,038 |
06-11-2020, 09:47 PM |
|
|
Thread: Privilege Escalation Hash Type
Post: RE: Privilege Escalation Hash Type
while you are on that learning trip, I think it wouldn't hurt to read this about "encrypted passwords":
https://www.techsolvency.com/passwords/dehashing-reversing-decrypting/ |
|
philsmd |
hashcat
|
7 |
2,040 |
11-08-2019, 12:39 AM |
|
|
Thread: Problem - Signature unmatched No hashes loaded.
Post: RE: Problem - Signature unmatched No hashes loaded...
why do you not use a hash file, i.e. a file that contains the hash.
The shells (cmd/bash) have various special symbols that need to be escaped, it's always safer to use a file. |
|
philsmd |
hashcat
|
11 |
2,040 |
06-11-2020, 07:08 PM |
|
|
Thread: Problem - Signature unmatched No hashes loaded.
Post: RE: Problem - Signature unmatched No hashes loaded...
test with the example hash from https://hashcat.net/wiki/example_hashes (search from 15700 and copy the hash into a file).
If the example hash is loading correctly without any errors, try to change... |
|
philsmd |
hashcat
|
11 |
2,040 |
06-13-2020, 12:09 PM |
|
|
Thread: Problem - Signature unmatched No hashes loaded.
Post: RE: Problem - Signature unmatched No hashes loaded...
you can't post hashes here... if you are really sure that you already tried everything and it still isn't working, not even with the latest beta version from https://hashcat.net/beta/ , we could proba... |
|
philsmd |
hashcat
|
11 |
2,040 |
06-13-2020, 12:46 PM |
|
|
Thread: Problem - Signature unmatched No hashes loaded.
Post: RE: Problem - Signature unmatched No hashes loaded...
I've now spend (wasted ? ) some minutes investigating this and it seems that already the input file (the UTC file that you would normally use for the ethereum2john.py conversion to a hash) is complete... |
|
philsmd |
hashcat
|
11 |
2,040 |
06-13-2020, 01:48 PM |
|
|
Thread: Problem - Signature unmatched No hashes loaded.
Post: RE: Problem - Signature unmatched No hashes loaded...
The file was obviously manipulated by a human (or malware ?) and is not valid.
No ethereum client would generate a UTC file with a
Code:
--
ciphertext
--
and
Code:
--
mac
--
within the ... |
|
philsmd |
hashcat
|
11 |
2,040 |
06-13-2020, 02:33 PM |
|
|
Thread: Running into issues with max mask length
Post: RE: Running into issues with max mask length
this problem should be fixed with recent commits: https://github.com/hashcat/hashcat/commit/c78b8878d5e1c1304218cce53efcf3a52a1cb772
please test the beta at https://hashcat.net/beta/ and report bac... |
|
philsmd |
hashcat
|
6 |
2,043 |
10-18-2019, 09:48 AM |
|
|
Thread: Old (2009) Bitcoin Core wallet hash problem
Post: RE: Old (2009) Bitcoin Core wallet hash problem
did you try to test with the beta version from https://hashcat.net/beta/ ? |
|
philsmd |
hashcat
|
2 |
2,044 |
04-06-2019, 09:39 PM |
|
|
Thread: My master Password
Post: RE: My master Password
are you talking about blockchain.com / blockchain.info wallets ? what files do you have ?
hashcat supports these:
-m 12700 = Blockchain, My Wallet, $blockchain$...
-m 15200 = Blockchain, My Walle... |
|
philsmd |
hashcat
|
3 |
2,049 |
07-04-2019, 11:31 AM |
|
|
Thread: Some way to 'increment from a wordlist'
Post: RE: Some way to 'increment from a wordlist'
you could pre-generate the word list or just use -a 1 hash.txt dict1.txt dict2.txt
-a 1 also works with 3 combinations of works if dict1.txt hash already 2 words combined and you combine it one mor... |
|
philsmd |
hashcat
|
6 |
2,052 |
08-30-2019, 09:41 PM |