Lucene search
+L

Backported Security Patch Detection (SMTP)

🗓️ 13 Feb 2012 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 18 Views

Backported security patches in remote SMTP server without version chang

Refs
Code
#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");


if (description)
{
  script_id(57913);
  script_version("2.4");
  script_set_attribute(attribute:"plugin_modification_date", value:"2026/01/22");

  script_name(english:"Backported Security Patch Detection (SMTP)");
  script_summary(english:"Checks for backported SMTP banners.");

  script_set_attribute(
    attribute:"synopsis",
    value:"Security patches are backported."
  );
  script_set_attribute(
    attribute:"description",
    value:
"Security patches may have been 'backported' to the remote SMTP server
without changing its version number. 

Banner-based checks have been disabled to avoid false positives. 

Note that this test is informational only and does not denote any
security problem."
  );
  script_set_attribute(
    attribute:"see_also",
    value:"https://access.redhat.com/security/updates/backporting/?sc_cid=3093"
  );
  script_set_attribute(attribute:"solution", value:"n/a");
  script_set_attribute(attribute:"risk_factor", value:"None");

  script_set_attribute(attribute:"plugin_publication_date", value:"2012/02/13");
  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_end_attributes();

  script_category(ACT_END);
  script_family(english:"General");

  script_copyright(english:"This script is Copyright (C) 2012-2026 Tenable Network Security, Inc.");

  script_dependencies("smtpserver_detect.nasl", "ssh_get_info.nasl");
  script_require_ports("Services/smtp", 25, 587);

  exit(0);
}

include("audit.inc");
include("backport.inc");
include("global_settings.inc");
include("misc_func.inc");
include("smtp_func.inc");

ports = make_list();
if (!isnull(get_kb_list("Services/smtp")))
{
  ports = make_list(get_kb_list("Services/smtp"));
}

foreach port (make_list(25, 587))
{
  if (service_is_unknown(port:port))
  {
    ports = add_port_in_list(list:ports, port:port);
  }
}
if (isnull(ports)) audit(AUDIT_NOT_INST, "An SMTP server");


foreach port (ports)
{
  banner = get_smtp_banner(port:port);
  if (strlen(banner) == 0) continue;

  get_backport_banner(banner:banner);
  if (is_backported())
  {
    if (report_verbosity > 0)
    {
      if (get_kb_item("Host/local_checks_enabled"))
        info = "Local checks have been enabled.";
      else
        info = "Give Nessus credentials to perform local checks.";

      info = '\n' + info + '\n';
      security_note(port:port, extra:info);
    }
    else security_note(port);
  }
}

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 Jan 2026 00:00Current
5.5Medium risk
Vulners AI Score5.5
18