Lucene search

K
nessusThis script is Copyright (C) 2003-2018 Tenable Network Security, Inc.MOD_MYLO_OVERFLOW.NASL
HistoryJul 28, 2003 - 12:00 a.m.

mod_mylo for Apache mylo_log Logging Function HTTP GET Overflow

2003-07-2800:00:00
This script is Copyright (C) 2003-2018 Tenable Network Security, Inc.
www.tenable.com
26

According to the banner, the remote host is using a vulnerable version of mylo_log, a MySQL logging module for Apache. Such versions have a buffer overflow vulnerability which could result in arbitrary code execution.

#
# (C) Tenable Network Security, Inc.
#

# The overflow occurs *after* the server replied to us, so it can only
# be detected using the banner of the server
#

include("compat.inc");

if(description)
{
 script_id(11809);
 script_version("1.22");
 script_cve_id("CVE-2003-0651");
 script_bugtraq_id(8287);
  script_xref(name:"EDB-ID", value:"67");
 script_xref(name:"Secunia", value:"9375");
 
 script_name(english:"mod_mylo for Apache mylo_log Logging Function HTTP GET Overflow");
 script_summary(english:"Checks for version of mod_mylo");

 script_set_attribute(
   attribute:"synopsis",
   value:"The remote web server module has a buffer overflow vulnerability."
 );
 script_set_attribute( attribute:"description",  value:
"According to the banner, the remote host is using a vulnerable
version of mylo_log, a MySQL logging module for Apache.  Such
versions have a buffer overflow vulnerability which could result
in arbitrary code execution." );
 script_set_attribute(
   attribute:"see_also",
   value:"https://seclists.org/bugtraq/2003/Jul/80"
 );
 script_set_attribute(
   attribute:"solution", 
   value:"Upgrade to mod_mylo 0.2.2 or later."
 );
  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:H/RL:OF/RC:C");
  script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"true");
  script_set_attribute(attribute:"exploited_by_malware", value:"true");
 script_set_attribute(attribute:"plugin_publication_date", value: "2003/07/28");
 script_set_attribute(attribute:"vuln_publication_date", value: "2003/07/28");
 script_cvs_date("Date: 2018/11/15 20:50:25");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_end_attributes();

 script_category(ACT_GATHER_INFO);
 script_family(english:"Web Servers");

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

 script_dependencie("http_version.nasl", "find_service1.nasl", "no404.nasl");
 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);
banner = get_http_banner(port:port);
if(!banner)exit(0);

serv = strstr(banner, "Server:");
if(ereg(pattern:".*Mylo/(0\.[0-2]).*", string:serv))
{
  security_hole(port);
}
Related for MOD_MYLO_OVERFLOW.NASL