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

📄 xoops_myheader_url_xss.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by Noam Rathaus## GPLv2## From: Chintan Trivedi [chesschintan@hotmail.com]# Subject: XSS vulnerability in XOOPS 2.0.5.1# Date: Sunday 21/12/2003 16:45##if(description){  script_id(11962);  script_bugtraq_id(9269);  script_version("$Revision: 38 $");  name["english"] = "Xoops myheader.php URL Cross Site Scripting Vulnerability";  script_name(english:name["english"]);   desc["english"] = "The weblinks module of XOOPS contains a file named 'myheader.php'in /modules/mylinks/ directory. The code of the module insufficentlyfilters out user provided data. The URL parameter used by 'myheader.php'can be used to insert malicious HTML and/or JavaScript in to the webpage. Solution : Upgrade to the latest version of XOOPS.Risk factor : Medium";  script_description(english:desc["english"]);   summary["english"] = "Detect Xoops myheader.php URL XSS";  script_summary(english:summary["english"]);   script_category(ACT_GATHER_INFO);   script_copyright(english:"This script is Copyright (C) 2003 Noam Rathaus");  family["english"] = "General";  script_family(english:family["english"]);  script_dependencie("xoops_detect.nasl");  script_require_ports("Services/www", 80);  exit(0);}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);quote = raw_string(0x22);# Test an install.install = get_kb_item(string("www/", port, "/xoops"));if (isnull(install)) exit(0);matches = eregmatch(string:install, pattern:"^(.+) under (/.*)$");if (!isnull(matches)) { path = matches[2]; req = http_get(item:string(path, "/modules/mylinks/myheader.php?url=javascript:foo"), port:port); res = http_keepalive_send_recv(port:port, data:req, bodyonly:1); if ( res == NULL ) exit(0); find = string("href=", quote, "javascript:foo", quote); if ( find >< res ) {  security_warning(port);  exit(0); }}

⌨️ 快捷键说明

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