Vulnerabilities > CVE-2018-16877

047910
CVSS 7.8 - HIGH
Attack vector
LOCAL
Attack complexity
LOW
Privileges required
LOW
Confidentiality impact
HIGH
Integrity impact
HIGH
Availability impact
HIGH

Summary

A flaw was found in the way pacemaker's client-server authentication was implemented in versions up to and including 2.0.0. A local attacker could use this flaw, and combine it with other IPC weaknesses, to achieve local privilege escalation.

Vulnerable Configurations

Part Description Count
Application
Clusterlabs
92
OS
Canonical
4
OS
Fedoraproject
3
OS
Debian
1
OS
Opensuse
2
OS
Redhat
11

Nessus

  • NASL familyAmazon Linux Local Security Checks
    NASL idAL2_ALAS-2019-1275.NASL
    descriptionA flaw was found in pacemaker. An insufficient verification inflicted preference of uncontrolled processes can lead to DoS. (CVE-2018-16878) A use-after-free flaw was found in pacemaker which could result in certain sensitive information to be leaked via the system logs. (CVE-2019-3885) A flaw was found in the way pacemaker
    last seen2020-06-01
    modified2020-06-02
    plugin id128289
    published2019-08-28
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/128289
    titleAmazon Linux 2 : pacemaker (ALAS-2019-1275)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were
    # extracted from Amazon Linux 2 Security Advisory ALAS-2019-1275.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(128289);
      script_version("1.2");
      script_cvs_date("Date: 2019/12/31");
    
      script_cve_id("CVE-2018-16877", "CVE-2018-16878", "CVE-2019-3885");
      script_xref(name:"ALAS", value:"2019-1275");
    
      script_name(english:"Amazon Linux 2 : pacemaker (ALAS-2019-1275)");
      script_summary(english:"Checks rpm output for the updated packages");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:"The remote Amazon Linux 2 host is missing a security update."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "A flaw was found in pacemaker. An insufficient verification inflicted
    preference of uncontrolled processes can lead to DoS. (CVE-2018-16878)
    
    A use-after-free flaw was found in pacemaker which could result in
    certain sensitive information to be leaked via the system logs.
    (CVE-2019-3885)
    
    A flaw was found in the way pacemaker's client-server authentication
    was implemented. A local attacker could use this flaw, and combine it
    with other IPC weaknesses, to achieve local privilege escalation.
    (CVE-2018-16877)"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://alas.aws.amazon.com/AL2/ALAS-2019-1275.html"
      );
      script_set_attribute(
        attribute:"solution", 
        value:"Run 'yum update pacemaker' to update your system."
      );
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
      script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"cvss_score_source", value:"CVE-2019-3885");
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker-cli");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker-cluster-libs");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker-cts");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker-debuginfo");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker-doc");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker-libs");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker-libs-devel");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker-nagios-plugins-metadata");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:pacemaker-remote");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:amazon:linux:2");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2019/04/18");
      script_set_attribute(attribute:"patch_publication_date", value:"2019/08/27");
      script_set_attribute(attribute:"plugin_publication_date", value:"2019/08/28");
      script_set_attribute(attribute:"generated_plugin", value:"current");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
      script_family(english:"Amazon Linux Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/AmazonLinux/release", "Host/AmazonLinux/rpm-list");
    
      exit(0);
    }
    
    
    include("audit.inc");
    include("global_settings.inc");
    include("rpm.inc");
    
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    
    release = get_kb_item("Host/AmazonLinux/release");
    if (isnull(release) || !strlen(release)) audit(AUDIT_OS_NOT, "Amazon Linux");
    os_ver = pregmatch(pattern: "^AL(A|\d)", string:release);
    if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Amazon Linux");
    os_ver = os_ver[1];
    if (os_ver != "2")
    {
      if (os_ver == 'A') os_ver = 'AMI';
      audit(AUDIT_OS_NOT, "Amazon Linux 2", "Amazon Linux " + os_ver);
    }
    
    if (!get_kb_item("Host/AmazonLinux/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    
    flag = 0;
    if (rpm_check(release:"AL2", reference:"pacemaker-1.1.20-5.amzn2.0.2")) flag++;
    if (rpm_check(release:"AL2", reference:"pacemaker-cli-1.1.20-5.amzn2.0.2")) flag++;
    if (rpm_check(release:"AL2", reference:"pacemaker-cluster-libs-1.1.20-5.amzn2.0.2")) flag++;
    if (rpm_check(release:"AL2", reference:"pacemaker-cts-1.1.20-5.amzn2.0.2")) flag++;
    if (rpm_check(release:"AL2", reference:"pacemaker-debuginfo-1.1.20-5.amzn2.0.2")) flag++;
    if (rpm_check(release:"AL2", reference:"pacemaker-doc-1.1.20-5.amzn2.0.2")) flag++;
    if (rpm_check(release:"AL2", reference:"pacemaker-libs-1.1.20-5.amzn2.0.2")) flag++;
    if (rpm_check(release:"AL2", reference:"pacemaker-libs-devel-1.1.20-5.amzn2.0.2")) flag++;
    if (rpm_check(release:"AL2", reference:"pacemaker-nagios-plugins-metadata-1.1.20-5.amzn2.0.2")) flag++;
    if (rpm_check(release:"AL2", reference:"pacemaker-remote-1.1.20-5.amzn2.0.2")) flag++;
    
    if (flag)
    {
      if (report_verbosity > 0) security_warning(port:0, extra:rpm_report_get());
      else security_warning(0);
      exit(0);
    }
    else
    {
      tested = pkg_tests_get();
      if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
      else audit(AUDIT_PACKAGE_NOT_INSTALLED, "pacemaker / pacemaker-cli / pacemaker-cluster-libs / pacemaker-cts / etc");
    }
    
  • NASL familyOracle Linux Local Security Checks
    NASL idORACLELINUX_ELSA-2019-1279.NASL
    descriptionFrom Red Hat Security Advisory 2019:1279 : An update for pacemaker is now available for Red Hat Enterprise Linux 8. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. The Pacemaker cluster resource manager is a collection of technologies working together to maintain data integrity and application availability in the event of failures. Security Fix(es) : * pacemaker: Insufficient local IPC client-server authentication on the client
    last seen2020-06-01
    modified2020-06-02
    plugin id127588
    published2019-08-12
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/127588
    titleOracle Linux 8 : pacemaker (ELSA-2019-1279)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were
    # extracted from Red Hat Security Advisory RHSA-2019:1279 and 
    # Oracle Linux Security Advisory ELSA-2019-1279 respectively.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(127588);
      script_version("1.3");
      script_cvs_date("Date: 2020/01/06");
    
      script_cve_id("CVE-2018-16877", "CVE-2018-16878", "CVE-2019-3885");
      script_xref(name:"RHSA", value:"2019:1279");
    
      script_name(english:"Oracle Linux 8 : pacemaker (ELSA-2019-1279)");
      script_summary(english:"Checks rpm output for the updated packages");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:"The remote Oracle Linux host is missing one or more security updates."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "From Red Hat Security Advisory 2019:1279 :
    
    An update for pacemaker is now available for Red Hat Enterprise Linux
    8.
    
    Red Hat Product Security has rated this update as having a security
    impact of Important. A Common Vulnerability Scoring System (CVSS) base
    score, which gives a detailed severity rating, is available for each
    vulnerability from the CVE link(s) in the References section.
    
    The Pacemaker cluster resource manager is a collection of technologies
    working together to maintain data integrity and application
    availability in the event of failures.
    
    Security Fix(es) :
    
    * pacemaker: Insufficient local IPC client-server authentication on
    the client's side can lead to local privesc (CVE-2018-16877)
    
    * pacemaker: Insufficient verification inflicted preference of
    uncontrolled processes can lead to DoS (CVE-2018-16878)
    
    * pacemaker: Information disclosure through use-after-free
    (CVE-2019-3885)
    
    For more details about the security issue(s), including the impact, a
    CVSS score, acknowledgments, and other related information, refer to
    the CVE page(s) listed in the References section.
    
    Bug Fix(es) :
    
    * Interrupted live migration will get full start rather than completed
    migration (BZ#1695247)"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://oss.oracle.com/pipermail/el-errata/2019-August/008976.html"
      );
      script_set_attribute(
        attribute:"solution", 
        value:"Update the affected pacemaker packages."
      );
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
      script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"cvss_score_source", value:"CVE-2019-3885");
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:oracle:linux:pacemaker-cluster-libs");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:oracle:linux:pacemaker-libs");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:oracle:linux:pacemaker-schemas");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:oracle:linux:8");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2019/04/18");
      script_set_attribute(attribute:"patch_publication_date", value:"2019/08/01");
      script_set_attribute(attribute:"plugin_publication_date", value:"2019/08/12");
      script_set_attribute(attribute:"generated_plugin", value:"current");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
      script_family(english:"Oracle Linux Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/OracleLinux", "Host/RedHat/release", "Host/RedHat/rpm-list");
    
      exit(0);
    }
    
    
    include("audit.inc");
    include("global_settings.inc");
    include("rpm.inc");
    
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    if (!get_kb_item("Host/OracleLinux")) audit(AUDIT_OS_NOT, "Oracle Linux");
    release = get_kb_item("Host/RedHat/release");
    if (isnull(release) || !pregmatch(pattern: "Oracle (?:Linux Server|Enterprise Linux)", string:release)) audit(AUDIT_OS_NOT, "Oracle Linux");
    os_ver = pregmatch(pattern: "Oracle (?:Linux Server|Enterprise Linux) .*release ([0-9]+(\.[0-9]+)?)", string:release);
    if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Oracle Linux");
    os_ver = os_ver[1];
    if (! preg(pattern:"^8([^0-9]|$)", string:os_ver)) audit(AUDIT_OS_NOT, "Oracle Linux 8", "Oracle Linux " + os_ver);
    
    if (!get_kb_item("Host/RedHat/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    cpu = get_kb_item("Host/cpu");
    if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "Oracle Linux", cpu);
    if ("x86_64" >!< cpu) audit(AUDIT_ARCH_NOT, "x86_64", cpu);
    
    flag = 0;
    if (rpm_check(release:"EL8", cpu:"x86_64", reference:"pacemaker-cluster-libs-2.0.1-4.el8_0.3")) flag++;
    if (rpm_check(release:"EL8", cpu:"x86_64", reference:"pacemaker-libs-2.0.1-4.el8_0.3")) flag++;
    if (rpm_check(release:"EL8", cpu:"x86_64", reference:"pacemaker-schemas-2.0.1-4.el8_0.3")) flag++;
    
    
    if (flag)
    {
      if (report_verbosity > 0) security_warning(port:0, extra:rpm_report_get());
      else security_warning(0);
      exit(0);
    }
    else
    {
      tested = pkg_tests_get();
      if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
      else audit(AUDIT_PACKAGE_NOT_INSTALLED, "pacemaker-cluster-libs / pacemaker-libs / pacemaker-schemas");
    }
    
  • NASL familyNewStart CGSL Local Security Checks
    NASL idNEWSTART_CGSL_NS-SA-2019-0258_PACEMAKER.NASL
    descriptionThe remote NewStart CGSL host, running version CORE 5.05 / MAIN 5.05, has pacemaker packages installed that are affected by multiple vulnerabilities: - A flaw was found in the way pacemaker
    last seen2020-06-01
    modified2020-06-02
    plugin id132469
    published2019-12-31
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/132469
    titleNewStart CGSL CORE 5.05 / MAIN 5.05 : pacemaker Multiple Vulnerabilities (NS-SA-2019-0258)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    # The descriptive text and package checks in this plugin were
    # extracted from ZTE advisory NS-SA-2019-0258. The text
    # itself is copyright (C) ZTE, Inc.
    
    include('compat.inc');
    
    if (description)
    {
      script_id(132469);
      script_version("1.2");
      script_cvs_date("Date: 2020/01/02");
    
      script_cve_id("CVE-2018-16877", "CVE-2018-16878", "CVE-2019-3885");
      script_bugtraq_id(108036, 108039, 108042);
    
      script_name(english:"NewStart CGSL CORE 5.05 / MAIN 5.05 : pacemaker Multiple Vulnerabilities (NS-SA-2019-0258)");
    
      script_set_attribute(attribute:"synopsis", value:
    "The remote machine is affected by multiple vulnerabilities.");
      script_set_attribute(attribute:"description", value:
    "The remote NewStart CGSL host, running version CORE 5.05 / MAIN 5.05, has pacemaker packages installed that are affected
    by multiple vulnerabilities:
    
      - A flaw was found in the way pacemaker's client-server
        authentication was implemented in versions up to and
        including 2.0.0. A local attacker could use this flaw,
        and combine it with other IPC weaknesses, to achieve
        local privilege escalation. (CVE-2018-16877)
    
      - A use-after-free flaw was found in pacemaker up to and
        including version 2.0.1 which could result in certain
        sensitive information to be leaked via the system logs.
        (CVE-2019-3885)
    
      - A flaw was found in pacemaker up to and including
        version 2.0.1. An insufficient verification inflicted
        preference of uncontrolled processes can lead to DoS
        (CVE-2018-16878)
    
    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:"http://security.gd-linux.com/notice/NS-SA-2019-0258");
      script_set_attribute(attribute:"solution", value:
    "Upgrade the vulnerable CGSL pacemaker packages. Note that updated packages may not be available yet. Please contact ZTE
    for more information.");
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
      script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
      script_set_attribute(attribute:"cvss_score_source", value:"CVE-2019-3885");
    
      script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2019/04/18");
      script_set_attribute(attribute:"patch_publication_date", value:"2019/12/27");
      script_set_attribute(attribute:"plugin_publication_date", value:"2019/12/31");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"NewStart CGSL Local Security Checks");
    
      script_copyright(english:"This script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/ZTE-CGSL/release", "Host/ZTE-CGSL/rpm-list", "Host/cpu");
    
      exit(0);
    }
    
    include("audit.inc");
    include("global_settings.inc");
    include("rpm.inc");
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    
    release = get_kb_item("Host/ZTE-CGSL/release");
    if (isnull(release) || release !~ "^CGSL (MAIN|CORE)") audit(AUDIT_OS_NOT, "NewStart Carrier Grade Server Linux");
    
    if (release !~ "CGSL CORE 5.05" &&
        release !~ "CGSL MAIN 5.05")
      audit(AUDIT_OS_NOT, 'NewStart CGSL CORE 5.05 / NewStart CGSL MAIN 5.05');
    
    if (!get_kb_item("Host/ZTE-CGSL/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    cpu = get_kb_item("Host/cpu");
    if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "NewStart Carrier Grade Server Linux", cpu);
    
    flag = 0;
    
    pkgs = {
      "CGSL CORE 5.05": [
        "pacemaker-1.1.20-5.el7_7.1",
        "pacemaker-cli-1.1.20-5.el7_7.1",
        "pacemaker-cluster-libs-1.1.20-5.el7_7.1",
        "pacemaker-cts-1.1.20-5.el7_7.1",
        "pacemaker-debuginfo-1.1.20-5.el7_7.1",
        "pacemaker-doc-1.1.20-5.el7_7.1",
        "pacemaker-libs-1.1.20-5.el7_7.1",
        "pacemaker-libs-devel-1.1.20-5.el7_7.1",
        "pacemaker-nagios-plugins-metadata-1.1.20-5.el7_7.1",
        "pacemaker-remote-1.1.20-5.el7_7.1"
      ],
      "CGSL MAIN 5.05": [
        "pacemaker-1.1.20-5.el7_7.1",
        "pacemaker-cli-1.1.20-5.el7_7.1",
        "pacemaker-cluster-libs-1.1.20-5.el7_7.1",
        "pacemaker-cts-1.1.20-5.el7_7.1",
        "pacemaker-debuginfo-1.1.20-5.el7_7.1",
        "pacemaker-doc-1.1.20-5.el7_7.1",
        "pacemaker-libs-1.1.20-5.el7_7.1",
        "pacemaker-libs-devel-1.1.20-5.el7_7.1",
        "pacemaker-nagios-plugins-metadata-1.1.20-5.el7_7.1",
        "pacemaker-remote-1.1.20-5.el7_7.1"
      ]
    };
    pkg_list = pkgs[release];
    
    foreach (pkg in pkg_list)
      if (rpm_check(release:"ZTE " + release, reference:pkg)) flag++;
    
    if (flag)
    {
      security_report_v4(
        port       : 0,
        severity   : SECURITY_WARNING,
        extra      : rpm_report_get()
      );
      exit(0);
    }
    else
    {
      tested = pkg_tests_get();
      if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
      else audit(AUDIT_PACKAGE_NOT_INSTALLED, "pacemaker");
    }
    
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2019-1400.NASL
    descriptionThis update for pacemaker fixes the following issues : Security issues fixed : - CVE-2019-3885: Fixed an information disclosure in log output. (bsc#1131357) - CVE-2018-16877: Fixed a local privilege escalation through insufficient IPC client-server authentication. (bsc#1131356) - CVE-2018-16878: Fixed a denial of service through insufficient verification inflicted preference of uncontrolled processes. (bsc#1131353) Non-security issue fixed : - crmd: delete resource from lrmd when appropriate to avoid timeouts with crmsh (bsc#1117381). This update was imported from the SUSE:SLE-15:Update update project.
    last seen2020-06-01
    modified2020-06-02
    plugin id125213
    published2019-05-16
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/125213
    titleopenSUSE Security Update : pacemaker (openSUSE-2019-1400)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2019-1278.NASL
    descriptionAn update for pacemaker is now available for Red Hat Enterprise Linux 7. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. The Pacemaker cluster resource manager is a collection of technologies working together to maintain data integrity and application availability in the event of failures. Security Fix(es) : * pacemaker: Insufficient local IPC client-server authentication on the client
    last seen2020-06-01
    modified2020-06-02
    plugin id125445
    published2019-05-28
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/125445
    titleRHEL 7 : pacemaker (RHSA-2019:1278)
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2019-B502250BA4.NASL
    descriptionSecurity fix for CVE-2019-3885, CVE-2018-16877, CVE-2018-16878 Note that Tenable Network Security has extracted the preceding description block directly from the Fedora update system website. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-01
    modified2020-06-02
    plugin id124604
    published2019-05-06
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/124604
    titleFedora 29 : pacemaker (2019-b502250ba4)
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2019-E71F6F36AC.NASL
    descriptionSecurity fix for CVE-2019-3885, CVE-2018-16877, CVE-2018-16878 Note that Tenable Network Security has extracted the preceding description block directly from the Fedora update system website. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-01
    modified2020-06-02
    plugin id124606
    published2019-05-06
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/124606
    titleFedora 28 : pacemaker (2019-e71f6f36ac)
  • NASL familyUbuntu Local Security Checks
    NASL idUBUNTU_USN-3952-1.NASL
    descriptionJan Pokorny discovered that Pacemaker incorrectly handled client-server authentication. A local attacker could possibly use this issue to escalate privileges. (CVE-2018-16877) Jan Pokorny discovered that Pacemaker incorrectly handled certain verifications. A local attacker could possibly use this issue to cause a denial of service. (CVE-2018-16878) Jan Pokorny discovered that Pacemaker incorrectly handled certain memory operations. A local attacker could possibly use this issue to obtain sensitive information in log outputs. This issue only applied to Ubuntu 18.04 LTS, Ubuntu 18.10, and Ubuntu 19.04. (CVE-2019-3885). Note that Tenable Network Security has extracted the preceding description block directly from the Ubuntu security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-01
    modified2020-06-02
    plugin id124274
    published2019-04-24
    reporterUbuntu Security Notice (C) 2019-2020 Canonical, Inc. / NASL script (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/124274
    titleUbuntu 16.04 LTS / 18.04 LTS / 18.10 / 19.04 : pacemaker vulnerabilities (USN-3952-1)
  • NASL familyNewStart CGSL Local Security Checks
    NASL idNEWSTART_CGSL_NS-SA-2019-0224_PACEMAKER.NASL
    descriptionThe remote NewStart CGSL host, running version CORE 5.04 / MAIN 5.04, has pacemaker packages installed that are affected by multiple vulnerabilities: - A flaw was found in the way pacemaker
    last seen2020-06-01
    modified2020-06-02
    plugin id131424
    published2019-12-02
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/131424
    titleNewStart CGSL CORE 5.04 / MAIN 5.04 : pacemaker Multiple Vulnerabilities (NS-SA-2019-0224)
  • NASL familySuSE Local Security Checks
    NASL idOPENSUSE-2019-1342.NASL
    descriptionThis update for pacemaker fixes the following issues : Security issues fixed : - CVE-2018-16877: Fixed a local privilege escalation through insufficient IPC client-server authentication. (bsc#1131356) - CVE-2018-16878: Fixed a denial of service through insufficient verification inflicted preference of uncontrolled processes. (bsc#1131353) This update was imported from the SUSE:SLE-12-SP3:Update update project.
    last seen2020-06-01
    modified2020-06-02
    plugin id124707
    published2019-05-09
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/124707
    titleopenSUSE Security Update : pacemaker (openSUSE-2019-1342)
  • NASL familyRed Hat Local Security Checks
    NASL idREDHAT-RHSA-2019-1279.NASL
    descriptionAn update for pacemaker is now available for Red Hat Enterprise Linux 8. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. The Pacemaker cluster resource manager is a collection of technologies working together to maintain data integrity and application availability in the event of failures. Security Fix(es) : * pacemaker: Insufficient local IPC client-server authentication on the client
    last seen2020-06-01
    modified2020-06-02
    plugin id125446
    published2019-05-28
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/125446
    titleRHEL 8 : pacemaker (RHSA-2019:1279)
  • NASL familyScientific Linux Local Security Checks
    NASL idSL_20190528_PACEMAKER_ON_SL7_X.NASL
    descriptionSecurity Fix(es) : - pacemaker: Insufficient local IPC client-server authentication on the client
    last seen2020-03-18
    modified2019-05-29
    plugin id125531
    published2019-05-29
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/125531
    titleScientific Linux Security Update : pacemaker on SL7.x x86_64 (20190528)
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2019-E4C8DE3FB7.NASL
    descriptionSecurity fix for CVE-2019-3885, CVE-2018-16877, CVE-2018-16878 Note that Tenable Network Security has extracted the preceding description block directly from the Fedora update system website. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-01
    modified2020-06-02
    plugin id124549
    published2019-05-02
    reporterThis script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/124549
    titleFedora 30 : pacemaker (2019-e4c8de3fb7)

Redhat

advisories
  • rhsa
    idRHSA-2019:1278
  • rhsa
    idRHSA-2019:1279
rpms
  • pacemaker-0:1.1.19-8.el7_6.5
  • pacemaker-cli-0:1.1.19-8.el7_6.5
  • pacemaker-cluster-libs-0:1.1.19-8.el7_6.5
  • pacemaker-cts-0:1.1.19-8.el7_6.5
  • pacemaker-debuginfo-0:1.1.19-8.el7_6.5
  • pacemaker-doc-0:1.1.19-8.el7_6.5
  • pacemaker-libs-0:1.1.19-8.el7_6.5
  • pacemaker-libs-devel-0:1.1.19-8.el7_6.5
  • pacemaker-nagios-plugins-metadata-0:1.1.19-8.el7_6.5
  • pacemaker-remote-0:1.1.19-8.el7_6.5
  • pacemaker-0:2.0.1-4.el8_0.3
  • pacemaker-cli-0:2.0.1-4.el8_0.3
  • pacemaker-cli-debuginfo-0:2.0.1-4.el8_0.3
  • pacemaker-cluster-libs-0:2.0.1-4.el8_0.3
  • pacemaker-cluster-libs-debuginfo-0:2.0.1-4.el8_0.3
  • pacemaker-cts-0:2.0.1-4.el8_0.3
  • pacemaker-debuginfo-0:2.0.1-4.el8_0.3
  • pacemaker-debugsource-0:2.0.1-4.el8_0.3
  • pacemaker-doc-0:2.0.1-4.el8_0.3
  • pacemaker-libs-0:2.0.1-4.el8_0.3
  • pacemaker-libs-debuginfo-0:2.0.1-4.el8_0.3
  • pacemaker-libs-devel-0:2.0.1-4.el8_0.3
  • pacemaker-nagios-plugins-metadata-0:2.0.1-4.el8_0.3
  • pacemaker-remote-0:2.0.1-4.el8_0.3
  • pacemaker-remote-debuginfo-0:2.0.1-4.el8_0.3
  • pacemaker-schemas-0:2.0.1-4.el8_0.3