Search Results
|
Post |
Author |
Forum |
Replies |
Views
[desc]
|
Posted |
|
|
Thread: help
Post: RE: help
english only: https://hashcat.net/forum/announcement-2.html
(non-english post deleted because of the forum rules) |
|
philsmd |
hashcat
|
4 |
771 |
06-20-2020, 08:33 AM |
|
|
Thread: two word lists and a rule
Post: RE: two word lists and a rule
please define "a rule" . is this one single rule ?
you should also be more clear about "two dictionary" . do you mean combining them or running them one after the other.
to combine 2 dictionarie... |
|
philsmd |
hashcat
|
3 |
781 |
05-24-2020, 05:46 PM |
|
|
Thread: two word lists and a rule
Post: RE: two word lists and a rule
it's not directly supported, mainly because the combination of 2 dicts can turn out to be huge (combining hundred of thousands words with each other - or more - gives a huge and sometimes too huge com... |
|
philsmd |
hashcat
|
3 |
781 |
05-24-2020, 06:32 PM |
|
|
Thread: ERROR: usually high number of arguments within restore file
Post: RE: ERROR: usually high number of arguments within...
"Unusually high number of arguments"
means that you corrupted the .restore file.
maybe your text editor did some strange things to the restore file (which contains binary data too)
It's actuall... |
|
philsmd |
hashcat
|
1 |
784 |
12-23-2019, 07:02 PM |
|
|
Thread: GPU Crack Speed Half of Expected
Post: RE: GPU Crack Speed Half of Expected
the commands that you use are very weird/wrong:
1. the -w that you use twice in your -a 0 (dictionary attack) is wrong. why two times -w ? one time -w without the actual workload profile
2. in t... |
|
philsmd |
hashcat
|
3 |
786 |
06-30-2020, 07:43 AM |
|
|
Thread: GPU Crack Speed Half of Expected
Post: RE: GPU Crack Speed Half of Expected
without specifying any mask, hashcat will use the default mask, see https://hashcat.net/wiki/doku.php?id=hashcat#default_values
The default mask is probably not what you would call brute-force.
... |
|
philsmd |
hashcat
|
3 |
786 |
07-01-2020, 08:46 AM |
|
|
Thread: SHA-256
Post: RE: SHA-256
There is no "wrong" algorithm implemented in hashcat. All the hashing algorithms are correct. They are just different like night and day. (maybe you could say some are more similar, but the result is ... |
|
philsmd |
hashcat
|
4 |
801 |
06-23-2020, 08:20 AM |
|
|
Thread: Salted hash
Post: RE: Salted hash
what is the algorithm in your opinion ?
sha256 ($salt)
?
if that would be the case, you could consider the salt just like a unknown password.
what is the format of this salt, what is its... |
|
philsmd |
hashcat
|
4 |
802 |
06-04-2020, 03:30 PM |
|
|
Thread: Salted hash
Post: RE: Salted hash
if you do not know the salt, you would probably need to guess it and this guessing might be very difficult because salts are often both random and long.
Therefore, it depends on the algorithm, the ... |
|
philsmd |
hashcat
|
4 |
802 |
06-04-2020, 08:17 AM |
|
|
Thread: Sorting many masks by number of combinations?
Post: RE: Sorting many masks by number of combinations?
maybe this one:
PACK (Password Analysis and Cracking Kit): https://github.com/iphelix/pack/
https://web.archive.org/web/20190125201146/https://thesprawl.org/projects/pack/ |
|
philsmd |
hashcat
|
2 |
805 |
04-30-2020, 02:08 PM |
|
|
Thread: €-Symbol with Command ?b
Post: RE: €-Symbol with Command ?b
That's actually the funny and at the same time very difficult part of encoding.
the euro sign € can be also represented by just one byte in other encodings for instance ISO8859-15 has 0xa4 as a cur... |
|
philsmd |
hashcat
|
4 |
809 |
06-16-2020, 10:06 PM |
|
|
Thread: Brain and restore, possible bug/intentional feature ?
Post: RE: Brain and restore, possible bug/intentional fe...
well, the fact that you can't change the command line actually makes sense according to this:
https://hashcat.net/faq#can_i_restore_a_hashcat_session
Quote:
--
the only parameters allowed
--
... |
|
philsmd |
hashcat
|
1 |
810 |
10-14-2019, 11:34 AM |
|
|
Thread: AMD Radeon R9 M370X not being used, Mac
Post: RE: AMD Radeon R9 M370X not being used, Mac
the numbers always depend on the type of hashes. for instance 218 kH/s for a bcrypt hash with cost factor $09$ would be quite impressive ;)
218 kH/s doesn't mean anything without any info about the h... |
|
philsmd |
hashcat
|
5 |
810 |
06-22-2020, 07:52 AM |
|
|
Thread: AMD Radeon R9 M370X not being used, Mac
Post: RE: AMD Radeon R9 M370X not being used, Mac
try
Code:
--
hashcat -d 3 -m 500 -b
--
for clinfo (install homebrew first):
Code:
--
brew install clinfo
--
BTW: I think the alias problem is related to https://github.com/hashcat/hash... |
|
philsmd |
hashcat
|
5 |
810 |
06-22-2020, 08:08 AM |
|
|
Thread: AMD Radeon R9 M370X not being used, Mac
Post: RE: AMD Radeon R9 M370X not being used, Mac
To tell the truth, this is actually quite a new problem (discovered after the recent 6.0.0. release) and the development team unfortunately has no such devices to debug with...
The github issue tri... |
|
philsmd |
hashcat
|
5 |
810 |
06-22-2020, 08:41 AM |
|
|
Thread: AesCrypt hash: How to obtain iv, enc_iv, enc_key, HMAC and encrypttion
Post: RE: How to obtain iv, enc_iv, enc_key, HMAC and en...
you might need to have a look at the Aes Crypt file format page:
https://www.aescrypt.com/aes_file_format.html
They explain how the file format is and how it changed over time
there is "AES" at... |
|
philsmd |
hashcat
|
5 |
811 |
07-07-2020, 08:09 PM |
|
|
Thread: AesCrypt hash: How to obtain iv, enc_iv, enc_key, HMAC and encrypttion
Post: RE: How to obtain iv, enc_iv, enc_key, HMAC and en...
btw: just to be very clear, you need to run the perl script like this:
Code:
--
cd tools
perl aescrypt2hashcat.pl file.aes
--
i.e. in your cmd window, you need to enter the tools folder (I as... |
|
philsmd |
hashcat
|
5 |
811 |
07-08-2020, 12:11 PM |
|
|
Thread: AesCrypt hash: How to obtain iv, enc_iv, enc_key, HMAC and encrypttion
Post: RE: How to obtain iv, enc_iv, enc_key, HMAC and en...
next step would of course be to make sure it's a valid .aes file by comparing the file format description from https://www.aescrypt.com/aes_file_format.html with the file loaded in a hex editor (like ... |
|
philsmd |
hashcat
|
5 |
811 |
07-09-2020, 08:14 AM |
|
|
Thread: Can't Find Potfile on Mac
Post: RE: Can't Find Potfile on Mac
if you didn't compile it yourself, you probably used some package manager like brew etc.
If you have "installed" hashcat with this brew method or similar (not a raw download or the git directory et... |
|
philsmd |
hashcat
|
3 |
814 |
06-02-2020, 08:03 PM |
|
|
Thread: Can't Find Potfile on Mac
Post: RE: Can't Find Potfile on Mac
if you want to use your own directory and not the directory structure that the brew package maintainer decided to use (to be fair it's also similar how the "make install" target on linux works), you c... |
|
philsmd |
hashcat
|
3 |
814 |
06-03-2020, 08:32 AM |