cactushop_multiple_flaws.nasl
来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 76 行
NASL
76 行
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr># # Ref: Nick Gudov <cipher@s-quadra.com>## This script is released under the GNU GPL v2if(description){ script_id(15461); script_cve_id("CVE-2004-1881", "CVE-2004-1882"); script_bugtraq_id(10019, 10020); if ( defined_func("script_xref") ) { script_xref(name:"OSVDB", value:4785); script_xref(name:"OSVDB", value:4786); script_xref(name:"OSVDB", value:4787); } script_version("$Revision: 38 $"); script_name(english:"CactuShop XSS and SQL injection flaws"); desc["english"] = "The remote host runs CactuShop, an e-commerce web application written in ASP.The remote version of this software is vulnerable to cross-site scripting due to a lack of sanitization of user-supplied data in the script 'popuplargeimage.asp'.Successful exploitation of this issue may allow an attacker to execute malicious script code on a vulnerable server. This version may also be vulnerable to SQL injection attacks in the scripts 'mailorder.asp' and 'payonline.asp'. The user-supplied input parameter 'strItems' is not filtered before being used in an SQL query. Thus the query modification through malformed input is possible.Successful exploitation of this vulnerability can enable an attackerto execute commands in the system (via MS SQL the function xp_cmdshell).Solution: Upgrade to the latest version of this softwareRisk factor : High"; script_description(english:desc["english"]); script_summary(english:"Checks CactuShop flaws"); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); script_family(english:"CGI abuses"); script_require_ports("Services/www", 80); script_dependencie("http_version.nasl", "cross_site_scripting.nasl"); exit(0);}#the codeinclude("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if ( ! get_port_state(port))exit(0);if ( ! can_host_asp(port:port) ) exit(0);if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);buf = http_get(item:"/popuplargeimage.asp?strImageTag=<script>foo</script> ", port:port);r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);if( r == NULL )exit(0);if(egrep(pattern:"<script>foo</script>", string:r)){ security_warning(port); exit(0);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?