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

📄 ilohamail_detect.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by George A. Theall, <theall@tifaware.com>.## See the Nessus Scripts License for details.## NB: I define the script description here so I can later modify#     it with the version number and install directory.  desc["english"] = "This script detects whether the remote host is running IlohaMail andextracts version numbers and locations of any instances found. IlohaMail is a webmail application that is based on a stock build ofPHP and that does not require either a database or a separate IMAPlibrary.  See <http://www.ilohamail.org/> for more information.";if (description) {  script_id(14629);  script_version("$Revision: 38 $");  name["english"] = "IlohaMail Detection";  script_name(english:name["english"]);   script_description(english:desc["english"]);   summary["english"] = "Checks for the presence of IlohaMail";  script_summary(english:summary["english"]);   script_category(ACT_GATHER_INFO);  script_copyright(english:"This script is Copyright (C) 2004-2005 George A. Theall");  family["english"] = "General";  script_family(english:family["english"]);  script_dependencie("global_settings.nasl", "http_version.nasl", "no404.nasl");  script_require_ports("Services/www", 80); script_exclude_keys("Settings/disable_cgi_scanning");  exit(0);}include("global_settings.inc");include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if (!get_port_state(port)) exit(0);if (!can_host_php(port:port)) exit(0);debug_print("looking for IlohaMail on port ", port, ".");# Search for IlohaMail in a couple of different locations.## NB: Directories beyond cgi_dirs() come from a Google search - #     'intitle:ilohamail "powered by ilohamail"' - and represent the more#     popular installation paths currently. Still, cgi_dirs() should #     catch the directory if its referenced elsewhere on the target.dirs = make_list("/webmail", "/ilohamail", "/IlohaMail", "/mail", cgi_dirs());installs = 0;foreach dir (dirs) {  req = http_get(port:port, item:dir + "/");  res = http_keepalive_send_recv(port:port, data:req);  if ( res == NULL || "IlohaMail" >!< res ) continue;  # For proper as well as quick & dirty installs.  foreach src (make_list("", "/source")) {    url = string(dir, src, "/index.php");    debug_print("checking ", url, "...");    # Get the page.    req = http_get(item:url, port:port);    res = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE);    if (res == NULL) exit(0);           # can't connect    if (!http_40x(port:port, code:res)) {      # Make sure the page is for IlohaMail.      if (        egrep(string:res, pattern:'>Powered by <a href="http://ilohamail.org">IlohaMail<') ||        egrep(string:res, pattern:"<h2>Welcome to IlohaMail") ||        (          egrep(string:res, pattern:'<input type="hidden" name="logout" value=0>') &&          egrep(string:res, pattern:'<input type="hidden" name="rootdir"') &&          egrep(string:res, pattern:'<input type="password" name="password" value="" size=15')        )      ) {        debug_print("res =>>", res, "<<");        # Often the version string is embedded in index.php.        ver = strstr(res, "<b> Version ");        if (ver != NULL) {          ver = ver - "<b> Version ";          if (strstr(res, "</b>")) ver = ver - strstr(ver, "</b>");          ver = ereg_replace(string:ver, pattern:"-stable", replace:"", icase:TRUE);        }        # Handle reporting.        if (isnull(ver)) {          ver = "unknown";          if (log_verbosity > 1) display("Can't determine version of IlohaMail installed under ", dir, " on ", host, ":", port, "!\n");        }        # Success!        else {          debug_print("IlohaMail version =>>", ver, "<<.");        }        set_kb_item(          name:string("www/", port, "/ilohamail"),          value:string(ver, " under ", dir, src)        );        installations[string(dir,src)] = ver;        ++installs;      }    }    # nb: it's either a proper or a quick & dirty install.    if (installs) break;  }  # Scan for multiple installations only if "Thorough Tests" is checked.  if (installs && !thorough_tests) break;}# Report any instances found unless Report verbosity is "Quiet".if (installs && report_verbosity > 0) {  if (installs == 1) {    foreach dir (keys(installations)) {      # empty - just need to set 'dir'.    }    if (ver == "unknown") {      info = string("An unknown version of IlohaMail was detected on the remote\nhost under the path ", dir, ".");    }    else {      info = string("IlohaMail ", ver, " was detected on the remote host under the path ", dir, ".");    }  }  else {    info = string(      "Multiple instances of IlohaMail were detected on the remote host:\n",      "\n"    );    foreach dir (keys(installations)) {      info = info + string("    ", installations[dir], ", installed under ", dir, "\n");    }    info = chomp(info);  }  desc = ereg_replace(    string:desc["english"],    pattern:"This script[^\.]+\.",     replace:info  );  security_note(port:port, data:desc);}

⌨️ 快捷键说明

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