hashcat v6.2.0
#30
If the ESSID wasn't changed, the speed impact isn't so much.
Hashcat will not stop unless all PSKs are tested against all hashes.
To calculate the elapsed time, I used a small word list that doesn't contain matching PSKs.
And I use Linux "time" to calculate the elapsed time and not(!) hashcat's internal calculation of elapsed time.
Code:
$ hcxhashtool -i test.22000

OUI information file...........: /home/zerobeat/.hcxtools/oui.txt
OUI entires...................: 30555
total lines read..............: 887
valid hash lines..............: 887
PMKID hash lines..............: 258
EAPOL hash lines..............: 629


$ time hashcat -m 22000 test.22000 uncracked.txt.gz
hashcat (v6.2.4-76-g4b6654b50) starting

Session..........: hashcat                                
Status...........: Exhausted
Hash.Mode........: 22000 (WPA-PBKDF2-PMKID+EAPOL)
Hash.Target......: test.22000
Time.Started.....: Sun Sep 26 23:02:42 2021 (5 secs)
Time.Estimated...: Sun Sep 26 23:02:47 2021 (0 secs)
Kernel.Feature...: Pure Kernel
Guess.Base.......: File (uncracked.txt.gz)
Guess.Queue......: 1/1 (100.00%)
Speed.#1.........:    76595 H/s (7.56ms) @ Accel:8 Loops:256 Thr:512 Vec:1
Recovered........: 0/887 (0.00%) Digests
Progress.........: 292559/292559 (100.00%)
Rejected.........: 0/292559 (0.00%)
Restore.Point....: 292559/292559 (100.00%)
Restore.Sub.#1...: Salt:0 Amplifier:0-1 Iteration:886-1773
Candidate.Engine.: Device Generator
Candidates.#1....: fedotov90 -> 87077890366
Hardware.Mon.#1..: Temp: 59c Fan: 44% Util:  0% Core:1885MHz Mem:5005MHz Bus:16

Started: Sun Sep 26 23:02:40 2021
Stopped: Sun Sep 26 23:02:48 2021

real    0m7,271s
user    0m1,904s
sys    0m1,225s


Less hashes:
Code:
$ hcxhashtool -i test20.22000

OUI information file...........: /home/zerobeat/.hcxtools/oui.txt
OUI entires...................: 30555
total lines read..............: 20
valid hash lines..............: 20
PMKID hash lines..............: 6
EAPOL hash lines..............: 14

$ time hashcat -m 22000 test20.22000 uncracked.txt.gz
hashcat (v6.2.4-76-g4b6654b50) starting
Session..........: hashcat                                
Status...........: Exhausted
Hash.Mode........: 22000 (WPA-PBKDF2-PMKID+EAPOL)
Hash.Target......: test20.22000
Time.Started.....: Sun Sep 26 23:05:00 2021 (2 secs)
Time.Estimated...: Sun Sep 26 23:05:02 2021 (0 secs)
Kernel.Feature...: Pure Kernel
Guess.Base.......: File (uncracked.txt.gz)
Guess.Queue......: 1/1 (100.00%)
Speed.#1.........:   193.3 kH/s (7.69ms) @ Accel:8 Loops:256 Thr:512 Vec:1
Recovered........: 0/20 (0.00%) Digests
Progress.........: 292559/292559 (100.00%)
Rejected.........: 0/292559 (0.00%)
Restore.Point....: 292559/292559 (100.00%)
Restore.Sub.#1...: Salt:0 Amplifier:0-1 Iteration:19-39
Candidate.Engine.: Device Generator
Candidates.#1....: fedotov90 -> 87077890366
Hardware.Mon.#1..: Temp: 58c Fan: 39% Util:  0% Core:1885MHz Mem:5005MHz Bus:16

Started: Sun Sep 26 23:04:58 2021
Stopped: Sun Sep 26 23:05:04 2021

real    0m5,291s
user    0m1,707s
sys    0m1,156s

If the PSK was changed, you will possible get the history of PSK changes, when running against all hashes, e.g:

PSK from M1M2ROGUE:
password1234

Maybe we can assume the PSK could be password + digits!

Old PSK from M2M3:
password2018

Newer PSK from M2M3:
password2019

Now we can assume the latest PSK could be
password2021
because you recovered a complete history.

BTW:
To get full advantage of hashcat's reuse of PBKDF2:
If you know the ESSID:
Code:
$ hcxhashtool -i hasharchive.22000 --essid=TARGET_ESSID -o test.22000

Or group all ESSIDs:
Code:
$ hcxhashtool -i hasharchive.22000 --essid-group
Reply


