Lucene search

K
openvasCopyright (C) 2012 Greenbone Networks GmbHOPENVAS:802745
HistoryApr 12, 2012 - 12:00 a.m.

Joomla Estate Agent Component 'id' Parameter SQL Injection Vulnerability

2012-04-1200:00:00
Copyright (C) 2012 Greenbone Networks GmbH
plugins.openvas.org
13

EPSS

0.001

Percentile

27.8%

This host is running Joomla The Estate Agent component and is prone
to SQL injection vulnerability.

##############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_joomla_com_estateagent_sql_inj_vuln.nasl 6022 2017-04-25 12:51:04Z teissa $
#
# Joomla Estate Agent Component 'id' Parameter SQL Injection Vulnerability
#
# Authors:
# Madhuri D <[email protected]>
#
# Copyright:
# Copyright (c) 2012 Greenbone Networks GmbH, http://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################

tag_impact = "Successful exploitation will let attackers to manipulate SQL
queries by injecting arbitrary SQL code.

Impact Level: Application";

tag_affected = "Joomla The Estate Agent Component";

tag_insight = "The flaw is due to an input passed via the 'id' parameter to
'index.php' (when 'option' is set to 'com_estateagent') is not properly
sanitised before being used in an SQL query.";

tag_solution = "No solution or patch was made available for at least one year
since disclosure of this vulnerability. Likely none will be provided anymore.
General solution options are to upgrade to a newer release, disable respective
features, remove the product or replace the product by another one.";

tag_summary = "This host is running Joomla The Estate Agent component and is prone
to SQL injection vulnerability.";

if(description)
{
  script_id(802745);
  script_version("$Revision: 6022 $");
  script_cve_id("CVE-2011-4571");
  script_bugtraq_id(50024, 52963);
  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_name("Joomla Estate Agent Component 'id' Parameter SQL Injection Vulnerability");
  script_tag(name:"last_modification", value:"$Date: 2017-04-25 14:51:04 +0200 (Tue, 25 Apr 2017) $");
  script_tag(name:"creation_date", value:"2012-04-12 18:02:44 +0530 (Thu, 12 Apr 2012)");
  script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/70444");
  script_xref(name : "URL" , value : "http://www.exploit-db.com/exploits/18728/");
  script_xref(name : "URL" , value : "http://www.securityfocus.com/bid/50024/info");
  script_xref(name : "URL" , value : "http://packetstormsecurity.org/files/111749/joomlatheestateagent-sql.txt");
  script_xref(name : "URL" , value : "http://www.sectechno.com/2012/04/11/sql-injection-in-joomla-com_estateagent/");

  script_category(ACT_ATTACK);
  script_tag(name:"qod_type", value:"remote_active");
  script_copyright("Copyright (C) 2012 Greenbone Networks GmbH");
  script_family("Web application abuses");
  script_dependencies("joomla_detect.nasl");
  script_require_ports("Services/www", 80);
  script_require_keys("joomla/installed");
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name:"solution_type", value:"WillNotFix");
  exit(0);
}


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

## Variable Initialization
joomlaPort = 0;
joomlaDir = "";
url = "";

## Get the port
joomlaPort = get_http_port(default:80);
if(!joomlaPort){
  exit(0);
}

## Check Host Supports PHP
if(!can_host_php(port:joomlaPort)){
  exit(0);
}

## Get the application directory
if(!joomlaDir = get_dir_from_kb(port:joomlaPort, app:"joomla")){
  exit(0);
}

## Construct attack request
url = string(joomlaDir, "/index.php?option=com_estateagent&Itemid=47&act=" +
                        "object&task=showEO&id='");

## Check the response to confirm vulnerability
if(http_vuln_check(port:joomlaPort, url:url, pattern:"Invalid argument " +
             "supplied for foreach\(\)|You have an error in your SQL syntax;",
             extra_check:"[j|J]oomla", check_header:TRUE)){
  security_message(joomlaPort);
}

EPSS

0.001

Percentile

27.8%