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 [desc] Forum Replies Views Posted
    Thread: md5($salt.$pass) slower than md5($pass.$salt)
Post: RE: md5($salt.$pass) slower than md5($pass.$salt)

The difference isn't that much for me in benchmarks and some real cracking sessions, but I agree that there is some difference. The speed difference mainly comes from where the position of the pass...
philsmd hashcat 1 412 07-13-2020, 08:30 AM
    Thread: ATTENTION! OpenCL kernel self-test failed on Mac
Post: RE: ATTENTION! OpenCL kernel self-test failed on M...

1. the hash type (-m) is important when you report any errors (self-test errors are often "only" affecting specific hash types, because of a driver/runtime/compiler bug, not hashcat problem most of th...
philsmd hashcat 2 582 07-13-2020, 10:28 AM
    Thread: how make charset?
Post: RE: how make charset?

you could just use a mask file (https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files) mask_file.hcmask Code: -- qweasdzxcmnblkjpoi,~ ,123,1——8 ?1?1?1?1?1?1?1?1 + 1——2 ?...
philsmd hashcat 3 696 07-14-2020, 12:09 PM
    Thread: how make charset?
Post: RE: how make charset?

that's the beauty and nice part of the flexibility of mask files (*.hcmask), you can just add however many mask you want, one after the other, line per line: if we would only consider a theoretical...
philsmd hashcat 3 696 07-14-2020, 07:31 PM
    Thread: AWS P3.16xlarge benchmarks
Post: RE: AWS P3.16xlarge benchmarks

Code: -- -D 1,2 -- can be used to enable both CPU and GPU (the Intel OpenCL Runtime for Core or Xeon processors need to be installed, in general), but note that it doesn't always increase speed...
philsmd Hardware 6 1,260 07-15-2020, 06:49 AM
    Thread: AWS P3.16xlarge benchmarks
Post: RE: AWS P3.16xlarge benchmarks

That statement doesn't make sense without the full context. Does hashcat even list all the OpenCL-supported CPU devices at the start ? Did you install the driver that I mentioned and which is also ...
philsmd Hardware 6 1,260 07-15-2020, 10:48 PM
    Thread: Hello all, someone who work with python canl help me
Post: RE: Hello all, someone who work with python canl h...

it depends on which operating system (linux, windows, macOS) you use. on linux you could just take the output of hashcat and use the "grep" tool to filter it. Code: -- hashcat -m 0 -a 3 --sta...
philsmd General Talk 4 909 07-16-2020, 05:09 AM
    Thread: Exit status code
Post: RE: Exit status code

here we just need to distinguish between the process exit code ($? variable) and the status that hashcat internally uses: 1. if you check the process exit code, you need to follow this list: https://...
philsmd hashcat 3 651 07-16-2020, 11:27 AM
    Thread: Exit status code
Post: RE: Exit status code

no, this code is returned directly from the process, your shell is able to give you the results: linux Code: -- hashcat example0.hash example.dict echo $? -- on windows it seems to be ...
philsmd hashcat 3 651 07-16-2020, 01:57 PM
    Thread: First Attempt, does this look alright?
Post: RE: First Attempt, does this look alright?

you could use mask files https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files or just set -1 "012345 6789" for the first byte of your mask (i.e. any set of chars, charset, that ha...
philsmd hashcat 8 1,060 07-16-2020, 08:03 PM
    Thread: First Attempt, does this look alright?
Post: RE: First Attempt, does this look alright?

yeah, your command doesn't make sense to me at all. Why would you define all those custom charsets (-1 , -2 , -3 , -4) and only use ?4 in your mask ? That seems to be a misunderstanding/problem of ...
philsmd hashcat 8 1,060 07-16-2020, 08:29 PM
    Thread: First Attempt, does this look alright?
Post: RE: First Attempt, does this look alright?

The main problem now is that it's quite a long password. We "normally"/generally say that a length of 8-9 is the max that can be brute-forced (but attention: this depends a lot on hash type and/or ...
philsmd hashcat 8 1,060 07-16-2020, 11:19 PM
    Thread: Hello all, i need a litle help to understand something about drop info in hashcat
Post: RE: Hello all, i need a litle help to understand s...

it's just showing you a whole set (a range) of password candidates. The displayed password candidates in the "Candidates.#" line within the status output are neither meant to be complete, nor can they...
philsmd hashcat 4 737 07-20-2020, 01:46 PM
    Thread: Hello all, i need a litle help to understand something about drop info in hashcat
Post: RE: Hello all, i need a litle help to understand s...

in general, it only happens that both the left and right part of the "->" sign are equal if you are testing with only one password candidate... but it could also happen that by chance several (mangled...
philsmd hashcat 4 737 07-20-2020, 02:12 PM
    Thread: Hashcat doesn't consider the added chars from rules
Post: RE: Hashcat doesn't consider the added chars from ...

use this: Code: -- -S -- within your command, see: https://hashcat.net/forum/thread-8960-post-47574.html#pid47574
philsmd hashcat 2 488 07-24-2020, 05:36 PM
    Thread: How to configure Hashcat to append some data?
Post: RE: How to configure Hashcat to append some data?

Code: -- hashcat -m 1400 -a 3 -w 3 --hex-charset --custom-charset2 30 --custom-charset3 00 7627ffae5981fc58df32ea707d11d1acf72adc76d7b1a31b8a47c9fbd065a4a6 ?2?2?2?2?2?2?2?2?2?2?2?2?2?2?2?2?3?3?3?3?...
philsmd hashcat 4 706 07-24-2020, 07:23 PM
    Thread: Custom chat set
Post: RE: Custom chat set

Code: -- hashcat -m 500 -a 3 -w 3 -O --custom-charset2 my.hcchr -o krekovan hash.txt ?2?2?2?2?2?2?2 -- the file my.hcchr only consists of one line (no BOM ! see https://en.wikipedia.org/wiki/...
philsmd hashcat 4 721 07-24-2020, 07:31 PM
    Thread: Custom chat set
Post: RE: Custom chat set

The file extension doesn't actually matter, but I agree it's good to stick to some convention/standard. It would probably make sense to rename our .charset files into .hcchr files, because of the "...
philsmd hashcat 4 721 07-24-2020, 08:29 PM
    Thread: How to configure Hashcat to append some data?
Post: RE: How to configure Hashcat to append some data?

Quote: -- But there is a problem running it. -- Why do you not just mention the error message ? I guess it's this: Quote: -- Integer overflow detected in keyspace of mask: ?2?2?2?2?2?2?2...
philsmd hashcat 4 706 07-25-2020, 08:20 AM
    Thread: Devices being skipped
Post: RE: Devices being skipped

which hashcat version ? did you try with beta and release version from https://hashcat.net/beta/ and https://hashcat.net/hashcat accordingly ? please also post the output of: Code: -- hashcat -...
philsmd hashcat 8 1,249 07-25-2020, 01:46 PM