Messages In This Thread
hashcat v6.2.0 - by atom - 05-14-2021, 07:22 PM
RE: hashcat v6.2.0 - by Robot - 05-14-2021, 07:45 PM
RE: hashcat v6.2.0 - by pdo - 05-14-2021, 07:47 PM
RE: hashcat v6.2.0 - by 0x69BE027C97 - 05-14-2021, 08:08 PM
RE: hashcat v6.2.0 - by Chick3nman - 05-14-2021, 10:09 PM
RE: hashcat v6.2.0 - by marc1n - 05-14-2021, 08:14 PM
RE: hashcat v6.2.0 - by ZerBea - 05-15-2021, 08:32 AM
RE: hashcat v6.2.0 - by philsmd - 05-15-2021, 10:14 AM
RE: hashcat v6.2.0 - by atom - 05-15-2021, 02:15 PM
RE: hashcat v6.2.0 - by hblender - 05-16-2021, 11:09 PM
RE: hashcat v6.2.0 - by Bob Kiwi - 05-17-2021, 07:53 PM
RE: hashcat v6.2.0 - by ddbkill - 05-18-2021, 07:42 PM
RE: hashcat v6.2.0 - by Centurio - 05-21-2021, 09:04 PM
RE: hashcat v6.2.0 - by j1ok1 - 05-27-2021, 01:24 PM
RE: hashcat v6.2.0 - by atom - 06-13-2021, 03:10 PM
RE: hashcat v6.2.0 - by ZerBea - 06-13-2021, 03:45 PM
RE: hashcat v6.2.0 - by atom - 07-16-2021, 10:57 PM
RE: hashcat v6.2.0 - by elma - 07-17-2021, 03:06 PM
RE: hashcat v6.2.0 - by atom - 08-29-2021, 05:42 PM
RE: hashcat v6.2.0 - by ZerBea - 08-29-2021, 07:43 PM
RE: hashcat v6.2.0 - by oayz - 09-15-2021, 06:34 AM
RE: hashcat v6.2.0 - by ZerBea - 09-15-2021, 12:28 PM
RE: hashcat v6.2.0 - by oayz - 09-22-2021, 07:43 AM
RE: hashcat v6.2.0 - by ZerBea - 09-22-2021, 08:53 AM
RE: hashcat v6.2.0 - by oayz - 09-22-2021, 10:29 PM
RE: hashcat v6.2.0 - by ZerBea - 09-23-2021, 09:37 AM
RE: hashcat v6.2.0 - by oayz - 09-24-2021, 07:51 PM
RE: hashcat v6.2.0 - by ZerBea - 09-25-2021, 11:57 AM
RE: hashcat v6.2.0 - by oayz - 09-26-2021, 09:25 PM
RE: hashcat v6.2.0 - by ZerBea - 09-26-2021, 11:13 PM
RE: hashcat v6.2.0 - by oayz - 09-29-2021, 07:00 AM
RE: hashcat v6.2.0 - by ZerBea - 09-29-2021, 08:08 AM
RE: hashcat v6.2.0 - by oayz - 09-29-2021, 10:00 PM
RE: hashcat v6.2.0 - by ZerBea - 09-29-2021, 11:28 PM
RE: hashcat v6.2.0 - by oayz - 09-30-2021, 07:08 AM
RE: hashcat v6.2.0 - by ZerBea - 10-01-2021, 12:38 PM
RE: hashcat v6.2.0 - by atom - 11-21-2021, 05:52 PM
RE: hashcat v6.2.0 - by CUwindows00 - 11-22-2021, 05:15 AM
RE: hashcat v6.2.0 - by Pathogenex - 11-23-2021, 07:33 AM
RE: hashcat v6.2.0 - by v71221 - 02-27-2022, 08:24 PM
RE: hashcat v6.2.0 - by Snoopy - 02-28-2022, 11:42 AM
RE: hashcat v6.2.0 - by Strootman - 05-09-2022, 07:39 AM
RE: hashcat v6.2.0 - by atom - 09-02-2022, 05:20 PM
RE: hashcat v6.2.0 - by Noema - 09-14-2022, 10:06 AM
RE: hashcat v6.2.0 - by ZerBea - 09-02-2022, 05:38 PM
RE: hashcat v6.2.0 - by jim5 - 12-13-2022, 08:16 PM
RE: hashcat v6.2.0 - by Momentomore - 09-18-2022, 10:56 PM
RE: hashcat v6.2.0 - by ZerBea - 09-19-2022, 09:51 AM
RE: hashcat v6.2.0 - by limasollu - 01-04-2023, 03:44 PM
RE: hashcat v6.2.0 - by goniec - 04-05-2023, 08:18 AM
RE: hashcat v6.2.0 - by jersonbtc - 04-17-2023, 08:18 AM
RE: hashcat v6.2.0 - by devilsadvocate - 05-06-2023, 05:28 AM
RE: hashcat v6.2.0 - by jvslnvslrivs - 02-14-2024, 07:21 PM