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 [asc] Views Posted
    Thread: How to view SSID of cracked PMKID (16800) PCAP?
Post: RE: How to view SSID of cracked PMKID (16800) PCAP...

Are you running an older version of hashcat? $ hashcat -V v5.1.0-1569-g74c1bf81+ potfile: PMK * ESSID : PSK Code: -- 5b13d4babb3714ccc62c9f71864bc984efd6a55f237c7a87fc2151e1ca658a9d*ed4871624...
ZerBea hashcat 6 2,252 01-12-2020, 12:07 PM
    Thread: Worldlist Clean up
Post: RE: Worldlist Clean up

awk is your friend: awk 'BEGIN { FS = ":" } ; { print $NF }' potfile or cat potfile | awk 'BEGIN { FS = ":" } ; { print $NF }' should do this job depending on the delimiter (":", " ", ....) ...
ZerBea General Talk 5 4,336 09-05-2017, 12:14 PM
    Thread: Any help With hcxdumptool and hashcat
Post: RE: Any help With hcxdumptool and hashcat

hcxdumptool set monitor mode, but it doesn't kill all services, which takes access to the device (that is your job). Therefore we use ioctl commands. So if you have a device called wlan0 and the drive...
ZerBea hashcat 5 3,554 02-27-2019, 02:26 PM
    Thread: WPA3 Dragonblood Vulnerabilities Disclosure
Post: RE: WPA3 Dragonblood Vulnerabilities Disclosure

Yes, very good and interesting analysis of some WPA3 flaws. Unfortunately the side channel attack requires at least unprivileged access to the victim (dragonblood.pdf: 7.2 Attack Scenario). In other w...
ZerBea General Talk 5 3,491 04-17-2019, 08:53 PM
    Thread: WPA3 Dragonblood Vulnerabilities Disclosure
Post: RE: WPA3 Dragonblood Vulnerabilities Disclosure

Yes, wpa_supplicant and hostapd are amazing open source tools. I really love them both and they are an integral part of my test environment to improve hcxdumptool.
ZerBea General Talk 5 3,491 04-20-2019, 10:11 AM
    Thread: Determine if PKMID is dynamic?
Post: RE: Determine if PKMID is dynamic?

To determine if PKMID is dynamic (EAP Authentication Key Management [AKM] defined) just check the RSN-IE field in beacon, (re)associationrequest or EAPOL M2 or the Key Descriptor Version field in EAPO...
ZerBea General Talk 5 2,376 08-15-2019, 10:08 AM
    Thread: Archer dual band t4u v1 monitor mode
Post: RE: Archer dual band t4u v1 monitor mode

The Fritzbox isn't vulnerable. You will not receive a PMKID.
ZerBea Hardware 5 3,389 09-22-2019, 07:13 PM
    Thread: Archer dual band t4u v1 monitor mode
Post: RE: Archer dual band t4u v1 monitor mode

If the access point is hardened, search for weak clients. Here is an example, of a weak client: https://github.com/ZerBea/hcxtools/issues/112#issuecomment-532537154
ZerBea Hardware 5 3,389 09-23-2019, 11:40 PM
    Thread: Any help With hcxdumptool and hashcat
Post: RE: Any help With hcxdumptool and hashcat

Did you read the helpmenu of hcxdumptool and hcxpcaptool? I asked this, because you are running hcxpcaptool options on hcxdumptool! $ hcxdumptool -i wlan0mon -o pmkid.pcapng --enable_status=1 Do ...
ZerBea hashcat 5 3,554 02-27-2019, 11:27 AM
    Thread: Anyone with a amd/radeon GPU rig running on linux?
Post: RE: Anyone with a amd/radeon GPU rig running on li...

Please add this to list of cons: Ancient/limited kernel versions and very limited distributions https://github.com/RadeonOpenCompute/ROCm#supported-operating-systems kernel 4.15, kernel 4.18 and ker...
ZerBea hashcat 5 1,001 07-11-2020, 10:14 AM
    Thread: Archer dual band t4u v1 monitor mode
Post: RE: Archer dual band t4u v1 monitor mode

According to wikidevi it is not possible, running Linux "out of the box": https://wikidevi.com/wiki/TP-LINK_Archer_T4U You must compile a driver that support monitor mode and packet injection. For...
ZerBea Hardware 5 3,389 09-21-2019, 10:56 AM
    Thread: WPA3 Dragonblood Vulnerabilities Disclosure
Post: RE: WPA3 Dragonblood Vulnerabilities Disclosure

How does hcxdumptool work with WPA3? It only detect the AUTHENTICATION. Do you reuse tools from Dragloblood? No, this tools are useless, because they require at least unprivileged access to the v...
ZerBea General Talk 5 3,491 05-15-2020, 10:34 PM
    Thread: Error when using the hashcat utility .pcap to .hccapx file
Post: RE: Error when using the hashcat utility .pcap to ...

Hi. Wireshark default format is pcapng. cap2hccapx doesn't support pcapng.
ZerBea General Talk 4 5,140 03-21-2018, 09:00 AM
    Thread: Error when using the hashcat utility .pcap to .hccapx file
Post: RE: Error when using the hashcat utility .pcap to ...

OK, not a Wireshark format issue. Did you choose DLT_IEEE802_11_RADIO to be the default link-layer type for that interface (depends on OS)? https://www.wireshark.org/lists/wireshark-dev/200909/msg00...
ZerBea General Talk 4 5,140 03-21-2018, 02:23 PM
    Thread: Hashcat router admin
Post: RE: Hashcat router admin

Look for Hydra (https://sectools.org/tool/hydra/, https://www.thc.org/thc-hydra/)!
ZerBea hashcat 4 3,093 05-21-2018, 12:35 AM
    Thread: PBKDF2 and SHA-1 question
Post: RE: PBKDF2 and SHA-1 question

if you include openssl: #include #include #include PMK is calculated by: PKCS5_PBKDF2_HMAC((const char*)psk, psklen, (unsigned char*)essid,  essidlen, 4096, EVP_sha1(), 32, pmk) successf...
ZerBea hashcat 4 2,381 04-07-2019, 11:18 AM
    Thread: PBKDF2 and SHA-1 question
Post: RE: PBKDF2 and SHA-1 question

You are right, hashcat is using OpnCl for both functions. The c code example should show that the functions are easy to implement in different coding languages like c, by adding cryptolibs. There are...
ZerBea hashcat 4 2,381 04-09-2019, 08:40 AM
    Thread: correct dictionary but he doesn't think
Post: RE: correct dictionary but he doesn't think

...does anyone have an idea of what can be ? Maybe the conversion from cap to hccapx failed. For a comprehensive answer, we need the cap file.
ZerBea hashcat 4 1,815 09-16-2019, 04:06 PM
    Thread: PMKID question
Post: RE: PMKID question

Only superficially - I'm still wrestling with Diffie-Hellman.
ZerBea hashcat 4 1,698 09-26-2019, 10:55 AM
    Thread: Cap file convert to hccapx HELP
Post: RE: Cap file convert to hccapx HELP

Ok, thanks. Please note that the hccapx format is now DEPRECATED -> I know: hccapx is a dinosaur (R.i.P) https://github.com/hashcat/hashcat/issues/1816
ZerBea hashcat 4 1,543 02-12-2020, 06:20 PM