Lucene search
+L

TiVo Detection

🗓️ 29 Jan 2006 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 17 Views

The remote host is a TiVo, a personal video recorder

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

include("compat.inc");

if (description) {
  script_id(20813);
  script_version("1.13");
  script_cvs_date("Date: 2019/11/22");

  name["english"] = "TiVo Detection";
  script_name(english:name["english"]);
 
 script_set_attribute(attribute:"synopsis", value:
"The remote host is a personal video recorder (PVR)." );
 script_set_attribute(attribute:"description", value:
"The remote host is a TiVo, a personal video recorder." );
 script_set_attribute(attribute:"solution", value:
"Make sure that use of such devices is in line with your organization's
security policy." );
 script_set_attribute(attribute:"risk_factor", value:"None" );
 script_set_attribute(attribute:"plugin_publication_date", value: "2006/01/29");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:tivo:safedisc");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_end_attributes();

 
  summary["english"] = "Detects a TiVo";
  script_summary(english:summary["english"]);
 
  script_category(ACT_GATHER_INFO);
  script_family(english:"Service detection");

  script_copyright(english:"This script is Copyright (C) 2006-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("http_version.nasl");
  script_require_ports(80);

  exit(0);
}


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

if ( ! get_port_state(80) ) exit(0, "Port 80 is not open");
banner = get_http_banner(port:80);
if ( "Server: tivo-httpd-" >!< banner ) exit(0, "the web server is not Tivo");

 if (report_verbosity)
 {
  version = egrep(pattern:"^Server: tivo-httpd", string:banner);
  os_version = ereg_replace(pattern:"^Server: tivo-httpd-1:(.*)", replace:"\1", string:version);

  report = '\n' + 'The remote TiVO is running TiVO software version ' + os_version + '\n';
  security_note(port:0, extra:report);
 }
 else 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

22 Nov 2019 00:00Current
6.9Medium risk
Vulners AI Score6.9
17