CVE Feed

    Dashboard / CVE

    Unknown

    CVE-2017-1000077

    Last Modified: 7 Nov 2023

    DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was withdrawn by its CNA due to lack of a reference providing provenance. Notes: none

    Published: 4 Oct 2017
    8
    High

    CVE-2017-1000086

    Last Modified: 20 Apr 2025

    The Periodic Backup Plugin did not perform any permission checks, allowing any user with Overall/Read access to change its settings, trigger backups, restore backups, download backups, and also delete all previous backups via log rotation. Additionally, the plugin was not requiring requests to its API be sent via POST, thereby opening itself to Cross-Site Request Forgery attacks.

    Published: 4 Oct 2017
    5.4
    Medium

    CVE-2017-1000102

    Last Modified: 20 Apr 2025

    The Details view of some Static Analysis Utilities based plugins, was vulnerable to a persisted cross-site scripting vulnerability: Malicious users able to influence the input to these plugins, for example the console output which is parsed to extract build warnings (Warnings Plugin), could insert arbitrary HTML into this view.

    Published: 4 Oct 2017
    8.5
    High

    CVE-2017-1000106

    Last Modified: 20 Apr 2025

    Blue Ocean allows the creation of GitHub organization folders that are set up to scan a GitHub organization for repositories and branches containing a Jenkinsfile, and create corresponding pipelines in Jenkins. Its SCM content REST API supports the pipeline creation and editing feature in Blue Ocean. The SCM content REST API did not check the current user's authentication or credentials. If the GitHub organization folder was created via Blue Ocean, it retained a reference to its creator's GitHub credentials. This allowed users with read access to the GitHub organization folder to create arbitrary commits in the repositories inside the GitHub organization corresponding to the GitHub organization folder with the GitHub credentials of the creator of the organization folder. Additionally, users with read access to the GitHub organization folder could read arbitrary file contents from the repositories inside the GitHub organization corresponding to the GitHub organization folder if the branch contained a Jenkinsfile (which could be created using the other part of this vulnerability), and they could provide the organization folder name, repository name, branch name, and file name.

    Published: 4 Oct 2017
    4.3
    Medium

    CVE-2017-1000110

    Last Modified: 20 Apr 2025

    Blue Ocean allows the creation of GitHub organization folders that are set up to scan a GitHub organization for repositories and branches containing a Jenkinsfile, and create corresponding pipelines in Jenkins. It did not properly check the current user's authentication and authorization when configuring existing GitHub organization folders. This allowed users with read access to the GitHub organization folder to reconfigure it, including changing the GitHub API endpoint for the organization folder to an attacker-controlled server to obtain the GitHub access token, if the organization folder was initially created using Blue Ocean.

    Published: 4 Oct 2017
    5.5
    Medium

    CVE-2017-1000113

    Last Modified: 20 Apr 2025

    The Deploy to container Plugin stored passwords unencrypted as part of its configuration. This allowed users with Jenkins master local file system access, or users with Extended Read access to the jobs it is used in, to retrieve those passwords. The Deploy to container Plugin now integrates with Credentials Plugin to store passwords securely, and automatically migrates existing passwords.

    Published: 4 Oct 2017
    8.8
    High

    CVE-2017-1000120

    Last Modified: 20 Apr 2025

    [ERPNext][Frappe Version <= 7.1.27] SQL injection vulnerability in frappe.share.get_users allows remote authenticated users to execute arbitrary SQL commands via the fields parameter.

    Published: 4 Oct 2017
    9.8
    Critical

    CVE-2017-15041

    Last Modified: 20 Apr 2025

    Go before 1.8.4 and 1.9.x before 1.9.1 allows "go get" remote command execution. Using custom domains, it is possible to arrange things so that example.com/pkg1 points to a Subversion repository but example.com/pkg1/pkg2 points to a Git repository. If the Subversion repository includes a Git checkout in its pkg2 directory and some other work is done to ensure the proper ordering of operations, "go get" can be tricked into reusing this Git checkout for the fetch of code from pkg2. If the Subversion repository's Git checkout has malicious commands in .git/hooks/, they will execute on the system running "go get."

    Published: 4 Oct 2017
    4.7
    Medium

    CVE-2017-13721

    Last Modified: 29 Aug 2025

    In X.Org Server (aka xserver and xorg-server) before 1.19.4, an attacker authenticated to an X server with the X shared memory extension enabled can cause aborts of the X server or replace shared memory segments of other X clients in the same session.

    Published: 4 Oct 2017
    7.1
    High

    CVE-2017-13722

    Last Modified: 20 Apr 2025

    In the pcfGetProperties function in bitmap/pcfread.c in libXfont through 1.5.2 and 2.x before 2.0.2, a missing boundary check (for PCF files) could be used by local attackers authenticated to an Xserver for a buffer over-read, for information disclosure or a crash of the X server.

    Published: 4 Oct 2017
    7.8
    High

    CVE-2017-13723

    Last Modified: 29 Aug 2025

    In X.Org Server (aka xserver and xorg-server) before 1.19.4, a local attacker authenticated to the X server could overflow a global buffer, causing crashes of the X server or potentially other problems by injecting large or malformed XKB related atoms and accessing them via xkbcomp.

    Published: 4 Oct 2017
    5.6
    Medium

    CVE-2017-15038

    Last Modified: 20 Apr 2025

    Race condition in the v9fs_xattrwalk function in hw/9pfs/9p.c in QEMU (aka Quick Emulator) allows local guest OS users to obtain sensitive information from host heap memory via vectors related to reading extended attributes.

    Published: 4 Oct 2017
    6.6
    Medium

    CVE-2017-16525

    Last Modified: 20 Apr 2025

    The usb_serial_console_disconnect function in drivers/usb/serial/console.c in the Linux kernel before 4.13.8 allows local users to cause a denial of service (use-after-free and system crash) or possibly have unspecified other impact via a crafted USB device, related to disconnection and failed setup.

    Published: 4 Oct 2017
    7.5
    High

    CVE-2017-1000254

    Last Modified: 20 Apr 2025

    libcurl may read outside of a heap allocated buffer when doing FTP. When libcurl connects to an FTP server and successfully logs in (anonymous or not), it asks the server for the current directory with the `PWD` command. The server then responds with a 257 response containing the path, inside double quotes. The returned path name is then kept by libcurl for subsequent uses. Due to a flaw in the string parser for this directory name, a directory name passed like this but without a closing double quote would lead to libcurl not adding a trailing NUL byte to the buffer holding the name. When libcurl would then later access the string, it could read beyond the allocated heap buffer and crash or wrongly access data beyond the buffer, thinking it was part of the path. A malicious server could abuse this fact and effectively prevent libcurl-based clients to work with it - the PWD command is always issued on new FTP connections and the mistake has a high chance of causing a segfault. The simple fact that this has issue remained undiscovered for this long could suggest that malformed PWD responses are rare in benign servers. We are not aware of any exploit of this flaw. This bug was introduced in commit [415d2e7cb7](https://github.com/curl/curl/commit/415d2e7cb7), March 2005. In libcurl version 7.56.0, the parser always zero terminates the string but also rejects it if not terminated properly with a final double quote.

    Published: 4 Oct 2017
    7.5
    High

    CVE-2017-11122

    Last Modified: 20 Apr 2025

    On Broadcom BCM4355C0 Wi-Fi chips 9.44.78.27.0.1.56, an attacker can trigger an information leak due to insufficient length validation, related to ICMPv6 router advertisement offloading.

    Published: 4 Oct 2017
    7.1
    High

    CVE-2017-13720

    Last Modified: 20 Apr 2025

    In the PatternMatch function in fontfile/fontdir.c in libXfont through 1.5.2 and 2.x before 2.0.2, an attacker with access to an X connection can cause a buffer over-read during pattern matching of fonts, leading to information disclosure or a crash (denial of service). This occurs because '\0' characters are incorrectly skipped in situations involving ? characters.

    Published: 4 Oct 2017
    5.9
    Medium

    CVE-2017-15042

    Last Modified: 20 Apr 2025

    An unintended cleartext issue exists in Go before 1.8.4 and 1.9.x before 1.9.1. RFC 4954 requires that, during SMTP, the PLAIN auth scheme must only be used on network connections secured with TLS. The original implementation of smtp.PlainAuth in Go 1.0 enforced this requirement, and it was documented to do so. In 2013, upstream issue #5184, this was changed so that the server may decide whether PLAIN is acceptable. The result is that if you set up a man-in-the-middle SMTP server that doesn't advertise STARTTLS and does advertise that PLAIN auth is OK, the smtp.PlainAuth implementation sends the username and password.

    Published: 4 Oct 2017
    7.5
    High

    CVE-2017-0813

    Last Modified: 20 Apr 2025

    A denial of service vulnerability in the Android media framework (libstagefright). Product: Android. Versions: 7.0, 7.1.1, 7.1.2. Android ID: A-36531046.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-0819

    Last Modified: 20 Apr 2025

    A vulnerability in the Android media framework (n/a). Product: Android. Versions: 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-63045918.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-0823

    Last Modified: 20 Apr 2025

    An information disclosure vulnerability in the Android system (rild). Product: Android. Versions: 4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1, 7.1.2. Android ID: A-37896655.

    Published: 3 Oct 2017
    9.8
    Critical

    CVE-2017-0807

    Last Modified: 20 Apr 2025

    An elevation of privilege vulnerability in the Android framework (ui framework). Product: Android. Versions: 4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1, 7.1.2. Android ID: A-35056974.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-0808

    Last Modified: 20 Apr 2025

    An information disclosure vulnerability in the Android framework (file system). Product: Android. Versions: 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-62301183.

    Published: 3 Oct 2017
    7.8
    High

    CVE-2017-0809

    Last Modified: 20 Apr 2025

    A remote code execution vulnerability in the Android media framework (libstagefright). Product: Android. Versions: 4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-62673128.

    Published: 3 Oct 2017
    7.8
    High

    CVE-2017-0810

    Last Modified: 20 Apr 2025

    A remote code execution vulnerability in the Android media framework (libmpeg2). Product: Android. Versions: 6.0, 6.0.1, 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-38207066.

    Published: 3 Oct 2017
    7.8
    High

    CVE-2017-0811

    Last Modified: 20 Apr 2025

    A remote code execution vulnerability in the Android media framework (libhevc). Product: Android. Versions: 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-37930177.

    Published: 3 Oct 2017
    7.8
    High

    CVE-2017-0812

    Last Modified: 20 Apr 2025

    An elevation of privilege vulnerability in the Android media framework (audio hal). Product: Android. Versions: 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-62873231.

    Published: 3 Oct 2017
    5.5
    Medium

    CVE-2017-0815

    Last Modified: 20 Apr 2025

    An information disclosure vulnerability in the Android media framework (libeffects). Product: Android. Versions: 4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-63526567.

    Published: 3 Oct 2017
    5.5
    Medium

    CVE-2017-0816

    Last Modified: 20 Apr 2025

    An information disclosure vulnerability in the Android media framework (libeffects). Product: Android. Versions: 4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-63662938.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-0817

    Last Modified: 20 Apr 2025

    An information disclosure vulnerability in the Android media framework (libstagefright). Product: Android. Versions: 4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-63522430.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-0818

    Last Modified: 20 Apr 2025

    A vulnerability in the Android media framework (n/a). Product: Android. Versions: 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-63581671.

    Published: 3 Oct 2017
    9.8
    Critical

    CVE-2017-0822

    Last Modified: 20 Apr 2025

    An elevation of privilege vulnerability in the Android system (camera). Product: Android. Versions: 6.0.1, 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-63787722.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-0825

    Last Modified: 20 Apr 2025

    An information disclosure vulnerability in the Broadcom wifi driver. Product: Android. Versions: Android kernel. Android ID: A-37305633. References: B-V2017063002.

    Published: 3 Oct 2017
    7.8
    High

    CVE-2017-0826

    Last Modified: 20 Apr 2025

    An elevation of privilege vulnerability in the HTC bootloader. Product: Android. Versions: Android kernel. Android ID: A-34949781.

    Published: 3 Oct 2017
    7.8
    High

    CVE-2017-0827

    Last Modified: 20 Apr 2025

    An elevation of privilege vulnerability in the MediaTek soc driver. Product: Android. Versions: Android kernel. Android ID: A-62539960. References: M-ALPS03353876, M-ALPS03353861, M-ALPS03353869, M-ALPS03353867, M-ALPS03353872.

    Published: 3 Oct 2017
    9.8
    Critical

    CVE-2017-0828

    Last Modified: 20 Apr 2025

    An elevation of privilege vulnerability in the Huawei bootloader. Product: Android. Versions: Android kernel. Android ID: A-34622855.

    Published: 3 Oct 2017
    9.8
    Critical

    CVE-2017-0829

    Last Modified: 20 Apr 2025

    An elevation of privilege vulnerability in the Motorola bootloader. Product: Android. Versions: Android kernel. Android ID: A-62345044.

    Published: 3 Oct 2017
    7.8
    High

    CVE-2017-0806

    Last Modified: 20 Apr 2025

    An elevation of privilege vulnerability in the Android framework (gatekeeperresponse). Product: Android. Versions: 6.0, 6.0.1, 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-62998805.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-0814

    Last Modified: 20 Apr 2025

    An information disclosure vulnerability in the Android media framework (n/a). Product: Android. Versions: 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-62800140.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-0820

    Last Modified: 20 Apr 2025

    A vulnerability in the Android media framework (n/a). Product: Android. Versions: 7.0, 7.1.1, 7.1.2, 8.0. Android ID: A-62187433.

    Published: 3 Oct 2017
    9.8
    Critical

    CVE-2017-0824

    Last Modified: 20 Apr 2025

    An elevation of privilege vulnerability in the Broadcom wifi driver. Product: Android. Versions: Android kernel. Android ID: A-37622847. References: B-V2017063001.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-15011

    Last Modified: 20 Apr 2025

    The named pipes in qtsingleapp in Qt 5.x, as used in qBittorrent and SugarSync, are configured for remote access and allow remote attackers to cause a denial of service (application crash) via an unspecified string.

    Published: 3 Oct 2017
    9.8
    Critical

    CVE-2017-12166

    Last Modified: 20 Apr 2025

    OpenVPN versions before 2.3.3 and 2.4.x before 2.4.4 are vulnerable to a buffer overflow vulnerability when key-method 1 is used, possibly resulting in code execution.

    Published: 3 Oct 2017
    5.3
    Medium

    CVE-2017-1126

    Last Modified: 20 Apr 2025

    IBM WebSphere Message Broker (IBM Integration Bus 9.0 and 10.0) could allow an unauthorized user to obtain sensitive information about software versions that could lead to further attacks. IBM X-Force ID: 121341.

    Published: 3 Oct 2017
    7.3
    High

    CVE-2017-1541

    Last Modified: 20 Apr 2025

    A flaw in the AIX 5.3, 6.1, 7.1, and 7.2 JRE/SDK installp and updatep packages prevented the java.security, java.policy and javaws.policy files from being updated correctly. IBM X-Force ID: 130809.

    Published: 3 Oct 2017
    4.8
    Medium

    CVE-2017-15008

    Last Modified: 20 Apr 2025

    PRTG Network Monitor version 17.3.33.2830 is vulnerable to stored Cross-Site Scripting on all sensor titles, related to incorrect error handling for a %00 in the SRC attribute of an IMG element.

    Published: 3 Oct 2017
    6.1
    Medium

    CVE-2017-15009

    Last Modified: 20 Apr 2025

    PRTG Network Monitor version 17.3.33.2830 is vulnerable to reflected Cross-Site Scripting on error.htm (the error page), via the errormsg parameter.

    Published: 3 Oct 2017
    9.9
    Critical

    CVE-2017-12822

    Last Modified: 20 Apr 2025

    Remote enabling and disabling admin interface in Gemalto's HASP SRM, Sentinel HASP and Sentinel LDK products prior to Sentinel LDK RTE version 7.55 leads to new attack vectors.

    Published: 3 Oct 2017
    9.8
    Critical

    CVE-2017-12821

    Last Modified: 20 Apr 2025

    Memory corruption in Gemalto's HASP SRM, Sentinel HASP and Sentinel LDK products prior to Sentinel LDK RTE version 7.55 might cause remote code execution.

    Published: 3 Oct 2017
    7.5
    High

    CVE-2017-12818

    Last Modified: 20 Apr 2025

    Stack overflow in custom XML-parser in Gemalto's HASP SRM, Sentinel HASP and Sentinel LDK products prior to Sentinel LDK RTE version 7.55 leads to remote denial of service.

    Published: 3 Oct 2017
    9.8
    Critical

    CVE-2017-12819

    Last Modified: 20 Apr 2025

    Remote manipulations with language pack updater lead to NTLM-relay attack for system user in Gemalto's HASP SRM, Sentinel HASP and Sentinel LDK products prior to Sentinel LDK RTE version 7.55.

    Published: 3 Oct 2017