Vulnerabilities > CVE-2004-1400 - Unspecified vulnerability in Active Server Corner ASP Calendar 1.0

047910
CVSS 7.5 - HIGH
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
PARTIAL
Integrity impact
PARTIAL
Availability impact
PARTIAL
network
low complexity
active-server-corner
nessus
exploit available

Summary

The control panel in ASP Calendar does not require authentication to access, which allows remote attackers to gain unauthorized access via a direct request to main.asp.

Vulnerable Configurations

Part Description Count
Application
Active_Server_Corner
1

Exploit-Db

descriptionActive Server Corner ASP Calendar 1.0 Administrative Access Vulnerability. CVE-2004-1400. Webapps exploit for asp platform
idEDB-ID:24838
last seen2016-02-03
modified2004-12-14
published2004-12-14
reporterali reza AcTiOnSpIdEr
sourcehttps://www.exploit-db.com/download/24838/
titleActive Server Corner ASP Calendar 1.0 Administrative Access Vulnerability

Nessus

NASL familyCGI abuses
NASL idOCEAN12ASPCALENDAR.NASL
descriptionThe 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.
last seen2020-06-01
modified2020-06-02
plugin id15974
published2004-12-15
reporterThis script is Copyright (C) 2004-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/15974
titleOcean12 ASP Calendar Administrative Access
code
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

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

 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_cvs_date("Date: 2018/07/16 14:09:12");
 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-2018 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);
  }
}