diff options
author | brnrd <brnrd@FreeBSD.org> | 2016-09-14 15:28:07 +0800 |
---|---|---|
committer | brnrd <brnrd@FreeBSD.org> | 2016-09-14 15:28:07 +0800 |
commit | 02176491fc6763a4a015bb2b9e748c058c10b23e (patch) | |
tree | 25bc33d943c399e38dd2a58cd0572df9d9b986c1 | |
parent | 53ca06f9ee4f983e608d7b36d0227d79d0d24e91 (diff) | |
download | freebsd-ports-graphics-02176491fc6763a4a015bb2b9e748c058c10b23e.tar.gz freebsd-ports-graphics-02176491fc6763a4a015bb2b9e748c058c10b23e.tar.zst freebsd-ports-graphics-02176491fc6763a4a015bb2b9e748c058c10b23e.zip |
ftp/curl: Document integer overflow vuln
-rw-r--r-- | security/vuxml/vuln.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/security/vuxml/vuln.xml b/security/vuxml/vuln.xml index 1757d40dbf2..9b336446a90 100644 --- a/security/vuxml/vuln.xml +++ b/security/vuxml/vuln.xml @@ -58,6 +58,41 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> <vuxml xmlns="http://www.vuxml.org/apps/vuxml-1"> + <vuln vid="b018121b-7a4b-11e6-bf52-b499baebfeaf"> + <topic>cURL -- Escape and unescape integer overflows</topic> + <affects> + <package> + <name>curl</name> + <range><ge>7.11.1</ge></range> + <range><lt>7.50.3</lt></range> + </package> + </affects> + <description> + <body xmlns="http://www.w3.org/1999/xhtml"> + <p>The cURL project reports</p> + <blockquote cite="https://curl.haxx.se/docs/adv_20160914.html"> + <p>The four libcurl functions curl_escape(), curl_easy_escape(), + curl_unescape and curl_easy_unescape perform string URL percent + escaping and unescaping. They accept custom string length inputs + in signed integer arguments.</p> + <p>The provided string length arguments were not properly checked + and due to arithmetic in the functions, passing in the length + 0xffffffff (2^32-1 or UINT_MAX or even just -1) would end up + causing an allocation of zero bytes of heap memory that curl + would attempt to write gigabytes of data into.</p> + </blockquote> + </body> + </description> + <references> + <url>https://curl.haxx.se/docs/adv_20160914.html</url> + <cvename>CVE-2016-7167</cvename> + </references> + <dates> + <discovery>2016-09-14</discovery> + <entry>2016-09-14</entry> + </dates> + </vuln> + <vuln vid="769ba449-79e1-11e6-bf75-3065ec8fd3ec"> <topic>chromium -- multiple vulnerabilities</topic> <affects> |