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

📄 mysql_eventum_flaws.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
##  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>##  Ref: Sullo#  This script is released under the GNU GPL v2#if(description){ script_id(16093); script_bugtraq_id(12133); script_version("$Revision: 38 $");  script_name(english:"MySQL Eventum Multiple flaws"); desc["english"] = "The remote host seems to be running MySQL Eventum, a user-friendly and flexible issue tracking system written in PHP.The remote version of this software is vulnerable to cross-site scripting attacks, through multiple scripts.With a specially crafted URL, an attacker can use the remote server toperform an attack against third party users of the remote service, in orderto steal their credentials.Solution: No update available yetRisk factor : Medium"; script_description(english:desc["english"]); script_summary(english:"Test flaws in MySQL Eventum"); script_category(ACT_GATHER_INFO); script_family(english:"CGI abuses : XSS"); script_copyright(english:"This script is Copyright (C) 2005 David Maciejak"); script_dependencie("cross_site_scripting.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");port = get_http_port(default:80);if(!get_port_state(port))exit(0);if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);if(!can_host_php(port:port))exit(0);foreach d (cgi_dirs()){ req = http_get(item:d + "/index.php?err=3&email=<script>foo</script>", port:port); res = http_keepalive_send_recv(port:port, data:req); if( res == NULL ) exit(0); if("<title>Login - Eventum</title>" >< res && egrep(pattern:"<script>foo</script>", string:res) ) { 	security_warning(port);	exit(0); }}

⌨️ 快捷键说明

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