Lucene search

K
openvasCopyright (C) 2012 Greenbone Networks GmbHOPENVAS:1361412562310802966
HistorySep 24, 2012 - 12:00 a.m.

PHP 'main/SAPI.c' HTTP Header Injection Vulnerability

2012-09-2400:00:00
Copyright (C) 2012 Greenbone Networks GmbH
plugins.openvas.org
26

CVSS2

4.3

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

AV:N/AC:M/Au:N/C:N/I:P/A:N

AI Score

6.6

Confidence

Low

EPSS

0.014

Percentile

86.6%

PHP is prone to an HTTP header injection vulnerability.

# Copyright (C) 2012 Greenbone Networks GmbH
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.

CPE = "cpe:/a:php:php";

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.802966");
  script_version("2022-04-27T12:01:52+0000");
  script_cve_id("CVE-2012-4388", "CVE-2011-1398");
  script_tag(name:"cvss_base", value:"4.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:P/A:N");
  script_tag(name:"last_modification", value:"2022-04-27 12:01:52 +0000 (Wed, 27 Apr 2022)");
  script_tag(name:"creation_date", value:"2012-09-24 18:58:41 +0530 (Mon, 24 Sep 2012)");
  script_name("PHP 'main/SAPI.c' HTTP Header Injection Vulnerability");

  script_xref(name:"URL", value:"http://openwall.com/lists/oss-security/2012/09/02/1");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/55297");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/55527");
  script_xref(name:"URL", value:"http://openwall.com/lists/oss-security/2012/09/07/3");
  script_xref(name:"URL", value:"http://article.gmane.org/gmane.comp.php.devel/70584");
  script_xref(name:"URL", value:"http://openwall.com/lists/oss-security/2012/09/05/15");
  script_xref(name:"URL", value:"http://security-tracker.debian.org/tracker/CVE-2012-4388");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2012 Greenbone Networks GmbH");
  script_family("Web application abuses");
  script_dependencies("secpod_php_smb_login_detect.nasl", "gb_php_http_detect.nasl", "os_detection.nasl");
  script_mandatory_keys("php/detected", "Host/runs_windows");

  script_tag(name:"impact", value:"Successful exploitation could allows remote attackers to insert arbitrary
  headers, conduct cross-site request-forgery, cross-site scripting,
  HTML-injection, and other attacks.");

  script_tag(name:"affected", value:"PHP version prior to 5.3.11, PHP version 5.4.x through 5.4.0RC2 on Windows");

  script_tag(name:"insight", value:"The sapi_header_op function in main/SAPI.c in PHP does not properly determine
  a pointer during checks for %0D sequences.");

  script_tag(name:"solution", value:"Update to PHP 5.4.1 RC1 or later.");

  script_tag(name:"summary", value:"PHP is prone to an HTTP header injection vulnerability.");

  script_tag(name:"qod_type", value:"remote_banner");
  script_tag(name:"solution_type", value:"VendorFix");

  exit(0);
}

include("version_func.inc");
include("host_details.inc");

if(isnull(port = get_app_port(cpe:CPE)))
  exit(0);

if(!vers = get_app_version(cpe:CPE, port:port))
  exit(0);

## To check PHP version
if(version_is_less(version:vers, test_version:"5.3.11") ||
   version_in_range(version:vers, test_version:"5.4.0", test_version2:"5.4.0.rc2")){
  report = report_fixed_ver(installed_version:vers, fixed_version:"5.3.11/5.4.1 RC1");
  security_message(data:report, port:port);
  exit(0);
}

exit(99);

CVSS2

4.3

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

AV:N/AC:M/Au:N/C:N/I:P/A:N

AI Score

6.6

Confidence

Low

EPSS

0.014

Percentile

86.6%