| Source | Link |
|---|---|
| cheops-ng | www.cheops-ng.sourceforge.net/ |
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
include('deprecated_nasl_level.inc');
include("compat.inc");
if(description)
{
script_id(20160);
script_version("1.13");
script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");
script_name(english:"Cheops NG Agent Detection");
script_set_attribute(attribute:"synopsis", value:
"The remote host is running a network management tool.");
script_set_attribute(attribute:"description", value:
"The remote host is running a Cheops NG agent. Cheops NG is an
open source network management tool, and the cheops-agent provides a
way for remote hosts to communicate with the tool and use it to map
your network, port scan machines and identify running services.");
script_set_attribute(attribute:"see_also", value:"http://cheops-ng.sourceforge.net/");
script_set_attribute(attribute:"solution", value:
"n/a");
script_set_attribute(attribute:"risk_factor", value:"None");
script_set_attribute(attribute:"plugin_publication_date", value:"2005/11/08");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_set_attribute(attribute:"cpe", value:"x-cpe:/a:cheops:ng_agent");
script_set_attribute(attribute:"thorough_tests", value:"true");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Service detection");
script_copyright(english:"This script is Copyright (C) 2005-2022 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("find_service1.nasl", "find_service2.nasl");
script_require_ports(2300, "Services/unknown");
exit(0);
}
include("global_settings.inc");
include("misc_func.inc");
m1 = '\x00\x00\x00\x14\x00\x0c\x00\x04\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00';
m2 = '\x00\x00\x00\x20\x00\x0c\x00\x02\x00\x00\x00\x00\x01\x00\x00\x7f\x01\x00\x00\x7f\x00\x00\x00\x00\x00\x00\x00\x00\xb8\xdf\x0d\x08';
if (thorough_tests && ! get_kb_item("global_settings/disable_service_discovery") )
ports = get_kb_list("Services/unknown");
else
ports = NULL;
ports = add_port_in_list(list: ports, port: 2300);
prev = 0;
foreach port (ports)
{
if (port && port != prev && get_port_state(port) && service_is_unknown(port:port) && port != 135 && port != 139 && port != 445 )
{
prev = port;
soc = open_sock_tcp(port);
if (soc)
{
send(socket: soc, data: m1);
r = recv(socket: soc, length: 512);
if (strlen(r) > 0)
{
debug_print('Service on port ', port, ' answers to first request - L=', strlen(r), '\n');
if (substr(r, 0, 7) == '\x00\x00\x00\x10\x00\x0c\x00\x6c')
{
security_note(port: port);
register_service(port: port, proto: 'cheops-ng');
set_kb_item(name: 'cheopsNG/password', value: port);
}
close(soc);
continue;
}
send(socket: soc, data: m2);
r = recv(socket: soc, length: 512);
l = strlen(r);
debug_print('reply length = ', l, '\n');
if (l >= 8 && substr(r, 0, 2) == '\0\0\0' && '\x01\x00\x00\x7f' >< r)
{
security_note(port);
register_service(port: port, proto: 'cheops-ng');
set_kb_item(name: 'cheopsNG/unprotected', value: port);
}
close(soc);
}
}
}
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