gnu: Add kafs-client
[jackhill/guix/guix.git] / gnu / packages / patches / wordnet-CVE-2008-2149.patch
CommitLineData
c1dbd3a8
EF
1Fix CVE-2008-2149: buffer overflows by limiting the length of the string in sprintf
2format string
3Closes: #481186 (CVE-2008-2149)
4Please note: The WordNet code contains several other occurences of potentially
5exploitable functions like strcpy()/strcat()/... and so even if there are no
6known exploits the code needs a full security audit.
7
8--- a/src/wn.c
9+++ b/src/wn.c
10@@ -206,7 +206,8 @@ static int searchwn(int ac, char *av[])
11 outsenses += do_search(av[1], optptr->pos, optptr->search,
12 whichsense, optptr->label);
13 } else {
14- sprintf(tmpbuf, "wn: invalid search option: %s\n", av[j]);
15+ /* Fix CVE-2008-2149: buffer overflows Andreas Tille <tille@debian.org> */
16+ sprintf(tmpbuf, "wn: invalid search option: %.200s\n", av[j]);
17 display_message(tmpbuf);
18 errcount++;
19 }