Skip to content

Commit

Permalink
- Fix CVE-2024-1931, Denial of service when trimming EDE text on
Browse files Browse the repository at this point in the history
  positive replies.
  • Loading branch information
wcawijngaards committed Mar 7, 2024
1 parent 13e10ae commit 5b37cd6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions util/data/msgencode.c
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,9 @@ ede_trim_text(struct edns_option** list)
curr->opt_len = 2;
prev = curr;
curr = curr->next;
} else {
prev = curr;
curr = curr->next;
}
} else {
/* continue */
Expand Down

0 comments on commit 5b37cd6

Please sign in to comment.