Skip to content

Commit

Permalink
improved warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Nov 10, 2023
1 parent 211fd7b commit 8d20188
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hcxpcapngtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -930,16 +930,16 @@ if(((deauthenticationcount +disassociationcount) >= 100) && ((deauthenticationco
fprintf(stdout, "\nWarning: too many deauthentication/disassociation frames detected!\n"
"That can cause that an ACCESS POINT change channel, reset EAPOL TIMER,\n"
"renew ANONCE and set PMKID to zero.\n"
"This could prevent to calculate a valid EAPOL MESSAGE PAIR\n"
"or to get a valid PMKID.\n");
"This could prevent to calculate a valid EAPOL MESSAGE PAIR, to get a valid PMKID\n"
"or to decrypt the traffic.\n");
}
if((deauthenticationcount +disassociationcount) > 10000)
{
fprintf(stdout, "\nWarning: excessive number of deauthentication/disassociation frames detected!\n"
"That can cause that an ACCESS POINT change channel, reset EAPOL TIMER,\n"
"renew ANONCE and set PMKID to zero.\n"
"This could prevent to calculate a valid EAPOL MESSAGE PAIR\n"
"or to get a valid PMKID.\n");
"This could prevent to calculate a valid EAPOL MESSAGE PAIR, to get a valid PMKID\n"
"or to decrypt the traffic.\n");
}
if(((beaconcount + proberesponsecount) == 0) && ((associationrequestcount + reassociationrequestcount) == 0))
{
Expand Down

0 comments on commit 8d20188

Please sign in to comment.