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

📄 bugport_attachment_handling_flaw.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
##  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>#  based on work from#  (C) Tenable Network Security##  Ref: Eduardo Correia##  This script is released under the GNU GPLv2#if(description){ script_id(15470); #script_bugtraq_id(?); #script_cve_id("CVE-MAP-NOMATCH"); name["english"] = "BugPort unspecified attachment handling flaw"; script_name(english:name["english"]); script_version ("$Revision: 38 $");  desc["english"] = "The remote host seems to be running BugPort, an open source web-based system to manage tasks and defects throughout the software development process.This version of BugPort contains an unspecified attachment handling flaw.Solution : Update to version 1.134 or newerRisk factor : High"; script_description(english:desc["english"]);  summary["english"] = "Checks for BugPort version";  script_summary(english:summary["english"]);  script_category(ACT_GATHER_INFO);  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); family["english"] = "CGI abuses"; family["francais"] = "Abus de CGI"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("find_service.nes", "http_version.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(!can_host_php(port:port))exit(0);function check(url){  req = http_get(item:string(url, "/index.php"), port:port);  r = http_keepalive_send_recv(port:port, data:req);  if ( r == NULL ) exit(0);    #We need to match this    #<title>My Project Information - BugPort v1.134</title>     if ("<title>My Project Information - BugPort v" >< r)    {       	if(egrep(pattern:"BugPort v1\.([01][^0-9]|[01][0-3][^0-9]|[01][0-3][0-3][^0-9])", string:r)) 	{ 		security_hole(port);		exit(0);	}    } }check(url:"/bugport/php");foreach dir (cgi_dirs()){  check(url:dir);}

⌨️ 快捷键说明

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