Lucene search
+L

Adobe Document Server Default Credentials

🗓️ 18 Mar 2006 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 7 Views

The Adobe Document Server uses default credentials in its administration console, making it vulnerable to unauthorized access

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

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

if (description)
{
  script_id(21099);
  script_version("1.19");
  script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");

  script_name(english:"Adobe Document Server Default Credentials");
  script_summary(english:"Checks for default credentials in Adobe Document Server");

  script_set_attribute(attribute:"synopsis", value:
"The administration console for the remote web server is protected with
default credentials." );
  script_set_attribute(attribute:"description", value:
"The remote host is running Adobe Document Server, a server that
dynamically creates and manipulates PDF documents as well as graphic
images.

The installation of Adobe Document Server on the remote host uses the
default username and password to control access to its administrative
console.  Knowing these, an attacker can gain control of the affected
application." );
  script_set_attribute(attribute:"solution", value:
"Login via the administration interface and change the password for the
admin account." );
  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:F/RL:ND/RC:ND");

  script_set_attribute(attribute:"plugin_publication_date", value:"2006/03/18");
  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:adobe:document_server");
  script_set_attribute(attribute:"default_account", value:"true");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"CGI abuses");
  script_copyright(english:"This script is Copyright (C) 2006-2021 Tenable Network Security, Inc.");

  script_dependencies("http_version.nasl");
  script_require_ports("Services/www", 8019);
  script_exclude_keys("global_settings/supplied_logins_only");
  exit(0);
}

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


port = get_http_port(default:8019);
if (supplied_logins_only) audit(AUDIT_SUPPLIED_LOGINS_ONLY);

# Default credentials.
user = "admin";
pass = "adobe";
app = "Adobe Document Server";

init_cookiejar();
# Check whether the login script exists.
r = http_send_recv3(method: 'GET', item:"/altercast/login.jsp", port:port, exit_on_fail: 1);

# If it does...
if ('<form name="loginForm" method="POST"' >< r[2])
{
  install_url = build_url(qs:"/altercast/login.jsp", port:port);
  # Extract the cookie.
  cookie = get_http_cookie(name: "JSESSIONID");
  if (isnull(cookie)) exit(1, "No JESSIONID cookie was set on port "+port+".");

  # Try to log in.
  postdata =
    "username=" + user + "&" +
    "password=" + pass + "&" +
    "submit=Sign+On";

  r = http_send_recv3(method: 'POST', port: port, item: '/altercast/login.do',
   add_headers: make_array("Content-Type", "application/x-www-form-urlencoded"),
   data: postdata, version: 11, exit_on_fail: 1 );

  # There's a problem if we get a link to sign out.
  if ('<a href="logoff.jsp" class="navlink"' >< r[2])
  {
    if (report_verbosity > 0)
    {
      report =
        '\n' +
        'Nessus was able to gain access using the following information :\n' +
        '\n' +
        '  URL      : ' + install_url +
        '  User     : ' + user + '\n' +
        '  Password : ' + pass + '\n';
      security_hole(port:port, extra:report);
    }
    else security_hole(port);
    exit(0);
  }
  else audit(AUDIT_WEB_APP_NOT_AFFECTED, app, install_url);
}
else audit(AUDIT_WEB_APP_NOT_INST, app, port);

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

19 Jan 2021 00:00Current
5.7Medium risk
Vulners AI Score5.7
7