Skip to content

Commit

Permalink
fixed menu entry
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Jul 30, 2024
1 parent 8631a16 commit 8fa4462
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 @@ -805,8 +805,8 @@ if(eapolm4oversizedcount > 0) fprintf(stdout, "EAPOL M4 messages (oversized)...
if(eapolm4zeroedcount > 0) fprintf(stdout, "EAPOL M4 messages (zeroed NONCE).........: %ld\n", eapolm4zeroedcount);
if(eapolm4kdv0count > 0) fprintf(stdout, "EAPOL M4 messages (KDV:0 AKM defined)....: %ld (PMK not recoverable)\n", eapolm4kdv0count);
if(eapolmpcount > 0) fprintf(stdout, "EAPOL pairs (total)......................: %ld\n", eapolmpcount);
if(zeroedeapolpskcount > 0) fprintf(stdout, "EAPOL (from zeroed PSK)..................: %ld (not converted by default options - use --all if needed)\n", zeroedeapolpskcount);
if(zeroedeapolpmkcount > 0) fprintf(stdout, "EAPOL (from zeroed PMK)..................: %ld (not converted by default options - use --all if needed)\n", zeroedeapolpmkcount);
if(zeroedeapolpskcount > 0) fprintf(stdout, "EAPOL (from zeroed PSK)..................: %ld (not converted by default options - use --all)\n", zeroedeapolpskcount);
if(zeroedeapolpmkcount > 0) fprintf(stdout, "EAPOL (from zeroed PMK)..................: %ld (not converted by default options - use --all)\n", zeroedeapolpmkcount);
if(donotcleanflag == false)
{
if(eapolmpbestcount > 0) fprintf(stdout, "EAPOL pairs (best).......................: %ld\n", eapolmpbestcount);
Expand All @@ -831,8 +831,8 @@ if(eapolm34e4count > 0) fprintf(stdout, "EAPOL M34E4 (authorized).............
if(pmkiduselesscount > 0) fprintf(stdout, "RSN PMKID (useless)......................: %ld\n", pmkiduselesscount);
if(pmkidfaultycount > 0) fprintf(stdout, "RSN PMKID (faulty).......................: %ld\n", pmkidfaultycount);
if(pmkidcount > 0) fprintf(stdout, "RSN PMKID (total)........................: %ld\n", pmkidcount);
if(zeroedpmkidpskcount > 0) fprintf(stdout, "RSN PMKID (from zeroed PSK)..............: %ld (not converted by default options - use --all if needed)\n", zeroedpmkidpskcount);
if(zeroedpmkidpmkcount > 0) fprintf(stdout, "RSN PMKID (from zeroed PMK)..............: %ld (not converted by default options - use --all if needed)\n", zeroedpmkidpmkcount);
if(zeroedpmkidpskcount > 0) fprintf(stdout, "RSN PMKID (from zeroed PSK)..............: %ld (not converted by default options - use --all)\n", zeroedpmkidpskcount);
if(zeroedpmkidpmkcount > 0) fprintf(stdout, "RSN PMKID (from zeroed PMK)..............: %ld (not converted by default options - use --all)\n", zeroedpmkidpmkcount);
if(donotcleanflag == false)
{
if(pmkidbestcount > 0) fprintf(stdout, "RSN PMKID (best).........................: %ld\n", pmkidbestcount);
Expand Down

0 comments on commit 8fa4462

Please sign in to comment.