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

📄 devoybb_flaws.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr># # Ref: Positive Technologies - www.maxpatrol.com# This script is released under the GNU GPLv2#if(description){  script_id(15556);  script_cve_id("CVE-2004-2177", "CVE-2004-2178");  script_bugtraq_id(11428);  script_version("$Revision: 38 $");  script_name(english:"DevoyBB multiple flaws");  desc["english"] = "The remote host is running DevoyBB, a web based forum  written in PHP.This version is vulnerable to XSS and SQL injection attacks. A malicious user can access users cookies including authentication cookies and inject SQLcommands to be executed on the underlying database.Solution: Upgrade to the latest version.Risk factor : High";  script_description(english:desc["english"]);  script_summary(english:"Checks DevoyBB version");  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", 80); script_exclude_keys("Settings/disable_cgi_scanning");  script_dependencie("http_version.nasl");  exit(0);}# the code!include("http_func.inc");include("http_keepalive.inc");function check(req){  buf = http_get(item:string(req,"/index.php"), port:port);  r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);  if( r == NULL )exit(0);  if(egrep(pattern:" - Powered by DevoyBB</title>.*Powered by <a href=.http://www\.devoybb\.com.*><strong>DevoyBB (0\..*|1\.0\.0)</strong>", string:r))  { 	security_hole(port);	exit(0);  }}port = get_http_port(default:80);if ( ! port ) exit(0);if(!get_port_state(port)) exit(0);if(!can_host_php(port:port))exit(0);foreach dir (cgi_dirs()) check(req:dir);exit(0);

⌨️ 快捷键说明

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