Search Results
|
Post |
Author |
Forum
[asc]
|
Replies |
Views |
Posted |
|
|
Thread: Hashcat says its starting and then nothing happens
Post: RE: Hashcat says its starting and then nothing hap...
did you try running these commands:
Code:
--
hashcat -I
--
and
Code:
--
hashcat -b
--
if not, please try with the above hashcat test/benchmark/troubleshooting commands. |
|
philsmd |
hashcat
|
9 |
3,829 |
02-10-2019, 09:26 AM |
|
|
Thread: Hashcat says its starting and then nothing happens
Post: RE: Hashcat says its starting and then nothing hap...
did you try without using powershell, but cmd instead ?
[hr]
update: whoops, I just realized I had the "wrong" screenshot open from this issue (https://hashcat.net/forum/thread-8141-post-43675.htm... |
|
philsmd |
hashcat
|
9 |
3,829 |
02-10-2019, 09:27 AM |
|
|
Thread: Help explain the PBKDF2-HMAC-SHA1 hash-example
Post: RE: Help explain the PBKDF2-HMAC-SHA1 hash-example
the format is:
sha1:[iteration count]:[salt in base64]:[digest in base64]
therefore the hash is:
sha1:1000:dGVzdA==:imirsGNFG+sMgaiy16fwPgWE3rY=
this can be cracked with:
Code:
--
hashcat ... |
|
philsmd |
hashcat
|
4 |
2,620 |
02-11-2019, 10:59 PM |
|
|
Thread: Help with pbkdf2_hmac_'sha512' hashes
Post: RE: Help with pbkdf2_hmac_'sha512' hashes
you first script (the hash generator) doesn't use the binary input, while your second script hex-decodes it and converts it to base64.
This line
Code:
--
salt = b"2213dcd3820c18c559cc389c8bd22e... |
|
philsmd |
hashcat
|
2 |
1,758 |
02-03-2019, 09:35 AM |
|
|
Thread: Not a native Intel OpenCL runtime
Post: RE: Not a native Intel OpenCL runtime
In my opinion your are completely at the wrong track.
Just look at your clinfo output, it says:
Code:
--
Platform Vendor The pocl project
--
this is complete... |
|
philsmd |
hashcat
|
15 |
47,098 |
02-03-2019, 01:29 PM |
|
|
Thread: problems with -m 15700
Post: RE: problems with -m 15700
1. scrypt and bcrypt are some memory hard algorithms and in general are better suited for CPUs (yeah, the majority of other algos is the opposite, i.e. the majority can profit from GPU power a lot mor... |
|
philsmd |
hashcat
|
5 |
2,794 |
02-08-2019, 11:37 AM |
|
|
Thread: Hashcat says its starting and then nothing happens
Post: RE: Hashcat says its starting and then nothing hap...
did you try to follow the wrongdriver guide ?
Do you have any other OpenCL runtime/driver installed ? maybe the one for your CPU etc ?
For the system that isn't working yet, did you have any (wo... |
|
philsmd |
hashcat
|
9 |
3,829 |
02-10-2019, 12:05 PM |
|
|
Thread: Attack mode 6 and 7 give vastly different speeds
Post: RE: Attack mode 6 and 7 give vastly different spee...
you could try to think about alternatives, like rule based attacks (https://hashcat.net/wiki/?id=rule_based_attack)
Code:
--
hashcat64.exe --stdout -a 3 -o my.rules ^^?a
--
note: here I assume... |
|
philsmd |
hashcat
|
9 |
3,546 |
02-11-2019, 03:11 PM |
|
|
Thread: Token length exception
Post: RE: Token length exception
this syntax is wrong:
Code:
--
hashcat -m 1000 -a 3 ... ?1?1?1?1?1?1?1?1?1?1?1 ... hash.txt
--
the correct syntax is
Code:
--
hashcat -m 1000 -a 3 .... hash.txt ?1?1?1?1?1?1?1?1?1?1?1
... |
|
philsmd |
hashcat
|
7 |
23,963 |
02-14-2019, 11:10 AM |
|
|
Thread: Unable to load a 7z archive hash made with 7z2hashcat
Post: RE: Unable to load a 7z archive hash made with 7z2...
with "only" 28KB you shouldn't reach the limits.
yeah, my guess is that hashcat doesn't accept one of the fields/values (there are a lot of them see the 7z2hashcat github page for the details).
... |
|
philsmd |
hashcat
|
9 |
4,737 |
02-14-2019, 11:14 AM |
|
|
Thread: Unable to load a 7z archive hash made with 7z2hashcat
Post: RE: Unable to load a 7z archive hash made with 7z2...
update: we verified that it's a too strict parser problem in seven_zip_parse_hash (), not the whole lengths are currently allowed because of token.len_max[8] and token.len_max[9] only allowing a lengh... |
|
philsmd |
hashcat
|
9 |
4,737 |
02-14-2019, 12:49 PM |
|
|
Thread: i need to start hachcat to brutforce AES encryption
Post: RE: i need to start hachcat to brutforce AES encry...
first you need to find out if the algorithm is veracrypt or truecrypt or diskcryptor. These are 3 different algorithms.
I would suggest to find out what you see (in case you need to input the passw... |
|
philsmd |
hashcat
|
10 |
5,754 |
02-11-2019, 11:12 PM |
|
|
Thread: Crackpos incorrect
Post: RE: Crackpos incorrect
as you might already know, if you use any amplifier (like rules) the total number of password candidates will increase. This implies also that the "Progress" number in the status screen will get large... |
|
philsmd |
hashcat
|
12 |
5,625 |
02-15-2019, 09:39 AM |
|
|
Thread: Extract all passwords from potfile
Post: RE: Extract all passwords from potfile
that's incorrect.
--show only considers the hashes matching the current hash type and hash list (hash.txt):
Code:
--
hashcat -m 0 --show --outfile-format 2 hash.txt
--
|
|
philsmd |
hashcat
|
4 |
3,187 |
02-16-2019, 03:34 PM |
|
|
Thread: new to hashcat trying to learn
Post: RE: new to hashcat trying to learn
please remember that the custom charsets must be set within the hashcat mask file:
Code:
--
hashcat -m 2500 -a 3 -w 3 Prova.hccapx masks.hcmask
--
the masks.hcmask file is this one:
Code:
... |
|
philsmd |
hashcat
|
3 |
1,969 |
02-17-2019, 10:50 AM |
|
|
Thread: help cracking PBKDF2-SHA512
Post: RE: help cracking PBKDF2-SHA512
1. why are you trying to crack the hash? can't you just replace the hash with a known hash and login ? Is it important that you know the password ?
2. your rule command/syntax is completely wrong. yo... |
|
philsmd |
hashcat
|
4 |
3,707 |
02-20-2019, 10:07 AM |
|
|
Thread: A-F 0-9 8 digit mask Help
Post: RE: A-F 0-9 8 digit mask Help
btw, as an alternative to a custom charset (-1 etc), there is also the built-in charset ?H that does the same thing. See --help:
Code:
--
- [ Built-in Charsets ] -
...
H | 0123456789ABCDEF
--
... |
|
philsmd |
hashcat
|
9 |
4,754 |
02-21-2019, 09:01 AM |
|
|
Thread: need help to extract true crypt hash
Post: RE: need help to extract true crypt hash
You should use this guide: https://hashcat.net/faq#how_do_i_extract_the_hashes_from_truecrypt_volumes
you should test it on a new sample with known password (i.e. test if you are doing all steps co... |
|
philsmd |
hashcat
|
1 |
1,292 |
02-23-2019, 07:31 PM |
|
|
Thread: Restore hashcat with no session saved
Post: RE: Restore hashcat with no session saved
it's not clear from the screenshot if you used
-O and -w 3 |
|
philsmd |
hashcat
|
5 |
2,410 |
02-24-2019, 02:24 PM |
|
|
Thread: multiple users - custom session file location?
Post: RE: multiple users - custom session file location?
Well, you didn't really explain how you intend to install/use hashcat and also how you manage the access to GPU/CPU OpenCL resources.
I think the main problem with multi-user system and hashcat is ... |
|
philsmd |
hashcat
|
6 |
3,015 |
02-20-2019, 09:11 PM |