Lucene search
K

Microsoft Patch Bulletin Feasibility Check

🗓️ 06 Dec 2011 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 1692 Views

This script checks the feasibility of testing for missing Microsoft patche

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

include("compat.inc");

if (description)
{
  script_id(57033);
  script_version("1.13");
  script_set_attribute(attribute:"plugin_modification_date", value:"2021/07/12");

  script_name(english:"Microsoft Patch Bulletin Feasibility Check");
  script_summary(english:"Determine if it's possible to test for Microsoft patches locally or through a third-party tool.");

  script_set_attribute(attribute:'synopsis', value:"Nessus is able to check for Microsoft patch bulletins.");
  script_set_attribute(attribute:'description', value:
"Using credentials supplied in the scan policy, Nessus is able to
collect information about the software and patches installed on the
remote Windows host and will use that information to check for missing
Microsoft security updates.

Note that this plugin is purely informational.");
  script_set_attribute(attribute:"solution", value:"n/a");
  script_set_attribute(attribute:"risk_factor", value:"None");

  script_set_attribute(attribute:"plugin_publication_date", value:"2011/12/06");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Windows : Microsoft Bulletins");
  script_copyright(english:"This script is Copyright (C) 2011-2021 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("smb_hotfixes.nasl", "sccm_get_missing_updates.nbin", "wsus_get_missing_updates.nbin", "os_fingerprint.nasl");
  if (defined_func("xmlparse")) script_dependencies("shavlik_missing_patches.nbin", "ibm_tem_get_missing_updates.nbin");
  if (NASL_LEVEL >= 5200) script_dependencies("dell_kace_k1000_get_missing_updates.nbin", "symantec_altiris_get_missing_updates.nbin");
  script_require_ports(139, 445, "patch_management/ran");

  exit(0);
}

include("smb_func.inc");
include("smb_hotfixes.inc");
include("smb_hotfixes_fcheck.inc");
include("lcx.inc");

smb_report = '\n\nNessus is able to test for missing patches using : \n';
credentialed_checks = FALSE;
err_msg = "";

if (
  !isnull(get_kb_item("SMB/Registry/Enumerated")) &&
  is_accessible_share()
)
{
  credentialed_checks = TRUE;
  smb_report += '  Nessus\n';
}
else
{
  if (isnull(get_kb_item("SMB/Registry/Enumerated")))
  {
    err_msg += '- The KB item "SMB/Registry/Enumerated" is missing.\n';
  }
  if (!is_accessible_share())
  {
    systemroot = hotfix_get_systemroot();
    if (!systemroot)
    {
      err_msg += '- The systemroot share was not identified.\n';
    }
    else
    {
      share = ereg_replace(pattern:"^([A-Za-z]):.*", string:systemroot, replace:"\1$");
      err_msg += '- The systemroot share "' + share + '"is not accessible.\n';
    }
  }
}

if (!isnull(get_kb_item('patch_management/ran')))
{
  credentialed_checks = TRUE;
  set_kb_item(name:"Host/patch_management_checks", value:TRUE);

  foreach tool (keys(_pmtool_names))
  {
    if (get_kb_item("patch_management/"+tool))
    {
      tool_name = _pmtool_names[tool];
      smb_report += "  " + tool_name + '\n';
    }
  }
}
else
{
  err_msg += '- Third party patch management checks, if configured, did not run.\n';
}

if (credentialed_checks)
{
  replace_kb_item(name:"SMB/MS_Bulletin_Checks/Possible", value:TRUE);
  if (defined_func('report_xml_tag')) 
    report_xml_tag(tag:"Credentialed_Scan", value:"true");
}

port = get_kb_item("SMB/transport");
if (!isnull(get_kb_item("SMB/MS_Bulletin_Checks/Possible")))
{
  if (report_verbosity > 0) security_note(port:port, extra:smb_report);
  else security_note(port);
}
else
{
  os = get_kb_item("Host/OS");
  if (!isnull(os) && "indows" >< os)
  {
    if (err_msg && kb_smb_login())
    {
      err_msg =
        'Nessus is not able to test for missing Microsoft patches for the\n' +
        'following reasons :\n\n' + err_msg;
      lcx::log_issue(type:lcx::ISSUES_ERROR, msg:err_msg,
        port:port, proto:lcx::PROTO_SMB);
    }
    exit(0, "Nessus is not able to test for Microsoft's patch bulletins.");
  }
  else exit(0, "The host does not appear to be running Windows.");
}

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

12 Jul 2021 00:00Current
5.5Medium risk
Vulners AI Score5.5
1692