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: Need help to make a custom wordlist
Post: RE: Need help to make a custom wordlist

> dict.txt but it doesn't make much sense since (as said) the number of combinations is quite huge maybe stdin/pipe would make much more sense, but it depends on the hash type (-m) that you use
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 3 955 06-29-2020, 08:41 AM
    Thread: fastest way to crack bcrypt
Post: RE: fastest way to crack bcrypt

it's very difficult / dangerous to make comparison like this. What are you comparing to? dozens of hashes against 1 hash, cost factor 5 (2^5 = 32) against cost factor 19 (2^19 = 524288 "iterations")....
philsmd hashcat 3 952 06-29-2020, 09:35 AM
    Thread: Question about --force option and CUDA Toolkit SDK
Post: RE: Question about --force option and CUDA Toolkit...

Your change doesn't really make sense to me, because hashcat tries to find and load the library even with the nvrtc64_*_0.dll file name: https://github.com/hashcat/hashcat/blob/5628317de8156a36aa966c...
philsmd hashcat 5 1,214 06-29-2020, 09:43 AM
    Thread: fastest way to crack bcrypt
Post: RE: fastest way to crack bcrypt

yeah, very very good explanation @Mem5. your post is perfect because it explains what I forgot to mention above... From my experience from the last couple of months/years, is that some people confu...
philsmd hashcat 3 952 06-29-2020, 10:50 AM
    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: Rules in 16800 don't work?
Post: RE: Rules in 16800 don't work?

it's exactly like undeath explained above. Without the -S slow mode the passwords that are too short (from the dict) are rejected immediately, while the -S mode is slow because it mangles the words w...
philsmd General Talk 8 1,341 06-30-2020, 11:10 AM
    Thread: How to get the hash code for simple Veracrypt folder
Post: RE: How to get the hash code for simple Veracrypt ...

1. yeah, you can use that dd windows port. You can see how other users used it: - https://hashcat.net/forum/thread-8493-post-45361.html#pid45361 - https://hashcat.net/forum/thread-8098-post-43441.ht...
philsmd hashcat 3 681 06-30-2020, 07:47 PM
    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: How to get the hash code for simple Veracrypt folder
Post: RE: How to get the hash code for simple Veracrypt ...

you could just simple open the file manager ("explorer.exe") and go to that folder to see if it has the correct file size (and double check the file name + extension). Normally there also comes som...
philsmd hashcat 3 681 07-01-2020, 11:40 AM
    Thread: Restore.Sub.#1. beginner question
Post: RE: Restore.Sub.#1. beginner question

We normally say that hashes that are "raw" or that are "unsalted" have no salt. And this statement is perfectly correct. but you could also see it like this: a hash type/algorithm that does not hav...
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 4 871 07-01-2020, 07:41 PM
    Thread: Restore.Sub.#1. beginner question
Post: RE: Restore.Sub.#1. beginner question

I think "guessed" is the wrong term. Most things (except of the password) are normally known when it comes to hash cracking. Normally you won't need to guess iterations counts (or cost factors), they ...
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 4 871 07-01-2020, 08:55 PM
    Thread: 2019 Mac Pro and AMD Radeon Pro 580X
Post: RE: 2019 Mac Pro and AMD Radeon Pro 580X

Did you try to see if the path / folder does exist or not ? Is this folder there ? Code: -- /Volumes/XXXXX\ hashcat6/hashcat/OpenCL -- Why is there are "\ " there ? is this a space within the...
philsmd Hardware 3 920 07-02-2020, 09:01 AM
    Thread: Keyspace List for WPA on Default Routers
Post: RE: Keyspace List for WPA on Default Routers

why don't you just simple use the .exe file within that repo (yeah, I agree it's very bad to put executable files into source code repositories, but maybe this is a proof that users really have a hard...
philsmd User Contributions 182 305,386 07-02-2020, 06:15 PM
    Thread: hashcat64.bin
Post: RE: hashcat64.bin

The file: Code: -- hashcat.exe -- is the new 64-bit binary. The release versions do not ship with 32 bit binaries anymore (but users can still compile them themself if needed). So every bina...
philsmd hashcat 3 652 07-02-2020, 08:39 PM
    Thread: compiling a reduced wordlist .ccp
Post: RE: compiling a reduced wordlist .ccp

some answers already given here: https://hashcat.net/forum/thread-6170-post-49424.html#pid49424 Maybe it's better to just explain what you ultimate goal is ? Does it even have to do with WPA2 ha...
philsmd General Talk 2 659 07-03-2020, 10:28 AM
    Thread: Need app to open the files.
Post: RE: Need app to open the files.

try "cmd.exe" you open the command prompt cmd.exe by clicking on the start button of windows and type "c", "m", "d" and hit enter. A black windows will appear. with the command "cd" and the...
philsmd hashcat 1 464 07-05-2020, 09:28 AM
    Thread: How to go about a password you know has 3 - 5 more or less known words?
Post: RE: How to go about a password you know has 3 - 5 ...

you could just use --stdout -a 1 or combinator.bin or combinator3.bin to generate a dictionary file. you could for instance start with a list of 2 words combinated together and with -a 1 add the 3r...
philsmd General Talk 11 1,772 07-05-2020, 01:15 PM
    Thread: How to go about a password you know has 3 - 5 more or less known words?
Post: RE: How to go about a password you know has 3 - 5 ...

different topic, off-topic hint: encoding. UTF8 character encoding is supported by default, but all hashing algorithms work with bytes (0x00-0xff) anyways.
philsmd General Talk 11 1,772 07-05-2020, 05:23 PM
    Thread: How to go about a password you know has 3 - 5 more or less known words?
Post: RE: How to go about a password you know has 3 - 5 ...

the file redirect with Code: -- > two_words.txt -- was already mentioned above. Please read more carefully
philsmd General Talk 11 1,772 07-05-2020, 05:35 PM
    Thread: How to go about a password you know has 3 - 5 more or less known words?
Post: RE: How to go about a password you know has 3 - 5 ...

my guess is that you messed your command up. maybe you specified a wrong file. Make sure that everything after "combinator" is a text file. for instance "combinator combinator ... " do not make sen...
philsmd General Talk 11 1,772 07-05-2020, 06:19 PM