Vulnerabilities > CVE-2009-1556 - Information Exposure vulnerability in Cisco Wvc54Gca 1.00R22/1.00R24

047910
CVSS 0.0 - NONE
Attack vector
UNKNOWN
Attack complexity
UNKNOWN
Privileges required
UNKNOWN
Confidentiality impact
UNKNOWN
Integrity impact
UNKNOWN
Availability impact
UNKNOWN

Summary

img/main.cgi on the Cisco Linksys WVC54GCA wireless video camera with firmware 1.00R22 and 1.00R24 allows remote authenticated users to read arbitrary files in img/ via a filename in the next_file parameter, as demonstrated by reading .htpasswd to obtain the admin password, a different vulnerability than CVE-2004-2507.

Vulnerable Configurations

Part Description Count
Hardware
Cisco
2

Common Weakness Enumeration (CWE)

Common Attack Pattern Enumeration and Classification (CAPEC)

  • Subverting Environment Variable Values
    The attacker directly or indirectly modifies environment variables used by or controlling the target software. The attacker's goal is to cause the target software to deviate from its expected operation in a manner that benefits the attacker.
  • Footprinting
    An attacker engages in probing and exploration activity to identify constituents and properties of the target. Footprinting is a general term to describe a variety of information gathering techniques, often used by attackers in preparation for some attack. It consists of using tools to learn as much as possible about the composition, configuration, and security mechanisms of the targeted application, system or network. Information that might be collected during a footprinting effort could include open ports, applications and their versions, network topology, and similar information. While footprinting is not intended to be damaging (although certain activities, such as network scans, can sometimes cause disruptions to vulnerable applications inadvertently) it may often pave the way for more damaging attacks.
  • Exploiting Trust in Client (aka Make the Client Invisible)
    An attack of this type exploits a programs' vulnerabilities in client/server communication channel authentication and data integrity. It leverages the implicit trust a server places in the client, or more importantly, that which the server believes is the client. An attacker executes this type of attack by placing themselves in the communication channel between client and server such that communication directly to the server is possible where the server believes it is communicating only with a valid client. There are numerous variations of this type of attack.
  • Browser Fingerprinting
    An attacker carefully crafts small snippets of Java Script to efficiently detect the type of browser the potential victim is using. Many web-based attacks need prior knowledge of the web browser including the version of browser to ensure successful exploitation of a vulnerability. Having this knowledge allows an attacker to target the victim with attacks that specifically exploit known or zero day weaknesses in the type and version of the browser used by the victim. Automating this process via Java Script as a part of the same delivery system used to exploit the browser is considered more efficient as the attacker can supply a browser fingerprinting method and integrate it with exploit code, all contained in Java Script and in response to the same web page request by the browser.
  • Session Credential Falsification through Prediction
    This attack targets predictable session ID in order to gain privileges. The attacker can predict the session ID used during a transaction to perform spoofing and session hijacking.

Nessus

NASL familyCGI abuses
NASL idCISCO_WVC54GCA_INFO_DISCLOSURE.NASL
descriptionThe remote host is a Linksys WVC54GCA network camera. The version of the firmware of the remote camera contains a flaw that allows authenticated users to download the .htpasswd file from the remote host, which gives them the ability to crack the passwords of other users, including the password of the administrator.
last seen2020-06-01
modified2020-06-02
plugin id38152
published2009-04-24
reporterThis script is Copyright (C) 2009-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/38152
titleLinksys WVC54GCA Wireless-G '/img/main.cgi' Information Disclosure
code
#
# (C) Tenable Network Security, Inc.
# 

include("compat.inc");

if(description)
{
 script_id(38152);
 script_version("1.14");
 script_cvs_date("Date: 2018/11/15 20:50:16");

 script_cve_id("CVE-2009-1556");
 script_bugtraq_id(34629);
 
 script_name(english:"Linksys WVC54GCA Wireless-G '/img/main.cgi' Information Disclosure");
 script_summary(english:"Determine if the remote network camera is vulnerable to a flaw");

 script_set_attribute(attribute:"synopsis", value: 
"Authenticated users can elevate their privileges on the remote network
camera.");
 script_set_attribute(attribute:"description", value:
"The remote host is a Linksys WVC54GCA network camera. 

The version of the firmware of the remote camera contains a flaw that
allows authenticated users to download the .htpasswd file from the
remote host, which gives them the ability to crack the passwords of
other users, including the password of the administrator.");
 script_set_attribute(attribute:"solution", value:"Contact your vendor for a patch.");
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:S/C:C/I:N/A:N");
 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_cwe_id(200);
 script_set_attribute(attribute:"see_also", value:"https://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-2/");

 script_set_attribute(attribute:"plugin_publication_date", value: "2009/04/24");

 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_set_attribute(attribute:"cpe",value:"cpe:/h:cisco:wvc54gca");
 script_end_attributes();
 
 script_category(ACT_ATTACK);
 script_family(english:"CGI abuses");
 script_copyright(english:"This script is Copyright (C) 2009-2018 Tenable Network Security, Inc.");

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

#
# The script code starts here
#

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

port = get_http_port(default:80, embedded: 1);
if (!  port ) exit(0);
str = get_kb_item('www/'+port+'/webcam');
if ( ! str ) exit(0);
if ( 'WVC54GCA' >!< str ) exit(0);

# We can't test /img/main.cgi since it's password protected
# however /main.cgi contains the same flaw

# If the camera is not password protected, there's not much info to get
url = "/img/main.cgi";
res = http_send_recv3(method:"GET", item:url, port:port);
if ( isnull(res) ) exit(0);
if ( " 401 " >!< res[2] ) exit(0);

#
# The camera replies with a 200 code OK but the file content 
# contains a 403 error code
#
url = "/main.cgi?next_file=.foo";
res = http_send_recv3(method:"GET", item:url, port:port);
if ( isnull(res) ) exit(0);
if ( " 403 " >< res[2] ) exit(0);

url = "/main.cgi?next_file=%2efoo";
res = http_send_recv3(method:"GET", item:url, port:port);
if ( isnull(res) ) exit(0);
if ( " 403 " >!< res[2]  && ".foo" >< res[2] ) security_warning(port);