| Reporter | Title | Published | Views | Family All 22 |
|---|---|---|---|---|
| SUSE openSUSE Backlink Vulnerability | 3 Apr 202000:00 | – | cnvd | |
| CVE-2020-8015 | 2 Apr 202007:55 | – | cve | |
| CVE-2020-8015 Local privilege escalation in exim package from user mail to root | 2 Apr 202007:55 | – | cvelist | |
| EUVD-2020-28928 | 7 Oct 202500:30 | – | euvd | |
| CVE-2020-8015 | 2 Apr 202008:15 | – | nvd | |
| openSUSE Security Update : exim (openSUSE-2020-491) | 10 Apr 202000:00 | – | nessus | |
| RHEL 5 : exim (Unpatched Vulnerability) | 11 May 202400:00 | – | nessus | |
| Security update for exim (moderate) | 9 Apr 202000:00 | – | opensuse | |
| Security update for exim (critical) | 20 May 202100:00 | – | opensuse | |
| openSUSE: Security Advisory for exim (openSUSE-SU-2020:0491-1) | 10 Apr 202000:00 | – | openvas |
| Source | Link |
|---|---|
| nessus | www.nessus.org/u |
| nessus | www.nessus.org/u |
| nessus | www.nessus.org/u |
| cve | www.cve.mitre.org/cgi-bin/cvename.cgi |
#
# (C) Tenable Network Security, Inc.
#
include('compat.inc');
if (description)
{
script_id(135311);
script_version("1.5");
script_set_attribute(attribute:"plugin_modification_date", value:"2024/03/19");
script_cve_id("CVE-2020-8015");
script_xref(name:"IAVA", value:"2020-A-0131-S");
script_name(english:"Exim < 4.93 Privilege Escalation vulnerability");
script_set_attribute(attribute:"synopsis", value:
"The remote mail server is potentially affected by a privilege escalation
vulnerability.");
script_set_attribute(attribute:"description", value:
"According to its banner, the version of Exim running on the remote
host is prior to 4.93. It is, therefore, potentially
affected by a privilege escalation vulnerability. A flaw exists
in the UNIX symbolic link that could allow an attacker to execute
to escalate from the mail user to root.");
# https://bugzilla.suse.com/show_bug.cgi?id=1154183
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?f294b9cf");
# https://access.redhat.com/security/cve/cve-2020-8015
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?cc28c77b");
# https://vulmon.com/vulnerabilitydetails?qid=CVE-2020-8015
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?728dbb7f");
script_set_attribute(attribute:"solution", value:
"Upgrade to Exim 4.93 or later.");
script_set_cvss_base_vector("CVSS2#AV:L/AC:L/Au:N/C:C/I:C/A:C");
script_set_cvss_temporal_vector("CVSS2#E:POC/RL:OF/RC:C");
script_set_cvss3_base_vector("CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H");
script_set_cvss3_temporal_vector("CVSS:3.0/E:P/RL:O/RC:C");
script_set_attribute(attribute:"cvss_score_source", value:"CVE-2020-8015");
script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
script_set_attribute(attribute:"exploit_available", value:"true");
script_set_attribute(attribute:"vuln_publication_date", value:"2020/04/01");
script_set_attribute(attribute:"patch_publication_date", value:"2020/04/10");
script_set_attribute(attribute:"plugin_publication_date", value:"2020/04/10");
script_set_attribute(attribute:"potential_vulnerability", value:"true");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:exim:exim");
script_set_attribute(attribute:"stig_severity", value:"I");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"SMTP problems");
script_copyright(english:"This script is Copyright (C) 2020-2024 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("smtpserver_detect.nasl");
script_require_keys("Settings/ParanoidReport");
script_require_ports("Services/smtp", 25);
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("smtp_func.inc");
if (report_paranoia < 2) audit(AUDIT_PARANOID);
port = get_service(svc:"smtp", default:25, exit_on_fail:TRUE);
banner = get_smtp_banner(port:port);
if (!banner) audit(AUDIT_NO_BANNER, port);
if ("Exim" >!< banner) audit(AUDIT_NOT_LISTEN, 'Exim', port);
matches = pregmatch(pattern:"220.*Exim ([0-9\._]+)", string:banner);
if (isnull(matches)) audit(AUDIT_SERVICE_VER_FAIL, 'Exim', port);
version = matches[1];
# Underscore was added to the vesion
version = ereg_replace(string:version, pattern:'_', replace:'.');
if (ver_compare(ver:version, fix:'4.93', strict:FALSE) < 0)
{
report =
'\n Banner : ' + banner +
'\n Installed version : ' + version +
'\n Fixed version : 4.93';
security_report_v4(port:port, severity:SECURITY_HOLE, extra:report);
}
else audit(AUDIT_LISTEN_NOT_VULN, 'Exim', port, version);
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