Lucene search

K
nessusThis script is Copyright (C) 2003-2021 Scott ShebbySGDYNAMO_XSS.NASL
HistoryDec 18, 2003 - 12:00 a.m.

SGDynamo sgdynamo.exe HTNAME XSS

2003-12-1800:00:00
This script is Copyright (C) 2003-2021 Scott Shebby
www.tenable.com
127

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

AV:N/AC:L/Au:N/C:N/I:P/A:N

EPSS

0.019

Percentile

88.5%

The remote host is running the CGI ‘sgdynamo.exe’.

There is a bug in some versions of this CGI which makes it vulnerable to a cross-site scripting attack.

#%NASL_MIN_LEVEL 70300
#
# This script written by Scott Shebby (12/2003) 
#
# See the Nessus Scripts License for details
#

# Changes by Tenable:
# - Revised description [RD]
# - Support for multiple HTTP directories [RD]
# - HTTP Keepalive support [RD]
# - Revised plugin title (5/27/09)
# - Updated to use compat.inc, added CVSS score (11/20/2009)
# - Revised plugin description-fixed typo (06/02/2011)


include('deprecated_nasl_level.inc');
include('compat.inc');

if(description)
{
 script_id(11955);
 script_version("1.21");
 script_cve_id("CVE-2002-0375");
 script_bugtraq_id(4720);

 script_name(english:"SGDynamo sgdynamo.exe HTNAME XSS");

 script_set_attribute(attribute:"synopsis", value:
"The remote hos has an application that is affected by a
cross-site scripting issue." );
 script_set_attribute(attribute:"description", value:
"The remote host is running the CGI 'sgdynamo.exe'. 

There is a bug in some versions of this CGI which makes it vulnerable to
a cross-site scripting attack." );
 script_set_attribute(attribute:"solution", value:
"None at this time" );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:N/I:P/A:N");
 script_set_cvss_temporal_vector("CVSS2#E:H/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
 script_set_attribute(attribute:"exploit_available", value:"false");
 script_cwe_id(20, 74, 79, 442, 629, 711, 712, 722, 725, 750, 751, 800, 801, 809, 811, 864, 900, 928, 931, 990);

 script_set_attribute(attribute:"plugin_publication_date", value: "2003/12/18");
 script_set_attribute(attribute:"vuln_publication_date", value: "2002/04/17");
 script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();

 
 script_summary(english:"sgdynamo.exe XSS Vulnerability");
 script_category(ACT_GATHER_INFO);
 script_copyright(english:"This script is Copyright (C) 2003-2021 Scott Shebby");
 script_family(english:"CGI abuses : XSS");
 script_dependencie("find_service1.nasl", "http_version.nasl");
 script_require_ports("Services/www", 80);
 script_exclude_keys("Settings/disable_cgi_scanning");
 exit(0);
}

#
# The script code starts here
#

include("global_settings.inc");
include("http_func.inc");
include("http_keepalive.inc");

port = get_http_port(default:80, embedded:TRUE);

if(!get_port_state(port))exit(0);

foreach dir (cgi_dirs())
{
 url = dir + "/sgdynamo.exe?HTNAME=<script>foo</script>";
 req = http_get(item:url, port:port);
 resp = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
 if ( resp == NULL ) exit(0);
 if ( "<script>foo</script>" >< res )
 {
   security_warning(port);
   set_kb_item(name: 'www/'+port+'/XSS', value: TRUE);
   exit(0);
 }
}

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

AV:N/AC:L/Au:N/C:N/I:P/A:N

EPSS

0.019

Percentile

88.5%

Related for SGDYNAMO_XSS.NASL