Lucene search
K

Xen Guest Detection

🗓️ 10 Dec 2008 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 12 Views

Xen Guest Detection. Determines if the remote host is Xen virtual machine by MAC address

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

include("compat.inc");

if(description)
{
 script_id(35081);
 script_version ("1.11");
 script_cvs_date("Date: 2020/01/22");

 script_name(english:"Xen Guest Detection");
 script_summary(english:"Determines if the remote host is Xen.");
 
 script_set_attribute(attribute:"synopsis", value:
"The remote host is a Xen virtual machine.");
 script_set_attribute(attribute:"description", value:
"According to the MAC address of its network adapter, the remote host
is a Xen virtual machine.");
 script_set_attribute(attribute:"solution", value:
"Ensure that the host's configuration is in agreement with your
organization's security policy.");
 script_set_attribute(attribute:"risk_factor", value:"None");

 script_set_attribute(attribute:"plugin_publication_date", value: "2008/12/10");

 script_set_attribute(attribute:"plugin_type", value:"combined");
 script_set_attribute(attribute:"cpe", value:"cpe:/o:xen:xen");
 script_set_attribute(attribute:"asset_inventory", value:"True");
 script_set_attribute(attribute:"hardware_inventory", value:"True");
 script_set_attribute(attribute:"os_identification", value:"True");
 script_end_attributes();
 
 script_category(ACT_GATHER_INFO);
 script_family(english:"Misc.");
 
 script_copyright(english:"This script is Copyright (C) 2008-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");

 script_dependencies("report_hw_macs.nasl");
 exit(0);
}

ether = get_kb_item("Host/mac_addrs");
if ( ! ether ) exit(0);
# -> http://standards.ieee.org/regauth/oui/index.shtml
# http://wiki.xensource.com/xenwiki/XenNetworking
if ( egrep(pattern:"^00:16:3e", string:tolower(ether)) ) security_note(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