bblog_sql_inject.nasl
来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 73 行
NASL
73 行
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr># based on work from# (C) Tenable Network Security## Ref: James McGlinn <james servers co nz>## This script is released under the GNU GPL v2#if(description){ script_id(15466); script_cve_id("CVE-2004-1570"); script_bugtraq_id(11303); script_version ("$Revision: 38 $"); name["english"] = "bBlog SQL injection flaw"; script_name(english:name["english"]); desc["english"] = "The remote server runs a version of bBlog, a blogging system written in PHP and released under the GPL, which is as old as or older than version 0.7.4.The remote version of this software is affected by a SQL injectionattacks in the script 'rss.php'. This issue is due to a failure of the application to properly sanitize user-supplied input.An attacker may use these flaws to execute arbitrary PHP code on thishost or to take the control of the remote database.Solution : Upgrade to version 0.7.4 or newer.Risk factor : High"; script_description(english:desc["english"]); summary["english"] = "Check bBlog version"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak", francais:"Ce script est Copyright (C) 2004 David Maciejak"); family["english"] = "CGI abuses"; script_family(english:family["english"]); script_dependencie("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(!port) exit(0);if(!get_port_state(port))exit(0);if(!can_host_php(port:port))exit(0);foreach dir (make_list(cgi_dirs(), "/bblog")){ buf = http_get(item:string(dir,"/index.php"), port:port); r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1); if( r == NULL )exit(0); if(egrep(pattern:"www\.bBlog\.com target=.*bBlog 0\.([0-6]\.|7\.[0-3][^0-9]).*© 2003 ", string:r)) security_hole(port);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?