| Reporter | Title | Published | Views | Family All 5 |
|---|---|---|---|---|
| CVE-2012-3295 | 29 Aug 201222:00 | – | cve | |
| CVE-2012-3295 | 29 Aug 201222:00 | – | cvelist | |
| EUVD-2012-3273 | 7 Oct 202500:30 | – | euvd | |
| CVE-2012-3295 | 29 Aug 201222:55 | – | nvd | |
| Security feature bypass | 29 Aug 201222:55 | – | prion |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(62120);
script_version("1.7");
script_cvs_date("Date: 2018/11/15 20:50:29");
script_cve_id("CVE-2012-3295");
script_bugtraq_id(54664);
script_name(english:"IBM WebSphere MQ 7.1 < 7.1.0.1 MQ SVRCONN Channels Security Configuration Bypass");
script_summary(english:"Checks the version of IBM WebSphere MQ.");
script_set_attribute(attribute:"synopsis", value:
"The remote Windows host has a service installed that is affected by a
security bypass vulnerability.");
script_set_attribute(attribute:"description", value:
"The version of IBM WebSphere MQ server 7.1 installed on the remote
Windows host is missing fix pack 7.1.0.1 or later. It is, therefore,
affected by a vulnerability where client applications can bypass the
security configuration setup on an MQ SVRCONN channel, allowing
unauthorized users access to the queue manager.");
script_set_attribute(attribute:"see_also", value:"https://www-01.ibm.com/support/docview.wss?uid=swg21595523");
script_set_attribute(attribute:"see_also", value:"http://www-01.ibm.com/support/docview.wss?uid=swg24032120");
script_set_attribute(attribute:"solution", value:"Apply fix pack 7.1.0.1 or later.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:P/I:N/A:N");
script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_set_attribute(attribute:"exploit_available", value:"false");
script_set_attribute(attribute:"vuln_publication_date", value:"2012/07/24");
script_set_attribute(attribute:"patch_publication_date", value:"2012/06/01");
script_set_attribute(attribute:"plugin_publication_date", value:"2012/09/17");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/a:ibm:websphere_mq");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Windows");
script_copyright(english:"This script is Copyright (C) 2012-2018 Tenable Network Security, Inc.");
script_dependencies("websphere_mq_installed.nasl");
script_require_keys("installed_sw/IBM WebSphere MQ");
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("install_func.inc");
app_name = "IBM WebSphere MQ";
install = get_single_install(app_name:app_name, exit_if_unknown_ver:TRUE);
version = install['version'];
path = install['path'];
type = install['Type'];
fix = FALSE;
fixes = make_array(
"^7\.1\.0\.", "7.1.0.1"
);
# Only server
if (tolower(type) != "server")
audit(AUDIT_HOST_NOT,app_name+" Server");
# Find the fix for our version
foreach fixcheck (keys(fixes))
{
if(version =~ fixcheck)
{
fix = fixes[fixcheck];
break;
}
}
# Version not affected
if(!fix)
audit(AUDIT_INST_PATH_NOT_VULN, app_name, version, path);
# Check affected version
if(ver_compare(ver:version, fix:fix, strict:FALSE) == -1)
{
port = get_kb_item("SMB/transport");
if (!port) port = 445;
if (report_verbosity > 0)
{
report =
'\n Path : ' + path +
'\n Installed version : ' + version +
'\n Fixed version : ' + fix +
'\n';
security_warning(extra:report, port:port);
}
else security_warning(port);
}
else audit(AUDIT_INST_PATH_NOT_VULN, app_name, version, path);
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation