Skip to content

Commit 7ee025e

Browse files
author
=
committed
show no M1 or M3 warning on EAPOL M1M2ROGUE
1 parent ec07787 commit 7ee025e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hcxpcapngtool.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ if((authenticationcount +associationrequestcount +reassociationrequestcount) ==
10851085
"That makes it hard to recover the PSK.\n");
10861086
if(timestampdiff < 60000000000) fprintf(stdout, "Duration was a way too short to capture enough additional information.\n");
10871087
}
1088-
if(eapolm1ancount <= 1)
1088+
if((eapolm1ancount <= 1) && (eapolaplesscount == 0))
10891089
{
10901090
fprintf(stdout, "\nInformation: missing frames!\n"
10911091
"This dump file does not contain enough EAPOL M1 frames.\n"
@@ -1095,7 +1095,7 @@ if(eapolm1ancount <= 1)
10951095
"https://hashcat.net/forum/thread-6361.html\n");
10961096
if(timestampdiff < 60000000000) fprintf(stdout, "Duration was a way too short to capture enough additional information.\n");
10971097
}
1098-
if((eapolm1count + eapolm2count + eapolm4count > 0) && (eapolm3count == 0))
1098+
if((eapolm1count + eapolm2count + eapolm4count > 0) && (eapolm3count == 0) && (eapolaplesscount == 0))
10991099
{
11001100
fprintf(stdout, "\nInformation: missing EAPOL M3 frames!\n"
11011101
"This dump file does not contain EAPOL M3 frames (possible packet loss).\n"

0 commit comments

Comments
 (0)