Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/hashcat/hashcat-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
jsteube committed Feb 11, 2017
2 parents 9c70600 + 6a1bce2 commit 9eb9053
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cap2hccapx.c
Original file line number Diff line number Diff line change
Expand Up @@ -919,10 +919,14 @@ int main (int argc, char *argv[])

if (excpkt_ap->excpkt_num == EXC_PKT_NUM_1)
{
if (excpkt_ap->tv_sec > excpkt_sta->tv_sec) continue;

if ((excpkt_ap->tv_sec + EAPOL_TTL) < excpkt_sta->tv_sec) continue;
}
else
{
if (excpkt_sta->tv_sec > excpkt_ap->tv_sec) continue;

if ((excpkt_sta->tv_sec + EAPOL_TTL) < excpkt_ap->tv_sec) continue;
}

Expand Down

0 comments on commit 9eb9053

Please sign in to comment.