| Source | Link |
|---|---|
| nessus | www.nessus.org/u |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(88020);
script_version("1.3");
script_cvs_date("Date: 2019/11/22");
script_name(english:"HP Virtual Table Server Detection");
script_summary(english:"Checks for presence of HP Virtual Table Server.");
script_set_attribute(attribute:"synopsis", value:
"An HP Virtual Table Server is listening on the remote host.");
script_set_attribute(attribute:"description", value:
"An HP Virtual Table Server (VTS) is listening on the remote host.
VTS offers an alternative to standard parameterization for load and
performance testing, and it is a component of HP LoadRunner and HP
Performance Center.");
# https://community.softwaregrp.com/t5/custom/page/page-id/HPPSocialUserSignonPage?redirectreason=permissiondenied&referer=https%3A%2F%2Fcommunity.softwaregrp.com%2Ft5%2FArchived-LoadRunner-and%2FThe-New-Virtual-Table-Server-VTS-in-LoadRunner-11-52%2Fm-p%2F256782%2Fthread-id%2F935#.Vpa31PkrLIU
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?7d6d4da4");
script_set_attribute(attribute:"solution", value:"n/a");
script_set_attribute(attribute:"risk_factor", value:"None");
script_set_attribute(attribute:"plugin_publication_date", value:"2016/01/20");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:hp:loadrunner");
script_set_attribute(attribute:"cpe", value:"cpe:/a:hp:performance_center");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Web Servers");
script_copyright(english:"This script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("http_version.nasl");
script_require_ports("Services/www", 4000);
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:4000);
appname = "HP Virtual Table Server";
dirs = make_list("/");
# Regexes for service detection
re[0] = make_list(
"Virtual Table Server",
"API Access Port",
"rdoImpCsv",
"Import from CSV file");
# Regexes for extracting version
# Currently no webpages return version info
re[1] = NULL;
checks[""] = re;
installs = find_install(
port : port,
dirs : dirs,
checks : checks,
appname : appname
);
if (isnull(installs)) audit(AUDIT_WEB_APP_NOT_INST, appname, port);
report_installs(port: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