Lucene search
+L

Leave information on scanned Windows hosts

🗓️ 03 Mar 2013 00:00:00Reported by Copyright (C) 2013 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 14 Views

Leave information on scanned Windows hosts. Store hostname, scan start time, and scan end time in the registry key 'SOFTWARE\VulScanInfo'. Default disabled and requires explicit enabling with preference switch

Code
# SPDX-FileCopyrightText: 2013 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

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.96171");
  script_version("2025-02-27T08:17:42+0000");
  script_tag(name:"cvss_base", value:"0.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
  script_tag(name:"last_modification", value:"2025-02-27 08:17:42 +0000 (Thu, 27 Feb 2025)");
  script_tag(name:"creation_date", value:"2013-03-03 10:37:58 +0100 (Sun, 03 Mar 2013)");
  script_name("Leave information on scanned Windows hosts");
  # nb: Needs to run at the end of the scan because of the required info only available in this phase...
  script_category(ACT_END);
  script_family("Windows");
  script_copyright("Copyright (C) 2013 Greenbone AG");
  script_dependencies("gb_wmi_access.nasl", "host_scan_end.nasl");
  script_mandatory_keys("WMI/access_successful");

  script_add_preference(name:"Enable", type:"checkbox", value:"no", id:1);
  script_add_preference(name:"Message", type:"entry", value:"Security Scan of ::HOSTNAME:: finished. Start: ::SCAN_START:: Stop: ::SCAN_STOP::", id:2);

  script_tag(name:"summary", value:"This routine stores information about the scan on the scanned
  host, provided it is a Windows system remote registry and WMI access.");

  script_tag(name:"insight", value:"The information cover hostname, scan start time and scan end
  time. No details about the actual scan results are stored on the scanned host.

  By default, this routine is disabled even it is selected to run. To activate it, it needs to be
  explicitly enabled with its corresponding preference switch.

  The preference 'Message' may contain 3 placeholder where respective content will be inserted into
  the message when the message is finally created on the target system:

  '::HOSTNAME::', '::SCAN_START::' and '::SCAN_STOP::'.

  At the end of the scan, the message will be written into the registry key
  'SOFTWARE\VulScanInfo'.");

  script_tag(name:"qod_type", value:"registry");

  exit(0);
}

include("smb_nt.inc");

enabled = script_get_preference("Enable", id:1);
if("yes" >!< enabled)
  exit(0);

if(!infos = kb_smb_wmi_connectinfo())
  exit(0);

if(!handlereg = wmi_connect_reg(host:infos["host"], username:infos["username_wmi_smb"], password:infos["password"]))
  exit(0);

key = "SOFTWARE\VulScanInfo";
ex_str = "Scanstate";

function fancy_date() {
  local_var datestr;

  datestr = _FCT_ANON_ARGS[0];
  if(int(datestr) < 10)
    return string("0", datestr);

  return datestr;
}

function make_date_str(date) {

  local_var date;
  local_var time, month, day, hour, minute, sec;

  time = localtime(date);

  month  = fancy_date(time["mon"]);
  day    = fancy_date(time["mday"]);
  hour   = fancy_date(time["hour"]);
  minute = fancy_date(time["min"]);
  sec    = fancy_date(time["sec"]);

  return time["year"] + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':' + sec;
}

function replace_placeholders(message) {

  local_var message;
  local_var start, scan_start, stop, scan_stop;

  if("::HOSTNAME::" >< message)
    message = str_replace(string:message, find:"::HOSTNAME::", replace:get_host_name());

  if("::SCAN_START::" >< message) {

    start = get_kb_item("/tmp/start_time");

    if(start) {
      scan_start = make_date_str(date:start);
    } else {
      scan_start = "Scan start unknown (Ping Host, OID: 1.3.6.1.4.1.25623.1.0.100315 not launched?)";
    }

    message = str_replace(string:message, find:"::SCAN_START::", replace:scan_start);
  }

  if("::SCAN_STOP::" >< message) {

    stop = get_kb_item("/tmp/stop_time");

    if(stop) {
      scan_stop = make_date_str(date:stop);
    } else { # nb: If there is no stop time in the KB, create it.
      scan_stop = make_date_str(date:unixtime());
    }

    message = str_replace(string:message, find:"::SCAN_STOP::", replace:scan_stop);
  }
  return message;
}

message = script_get_preference("Message", id:2);
if(strlen(message) < 1) {
  wmi_close(wmi_handle:handlereg);
  # Empty files are not possible. To simply create a file, the user needs to apply a dummy character like a white space.
  log_message(port:0, data:"No Message was given via the script preference. Can not execute this test without a message.");
  exit(0);
}

message = replace_placeholders(message:message);

checkkey = wmi_reg_create_key(wmi_handle:handlereg, key:key);
if(!checkkey){
  wmi_close(wmi_handle:handlereg);
  log_message(port:0, data:"Error: Failed to set/create '" + key + "' registry key via wmi_reg_create_key().");
  exit(0);
}

checkstring = wmi_reg_set_ex_string_val(wmi_handle:handlereg, key:key, val_name:ex_str, val:message);
if(!checkstring){
  wmi_close(wmi_handle:handlereg);
  log_message(port:0, data:"Error: Failed to set string value '" + ex_str + "' to '" + key + "' registry key via wmi_reg_set_ex_string_val().");
  exit(0);
}

wmi_close(wmi_handle:handlereg);
log_message(port:0, data:"Success: Registry key '" + key + "' with message '" + message + "' successfully created.");
exit(0);

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

27 Feb 2025 00:00Current
7.1High risk
Vulners AI Score7.1
14