⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jm_urcs.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by J.Ml鴇zian鴚ski <j鴖eph[at]rapter.net># # if(description){ script_id(15405); script_version("$Revision: 38 $"); name["english"] = "URCS Server Detection"; script_name(english:name["english"]);  desc["english"] = "This host appears to be running URCS Server. Unmanarc Remote Control Server can be used/installed silent as a 'backdoor' which may allow an intruder to gain remote access to files on the remote system. If this program was not installed for remote management then it means the remote host has beencompromised. An attacker may use it to steal files, passwords, or redirect ports on theremote system to launch other attacks.Solution : see http://www.rapter.net/jm5.htm See also :  - http://urcs.unmanarc.com - http://securityresponse.symantec.com/avcenter/venc/data/backdoor.urcs.htmlRisk factor : High"; script_description(english:desc["english"]);  summary["english"] = "Determines the presence of the URCS Server";  script_summary(english:summary["english"]);  script_category(ACT_GATHER_INFO);   script_copyright(english:"This script is Copyright(C) 9/2004 J.Mlodzianowski"); family["english"] = "Backdoors"; script_family(english:family["english"]); script_dependencie("find_service2.nasl"); exit(0);}## The code starts here:#include("misc_func.inc");include('global_settings.inc');if ( ! thorough_tests  ){ port = 3360;}else{ port = get_kb_item("Services/unknown"); if ( ! service_is_unknown(port:port) ) exit(0); if ( ! port ) port = 3360;}# Default port for URCS Server is 3360# Default port for URCS Client is 1980 if (get_port_state(port)){ soc= open_sock_tcp(port); if(soc){ send(socket:soc, data:'iux'); r = recv(socket:soc, length:817); if ( "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" >< r ) 	security_hole(port); close(soc); }} 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -