Lucene search

K
nessusThis script is Copyright (C) 2004-2021 Tenable Network Security, Inc.OCEAN12ASPCALENDAR.NASL
HistoryDec 15, 2004 - 12:00 a.m.

Ocean12 ASP Calendar Administrative Access

2004-12-1500:00:00
This script is Copyright (C) 2004-2021 Tenable Network Security, Inc.
www.tenable.com
10

7.5 High

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

0.025 Low

EPSS

Percentile

90.1%

The remote host is running Ocean12 ASP Calendar, a web-based application written in ASP.

There is a flaw in the remote software which may allow anyone execute administrative commands on the remote host by requesting the page /admin/main.asp.

An attacker may exploit this flaw to deface the remote site without any credentials.

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#

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

if(description)
{
 script_id(15974);
 script_version("1.14");

 script_cve_id("CVE-2004-1400");
 script_bugtraq_id(11931);

 name["english"] = "Ocean12 ASP Calendar Administrative Access";
 script_name(english:name["english"]);

 script_set_attribute(attribute:"synopsis", value:
"The remote host has an application that fails to restrict
administrative access to non-admin users." );
 script_set_attribute(attribute:"description", value:
"The remote host is running Ocean12 ASP Calendar, a web-based
application written in ASP.

There is a flaw in the remote software which may allow anyone
execute administrative commands on the remote host by requesting
the page /admin/main.asp.

An attacker may exploit this flaw to deface the remote site without
any credentials." );
 script_set_attribute(attribute:"solution", value:
"Upgrade to the latest version of this software" );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
 script_set_cvss_temporal_vector("CVSS2#E:POC/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
 script_set_attribute(attribute:"exploit_available", value:"false");
 script_set_attribute(attribute:"plugin_publication_date", value: "2004/12/15");
 script_set_attribute(attribute:"vuln_publication_date", value: "2004/12/14");
 script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_end_attributes();

 summary["english"] = "auth bypass test";
 script_summary(english:summary["english"]);

 script_category(ACT_GATHER_INFO);

 script_copyright(english:"This script is Copyright (C) 2004-2021 Tenable Network Security, Inc.");
 family["english"] = "CGI abuses";
 script_family(english:family["english"]);
 script_dependencie("http_version.nasl");
 script_require_ports("Services/www", 80);
 script_exclude_keys("Settings/disable_cgi_scanning");
 script_require_keys("www/ASP");
 exit(0);
}

include("global_settings.inc");
include("misc_func.inc");
include("http.inc");

port = get_http_port(default:80);
if ( ! can_host_asp(port:port) ) exit(0,"Remote server does not support ASP.");

foreach dir (cgi_dirs()) 
{
  res = http_send_recv3(method:"GET", item:dir + "/admin/main.asp", port:port);

  if ( isnull(res)) exit(1,"Null response to main.asp request");
  if ("<title>Ocean12 ASP Calendar Manager</title>" >< res[2] &&
      '<a href="add.asp">' >< res[2] )
  {
    security_hole(port);
    exit(0);
  }
}

7.5 High

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

0.025 Low

EPSS

Percentile

90.1%

Related for OCEAN12ASPCALENDAR.NASL