CVE Vulnerabilities

CVE-2011-3000

Improper Control of Generation of Code ('Code Injection')

Published: Sep 29, 2011 | Modified: Apr 11, 2025
CVSS 3.x
N/A
Source:
NVD
CVSS 2.x
4.3 MEDIUM
AV:N/AC:M/Au:N/C:N/I:P/A:N
RedHat/V2
6.8 CRITICAL
AV:N/AC:M/Au:N/C:P/I:P/A:P
RedHat/V3
Ubuntu
MEDIUM

Mozilla Firefox before 3.6.23 and 4.x through 6, Thunderbird before 7.0, and SeaMonkey before 2.4 do not properly handle HTTP responses that contain multiple Location, Content-Length, or Content-Disposition headers, which makes it easier for remote attackers to conduct HTTP response splitting attacks via crafted header values.

Weakness

The product constructs all or part of a code segment using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the syntax or behavior of the intended code segment.

Affected Software

Name Vendor Start Version End Version
Firefox Mozilla * 3.6.22 (including)
Firefox Mozilla 3.6 (including) 3.6 (including)
Firefox Mozilla 3.6.2 (including) 3.6.2 (including)
Firefox Mozilla 3.6.3 (including) 3.6.3 (including)
Firefox Mozilla 3.6.4 (including) 3.6.4 (including)
Firefox Mozilla 3.6.6 (including) 3.6.6 (including)
Firefox Mozilla 3.6.7 (including) 3.6.7 (including)
Firefox Mozilla 3.6.8 (including) 3.6.8 (including)
Firefox Mozilla 3.6.9 (including) 3.6.9 (including)
Firefox Mozilla 3.6.10 (including) 3.6.10 (including)
Firefox Mozilla 3.6.11 (including) 3.6.11 (including)
Firefox Mozilla 3.6.12 (including) 3.6.12 (including)
Firefox Mozilla 3.6.13 (including) 3.6.13 (including)
Firefox Mozilla 3.6.14 (including) 3.6.14 (including)
Firefox Mozilla 3.6.15 (including) 3.6.15 (including)
Firefox Mozilla 3.6.16 (including) 3.6.16 (including)
Firefox Mozilla 3.6.17 (including) 3.6.17 (including)
Firefox Mozilla 3.6.18 (including) 3.6.18 (including)
Firefox Mozilla 3.6.19 (including) 3.6.19 (including)
Firefox Mozilla 3.6.20 (including) 3.6.20 (including)
Firefox Mozilla 3.6.21 (including) 3.6.21 (including)
Red Hat Enterprise Linux 4 RedHat firefox-0:3.6.23-1.el4 *
Red Hat Enterprise Linux 5 RedHat firefox-0:3.6.23-2.el5_7 *
Red Hat Enterprise Linux 5 RedHat xulrunner-0:1.9.2.23-1.el5_7 *
Red Hat Enterprise Linux 6 RedHat firefox-0:3.6.23-2.el6_1 *
Red Hat Enterprise Linux 6 RedHat xulrunner-0:1.9.2.23-1.el6_1.1 *
Red Hat Enterprise Linux 6 RedHat thunderbird-0:3.1.15-1.el6_1 *
Firefox Ubuntu hardy *
Firefox Ubuntu lucid *
Firefox Ubuntu maverick *
Firefox Ubuntu natty *
Firefox Ubuntu upstream *
Firefox-3.0 Ubuntu hardy *
Seamonkey Ubuntu hardy *
Seamonkey Ubuntu lucid *
Seamonkey Ubuntu maverick *
Seamonkey Ubuntu natty *
Seamonkey Ubuntu upstream *
Thunderbird Ubuntu hardy *
Thunderbird Ubuntu lucid *
Thunderbird Ubuntu maverick *
Thunderbird Ubuntu natty *
Thunderbird Ubuntu upstream *
Xulrunner-1.9.2 Ubuntu hardy *
Xulrunner-1.9.2 Ubuntu lucid *
Xulrunner-1.9.2 Ubuntu maverick *
Xulrunner-1.9.2 Ubuntu natty *
Xulrunner-1.9.2 Ubuntu upstream *
Xulrunner-2.0 Ubuntu natty *
Xulrunner-2.0 Ubuntu upstream *

Potential Mitigations

  • Run your code in a “jail” or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which code can be executed by your product.
  • Examples include the Unix chroot jail and AppArmor. In general, managed code may provide some protection.
  • This may not be a feasible solution, and it only limits the impact to the operating system; the rest of your application may still be subject to compromise.
  • Be careful to avoid CWE-243 and other weaknesses related to jails.
  • Assume all input is malicious. Use an “accept known good” input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does.
  • When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, “boat” may be syntactically valid because it only contains alphanumeric characters, but it is not valid if the input is only expected to contain colors such as “red” or “blue.”
  • Do not rely exclusively on looking for malicious or malformed inputs. This is likely to miss at least one undesirable input, especially if the code’s environment changes. This can give attackers enough room to bypass the intended validation. However, denylists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.
  • To reduce the likelihood of code injection, use stringent allowlists that limit which constructs are allowed. If you are dynamically constructing code that invokes a function, then verifying that the input is alphanumeric might be insufficient. An attacker might still be able to reference a dangerous function that you did not intend to allow, such as system(), exec(), or exit().
  • For Python programs, it is frequently encouraged to use the ast.literal_eval() function instead of eval, since it is intentionally designed to avoid executing code. However, an adversary could still cause excessive memory or stack consumption via deeply nested structures [REF-1372], so the python documentation discourages use of ast.literal_eval() on untrusted data [REF-1373].

References