📄 cheopsng_detect.nasl
字号:
## This script was written by Michel Arboi <mikhail@nessus.org># GPL...#if(description){ script_id(20160); script_version ("$Revision: 38 $"); script_name(english: "Cheops NG Agent Detection"); desc = "Synopsis :The remote host is running a network management tool. Description :The remote host is running a Cheops NG agent. Cheops NG is anopen-source network management tool, and the cheops-agent provides away for remote hosts to communicate with the tool and use it to mapyour network, port scan machines and identify running services. See also :http://cheops-ng.sourceforge.net/Risk factor :None"; script_description(english:desc); script_summary(english: "Cheops NG agent is running"); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2005 Michel Arboi"); script_family(english: "Service detection"); script_dependencie("find_service.nes", "find_service2.nasl"); script_require_ports(2300, "Services/unknown"); exit(0);}include("misc_func.inc");include("global_settings.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) 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)) { 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); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -