Vulnerabilities > CVE-2014-4424 - SQL Injection vulnerability in Apple OS X Server

047910
CVSS 0.0 - NONE
Attack vector
UNKNOWN
Attack complexity
UNKNOWN
Privileges required
UNKNOWN
Confidentiality impact
UNKNOWN
Integrity impact
UNKNOWN
Availability impact
UNKNOWN

Summary

SQL injection vulnerability in Wiki Server in CoreCollaboration in Apple OS X Server before 2.2.3 and 3.x before 3.2.1 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.

Common Attack Pattern Enumeration and Classification (CAPEC)

  • Command Line Execution through SQL Injection
    An attacker uses standard SQL injection methods to inject data into the command line for execution. This could be done directly through misuse of directives such as MSSQL_xp_cmdshell or indirectly through injection of data into the database that would be interpreted as shell commands. Sometime later, an unscrupulous backend application (or could be part of the functionality of the same application) fetches the injected data stored in the database and uses this data as command line arguments without performing proper validation. The malicious data escapes that data plane by spawning new commands to be executed on the host.
  • Object Relational Mapping Injection
    An attacker leverages a weakness present in the database access layer code generated with an Object Relational Mapping (ORM) tool or a weakness in the way that a developer used a persistence framework to inject his or her own SQL commands to be executed against the underlying database. The attack here is similar to plain SQL injection, except that the application does not use JDBC to directly talk to the database, but instead it uses a data access layer generated by an ORM tool or framework (e.g. Hibernate). While most of the time code generated by an ORM tool contains safe access methods that are immune to SQL injection, sometimes either due to some weakness in the generated code or due to the fact that the developer failed to use the generated access methods properly, SQL injection is still possible.
  • SQL Injection through SOAP Parameter Tampering
    An attacker modifies the parameters of the SOAP message that is sent from the service consumer to the service provider to initiate a SQL injection attack. On the service provider side, the SOAP message is parsed and parameters are not properly validated before being used to access a database in a way that does not use parameter binding, thus enabling the attacker to control the structure of the executed SQL query. This pattern describes a SQL injection attack with the delivery mechanism being a SOAP message.
  • Expanding Control over the Operating System from the Database
    An attacker is able to leverage access gained to the database to read / write data to the file system, compromise the operating system, create a tunnel for accessing the host machine, and use this access to potentially attack other machines on the same network as the database machine. Traditionally SQL injections attacks are viewed as a way to gain unauthorized read access to the data stored in the database, modify the data in the database, delete the data, etc. However, almost every data base management system (DBMS) system includes facilities that if compromised allow an attacker complete access to the file system, operating system, and full access to the host running the database. The attacker can then use this privileged access to launch subsequent attacks. These facilities include dropping into a command shell, creating user defined functions that can call system level libraries present on the host machine, stored procedures, etc.
  • SQL Injection
    This attack exploits target software that constructs SQL statements based on user input. An attacker crafts input strings so that when the target software constructs SQL statements based on the input, the resulting SQL statement performs actions other than those the application intended. SQL Injection results from failure of the application to appropriately validate input. When specially crafted user-controlled input consisting of SQL syntax is used without proper validation as part of SQL queries, it is possible to glean information from the database in ways not envisaged during application design. Depending upon the database and the design of the application, it may also be possible to leverage injection to have the database execute system-related commands of the attackers' choice. SQL Injection enables an attacker to talk directly to the database, thus bypassing the application completely. Successful injection can cause information disclosure as well as ability to add or modify data in the database. In order to successfully inject SQL and retrieve information from a database, an attacker:

