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

📄 basilix_message_content_script_injection.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by George A. Theall, <theall@tifaware.com>.## See the Nessus Scripts License for details.#if (description) {  script_id(14218);  script_version("$Revision: 38 $");  script_cve_id("CVE-2002-1708");  script_bugtraq_id(5060);  name["english"] = "BasiliX Message Content Script Injection Vulnerability";  script_name(english:name["english"]);   desc["english"] = "Synopsis :The remote web server contains PHP scripts that are prone to cross-sitescripting attacks. Description :The remote host appears to be running a BasiliX version 1.1.0 or lower. Such versions are vulnerable to cross-scripting attacks since they donot filter HTML tags when showing a message.  As a result, an attackercan include arbitrary HTML and script code in a message and have thatcode executed by the user's browser when it is viewed. See also : http://archives.neohapsis.com/archives/vulnwatch/2002-q2/0117.htmlSolution : Upgrade to BasiliX version 1.1.1 or later.Risk factor : Low / CVSS Base Score : 2 (AV:R/AC:L/Au:NR/C:P/A:N/I:N/B:N)";  script_description(english:desc["english"]);   summary["english"] = "Checks for message content script injection vulnerability in BasiliX";  script_summary(english:summary["english"]);   script_category(ACT_GATHER_INFO);  script_family(english:"CGI abuses");  script_copyright(english:"This script is Copyright (C) 2004 George A. Theall");  script_dependencies("basilix_detect.nasl");  script_require_ports("Services/www", 80);  exit(0);}include("http_func.inc");port = get_http_port(default:80);if (!get_port_state(port)) exit(0);if (!can_host_php(port:port)) exit(0);# Test an install.install = get_kb_item(string("www/", port, "/basilix"));if (isnull(install)) exit(0);matches = eregmatch(string:install, pattern:"^(.+) under (/.*)$");if (!isnull(matches)) {  ver = matches[1];  if (ver =~ "^(0\..*|1\.(0.*|1\.0))$") {    security_note(port);    exit(0);  }}

⌨️ 快捷键说明

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