📄 owa_sqlinject.nasl
字号:
## This script was written by Michael J. Richardson <michael.richardson@protiviti.com># Vulnerability identified by Donnie Werner of Exploitlabs Research Team#if(description){ script_id(17636); script_version ("$Revision: 38 $"); script_cve_id("CVE-2005-0420"); script_bugtraq_id(12459); name["english"] = "Outlook Web Access URL Injection"; script_name(english:name["english"]); desc["english"] = "Synopsis :The remote web server is vulnerable to a URL injection vulnerability.Description :The remote host is running Microsoft Outlook Web Access 2003.Due to a lack of sanitization of the user input, the remote version of this software is vulnerable to URL injection which can be exploited to redirect a user to a different, unauthorized web server after authenticating to OWA. This unauthorized site could be used to capture sensitive information by appearing to be part of the web application.See also : http://exploitlabs.com/files/advisories/EXPL-A-2005-001-owa.txtSolution :None at this timeRisk factor :Low / CVSS Base Score : 3 (AV:R/AC:H/Au:NR/C:P/A:N/I:N/B:C)"; script_description(english:desc["english"]); summary["english"] = "The remote host is running Microsoft Outlook Web Access 2003 and is vulnerable to URL Injection."; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2005 Michael J. Richardson", francais:"Ce script est Copyright (C) 2005 Michael J. Richardson"); family["english"] = "CGI abuses : XSS"; script_family(english:family["english"]); script_dependencie("find_service.nes", "http_version.nasl"); script_require_ports("Services/www", 80); 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);req = http_get(item:string(url, "/exchweb/bin/auth/owalogon.asp?url=http://12345678910"), port:port);res = http_keepalive_send_recv(port:port, data:req);if ( res == NULL ) exit(0);if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:res) && "owaauth.dll" >< res && '<INPUT type="hidden" name="destination" value="http://12345678910">' >< res) { security_note(port); exit(0); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -