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

📄 upb_xss2.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by Josh Zlatin-Amishav <josh at ramat dot cc>## This script is released under the GNU GPLv2if(description){ script_id(19499); script_bugtraq_id(14348, 14350); if (defined_func("script_xref")) {   script_xref(name:"OSVDB", value:"18143");   script_xref(name:"OSVDB", value:"18144");   script_xref(name:"OSVDB", value:"18145");   script_xref(name:"OSVDB", value:"18146");   script_xref(name:"OSVDB", value:"18147"); } script_version ("$Revision: 38 $"); name["english"] = "Ultimate PHP Board multiple XSS vulnerabilities"; script_name(english:name["english"]); desc["english"] = "The remote host is running Ultimate PHP Board (UPB).The remote version of this software is affected by severalcross-site scripting vulnerabilities. This issue is due to a failure of the application to properly sanitize user-supplied input.See also : http://www.retrogod.altervista.org/upbgold196xssurlspoc.txt           http://securityfocus.com/archive/1/402461           http://www.retrogod.altervista.org/upbgold196poc.php.txtSolution : Unknown at this time Risk factor : Medium"; script_description(english:desc["english"]); summary["english"] = "Checks for XSS in send.php"; script_summary(english:summary["english"]); script_category(ACT_ATTACK); script_family(english:"CGI abuses : XSS"); script_copyright(english:"Copyright (C) 2005 Josh Zlatin-Amishav"); script_dependencies("http_version.nasl", "cross_site_scripting.nasl"); script_require_ports("Services/www", 80); script_exclude_keys("Settings/disable_cgi_scanning"); exit(0);}include("http_func.inc");include("http_keepalive.inc");include("url_func.inc");port = get_http_port(default:80);if(!get_port_state(port))exit(0);if(!can_host_php(port:port)) exit(0);if ( get_kb_item("www/"+port+"/generic_xss") ) exit(0);# A simple alert.xss = "<script>alert(" + SCRIPT_NAME + ")</script>";# nb: the url-encoded version is what we need to pass in.exss = urlencode(str:xss);foreach dir ( cgi_dirs() ){ req = http_get(   item:string(     dir, "/chat/send.php?css=",     exss   ),    port:port ); res = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE); if ( xss >< res ) {        security_warning(port);        exit(0); }}

⌨️ 快捷键说明

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