The target is running IlohaMail that allows web retrieval of sensitive configuration files containing credentials
Source | Link |
---|---|
securityfocus | www.securityfocus.com/bid/12252 |
# SPDX-FileCopyrightText: 2005 George A. Theall
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
CPE = "cpe:/a:ilohamail:ilohamail";
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.16142");
script_version("2023-08-01T13:29:10+0000");
script_tag(name:"last_modification", value:"2023-08-01 13:29:10 +0000 (Tue, 01 Aug 2023)");
script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
script_tag(name:"cvss_base", value:"5.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:N/A:N");
script_xref(name:"URL", value:"http://www.securityfocus.com/bid/12252");
script_name("IlohaMail Readable Configuration Files");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2005 George A. Theall");
script_family("Remote file access");
script_dependencies("ilohamail_detect.nasl");
script_mandatory_keys("ilohamail/detected");
script_tag(name:"solution", value:"Upgrade to IlohaMail version 0.8.14-rc2 or later or
reinstall following the 'Proper Installation' instructions in the INSTALL document.");
script_tag(name:"summary", value:"The target is running at least one instance of IlohaMail that allows
anyone to retrieve its configuration files over the web. These files may contain sensitive information.
For example, conf/conf.inc may hold a username / password used for SMTP authentication.");
script_tag(name:"solution_type", value:"VendorFix");
script_tag(name:"qod_type", value:"remote_vul");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
include("host_details.inc");
if( ! port = get_app_port( cpe:CPE ) ) exit( 0 );
if( ! dir = get_app_location( cpe:CPE, port:port ) ) exit( 0 );
if( dir == "/" ) dir = "";
# If this was a quick & dirty install, try to grab a config file.
if( dir =~ "/source$" ) {
dir = ereg_replace( string:dir, pattern:"/source$", replace:"/conf" );
# nb: conf.inc appears first in 0.7.3; mysqlrc.inc was used as far back as 0.7.0.
foreach config( make_list("conf.inc", "mysqlrc.inc" ) ) {
url = dir + "/" + config;
req = http_get( item:url, port:port );
res = http_keepalive_send_recv( port:port, data:req );
if( ! res ) continue;
# Does it look like PHP code with variable definitions?
if( egrep( string:res, pattern:"<\?php") && egrep( string:res, pattern:"\$[A-Za-z_]+ *= *.+;" ) ) {
report = http_report_vuln_url( port:port, url:url );
security_message( port:port, data:report );
exit( 0 );
}
}
}
exit( 99 );
Transform Your Security Services
Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contact us for a demo and discover the difference comprehensive, actionable intelligence can make in your security strategy.
Book a live demo