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 831533 Details for
Bug 1036619
CVE-2013-6050 links: integer overflow in parsing of HTML tables
[?]
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 this vulnerability.
links_html_tbl.patch (text/plain), 875 bytes, created by
Ratul Gupta
on 2013-12-02 11:23:31 UTC
(
hide
)
Description:
Patch for this vulnerability.
Filename:
MIME Type:
Creator:
Ratul Gupta
Created:
2013-12-02 11:23:31 UTC
Size:
875 bytes
patch
obsolete
>Description: Fix integer overflow in graphics mode (CVE-2013-6050) >Author: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> >Bug-CVE: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6050 > >Index: links2/html_tbl.c >=================================================================== >--- links2.orig/html_tbl.c 2013-11-28 21:56:34.000000000 +0100 >+++ links2/html_tbl.c 2013-11-28 21:56:34.000000000 +0100 > -1561,6 +1561,10 @@ > void add_to_rect_sets(struct rect_set ***s, int *n, struct rect *r) > { > int i, j; >+ if (r->y1 < 0 || r->y2 < 0) { >+ error((unsigned char *)"add_to_cell_sets: integer overflow: %d, %d", r->y1, r->y2); >+ fatal_tty_exit(); >+ } > for (i = r->y1 >> RECT_BOUND_BITS; i <= (r->y2 - 1) >> RECT_BOUND_BITS; i++) { > if (i >= *n) { > struct rect_set **ns;
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 1036619
: 831533