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

📄 yacy_xss.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr># # Ref: Donato Ferrante <fdonato@autistici.org>## This script is released under the GNU GPL v2if(description){  script_id(16058);  script_cve_id("CVE-2004-2651");  script_bugtraq_id(12104);  if (defined_func("script_xref")) {    script_xref(name:"OSVDB", value:"12630");  }  script_version("$Revision: 38 $");    script_name(english:"YaCy Peer-To-Peer Search Engine XSS"); desc["english"] = "Synopsis :The remote host contains a peer-to-peer search engine that is prone tocross-site scripting attacks. Description :The remote host runs YaCy, a peer-to-peer distributed web searchengine and caching web proxy. The remote version of this software is vulnerable to multiplecross-site scripting due to a lack of sanitization of user-supplieddata. Successful exploitation of this issue may allow an attacker to use theremote server to perform an attack against a third-party user. See also :http://www.securityfocus.com/archive/1/385453Solution: Upgrade to YaCy 0.32 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"]);  script_summary(english:"Checks for YaCy Peer-To-Peer Search Engine XSS");  script_category(ACT_GATHER_INFO);  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");  script_family(english:"CGI abuses : XSS");  script_require_ports("Services/www", 8080);  script_dependencie("cross_site_scripting.nasl");  exit(0);}#the codeinclude("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:8080);if ( ! get_port_state(port))exit(0);if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);buf = http_get(item:"/index.html?urlmaskfilter=<script>foo</script>", port:port);r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);if( r == NULL )exit(0);if(egrep(pattern:"<title>YaCy.+ Search Page</title>.*<script>foo</script>", string:r)){  security_note(port);  exit(0);}

⌨️ 快捷键说明

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