Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

Search Results
Post Author Forum [desc] Replies Views Posted
    Thread: N00b can't get hashcat.exe file with extract error from Keka on MacOS
Post: RE: N00b can't get hashcat.exe file with extract e...

The best/easiest thing for macOS (since we can't really cross-compile the macOS binaries for every macOS version etc), is to just use git and compile it yourself. i.e. with brew install the most im...
philsmd hashcat 4 990 05-23-2020, 08:46 AM
    Thread: N00b can't get hashcat.exe file with extract error from Keka on MacOS
Post: RE: N00b can't get hashcat.exe file with extract e...

these 2 commands are not the same Code: -- hashcat -a 0 -m 14800 -o hash.txt passwords4.txt -- vs Code: -- ./hashcat -a 0 -m 14800 -o hash.txt passwords4.txt -- "./hashcat" is the only o...
philsmd hashcat 4 990 05-23-2020, 07:50 PM
    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: Hashcat isn't using GPU
Post: RE: Hashcat isn't using GPU

it's quite an old GPU. Does the driver you have even state official OpenCL support for your GPU with latest version ? maybe you can also test with some tuning software like afterburner and GPU-Z et...
philsmd hashcat 2 853 05-26-2020, 09:31 AM
    Thread: SHA-256 64 char password
Post: RE: SHA-256 64 char password

infeasible. (26+10) ^ 64 = 4011991914547630480065053387702443812690402487741812225955731622655455723258857248542161222254985216
philsmd hashcat 2 574 05-26-2020, 09:48 PM
    Thread: Rule for targetting CamelCase passwords?
Post: RE: Rule for targetting CamelCase passwords?

Code: -- hashcat -m 0 -a 1 -w 3 -j c -k c hash.txt dict1.txt dict2.txt -- instead of the "c" rule you could also use the toggle rule: -j T0 -k T0
philsmd hashcat 1 514 05-27-2020, 12:16 PM
    Thread: HASHCAT CPU
Post: RE: HASHCAT CPU

just uninstall all theser open-source drivers (beignet, pocl, mesa etc) and install the OpenCL Runtime for Intel Core and Xeon Processors from https://software.intel.com/content/www/us/en/develop/arti...
philsmd hashcat 7 10,133 05-28-2020, 07:37 AM
    Thread: Combinator attack - hashcat internals
Post: RE: Combinator attack - hashcat internals

what exactly are you comparing with ? Is it this command ? Code: -- hashcat -m 3200 -a 1 -w 3 hash.txt dict1.txt dict2.txt -- It also depends a lot on the sizes of the dicts and on the cost f...
philsmd hashcat 1 577 05-28-2020, 08:52 AM
    Thread: Brain server can't write above 4GB
Post: RE: Brain server can't write above 4GB

do you say that the release version is not affected or do you just mention the beta because you emphasize that it's a problem that isn't fixed ? what are your system specs ? enough RAM / disk space...
philsmd hashcat 13 2,476 05-29-2020, 09:11 PM
    Thread: How long to decrypt SHA256
Post: RE: How long to decrypt SHA256

also note that you can't use decrypt with hashes: https://www.techsolvency.com/passwords/dehashing-reversing-decrypting/ something that isn't encrypted, can't in general be decrypted -m 1400 = S...
philsmd hashcat 6 1,263 05-29-2020, 09:15 PM
    Thread: Save restore file each NUM seconds
Post: RE: Save restore file each NUM seconds

the question is what you are trying to do. and why you would need that feature. I'm pretty sure it was removed because hashcat can't really be configured to have an update of the progress every x s...
philsmd hashcat 3 844 05-29-2020, 09:27 PM
    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: Brain server can't write above 4GB
Post: RE: Brain server can't write above 4GB

I guess a developer or at least somebody able to debug the src/brain.c code would need to try to troubleshoot, repdroduce and try to fix this problem. Are you sure the disk isn't busy writting ? Why...
philsmd hashcat 13 2,476 05-30-2020, 05:28 PM
    Thread: Brain server can't write above 4GB
Post: RE: Brain server can't write above 4GB

very good test. somehow I had a feeling that this could be the case, because these things were stress tested already (but as we can guess now, it was mainly tested on linux systems). The root cause...
philsmd hashcat 13 2,476 05-31-2020, 08:58 AM
    Thread: Brain server can't write above 4GB
Post: RE: Brain server can't write above 4GB

I've now tested with a win10 machine with 8GB RAM (I know it probably should be more for a good test), but the results are similar to yours, my changes: Code: -- diff --git a/src/brain.c b/src/bra...
philsmd hashcat 13 2,476 05-31-2020, 01:54 PM
    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: where is the salt?
Post: RE: where is the salt?

do not post hashes: see https://hashcat.net/forum/announcement-2.html The general rule is to just look at the source code on how the hashes are generated... if you do not have access to any code, i...
philsmd hashcat 1 477 06-09-2020, 12:45 PM
    Thread: Brain server can't write above 4GB
Post: RE: Brain server can't write above 4GB

Yeah this seems to be exactly the case. I also did some further checks. What is weird is that this is neither documented, nor mentioned a lot. I also tested that the type of the passed numbers (...
philsmd hashcat 13 2,476 05-31-2020, 09:15 PM
    Thread: Brain server can't write above 4GB
Post: RE: Brain server can't write above 4GB

it's actually not a problem if you can't manage to test this patch... it would just make sense to test it further before we include it into the beta versions. I will probably do some more tests and...
philsmd hashcat 13 2,476 06-01-2020, 11:19 AM