Lucene search

K
nessusThis script is Copyright (C) 2015-2021 and is owned by Tenable, Inc. or an Affiliate thereof.ORIENTDB_2_0_15.NASL
HistoryOct 08, 2015 - 12:00 a.m.

OrientDB < 2.0.15 / 2.1.1 XSRF

2015-10-0800:00:00
This script is Copyright (C) 2015-2021 and is owned by Tenable, Inc. or an Affiliate thereof.
www.tenable.com
39

6.8 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

8.8 High

CVSS3

Attack Vector

NETWORK

Attack Complexity

LOW

Privileges Required

NONE

User Interaction

REQUIRED

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

0.005 Low

EPSS

Percentile

76.4%

The version of OrientDB running on the remote host is prior to 2.0.15 or 2.1.1. It is, therefore, affected by a cross-site request forgery (XSRF) vulnerability due to the server allowing JSONP callbacks within the REST API. An unauthenticated, remote attacker can exploit this, via a crafted web page that sends a get-request, to gain access to information about the JSON requests.

Note that Nessus has not tested for this issue but has instead relied only on the application’s self-reported version number.

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

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

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

  script_cve_id("CVE-2015-2912");
  script_bugtraq_id(76610);
  script_xref(name:"CERT", value:"845332");

  script_name(english:"OrientDB < 2.0.15 / 2.1.1 XSRF");
  script_summary(english:"Checks the version of OrientDB.");

  script_set_attribute(attribute:"synopsis", value:
"The version of OrientDB running on the remote host is affected by a
cross-site request forgery vulnerability.");
  script_set_attribute(attribute:"description", value:
"The version of OrientDB running on the remote host is prior to 2.0.15
or 2.1.1. It is, therefore, affected by a cross-site request forgery
(XSRF) vulnerability due to the server allowing JSONP callbacks within
the REST API. An unauthenticated, remote attacker can exploit this,
via a crafted web page that sends a get-request, to gain access to
information about the JSON requests.

Note that Nessus has not tested for this issue but has instead relied
only on the application's self-reported version number.");
  script_set_attribute(attribute:"see_also", value:"https://github.com/orientechnologies/orientdb/issues/4824");
  script_set_attribute(attribute:"solution", value:
"Upgrade to OrientDB version 2.0.15 / 2.1.1 or later. Alternatively,
disable the Studio plug-in to mitigate this issue.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P");
  script_set_cvss_temporal_vector("CVSS2#E:H/RL:OF/RC:C");
  script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H");
  script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
  script_set_attribute(attribute:"cvss_score_source", value:"CVE-2015-2912");

  script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
  script_set_attribute(attribute:"exploit_available", value:"false");

  script_set_attribute(attribute:"vuln_publication_date", value:"2015/08/19");
  script_set_attribute(attribute:"patch_publication_date", value:"2015/08/26");
  script_set_attribute(attribute:"plugin_publication_date", value:"2015/10/08");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:orientdb:orientdb");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"CGI abuses");

  script_copyright(english:"This script is Copyright (C) 2015-2021 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("orientdb_detect.nbin");
  script_require_keys("installed_sw/OrientDB");

  exit(0);
}

include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("install_func.inc");
include("http_func.inc");

app_name = "OrientDB";
get_install_count(app_name:app_name, exit_if_zero:TRUE); # Stops port branching

port    = get_http_port(default:2480, embedded:TRUE);
install = get_single_install(app_name:app_name, port:port, exit_if_unknown_ver:TRUE);
version = install['version'];
url     = build_url2(qs:install['path'],port:port);
studio  = install['studio_enabled'];
fix     = FALSE;
pver    = install['Pre-release'];

# Only affected if studio plug-in is running
if(!studio)
  audit(AUDIT_WEB_APP_NOT_AFFECTED, app_name, url);

if(version =~ "^2\.1(\.|$)" && ver_compare(fix:"2.1.1",  ver:version, strict:FALSE) < 0)
  fix = "2.1.1";
else if(ver_compare(fix:"2.0.15", ver:version, strict:FALSE) < 0)
  fix = "2.0.15";

if(fix)
{
  if(pver)
    version = version + '-' + pver;

  set_kb_item(name:'www/'+port+'/XSRF', value:TRUE);
  if (report_verbosity > 0)
  {
    report = '\n  Path              : '+url+
             '\n  Installed version : '+version+
             '\n  Fixed version     : '+fix+
             '\n';
    security_warning(port:port, extra:report);
  }
  else security_warning(port);
  exit(0);
}
else audit(AUDIT_WEB_APP_NOT_AFFECTED, app_name, url);
VendorProductVersionCPE
orientdborientdbcpe:/a:orientdb:orientdb

6.8 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

8.8 High

CVSS3

Attack Vector

NETWORK

Attack Complexity

LOW

Privileges Required

NONE

User Interaction

REQUIRED

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

0.005 Low

EPSS

Percentile

76.4%

Related for ORIENTDB_2_0_15.NASL