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: WPA/WPA2: How the hash is generated
Post: RE: WPA/WPA2: How the hash is generated

It is actually just a kind of a checksum that is only needed internally for hashcat and wasn't meant to be something the user should care about. You shouldn't really need to know the algorithm for the...
philsmd General Talk 3 6,795 03-06-2017, 09:04 AM
    Thread: WPA/WPA2 PMK mode (2501)
Post: RE: WPA/WPA2 PMK mode (2501)

If you run hashcat --help (with the latest version of hashcat) you will see that 2501 is supported and within the output. you can use hcxtools from https://github.com/ZerBea/hcxtools (wlancap2hcx -...
philsmd General Talk 20 19,682 03-02-2018, 10:03 AM
    Thread: WPA-WPA2-PSK test: crack failed
Post: RE: WPA-WPA2-PSK test: crack failed

Sometimes it helps to use one or more of these tools: - wpaclean + cap2hccap - aircrack -J (you already tried this) - wpaclean + aircrack -J (does this really make any difference) - cap2hccap Especia...
philsmd Old oclHashcat Support 3 7,249 01-20-2015, 12:48 PM
    Thread: WPA speed problem comparing to v1.31
Post: RE: WPA speed problem comparing to v1.31

Furthermore, there are also some other (minor) changes, which could influence the speed difference between the 2 versions For instance, did you notice that 1.31 did reject more than 1/3 of the plains,...
philsmd Old oclHashcat Support 8 14,762 02-16-2015, 01:29 PM
    Thread: WPA speed drop between 0.15 and 1.01
Post: RE: WPA speed drop between 0.15 and 1.01

The screenshot of oclHashcat 1.01 shows that you are trying to crack more than one network (.hccap file w/ several essid - note the file size of the hccap file + "Recovered......: 0/10"). That's also ...
philsmd Old oclHashcat Support 9 18,769 01-07-2014, 07:42 AM
    Thread: WPA password that contains mixalphanumeric
Post: RE: WPA password that contains mixalphanumeric

use policygen.py from PACK (https://thesprawl.org/projects/pack/) The only thing you need to know here is that .hcmask files are needed and pack will generate them for you hashcat64.exe -m 2500 ...
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 1 3,317 06-17-2017, 09:06 PM
    Thread: WPA and first hash
Post: RE: WPA and first hash

https://hashcat.net/forum/thread-6355-post-33892.html#pid33892 https://github.com/hashcat/hashcat/issues/1167
philsmd hashcat 2 2,750 02-27-2018, 05:58 PM
    Thread: Would anyone be able to match this hash with the password?
Post: RE: Would anyone be able to match this hash with t...

it's not allowed in this forum: https://hashcat.net/forum/announcement-2.html you got a 1 week ban to revise the forum rules
philsmd General Talk 1 666 03-07-2020, 09:13 AM
    Thread: worldlist extra rules
Post: RE: worldlist extra rules

Please *read* what other users suggest as solution (because the answer was already given and works), don't ask in other threads (e.g. https://hashcat.net/forum/thread-2365-post-14211.html#pid14211 ) f...
philsmd Very old oclHashcat-plus Support 8 14,249 06-16-2013, 08:23 AM
    Thread: worldlist extra rules
Post: RE: worldlist extra rules

So if this is not working for you w/ oclHashcat what can we do? 1. use cpu hashcat as above (./hashcat-cli64.bin -a 1 dicfile.txt --stdout > dicfile_combined.txt) and use this dict 2. use ./hashcat-...
philsmd Very old oclHashcat-plus Support 8 14,249 06-16-2013, 05:55 PM
    Thread: Worldlist Clean up
Post: RE: Worldlist Clean up

just think about it like this: "I want to remove every digit that is followed by a non-digit" you can express this with the unix sed tool like this: Code: -- sed -r 's/[0-9]+([^0-9])/\1/g' --
philsmd General Talk 5 4,337 09-24-2017, 11:10 AM
    Thread: Works with OpenCL but not CUDA
Post: RE: Works with OpenCL but not CUDA

unfortunately, it could be anything here. maybe even your OpenCL kernel is not perfectly correct and it is only a matter of which vector size etc is being used to fail or succeed. Without seein...
philsmd hashcat 2 1,458 08-24-2019, 12:20 PM
    Thread: Worked once and didnt work immediately after
Post: RE: Worked once and didnt work immediately after

you can use the command line switch --potfile-disable if you really intend to crack hashes multipe times and avoid the potfile checks.
philsmd hashcat 3 2,010 01-29-2019, 12:13 PM
    Thread: Wordlists Contain 0 Bytes?
Post: RE: Wordlists Contain 0 Bytes?

You have specified "-a 3" this means cpu hashcat will use a mask attack (https://hashcat.net/wiki/doku.php?id=mask_attack ). If you instead want to use a wordlist-based attack, you need to specify -a ...
philsmd Old hashcat Support 1 3,909 01-01-2015, 12:02 PM
    Thread: Wordlist word spacing
Post: RE: Wordlist word spacing

"wordswithoutspaces" ? yes, *hashcat reads line by line, regardless if there are spaces in some lines of your wordlist. If you meant "wordswithspaces", yes they are tested as 1 plain and not split...
philsmd Old hashcat Support 4 9,795 08-10-2013, 02:11 PM
    Thread: Wordlist word spacing
Post: RE: Wordlist word spacing

running sed is not doing it manually. Doing it manually would mean change every space by hand - line by line ;) Sed/awk/tr can be used on windows. I know that, because I used them myself. Otherwis...
philsmd Old hashcat Support 4 9,795 08-10-2013, 02:30 PM
    Thread: wordlist creates
Post: RE: wordlist creates

the question here is: why would you need to create a word list on disk ? This involves a lot of disk I/O (usage of one of the slowest components on a PC, even if it is a NVMe SSD). Remember: in additi...
philsmd hashcat 3 1,560 03-01-2020, 10:25 AM
    Thread: Wordlist + Bruteforce Attack
Post: RE: Wordlist + Bruteforce Attack

just read the output of Code: -- hashcat --help -- it says Code: -- - [ Attack Modes ] - ... 6 | Hybrid Wordlist + Mask -- therefore it is just: Code: -- hashcat -a 6 -m 1372...
philsmd hashcat 2 2,079 12-27-2019, 07:55 PM
    Thread: Won't start cracking (beginner)
Post: RE: Won't start cracking (beginner)

are you sure you installed the driver correctly? please use these instructions: https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#i_may_have_the_wrong_driver_installed_what_should_i_do ...
philsmd Hardware 4 3,801 11-25-2018, 09:56 PM
    Thread: WinZip in version 3.0
Post: RE: WinZip in version 3.0

yeah, currently only the newer winzip format is supported (the more difficult one to crack).
philsmd hashcat 9 11,804 07-01-2016, 05:25 PM