Lucene search
K

Xerox Document Centre Device Detection

🗓️ 21 Apr 2005 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 17 Views

Xerox Document Centre device detection scrip

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

include("compat.inc");

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

  script_name(english:"Xerox Document Centre Device Detection");
  script_summary(english:"Checks for Xerox Document Centre devices");

  script_set_attribute(attribute:"synopsis", value:"The remote host is a printer.");
  script_set_attribute(attribute:"description", value:"The remote host is a Xerox Document Centre device.");
  script_set_attribute(attribute:"risk_factor", value:"None");
  script_set_attribute(attribute:"solution", value:"n/a");
  script_set_attribute(attribute:"plugin_publication_date", value:"2005/04/21");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/h:xerox:document_centre");
  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) 2005-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("httpver.nasl", "broken_web_server.nasl");
  script_require_ports("Services/www", 80);

  exit(0);
}


include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");
include("webapp_func.inc");

port = get_http_port(default:80);

banner = get_http_banner(port:port);
if (!banner)  audit(AUDIT_WEB_BANNER_NOT, port);
if ("Xerox_MicroServer" >!< banner && "Server: Webserver" >!< banner)
  exit(0, "The web server listening on port "+ port +" is not a Xerox Document Centre MicroServer.");


kb_base = "www/xerox_document_centre";
labels["model"] = "Model";
labels["ess"]   = "Net Controller Software Version";


# Collect various pieces of data.
data = make_array();

res = http_send_recv3(
  method : "GET",
  item   : "/poDeviceProfile.dhtml",
  port   : port,
  exit_on_fail : TRUE
);

# - The Device Profile page (in the Properties tab).
#
#   Examples
#     '<TITLE>Document Centre 220/230</TITLE>'
#     '<TITLE>Xerox Document Centre 332/340 ST</TITLE>'
pat = "<TITLE>(Xerox )?Document Centre ([^<]+)</TITLE>";
matches = egrep(pattern:pat, string:res[2], icase:TRUE);
if (matches)
{
  foreach match (split(matches, keep:FALSE))
  {
    item = eregmatch(pattern:pat, string:match);
    if (!isnull(item))
    {
      data["model"] = item[2];
      break;
    }
  }
}
if (max_index(keys(data)) == 0)
  audit(AUDIT_HOST_NOT, "a Xerox Document Centre device");

# - The ESS level.
#
# nb: the actual level occurs two lines after the label, which will
#     not always be in English.
i = 0;
foreach line (split(res[2], keep:FALSE))
{
  if (line =~ "<td width=50%>.+ESS.*:$")
  {
    data["ess"] = lines[i+2];
    break;
  }
  ++i;
}


# Update KB and report findings.
set_kb_item(name:"Services/www/" + port + "/embedded", value:TRUE);
set_kb_item(name:kb_base, value:TRUE);

max_label_len = 0;
foreach key (keys(data))
{
  label = labels[key];
  if (strlen(label) > max_label_len) max_label_len = strlen(label);
}

info = "";
foreach key (make_list("model", "ssw", "sdc", "ess"))
{
  val = data[key];
  if (!isnull(val))
  {
    set_kb_item(name:kb_base+"/"+key, value:val);

    label = labels[key];
    if (key == "model") val = 'Xerox Document Centre ' + val;
    info += '  ' + label + crap(data:" ", length:max_label_len-strlen(label)) + ' : ' + val + '\n';
  }
}

if (report_verbosity > 0) security_note(port:port, extra:'\n'+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 2020 00:00Current
6.9Medium risk
Vulners AI Score6.9
17