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 234291 Details for
Bug 327781
CVE-2007-5365 dhcpd stack-based buffer overlow
[?]
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]
mms checking code backported from dhcp-3.x
dhcp-CVE-2007-5365-dhcp3.diff (text/plain), 763 bytes, created by
Tomas Hoger
on 2007-10-22 17:49:04 UTC
(
hide
)
Description:
mms checking code backported from dhcp-3.x
Filename:
MIME Type:
Creator:
Tomas Hoger
Created:
2007-10-22 17:49:04 UTC
Size:
763 bytes
patch
obsolete
>diff -pruN dhcp-2.0pl5.orig/common/options.c dhcp-2.0pl5.like_dhcp3/common/options.c >--- dhcp-2.0pl5.orig/common/options.c 2000-06-24 09:24:02.000000000 +0200 >+++ dhcp-2.0pl5.like_dhcp3/common/options.c 2007-10-18 17:16:31.000000000 +0200 >@@ -197,9 +197,13 @@ int cons_options (inpacket, outpacket, m > use up to the minimum IP MTU size (576 bytes). */ > /* XXX if a BOOTP client specifies a max message size, we will > honor it. */ >- if (mms) >+ if (mms) { > main_buffer_size = mms - DHCP_FIXED_LEN; >- else if (bootpp) >+ >+ /* Enforce a minimum packet size... */ >+ if (main_buffer_size < (576 - DHCP_FIXED_LEN)) >+ main_buffer_size = 576 - DHCP_FIXED_LEN; >+ } else if (bootpp) > main_buffer_size = 64; > else > main_buffer_size = 576 - DHCP_FIXED_LEN;
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 327781
: 234291