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 144828 Details for
Bug 221459
CVE-2006-6719 Wget attempts to dereference NULL pointer upon response from malicious FTP server
[?]
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]
Patch for CVE-2006-6719 wget flaw
wget-1.10.2-221459.patch (text/plain), 566 bytes, created by
Lubomir Kundrak
on 2007-01-04 18:44:38 UTC
(
hide
)
Description:
Patch for CVE-2006-6719 wget flaw
Filename:
MIME Type:
Creator:
Lubomir Kundrak
Created:
2007-01-04 18:44:38 UTC
Size:
566 bytes
patch
obsolete
>Fixes NULL pointer dereference (CVE-2006-6719) > >--- wget-1.10.2/src/ftp-basic.c.orig 2007-01-04 19:30:31.000000000 +0100 >+++ wget-1.10.2/src/ftp-basic.c 2007-01-04 19:31:48.000000000 +0100 >@@ -1038,7 +1038,9 @@ ftp_syst (int csock, enum stype *server_ > first word of the server response)? */ > request = strtok (NULL, " "); > >- if (!strcasecmp (request, "VMS")) >+ if (request == NULL) >+ *server_type = ST_OTHER; >+ else if (!strcasecmp (request, "VMS")) > *server_type = ST_VMS; > else if (!strcasecmp (request, "UNIX")) > *server_type = ST_UNIX;
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 221459
:
144827
| 144828