Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 255061 Details for
Bug 371221
CVE-2007-5395 link-grammar buffer overflow in tokenize.c
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Upstream patch
CVE-2007-5395.patch (text/plain), 2.79 KB, created by
Tomas Hoger
on 2007-11-12 10:02:27 UTC
(
hide
)
Description:
Upstream patch
Filename:
MIME Type:
Creator:
Tomas Hoger
Created:
2007-11-12 10:02:27 UTC
Size:
2.79 KB
patch
obsolete
>diff -u -r1.3 -r1.4 >--- link-grammar/tokenize.c 16 Aug 2006 17:07:02 -0000 1.3 >+++ link-grammar/tokenize.c 27 Oct 2007 19:03:40 -0000 1.4 >@@ -172,7 +172,8 @@ > used in a sentence. > */ > >- >+#undef MIN >+#define MIN(a, b) (((a) < (b)) ? (a) : (b)) > > static int separate_word(Sentence sent, char *w, char *wend, int is_first_word, int quote_found) { > /* w points to a string, wend points to the char one after the end. The >@@ -256,8 +257,8 @@ > > for (n_r_stripped = 0; n_r_stripped < MAX_STRIP; n_r_stripped++) { > >- strncpy(word, w, wend-w); >- word[wend-w] = '\0'; >+ strncpy(word, w, MIN(wend-w, MAX_WORD)); >+ word[MIN(wend-w, MAX_WORD)] = '\0'; > if (wend == w) break; /* it will work without this */ > > if (boolean_dictionary_lookup(sent->dict, word) || is_initials_word(word)) break; >@@ -285,8 +286,8 @@ > /* Now we strip off suffixes...w points to the remaining word, "wend" to the end of the word. */ > > s_stripped = -1; >- strncpy(word, w, wend-w); >- word[wend-w] = '\0'; >+ strncpy(word, w, MIN(wend-w, MAX_WORD)); >+ word[MIN(wend-w, MAX_WORD)] = '\0'; > word_is_in_dict=0; > > if (boolean_dictionary_lookup(sent->dict, word) || is_initials_word(word)) word_is_in_dict=1; >@@ -309,16 +310,16 @@ > > if(s_ok==1 || i==s_strippable) { > >- strncpy(newword, w, (wend-len)-w); >- newword[(wend-len)-w] = '\0'; >+ strncpy(newword, w, MIN((wend-len)-w, MAX_WORD)); >+ newword[MIN((wend-len)-w, MAX_WORD)] = '\0'; > > /* Check if the remainder is in the dictionary; for the no-suffix case, it won't be */ > if (boolean_dictionary_lookup(sent->dict, newword)) { > if(verbosity>1) if(i< s_strippable) printf("Splitting word into two: %s-%s\n", newword, suffix[i]); > s_stripped = i; > wend -= len; >- strncpy(word, w, wend-w); >- word[wend-w] = '\0'; >+ strncpy(word, w, MIN(wend-w, MAX_WORD)); >+ word[MIN(wend-w, MAX_WORD)] = '\0'; > break; > } > >@@ -326,17 +327,17 @@ > else { > for (j=0; j<p_strippable; j++) { > if (strncmp(w, prefix[j], strlen(prefix[j])) == 0) { >- strncpy(newword, w+strlen(prefix[j]), (wend-len)-(w+strlen(prefix[j]))); >- newword[(wend-len)-(w+strlen(prefix[j]))]='\0'; >+ strncpy(newword, w+strlen(prefix[j]), MIN((wend-len)-(w+strlen(prefix[j])), MAX_WORD)); >+ newword[MIN((wend-len)-(w+strlen(prefix[j])), MAX_WORD)]='\0'; > if(boolean_dictionary_lookup(sent->dict, newword)) { > if(verbosity>1) if(i < s_strippable) printf("Splitting word into three: %s-%s-%s\n", prefix[j], newword, suffix[i]); > if (!issue_sentence_word(sent, prefix[j])) return FALSE; > if(i < s_strippable) s_stripped = i; > wend -= len; > w += strlen(prefix[j]); >- strncpy(word, w, wend-w); >- word[wend-w] = '\0'; >- break; >+ strncpy(word, w, MIN(wend-w, MAX_WORD)); >+ word[MIN(wend-w, MAX_WORD)] = '\0'; >+ break; > } > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 371221
: 255061