Nessus

  • NASL familyMacOS X Local Security Checks
    NASL idMACOSX_SERVER_3_2_1.NASL
    descriptionThe remote Mac OS X 10.9 host has a version of OS X Server installed that is prior to version 3.2.1. It is, therefore, affected by the following vulnerabilities : - Multiple vulnerabilities exist within the included PostgreSQL, the more serious of these allow remote code execution or denial of service. (CVE-2014-0060, CVE-2014-0061, CVE-2014-0062, CVE-2014-0063, CVE-2014-0064, CVE-2014-0065, CVE-2014-0066) - A cross-site scripting vulnerability exists within the Xcode Server. Using a specially crafted website, a remote attacker can exploit this to execute arbitrary code within the server / browser trust relationship. (CVE-2014-4406) - A SQL injection vulnerability exists in the Wiki Server due to the improper validation of SQL queries. A remote attacker can exploit this to inject or manipulate SQL queries on the back-end database. (CVE-2014-4424)
    last seen2020-06-01
    modified2020-06-02
    plugin id77758
    published2014-09-19
    reporterThis script is Copyright (C) 2014-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/77758
    titleMac OS X : OS X Server < 3.2.1 Multiple Vulnerabilities
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(77758);
      script_version("1.8");
      script_cvs_date("Date: 2018/07/14  1:59:36");
    
      script_cve_id(
        "CVE-2014-0060",
        "CVE-2014-0061",
        "CVE-2014-0062",
        "CVE-2014-0063",
        "CVE-2014-0064",
        "CVE-2014-0065",
        "CVE-2014-0066",
        "CVE-2014-4406",
        "CVE-2014-4424"
      );
      script_bugtraq_id(
        65723,
        65724,
        65727,
        65719,
        65725,
        65731,
        65728,
        69918,
        69935
      );
      script_xref(name:"APPLE-SA", value:"APPLE-SA-2014-09-17-5");
    
      script_name(english:"Mac OS X : OS X Server < 3.2.1 Multiple Vulnerabilities");
      script_summary(english:"Checks the OS X Server version.");
    
      script_set_attribute(attribute:"synopsis", value:"The remote host is missing a security update for OS X Server.");
      script_set_attribute(attribute:"description", value:
    "The remote Mac OS X 10.9 host has a version of OS X Server installed
    that is prior to version 3.2.1. It is, therefore, affected by the
    following vulnerabilities :
    
      - Multiple vulnerabilities exist within the included
        PostgreSQL, the more serious of these allow remote code
        execution or denial of service. (CVE-2014-0060,
        CVE-2014-0061, CVE-2014-0062, CVE-2014-0063,
        CVE-2014-0064, CVE-2014-0065, CVE-2014-0066)
    
      - A cross-site scripting vulnerability exists within the
        Xcode Server. Using a specially crafted website, a
        remote attacker can exploit this to execute arbitrary
        code within the server / browser trust relationship.
        (CVE-2014-4406)
    
      - A SQL injection vulnerability exists in the Wiki Server
        due to the improper validation of SQL queries. A remote
        attacker can exploit this to inject or manipulate SQL
        queries on the back-end database. (CVE-2014-4424)");
      script_set_attribute(attribute:"see_also", value:"http://support.apple.com/kb/HT6448");
      script_set_attribute(attribute:"solution", value:"Upgrade to Mac OS X Server version 3.2.1 or later.");
      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:U/RL:OF/RC:C");
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
      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:"vuln_publication_date", value:"2014/09/17");
      script_set_attribute(attribute:"patch_publication_date", value:"2014/09/17");
      script_set_attribute(attribute:"plugin_publication_date", value:"2014/09/19");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"cpe:/a:apple:mac_os_x_server");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"MacOS X Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2014-2018 Tenable Network Security, Inc.");
    
      script_dependencies("macosx_server_services.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/MacOSX/Version", "MacOSX/Server/Version");
    
      exit(0);
    }
    
    include("audit.inc");
    include("global_settings.inc");
    include("misc_func.inc");
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    os = get_kb_item("Host/MacOSX/Version");
    if (!os) audit(AUDIT_OS_NOT, "Mac OS X");
    
    if (!ereg(pattern:"Mac OS X 10\.9([^0-9]|$)", string:os)) audit(AUDIT_OS_NOT, "Mac OS X 10.9");
    
    version = get_kb_item_or_exit("MacOSX/Server/Version");
    
    fixed_version = "3.2.1";
    if (ver_compare(ver:version, fix:fixed_version, strict:FALSE) == -1)
    {
      set_kb_item(name:'www/0/XSS', value:TRUE);
      set_kb_item(name:'www/0/SQLInjection', value:TRUE);
    
      if (report_verbosity > 0)
      {
        report =
          '\n  Installed version : ' + version +
          '\n  Fixed version     : ' + fixed_version + '\n';
        security_hole(port:0, extra:report);
      }
      else security_hole(0);
    }
    else audit(AUDIT_INST_VER_NOT_VULN, "OS X Server", version);
    
  • NASL familyMacOS X Local Security Checks
    NASL idMACOSX_SERVER_2_2_3.NASL
    descriptionThe remote Mac OS X 10.8 host has a version of OS X Server installe that is prior to 2.2.3. It is, therefore, affected by a SQL injection vulnerability in the Wiki Server component due to improper validation of user-supplied input. A remote attacker can exploit this to inject or manipulate SQL queries on the back-end database.
    last seen2020-06-01
    modified2020-06-02
    plugin id77757
    published2014-09-19
    reporterThis script is Copyright (C) 2014-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/77757
    titleMac OS X : OS X Server < 2.2.3 Wiki SQL Injection
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(77757);
      script_version("1.3");
      script_cvs_date("Date: 2018/07/14  1:59:36");
    
      script_cve_id("CVE-2014-4424");
      script_bugtraq_id(69918);
      script_xref(name:"APPLE-SA", value:"APPLE-SA-2014-09-17-6");
    
      script_name(english:"Mac OS X : OS X Server < 2.2.3 Wiki SQL Injection");
      script_summary(english:"Checks the OS X Server version.");
    
      script_set_attribute(attribute:"synopsis", value:"The remote host is missing a security update for OS X Server.");
      script_set_attribute(attribute:"description", value:
    "The remote Mac OS X 10.8 host has a version of OS X Server installe
    that is prior to 2.2.3. It is, therefore, affected by a SQL injection
    vulnerability in the Wiki Server component due to improper validation
    of user-supplied input. A remote attacker can exploit this to inject
    or manipulate SQL queries on the back-end database.");
      script_set_attribute(attribute:"see_also", value:"http://support.apple.com/kb/HT6449");
      script_set_attribute(attribute:"solution", value:"Upgrade to Mac OS X Server version 2.2.3 or later.");
      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:U/RL:OF/RC:C");
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
      script_set_attribute(attribute:"exploit_available", value:"false");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2014/09/17");
      script_set_attribute(attribute:"patch_publication_date", value:"2014/09/17");
      script_set_attribute(attribute:"plugin_publication_date", value:"2014/09/19");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"cpe:/a:apple:mac_os_x_server");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"MacOS X Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2014-2018 Tenable Network Security, Inc.");
    
      script_dependencies("macosx_server_services.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/MacOSX/Version", "MacOSX/Server/Version");
    
      exit(0);
    }
    
    include("audit.inc");
    include("global_settings.inc");
    include("misc_func.inc");
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    os = get_kb_item("Host/MacOSX/Version");
    if (!os) audit(AUDIT_OS_NOT, "Mac OS X");
    
    if (!ereg(pattern:"Mac OS X 10\.8([^0-9]|$)", string:os)) audit(AUDIT_OS_NOT, "Mac OS X 10.8");
    
    version = get_kb_item_or_exit("MacOSX/Server/Version");
    
    fixed_version = "2.2.3";
    if (ver_compare(ver:version, fix:fixed_version, strict:FALSE) == -1)
    {
      set_kb_item(name:'www/0/SQLInjection', value:TRUE);
    
      if (report_verbosity > 0)
      {
        report =
          '\n  Installed version : ' + version +
          '\n  Fixed version     : ' + fixed_version + '\n';
        security_hole(port:0, extra:report);
      }
      else security_hole(0);
    }
    else audit(AUDIT_INST_VER_NOT_VULN, "OS X Server", version);
    
  • NASL familyMacOS X Local Security Checks
    NASL idMACOSX_SERVER_4_0.NASL
    descriptionThe remote Mac OS X host has a version of OS X Server installed that is prior to version 4.0. It is, therefore, affected by the following vulnerabilities : - There are multiple vulnerabilities within the included BIND, the most serious of which can lead to a denial of service. (CVE-2013-3919, CVE-2013-4854, CVE-2014-0591) - There are multiple vulnerabilities within the included LibYAML for the Profile Manager and ServerRuby, the most serious of which can lead to arbitrary code execution. (CVE-2013-4164, CVE-2013-6393) - There are multiple vulnerabilities within the included PostgreSQL, the most serious of which can lead to arbitrary code execution. (CVE-2014-0060, CVE-2014-0061, CVE-2014-0062, CVE-2014-0063, CVE-2014-0064, CVE-2014-0065, CVE-2014-0066) - An error exists related to the way SSL 3.0 handles padding bytes when decrypting messages encrypted using block ciphers in cipher block chaining (CBC) mode. A man-in-the-middle attacker can decrypt a selected byte of a cipher text in as few as 256 tries if they are able to force a victim application to repeatedly send the same data over newly created SSL 3.0 connections. This is also known as the
    last seen2020-06-01
    modified2020-06-02
    plugin id78601
    published2014-10-21
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/78601
    titleMac OS X : OS X Server < 4.0 Multiple Vulnerabilities (POODLE)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(78601);
      script_version("1.16");
      script_cvs_date("Date: 2019/11/25");
    
      script_cve_id(
        "CVE-2013-3919",
        "CVE-2013-4164",
        "CVE-2013-4854",
        "CVE-2013-6393",
        "CVE-2014-0060",
        "CVE-2014-0061",
        "CVE-2014-0062",
        "CVE-2014-0063",
        "CVE-2014-0064",
        "CVE-2014-0065",
        "CVE-2014-0066",
        "CVE-2014-0591",
        "CVE-2014-3566",
        "CVE-2014-4406",
        "CVE-2014-4424",
        "CVE-2014-4446",
        "CVE-2014-4447"
      );
      script_bugtraq_id(
        60338,
        61479,
        63873,
        64801,
        65258,
        65719,
        65723,
        65724,
        65725,
        65727,
        65728,
        65731,
        69918,
        69935,
        70574
      );
      script_xref(name:"CERT", value:"577193");
      script_xref(name:"APPLE-SA", value:"APPLE-SA-2014-10-16-3");
    
      script_name(english:"Mac OS X : OS X Server < 4.0 Multiple Vulnerabilities (POODLE)");
      script_summary(english:"Checks the OS X Server version.");
    
      script_set_attribute(attribute:"synopsis", value:
    "The remote host is missing a security update for OS X Server.");
      script_set_attribute(attribute:"description", value:
    "The remote Mac OS X host has a version of OS X Server installed that
    is prior to version 4.0.  It is, therefore, affected by the following
    vulnerabilities :
    
      - There are multiple vulnerabilities within the included
        BIND, the most serious of which can lead to a denial of
        service. (CVE-2013-3919, CVE-2013-4854, CVE-2014-0591)
    
      - There are multiple vulnerabilities within the included
        LibYAML for the Profile Manager and ServerRuby, the most
        serious of which can lead to arbitrary code execution.
        (CVE-2013-4164, CVE-2013-6393)
    
      - There are multiple vulnerabilities within the included
        PostgreSQL, the most serious of which can lead to
        arbitrary code execution. (CVE-2014-0060, CVE-2014-0061,
        CVE-2014-0062, CVE-2014-0063, CVE-2014-0064,
        CVE-2014-0065, CVE-2014-0066)
    
      - An error exists related to the way SSL 3.0 handles
        padding bytes when decrypting messages encrypted using
        block ciphers in cipher block chaining (CBC) mode. A
        man-in-the-middle attacker can decrypt a selected byte
        of a cipher text in as few as 256 tries if they are able
        to force a victim application to repeatedly send the
        same data over newly created SSL 3.0 connections. This
        is also known as the 'POODLE' issue. (CVE-2014-3566)
    
      - A cross-site scripting flaw exists in the Xcode Server
        due to not properly validating input before returning it
        to the user. This can allow a remote attacker, using a
        specially crafted request, to execute code within the
        browser / server trust relationship. (CVE-2014-4406)
    
      - A SQL injection flaw exists in the Wiki Server due to
        not properly sanitizing user input before using it in
        SQL queries. This can allow a remote attacker, using a
        specially crafted request, to inject or manipulate SQL
        queries, thus allowing the manipulation or disclosure
        of arbitrary data. (CVE-2014-4424)
    
      - A restriction bypass flaw exists in the Mail Server due
        to SCAL changes being cached and not enforced until the
        service had restarted. This can allow an authenticated
        remote attacker to bypass those restrictions.
        (CVE-2014-4446)
    
      - A password disclosure flaw exists in the Profile Manager
        due to passwords being potentially saved to a file when
        editing or setting up a profile. This can allow a local
        attacker to gain access to password information.
        (CVE-2014-4447)");
      script_set_attribute(attribute:"see_also", value:"http://support.apple.com/kb/HT6536");
      script_set_attribute(attribute:"see_also", value:"http://www.securityfocus.com/archive/1/533722/30/0/threaded");
      script_set_attribute(attribute:"see_also", value:"https://www.imperialviolet.org/2014/10/14/poodle.html");
      script_set_attribute(attribute:"see_also", value:"https://www.openssl.org/~bodo/ssl-poodle.pdf");
      script_set_attribute(attribute:"see_also", value:"https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00");
      script_set_attribute(attribute:"solution", value:
    "Upgrade to Mac OS X Server version 4.0 or later.
    
    Note that OS X Server 4.0 is available only for OS X 10.10 or later.");
      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:U/RL:OF/RC:C");
      script_set_attribute(attribute:"cvss_score_source", value:"CVE-2014-4424");
    
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
      script_set_attribute(attribute:"exploit_available", value:"false");
      script_set_attribute(attribute:"in_the_news", value:"true");
      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:"vuln_publication_date", value:"2014/10/14");
      script_set_attribute(attribute:"patch_publication_date", value:"2014/10/16");
      script_set_attribute(attribute:"plugin_publication_date", value:"2014/10/21");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:apple:mac_os_x_server");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"MacOS X Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
    
      script_dependencies("macosx_server_services.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/MacOSX/Version", "MacOSX/Server/Version");
    
      exit(0);
    }
    
    include("audit.inc");
    include("global_settings.inc");
    include("misc_func.inc");
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    os = get_kb_item("Host/MacOSX/Version");
    if (!os) audit(AUDIT_OS_NOT, "Mac OS X");
    
    version = get_kb_item_or_exit("MacOSX/Server/Version");
    
    fixed_version = "4.0";
    if (ver_compare(ver:version, fix:fixed_version, strict:FALSE) == -1)
    {
      set_kb_item(name:'www/0/SQLInjection', value:TRUE);
      set_kb_item(name:'www/0/XSS', value:TRUE);
    
      if (report_verbosity > 0)
      {
        report =
          '\n  Installed version : ' + version +
          '\n  Fixed version     : ' + fixed_version + 
          '\n';
        security_hole(port:0, extra:report);
      }
      else security_hole(0);
    }
    else audit(AUDIT_INST_VER_NOT_VULN, "OS X Server", version);