Vulnerabilities > CVE-2007-2964 - Remote Denial of Service vulnerability in F-Secure Policy Manager FSMSH.DLL

047910
CVSS 5.0 - MEDIUM
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
NONE
Integrity impact
NONE
Availability impact
PARTIAL
network
low complexity
f-secure
nessus
exploit available

Summary

The fsmsh.dll host module in F-Secure Policy Manager Server 7.00 and earlier allows remote attackers to cause a denial of service (application crash) via NTFS reserved words in filenames in URLs.

Vulnerable Configurations

Part Description Count
Application
F-Secure
1

Exploit-Db

descriptionF-Secure Policy Manager. CVE-2007-2964. Dos exploit for windows platform
idEDB-ID:30104
last seen2016-02-03
modified2007-05-30
published2007-05-30
reporterDavid Maciejak
sourcehttps://www.exploit-db.com/download/30104/
titleF-Secure Policy Manager 7.00 - FSMSH.DLL Remote Denial of Service Vulnerability

Nessus

NASL familyDenial of Service
NASL idFS_POLICY_MANAGER_7_DOS.NASL
descriptionThe remote host is running a version a F-Secure Policy Manager Server that is vulnerable to a denial of service. A malicious user can forge a request to query a MS-DOS device name through the
last seen2020-06-01
modified2020-06-02
plugin id25402
published2007-06-04
reporterThis script is Copyright (C) 2007-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/25402
titleF-Secure Policy Manager Server fsmsh.dll module DoS
code
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
 script_id(25402);
 script_version("1.15");
 script_set_attribute(attribute:"plugin_modification_date", value:"2020/06/12");

 script_cve_id("CVE-2007-2964");
 script_bugtraq_id(24233);

 script_name(english:"F-Secure Policy Manager Server fsmsh.dll module DoS");

 script_set_attribute(attribute:"synopsis", value:
"The remote host is an F-Secure Policy Manager Server." );
 script_set_attribute(attribute:"description", value:
"The remote host is running a version a F-Secure Policy Manager Server
that is vulnerable to a denial of service. 

A malicious user can forge a request to query a MS-DOS device name
through the 'fsmsh.dll' CGI module, which will prevent legitimate
users from accessing the service using the Manager Console." );
 script_set_attribute(attribute:"see_also", value:"https://www.f-secure.com/en/web/labs_global/security-advisories" );
 script_set_attribute(attribute:"solution", value:
"Upgrade to F-Secure Policy Manager Server 7.01 or later." );
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P");
  script_set_cvss_temporal_vector("CVSS2#E:POC/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:"plugin_publication_date", value: "2007/06/04");
 script_set_attribute(attribute:"vuln_publication_date", value: "2007/05/29");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_set_attribute(attribute:"cpe",value:"cpe:/a:f-secure:policy_manager");

 script_end_attributes();

 script_summary(english:"Detects F-Secure Policy Manager DoS flaw");

 script_category(ACT_GATHER_INFO);
 script_copyright(english:"This script is Copyright (C) 2007-2020 Tenable Network Security, Inc.");
 script_family(english:"Denial of Service");

 script_dependencies("http_version.nasl", "os_fingerprint.nasl");
 script_require_ports("Services/www", 80);
 exit(0);
}

include("http_func.inc");
include("http_keepalive.inc");

os = get_kb_item("Host/OS/icmp");
if (!os || "Windows" >!< os) exit(0);

port = get_http_port(default:80, embedded:TRUE);
if (!port) exit(0);
if(!get_port_state(port))exit(0);

# only check FSMSH.DLL version
buf = http_get(item:"/fsms/fsmsh.dll?FSMSCommand=GetVersion", port:port);
r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
if( r == NULL )exit(0);

if (r =~ "^([0-6]\.|7\.00)") security_warning(port);