| Source | Link |
|---|---|
| nessus | www.nessus.org/u |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(31861);
script_version("1.11");
script_set_attribute(attribute:"plugin_modification_date", value:"2023/05/24");
script_name(english:"Symantec Storage Foundation Scheduler Service Detection");
script_summary(english:"Detects Veritas Scheduler Service");
script_set_attribute(attribute:"synopsis", value:
"A Veritas Scheduler Service is listening on the remote host." );
script_set_attribute(attribute:"description", value:
"The remote host is running a Veritas Scheduler Service. Symantec
Storage Foundation for Windows is a commercial storage and volume
management solution from Symantec, and the Scheduler Service is used
to schedule backup jobs." );
# http://www.symantec.com/business/products/overview.jsp?pcid=2245&pvid=31_1
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?ed8ee243" );
script_set_attribute(attribute:"risk_factor", value:"None" );
script_set_attribute(attribute:"solution", value:"n/a" );
script_set_attribute(attribute:"plugin_publication_date", value: "2008/04/15");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe",value:"cpe:/a:symantec:veritas_storage_foundation");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_set_attribute(attribute:"asset_inventory_category", value:"software_enumeration");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Service detection");
script_copyright(english:"This script is Copyright (C) 2008-2023 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("find_service1.nasl");
script_require_ports(4888);
exit(0);
}
include ("global_settings.inc");
include ("misc_func.inc");
include ("byte_func.inc");
include ("smb_func.inc");
include ("install_func.inc");
port = 4888;
if (!get_port_state(port))
exit(0);
soc = open_sock_tcp(port);
if (!soc)
exit(0);
req = ntlmssp_negotiate_securityblob();
len = strlen(req);
data =
mkdword(len) +
mkdword(0x10) +
mkdword(0) +
"{c15f4527-3d6c-167b-f9c2-ca3908613b5a}" +
mkbyte(0) +
req;
send(socket:soc, data:data);
buf = recv(socket:soc, length:4096);
code = getdword(blob:buf, pos:4);
if ("{C15F4527-3D6C-167B-F9C2-CA3908613B5A}" >< buf && ("-2147220973" >< buf || '\xa1\x81\xa4\x30\x81\xa1' >< buf || code == 0x20) )
{
set_kb_item (name:"VERITAS/VeritasSchedulerService", value:port);
register_service (port:port, proto:"vss");
register_install(
vendor: "Symantec",
product: "Veritas Storage Foundation",
app_name: "Veritask Scheduler Service",
port: port,
protocol: "tcp",
service: "vss",
cpe:"cpe:/a:symantec:veritas_storage_foundation");
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