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 Replies [desc] Views Posted
    Thread: Cloud GPU's
Post: RE: Cloud GPU's

Of course more cores means more performance (in general), but here we are talking about some very different architectures and instruction sets. That is what makes the real difference for hash cracking...
philsmd Hardware 4 6,159 04-01-2017, 09:50 AM
    Thread: Rule-based Attack: Substitution of single chars with strings
Post: RE: Rule-based Attack: Substitution of single char...

As far as I know, if you want to stick with rules, you would probably need at least 2 different types of rules. One idea is to purge all "!" characters with the purge rule and insert the multi-byte s...
philsmd hashcat 4 4,508 05-12-2017, 09:29 AM
    Thread: Rule-based Attack: Substitution of single chars with strings
Post: RE: Rule-based Attack: Substitution of single char...

If you want to use some static string like "#&33;" within a mask, you just need to put it there for instance like this (file mask_file.hcmask): Code: -- ?l?u?d,?1?1?1?1?1#&33; ?l?u?d,?1?1?1?1#&33...
philsmd hashcat 4 4,508 05-13-2017, 09:58 AM
    Thread: Basic hashcat mask syntax
Post: RE: Basic hashcat mask syntax

Let me explain this: if you use the mask ?1?1?1?1?1?1?1?1 together with --increment, what hashcat really does is run this set of masks one after the other: Code: -- ?1 ?1?1 ?1?1?1 ?1?1?1?1 ?1?1?1?1?...
philsmd hashcat 4 6,438 06-02-2017, 03:21 PM
    Thread: creating a mask
Post: RE: creating a mask

maskprocessor can be used for this situation (the -q parameter can be used) and the output can be piped into hashcat: Code: -- mp64 -q 2 -1 abc ?1?1?1 | hashcat -a 0 -m 0 -w 4 hash.txt --
philsmd General Talk 4 4,602 06-28-2017, 03:37 PM
    Thread: SHA512 without salt
Post: RE: SHA512 without salt

Wow, this is a very nice analysis @epixoip! Well done! That's some very precious knowledge about how PHP deals with a zero-length salt for sha512crypt (or better said, no salt at all) ... and might...
philsmd hashcat 4 5,167 06-30-2017, 09:11 AM
    Thread: Problema en iniciar Hashcat Handshake
Post: RE: Problema en iniciar Hashcat Handshake

@wirelees Last warning (before you get banned, next time): Forum rules exists for good reasons and (actually the first rule of this small set of rules) https://hashcat.net/forum/announcement-2.html em...
philsmd General Talk 4 4,781 07-12-2017, 12:53 PM
    Thread: old box compatibility with Hashcat
Post: RE: old box compatibility with Hashcat

That's probably a typo, I think epixoip means hashcat-legacy (https://github.com/hashcat/hashcat-legacy), i.e. the (old) CPU-based only hashcat tool (that was called "hashcat" before "oclHashcat" was ...
philsmd General Talk 4 5,001 07-14-2017, 09:27 AM
    Thread: Office hash trouble
Post: RE: Office hash trouble

you should make sure that it looks similar to the example hash listed here: https://hashcat.net/wiki/example_hashes You should also try to use/crack the example hash to make sure that your command...
philsmd hashcat 4 4,319 07-29-2017, 03:37 PM
    Thread: Best practice dealing with dic intersections
Post: RE: Best practice dealing with dic intersections

There are countless tools, but I guess the best is to just stick to hashcat-utils's rli/rli2 tool: - https://hashcat.net/wiki/doku.php?id=hashcat_utils#rli - https://hashcat.net/wiki/doku.php?id=hashc...
philsmd General Talk 4 5,551 07-30-2017, 07:34 AM
    Thread: Hashcat SHA1 output "hash:plain" to plain
Post: RE: Hashcat SHA1 output "hash:plain" to plain

Code: -- hashcat -m 100 --show --outfile-format 2 originalHashList.txt -- p.s.: do not post hashes. this is against the forum rules. you will get banned
philsmd hashcat 4 5,280 08-22-2017, 07:16 AM
    Thread: Hashcat SHA1 output "hash:plain" to plain
Post: RE: Hashcat SHA1 output "hash:plain" to plain

something like this should work (on linux or mingw): Code: -- cut -b 42- hashcat.potfile | ./hashcat --stdout --outfile-autohex-disable -- or you could also copy the file and use any advance...
philsmd hashcat 4 5,280 08-22-2017, 11:00 PM
    Thread: ERROR: Use of -r/--rules-file and -g/--rules-generate only allowed in attack mode 0.
Post: RE: ERROR: Use of -r/--rules-file and -g/--rules-g...

you need to use -a 0 to use --rules-file (or short -r). The same is true for --rules-generate (or short -g), it is only supported with straight/dictionary attack (-a 0).
philsmd hashcat 4 4,702 08-24-2017, 08:23 PM
    Thread: ERROR: Use of -r/--rules-file and -g/--rules-generate only allowed in attack mode 0.
Post: RE: ERROR: Use of -r/--rules-file and -g/--rules-g...

Within this video hashcat-legacy (https://github.com/hashcat/hashcat-legacy) is being used and not the new hashcat. Yeah, 2 of the differences we notice here between hashcat-legacy and hashcat is t...
philsmd hashcat 4 4,702 08-24-2017, 08:46 PM
    Thread: Hybrid attack splitting
Post: RE: Hybrid attack splitting

the only ways to reduce the time needed for one chunck even further than -l 1 is to use lower -n/-u values (which affects the speed) or to reduce the number of hashes (which is also counter-productive...
philsmd hashcat 4 4,187 09-24-2017, 02:48 PM
    Thread: Hybrid attack
Post: RE: Hybrid attack

You could use a hcmask file (see https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files): file my.hcmask: Code: -- ?l?u?d,key?1 ?l?u?d,?1key ?l?u?d,key?1?1 ?l?u?d,?1?1key ?l?u?...
philsmd hashcat 4 6,069 10-04-2017, 08:27 PM
    Thread: bcrypt salt format
Post: RE: bcrypt salt format

I quickly searched on the web and it seems the obfuscation is just that the algorithm adds " 8 6 4 3 2 6 d b 2 f e 3 b e 4 0 c c 2 4 1 8 7 7 f 6 a 2 c 9 0 b" to the hash (from the start of the hash ev...
philsmd hashcat 4 4,539 12-09-2017, 11:24 AM
    Thread: MD5($salt.$pass) hashcat syntax, help?
Post: RE: MD5($salt.$pass) hashcat syntax, help?

the hash must be formatted like this: Code: -- hash:salt -- e.g. 531e89....:eWVzX3... see https://hashcat.net/wiki/example_hashes
philsmd General Talk 4 22,427 12-29-2017, 09:20 PM
    Thread: 4 word combinations from a short list of words
Post: RE: 4 word combinations from a short list of words

you could use someting like this (a perl script) and change the words if you need: Code: -- #!/usr/bin/env perl use strict; use warnings; my @words = ( 'fruit', 'apple', 'pear', ...
philsmd General Talk 4 4,206 12-23-2017, 02:22 PM
    Thread: Statsprocessor specific characters
Post: RE: Statsprocessor specific characters

Why do you want to write this to a file ? Hashcat has in-built support for markov chains and mask attack (-a 3). Anyways, if you really, really want to write it to a disk (I don't know why), you n...
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 4 4,974 12-23-2017, 07:28 PM