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 208511 Details for
Bug 296371
CVE-2007-4924 ekiga remote crash caused by insufficient input validation
[?]
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 backported from CVS.
opal-CVE-2007-4924.patch (text/plain), 1.02 KB, created by
Tomas Hoger
on 2007-09-27 15:18:20 UTC
(
hide
)
Description:
Patch backported from CVS.
Filename:
MIME Type:
Creator:
Tomas Hoger
Created:
2007-09-27 15:18:20 UTC
Size:
1.02 KB
patch
obsolete
>diff -pruN opal-2.2.2.orig/src/sip/sippdu.cxx opal-2.2.2/src/sip/sippdu.cxx >--- opal-2.2.2.orig/src/sip/sippdu.cxx 2006-05-06 18:05:13.000000000 +0200 >+++ opal-2.2.2/src/sip/sippdu.cxx 2007-09-27 16:49:33.000000000 +0200 >@@ -650,7 +650,7 @@ OpalTransportAddress SIPURL::GetHostAddr > else > addr += hostname; > >- if (port != 0) >+ if (port > 0) > addr.sprintf(":%u", port); > > return addr; >@@ -1751,6 +1751,17 @@ BOOL SIP_PDU::Read(OpalTransport & trans > > // get the SDP content > PINDEX contentLength = mime.GetContentLength(); >+ >+ // assume entity bodies can't be longer than a UDP packet >+ if (contentLength > 1500) { >+ PTRACE(2, "SIP\tImplausibly long Content-Length " << contentLength << " received on " << transport); >+ return FALSE; >+ } >+ else if (contentLength < 0) { >+ PTRACE(2, "SIP\tImpossible negative Content-Length on " << transport); >+ return FALSE; >+ } >+ > if (contentLength > 0) > transport.read(entityBody.GetPointer(contentLength+1), contentLength); > entityBody[contentLength] = '\0';
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 296371
: 208511