Search Results
|
Post |
Author |
Forum
[desc]
|
Replies |
Views |
Posted |
|
|
Thread: OpenCL ERROR
Post: RE: OpenCL ERROR
The intel core I5 is your CPU not your GPU.
You literally posted a spec sheet that says that your graphics cards does not support OpenCL:
OpenCL: No
It it is not supported by the hardware vendo... |
|
philsmd |
hashcat
|
5 |
4,947 |
03-02-2018, 10:19 AM |
|
|
Thread: Potfile entries and output file
Post: RE: Potfile entries and output file
yeah, it's exactly how it was designed.
If the hashes are already present within the pot file it means that they were also already outputted somehow, therefore there is no need to do it again and aga... |
|
philsmd |
hashcat
|
5 |
9,401 |
03-12-2018, 10:44 PM |
|
|
Thread: Potfile entries and output file
Post: RE: Potfile entries and output file
In some cases you could just extract some lines from the potfile itself (like "cat hashcat.potfile"), but this is not a good idea in general.
It's always advisable to keep all the original files |
|
philsmd |
hashcat
|
5 |
9,401 |
03-12-2018, 10:50 PM |
|
|
Thread: +55 minutes in Generating Dictionary for 194GB
Post: RE: +55 minutes in Generating Dictionary for 194GB
The algorithm doesn't allow to recover the whole seed (if it was really generated in a cryptographically secure random way) by just knowing some bytes (let's say 80) of the encrypted seed (furthermore... |
|
philsmd |
hashcat
|
26 |
24,603 |
02-11-2018, 02:24 PM |
|
|
Thread: brute forcing sha256 - need help locating salt in open source code
Post: RE: brute forcing sha256 - need help locating salt...
Well, there is no secret at all. The neo code is open source and even already linked above.
Here for instance is the verify function:
https://github.com/neo-project/neo/blob/06a900b0043b60865c35e6... |
|
philsmd |
hashcat
|
8 |
6,872 |
02-13-2018, 10:08 AM |
|
|
Thread: Line-length exception for Etherum Wallet
Post: RE: Line-length exception for Etherum Wallet
The hash for -m 15700 must start with "$ethereum$s*". You need to remove all file names if there are any file names within the output of ethereum2john.py.
You also should use a hash file just to ma... |
|
philsmd |
hashcat
|
2 |
2,277 |
03-14-2018, 12:23 AM |
|
|
Thread: Issue with large hcmask file
Post: RE: Issue with large hcmask file
walterlacka do you also run it without --restore?
can you provide the full details (number of masks) and the .restore file?
does it always stop at the same mask? If you upload the .restore file we w... |
|
philsmd |
hashcat
|
15 |
9,382 |
03-16-2018, 07:34 PM |
|
|
Thread: 7Zip Hash, missing SALT? (Salt-value exception)
Post: RE: 7Zip Hash, missing SALT? (Salt-value exception...
What is the command you run ?
Are you able to crack the example hash from https://hashcat.net/wiki/example_hashes ? |
|
philsmd |
hashcat
|
14 |
10,239 |
03-19-2018, 08:03 AM |
|
|
Thread: 7Zip Hash, missing SALT? (Salt-value exception)
Post: RE: 7Zip Hash, missing SALT? (Salt-value exception...
If you use the straight word list attack mode (-a 0) you also need to specify a dictionary file.
hashcat -a 0 -m 11600 hash_file.txt dict_file.txt
you could also add rules like this:
hashcat -a... |
|
philsmd |
hashcat
|
14 |
10,239 |
03-19-2018, 06:34 PM |
|
|
Thread: 7Zip Hash, missing SALT? (Salt-value exception)
Post: RE: 7Zip Hash, missing SALT? (Salt-value exception...
Well, it's difficult for us/me to guess what is wrong with your hash.
You probably have 3 options:
1. try to modify your hash in a way that it looks like the example hash and see where the problem... |
|
philsmd |
hashcat
|
14 |
10,239 |
03-19-2018, 07:49 PM |
|
|
Thread: +55 minutes in Generating Dictionary for 194GB
Post: RE: +55 minutes in Generating Dictionary for 194GB
Now, thinking about the padding attack... I think an alternative could work without revealing the whole encseed.
The thing is that the pre-sale algorithm uses padding (as already mentioned a couple... |
|
philsmd |
hashcat
|
26 |
24,603 |
02-11-2018, 04:01 PM |
|
|
Thread: 7Zip Hash, missing SALT? (Salt-value exception)
Post: RE: 7Zip Hash, missing SALT? (Salt-value exception...
hmm, that doesn't seem to be the solution (but it is still interesting).
What happens if you change both the data length and the encrypted data to a shorter strings (the encrypted data is in hex an... |
|
philsmd |
hashcat
|
14 |
10,239 |
03-19-2018, 10:33 PM |
|
|
Thread: 7Zip Hash, missing SALT? (Salt-value exception)
Post: RE: 7Zip Hash, missing SALT? (Salt-value exception...
I don't think we are able to understand this problem like this, we have 2 ways to better troubleshoot this:
1. you try to understand the parser function seven_zip_parse_hash () within src/interface.c... |
|
philsmd |
hashcat
|
14 |
10,239 |
03-21-2018, 09:58 AM |
|
|
Thread: 7Zip Hash, missing SALT? (Salt-value exception)
Post: RE: 7Zip Hash, missing SALT? (Salt-value exception...
for your interest, the problem was identified: https://github.com/hashcat/hashcat/pull/1549 |
|
philsmd |
hashcat
|
14 |
10,239 |
03-22-2018, 10:57 AM |
|
|
Thread: Help on hashcat syntax
Post: RE: Help on hashcat syntax
please make sure that the file hash.txt is located in the correct directory and is really named like this.
It happens all the time that users save the file within a different folder or with a sligh... |
|
philsmd |
hashcat
|
10 |
6,738 |
03-29-2018, 04:06 PM |
|
|
Thread: Integer overflow error
Post: RE: Integer overflow error
No, this is correct. The number of password candidates is way too huge.
Just do the math ?a has 95 characters. If we have a length of 15, we have 95^15.
The result of 95*95*95*95*....*95 (15 times) ... |
|
philsmd |
hashcat
|
5 |
3,907 |
02-14-2018, 08:37 AM |
|
|
Thread: Integer overflow error
Post: RE: Integer overflow error
I think it is the other way around.
If we look at the file docs/changes.txt it mentions that the integer overflow check was first introduced with version 3.40 of hashcat. This is why you don't see t... |
|
philsmd |
hashcat
|
5 |
3,907 |
02-14-2018, 09:20 AM |
|
|
Thread: Hashcat slows down after staring attack.
Post: RE: Hashcat slows down after staring attack.
You are trying to crack 779 networks. The benchmark only uses 1 single network to find out the maximum speed.
The huge number of networks will reduce the overall speed almost linearly.
The more ne... |
|
philsmd |
hashcat
|
7 |
6,025 |
02-14-2018, 05:49 PM |
|
|
Thread: Hashcat slows down after staring attack.
Post: RE: Hashcat slows down after staring attack.
In theory you could just split your hccapx file into 779 equally large files (the size of 1 hccapx struct is also mentioned here: https://hashcat.net/wiki/doku.php?id=hccapx , it currently is 393 byte... |
|
philsmd |
hashcat
|
7 |
6,025 |
02-15-2018, 05:51 PM |
|
|
Thread: I can not determine the number in the hashcat
Post: RE: I can not determine the number in the hashcat
See this issue https://github.com/hashcat/hashcat/issues/112 . I think it might be possible to just truncate the long encrypted data for -m 12700 = Blockchain, My Wallet .
You could for instance tr... |
|
philsmd |
hashcat
|
10 |
8,863 |
02-17-2018, 01:53 PM |