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

📄 pjl_detect.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
# kst-gpl# This script was written by Michel Arboi <arboi@alussinan.org># GPL...#  desc = "Synopsis :The remote service uses the PJL (Printer Job Language) protocol.Description :The remote service answered to a HP PJL request. This is indicates the remote device is probably a printer running JetDirect.Through PJL, users can submit printing jobs, transfer files to or from the printers, change some settings, etc...See also :http://www.maths.usyd.edu.au/u/psz/ps.htmlhttp://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=bpl04568http://h20000.www2.hp.com/bc/docs/support/SupportManual/bpl13208/bpl13208.pdfhttp://h20000.www2.hp.com/bc/docs/support/SupportManual/bpl13207/bpl13207.pdfRisk factor : None";if (description){  script_id(80079);;  script_version("$Revision: 1.4 $");  script_name(english: "Printer Job Language (PJL) Detection");  script_summary(english: "Talks PJL to HP JetDirect service");    script_description(english: desc);   script_category(ACT_GATHER_INFO);  script_family(english: "Service detection");  script_copyright(english:"This script is Copyright (C) 2007 Michel Arboi");  script_dependencies("find_service1.nasl");  script_require_ports(9100, "Service/unknown");  exit(0);}include("global_settings.inc");include("misc_func.inc");if (thorough_tests){ ports = get_kb_item("Service/unknown"); ports = add_port_in_list(list: ports, port: 9100);}else ports = make_list(9100);foreach port (ports) if ( get_port_state(port) &&       service_is_unknown(port: port) &&      # No banner for PJL, as far as I know      strlen(get_unknown_banner(port: port, dontfetch: 1)) == 0 ) {  s = open_sock_tcp(port);  if (s)  {   send(socket: s, data: '\x1b%-12345X@PJL INFO ID\r\n\x1b%-12345X\r\n');   r = recv(socket: s, length: 1024);   if (! isnull(r) && '@PJL INFO ID\r\n' >< r )   {    lines = split(r, keep: 0);    if (max_index(lines) >= 1 && strlen(lines[1]) > 0)      {       info = ereg_replace(string: lines[1], pattern: '^ *"(.*)" *$', replace: "\1");       if (strlen(info) == 0) info = lines[1];       d = strcat(desc, '\n\nPlugin Output\n\nThe device INFO ID is:\n', info);      }    else     d = desc;    security_note(port: port, data: d);    register_service(port: port, proto: 'jetdirect');    set_kb_item(name: 'devices/hp_printer', value: TRUE);   }   close(s);  } }

⌨️ 快捷键说明

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