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

📄 ldu_detection.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## Script by Josh Zlatin-Amishav (josh at ramat dot cc)# GPLv2#if(description){ script_id(19602); script_version("$Revision: 38 $");  name["english"] = "Detects LDU version"; script_name(english:name["english"]); desc["english"] = "Synopsis : The remote web server contains a content management system written inPHP. Description :This script detects whether the remote host is running Land Down Under(LDU) and extracts the version number and location if found. Land Down Under is a content management system using PHP and MySQL. See also : http://www.neocrome.net/Risk factor : None"; script_description(english:desc["english"]);  summary["english"] = "LDU detection"; script_summary(english:summary["english"]);  script_category(ACT_GATHER_INFO);  script_copyright(english:"Copyright (C) 2005 Josh Zlatin-Amishav"); family["english"] = "CGI abuses"; script_family(english:family["english"]); script_dependencie("http_version.nasl"); script_require_ports("Services/www", 80); script_exclude_keys("Settings/disable_cgi_scanning"); exit(0);}## The script code starts here#include("http_func.inc");include("http_keepalive.inc");include("global_settings.inc");port = get_http_port(default:80);if(!get_port_state(port))exit(0);if(!can_host_php(port:port)) exit(0);foreach dir ( cgi_dirs() ){  res = http_get_cache(item:string(dir, "/index.php"), port:port);  if (res == NULL) exit(0);  # If it looks like LDU.  if   (    # Cookie from LDU    "^Set-Cookie: LDUC" >< res ||    # Meta tag (generator) from LDU    'content="Land Down Under Copyright Neocrome' >< res ||     # Meta tag (keywords) from LDU    'content="LDU,land,down,under' >< res  )  {    # First we'll try to grab the version from the main page    pat = "Powered by <a [^<]+ LDU ([0-9.]+)<";    matches = egrep(pattern:pat, string:res);    if (matches)    {      foreach match (split(matches))       {        match = chomp(match);        ver = eregmatch(pattern:pat, string:match);        if (!isnull(ver))         {          ver = ver[1];          break;        }      }    }    #If unsuccessful try grabbing the version from the readme.old_documentation.htm file.    if (isnull(ver))     {      req = http_get ( item:string (dir, "/docs/readme.old_documentation.htm"), port:port);      res = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE);      if (res == NULL) exit(0);      pat = 'id="top"></a>Land Down Under v([0-9]+)<';      matches = egrep(pattern:pat, string:res);      if (matches)      {        foreach match (split(matches))         {          match = chomp(match);          ver = eregmatch(pattern:pat, string:match);          if (!isnull(ver))           {            ver = ver[1];            break;          }        }      }    }    if (isnull(ver)) ver = "unknown";    # Generate report and update KB.    #    # nb: even if we don't know the version number, it's still useful    #     to know that it's installed and where.    if (dir == "") dir = "/";    if (ver == "unknown")    {       report = string(        "An unknown version of Land Down Under is installed under ", dir, "\n",        "on the remote host.");    }    else    {      report = string(        "Land Down Under version ", ver, " is installed under ", dir, " on the\n",        "remote host."      );    }    report = string    (      report,      "\n\n",      "Land Down Under is a highly customizable and fully scalable website engine\n",      "powered by PHP and MySQL. See http://www.neocrome.net/ for more information\n"    );    security_note(data:report, port:port);    set_kb_item    (      name:string("www/", port, "/ldu"),      value:string(ver, " under ", dir)    );  }}

⌨️ 快捷键说明

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