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 [asc] Author Forum Replies Views Posted
    Thread: Dictionary with known combinations
Post: RE: Dictionary with known combinations

if you really need to combine every word with every word, you should probably use combinator3 from hashcat.utils Code: -- combinator3 dict dict dict -- if the numbers are always at the end and "o...
philsmd hashcat 1 2,259 06-25-2017, 08:35 AM
    Thread: Dictionary Filter
Post: RE: Dictionary Filter

it should be very easy to do this w/ for instance running some (shell) commands. The only thing you should consider: 1. why not sort and unique the dict beforehand 2. how large is the dict - must...
philsmd General Help 2 8,008 01-09-2014, 02:22 PM
    Thread: Dictionary cache building
Post: RE: Dictionary cache building

Yeah, it's also mentioned within docs/changes.txt Code: -- * changes v3.30 -> v3.40: ... - Wordlists: Disable dictstat handling for hash-mode 3000 as it virtually creates words in the wordlist w...
philsmd hashcat 1 5,032 05-28-2017, 02:01 PM
    Thread: Dictionary attack not working black screen
Post: RE: Dictionary attack not working black screen

-a 3 or --attack-mode 3 enables according to --help and the wiki a mask attack ( https://hashcat.net/wiki/doku.php?id=mask_attack ). -a 0 must be used if you want to run a dictionary attack. So it ...
philsmd Old oclHashcat Support 2 4,952 04-28-2015, 07:32 AM
    Thread: Dictiionary Attack - how-to-question
Post: RE: Dictiionary Attack - how-to-question

you need to explain more clearly what you are trying to do. What does combining mean in your situation ? how many words combined, any separator between the words, can one word occur multiple times ...
philsmd General Talk 29 5,284 04-18-2020, 09:34 PM
    Thread: Dictiionary Attack - how-to-question
Post: RE: Dictiionary Attack - how-to-question

does the release version from https://hashcat.net/hashcat work for you ? does it work with -D 1 (i.e. with your CPU) ?
philsmd General Talk 29 5,284 04-22-2020, 11:29 AM
    Thread: Dictiionary Attack - how-to-question
Post: RE: Dictiionary Attack - how-to-question

It's not totally clear. maybe this is only a problem on macOS ? do you use the latest version of macOS ? It could easily be that the macOS driver is buggy. You could do further test and see if other ...
philsmd General Talk 29 5,284 04-22-2020, 02:13 PM
    Thread: Dictiionary Attack - how-to-question
Post: RE: Dictiionary Attack - how-to-question

I think under macOS you can't really install the driver by downloading and installing "the new" or a "different" one from the Intel (vendor) page or similar. I think under macOS the only thing you cou...
philsmd General Talk 29 5,284 04-22-2020, 03:23 PM
    Thread: Dictiionary Attack - how-to-question
Post: RE: Dictiionary Attack - how-to-question

In general you would use a command like this: Code: -- hashcat -m 14700 -a 3 -w 3 --increment --increment-min 8 -2 ?u?l?d@ extracted_hash.txt ?u?2?2?2?2?2?2?2?2?2 -- instead of -2 you could al...
philsmd General Talk 29 5,284 04-23-2020, 12:17 PM
    Thread: Dictiionary Attack - how-to-question
Post: RE: Dictiionary Attack - how-to-question

-w is for the workload profile, see the output of the hashcat --help command: Code: -- hashcat --help ... - [ Workload Profiles ] - # | Performance | Runtime | Power Consumption | Desktop I...
philsmd General Talk 29 5,284 04-23-2020, 05:59 PM
    Thread: Dictiionary Attack - how-to-question
Post: RE: Dictiionary Attack - how-to-question

glad to hear that. well done !
philsmd General Talk 29 5,284 04-28-2020, 02:01 PM
    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
    Thread: Devices being skipped
Post: RE: Devices being skipped

yeah, this really looks like a problem/bug in the alias detection code (see all other devices are detected as Alias for #1). I will ask atom (the main hashcat developer of hashcat) if he knows how ...
philsmd hashcat 8 1,249 07-25-2020, 02:24 PM
    Thread: Devices being skipped
Post: RE: Devices being skipped

With this new change to the hashcat alias detection code all devices should be distinguished (in your particular case the PCI lanes for all devices were the same, 00:00.0, only the PCI domain 0001-000...
philsmd hashcat 8 1,249 07-27-2020, 03:32 PM
    Thread: Detecting 1 Device (CPU) not GPU
Post: RE: Detecting 1 Device (CPU) not GPU

https://hashcat.net/faq/wrongdriver
philsmd hashcat 2 765 04-03-2020, 09:02 PM
    Thread: Details about new SAP CODVN H - Iterated random-salted passwords (PWDSALTEDHASH)
Post: RE: Details about new SAP CODVN H - Iterated rando...

Great. Very well done. But there is a very important thing you missed in your nice description: as far as we know oclHashcat is the first cracker to support cracking those sap h hashes :P No ...
philsmd User Contributions 2 17,852 11-04-2014, 12:06 AM
    Thread: DES-ECB Numeric Key Search
Post: RE: DES-ECB Numeric Key Search

just use -1 charsets/DES_special/DES_numeral.charset
philsmd hashcat 3 3,522 08-03-2017, 07:48 AM
    Thread: DES-ECB Numeric Key Search
Post: RE: DES-ECB Numeric Key Search

you still need to use --hex-charset also for charsets/DES_special/DES_numeral.charset since the charset is in hexadecimal format
philsmd hashcat 3 3,522 08-03-2017, 09:32 AM
    Thread: DES, Hex-Charset and Split/Limit??
Post: RE: DES, Hex-Charset and Split/Limit??

1. --keyspace doesn't expect any hash file. you cannot specify the hash file when computing the keyspace (remove deshash from you command line) 2. for -l (--limit) you specify the number of restore...
philsmd hashcat 2 1,136 11-08-2019, 12:19 AM
    Thread: DES with partial plain text
Post: RE: DES with partial plain text

for -m 14000 = DES (PT = $salt, key = $pass) the "plain text" is the salt and the password is the encryption key Therefore, with unknown plain text the "hash" would change or you would need to l...
philsmd hashcat 11 1,633 06-14-2020, 11:00 PM