Overview
Two buffer overflow vulnerabilities were discovered in the Trusted Platform Module (TPM) 2.0 reference library specification, currently at Level 00, Revision 01.59 November 2019. An attacker who has access to a TPM-command interface can send maliciously-crafted commands to the module and trigger these vulnerabilities. This allows either read-only access to sensitive data or overwriting of normally protected data that is only available to the TPM (e.g., cryptographic keys).
Description
Trusted Platform Module (TPM) technology is a hardware-based solution that provides secure cryptographic functions to the operating systems on modern computers, making it resistant to tampering. As cloud computing and virtualization have become more popular in recent years, software-based TPM implementations have also gained popularity. TPM can be implemented in the form of Discrete, Integrated or Firmware TPM in its hardware form. The virtual TPM's exists in Hypervisor form or in a purely software-based TPM implementation e.g., swtpm. The Trusted Computing Group (TCG) is responsible for maintaining the TPM specifications, which are actively contributed to by both hardware and software manufacturers. The TCG released the TPM 2.0 specifications in October 2014 and has since revised them multiple times. The latest version, Revision 01.59, was released in November 2019. Many TPM hardware and software manufacturers use these specifications to build firmware that complies with standards and provides a secure interface to sensitive cryptographic data. TPM is employed in a variety of devices, from specialized enterprise-grade hardware to Internet of Things (IoT) appliances.
The TPM Library Specification Architecture documents "Session-based encryption" that allows a cryptographic client application to perform various operations, including those that provide Parameter Encryption capabilities. Session-based encryption may be used to ensure confidentiality of these parameters. The operating system or the client software relies on the TPM to securely provide capabilities such as Cipher Feedback (CFB) for block cipher or streaming hash-based XOR obfuscation of the intended parameter payloads.
Quarkslab security researchers found two vulnerabilities in the way the TPM reference specification processes some of these parameters that are part of TPM commands. An Out Of Bound (OOB) read vulnerability in the CryptParameterDecryption() routine allowed a 2-byte read access to data that was not part of the current session. It was also possible to write 2-bytes past the end of the current command buffer resulting in corruption of memory.
An attacker with access to a device built with a vulnerable version of the TPM can trigger this bug by sending crafted commands to the TPM. The vulnerable TPM can thus be tricked to access data that is not part of the intended operation. As the OS relies on the TPM firmware for these functions, it may be difficult to detect or prevent such access using traditional host-based security capabilities.
Impact
An authenticated, local attacker could send maliciously crafted commands to a vulnerable TPM allowing access to sensitive data. In some cases, the attacker can also overwrite protected data in the TPM firmware. This may lead to a crash or arbitrary code execution within the TPM. Because the attacker's payload runs within the TPM, it may be undetectable by other components of the target device.
Solution
Apply an update The Trusted Computing Group (TCG) has released an update to their Errata for TPM2.0 Library Specification with instructions to address these vulnerabilities. To ensure the security of their systems, users should apply any updates provided by hardware and software manufacturers through their supply chain as soon as possible. Updating the firmware of TPM chips may be necessary, and this can be done through an OS vendor or the original equipment manufacturer (OEM). In some cases, the OEM may require resetting the TPM to its original factory default values as part of the update process.
Users in high-assurance computing environments should consider using TPM Remote Attestation to detect any changes to devices and ensure their TPM is tamper proofed. As these attacks involve TPM-based software, mechanisms such as user-password or PIN protection and tpm-totp do not protect against attacks leveraging the vulnerabilities discussed in this article.
Note: the TCG's Errata covers a larger scope and addresses additional security issues beyond the two vulnerabilities discussed in this advisory.
Acknowledgements
Thanks to Francisco Falcon and Ivan Arce of Quarkslab who researched and reported these vulnerabilities, respectively. The TCG and their members worked closely with us and other vendors to coordinate the disclosure of these vulnerabilities. Note that the Immune Gmbh's https://github.com/immune-gmbh/tpm-vuln-checker software has added support for detecting this vulnerability.
This document was written by Vijay Sarvepalli.
Vendor Information
libtpms IBM sponsored Affected
Statement Date: January 23, 2023
| CVE-2023-1017 | Affected |
| Vendor Statement: | |
| I agree that the CryptParameterDecryption() function has a potential vulnerability with an out-of-bounds write access since the input buffer per VU #782720.1 lacks proper bounds checking and the input buffer here is also the output buffer. | |
| CVE-2023-1018 | Affected |
| Vendor Statement: | |
| I agree that there's a potential out-of-bounds **read** vulnerability in CryptParameterDecryption() that is due to the usage of BYTE_ARRAY_TO_UINT16(buffer) without prior checking of the bufferSize parameter. if(leadingSizeInByte == 2) { // The first two bytes of the buffer are the size of the // data to be decrypted cipherSize = (UINT32)BYTE_ARRAY_TO_UINT16(buffer); buffer = &buffer[2]; // advance the buffer } #ifdef TPM4B else if(leadingSizeInByte == 4) { // the leading size is four bytes so get the four byte size field cipherSize = BYTE_ARRAY_TO_UINT32(buffer); buffer = &buffer[4]; //advance pointer } #endif else { FAIL(FATAL_ERROR_INTERNAL); } if(cipherSize > bufferSize) return TPM_RC_SIZE; I think before this block there should be a check like this IF TCG wants to stick with the macro: if (bufferSize < leadingSizeInByte) return TPM_RC_SIZE; bufferSize -= leadingSizeInByte; This then also corrects the if(ciphersize > bufferSize) check. | |
Vendor Statement
I agree that there's a potential out-of-bounds read vulnerability in the CryptParameterDecryption function due to a missing statement checking the input buffer size. Since the input buffer also serves as the output buffer the same function also has an out-of-bounds write vulnerability in the case that the read vulnerability has been triggered.
NetBSD Affected
Statement Date: June 18, 2023
| CVE-2023-1017 | Affected |
| CVE-2023-1018 | Affected |
Vendor Statement
NetBSD is not affected because it not ship the TPM reference implementation or anything based on it.
If NetBSD runs on a machine with a TPM whose firmware is vulnerable, it could used to exploit the TPM, but the same is true of any other operating system running on the same machine. Access to the TPM device node, which is disabled by default, is normally privileged in NetBSD.
pkgsrc users on any operating system may be vulnerable if they have elected to install the security/libtpms or security/swtpm packages and to and expose them to an adversary.
NixOS Affected
Statement Date: March 01, 2023
| CVE-2023-1017 | Affected |
| CVE-2023-1018 | Affected |
Vendor Statement
Fixed in https://github.com/NixOS/nixpkgs/pull/219016 and https://github.com/NixOS/nixpkgs/pull/219049 on 2023-03-01.
References
Parallels Holdings Ltd Affected
Statement Date: March 19, 2024
| CVE-2023-1017 | Affected |
| CVE-2023-1018 | Affected |
Vendor Statement
This was fixed in Parallels Desktop for MacOS in V18.3.0-53528, Parallels Desktop for Chrome V1.7.3-4203, Parallels Desktop App store version 1.8.2-23821.
Red Hat Affected
Statement Date: February 28, 2023
| CVE-2023-1017 | Affected |
| CVE-2023-1018 | Affected |
Vendor Statement
Red Hat Enterprise Linux 9 and Red Hat Advanced Virtualization are affected by this vulnerability as libtpms package follows the standard TPM2 module library implementation.
Squid Affected
Statement Date: December 10, 2022
| CVE-2023-1017 | Affected |
| CVE-2023-1018 | Affected |
Vendor Statement
We have not received a statement from the vendor.
SUSE Linux Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Affected |
| CVE-2023-1018 | Affected |
Vendor Statement
suse ships libtpms, which devices from the reference implementation. We currently consider it affected.
Trusted Computing Group Affected
Statement Date: February 01, 2023
| CVE-2023-1017 | Affected |
| CVE-2023-1018 | Affected |
Vendor Statement
We have not received a statement from the vendor.
References
7-Zip.org Not Affected
Statement Date: March 20, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
ACROS Security Not Affected
Statement Date: December 06, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
ADTRAN Not Affected
Statement Date: May 02, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Advantech Taiwan Not Affected
Statement Date: November 02, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Akamai Technologies Inc. Not Affected
Statement Date: March 01, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| We are likely impacted and will not know completely until details are published. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| We are likely impacted but won't know fully until details are published. | |
Vendor Statement
Akamai is not vulnerable to these CVEs.
AMTELCO Not Affected
Statement Date: November 01, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Analog Devices Inc. Not Affected
Statement Date: June 25, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Android Open Source Project Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Apache Solr Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Apache Lucene and Solr are not affected by this.
Applied Informatics GmbH Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
ARC Informatique Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Arista Networks Not Affected
Statement Date: December 15, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Artifex Software Inc. Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Aruba Networks Not Affected
Statement Date: January 30, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Atos SE Not Affected
Statement Date: December 14, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Atos products are not affected, based on the below received Infineon's statement: The two reported issues identified in the TCG's TPM 2.0 Reference Code Implementation are NOT affecting our TPM chips, as we have seen in a code review and also in a practical test. 1. A read attempt attack like reported will result in a TPM error message, blocking that attack path. 2. A write attempt attack like reported is thwarted by the internal data structure of the TPM chip, blocking that attack path.
Automated Solutions Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
AVM GmbH Not Affected
Statement Date: February 27, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
No TPMs used in our products.
Baker Hughes / Bently Nevada Not Affected
Statement Date: March 20, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Baramundi Software Not Affected
Statement Date: January 02, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Bayer Not Affected
Statement Date: October 26, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
B. Braun Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Belden Not Affected
Statement Date: December 09, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
BIO-ISAC Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
BitZipper Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
BOSCH Not Affected
Statement Date: December 27, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
BR Industrial Automation Not Affected
Statement Date: December 16, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Brocade Communication Systems Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Cerberus LLC Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Check Point Not Affected
Statement Date: December 08, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Chocolatey Software Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Cisco Not Affected
Statement Date: February 14, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Citrix Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Clever, Inc. Not Affected
Statement Date: December 12, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Codero Not Affected
Statement Date: February 24, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
CODESYS GMBH Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
CONTEC Not Affected
Statement Date: December 04, 2022
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Not affected | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Not affected | |
Courier-mta Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Cryptlib Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Dataprobe, Inc. Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Deuterium Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Deutsche Telekom Not Affected
Statement Date: December 08, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
DICOM Not Affected
Statement Date: November 02, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Digi International Not Affected
Statement Date: February 28, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Digi branded products are not affected by CVE-2023-1017 because Digi branded products doesn't include Trusted Computer Groups TPM2.0's Module Library. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Digi branded products are not affected by CVE-2023-1018 because Digi branded products doesn't include Trusted Computer Groups TPM2.0's Module Library. | |
Vendor Statement
Digi branded products are not affected by CVE-2023-1017 and CVE-2023-1018 because Digi branded products doesn't include Trusted Computer Groups TPM2.0's Module Library.
D-Link Systems Inc. Not Affected
Statement Date: December 27, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
DrayTek Corporation Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Ecava Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
eCosCentric Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
eCosPro RTOS does not use or ship the TPM2.0 Module Library.
eero Not Affected
Statement Date: February 20, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Efiia Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We do not use physical hardware in our system implementations
ETIC Telecom Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Exemys Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Exim Not Affected
Statement Date: December 04, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Exim runs as userland software and if someone configures the use of TPM, that is done without the active involvement of Exim.
F5 Networks Not Affected
Statement Date: February 13, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
FairCom Not Affected
Statement Date: March 22, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Fastly Not Affected
Statement Date: January 30, 2025
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
ffmpeg Not Affected
Statement Date: January 25, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
FreeRADIUS Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Fujitsu Europe Not Affected
Statement Date: March 02, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
FusionAuth Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
HCC Embedded Not Affected
Statement Date: December 07, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Hikvision Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
HitmanPro Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Illumos Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
illumos ships a TPM 1.2 hardware driver, and some distros use the Trousers TPM support library. Unless the above combinations can be used to exploit this vulnerability in TPM 2.0, illumos should be not affected. Furthermore, since we are software only, and do not supply vTPM in any of our BHYVE HVM, we will consider ourselves unaffected by this problem.
Inductive Automation Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Infineon Technologies AG Not Affected
Statement Date: February 21, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Infineon TPM chips are NOT AFFECTED by Issues identified in the TCG's TPM 2.0 Reference Code Implementation (TCGVRT0007 - VU#782720) In more detail: We have access to the details about TCGVRT0007 - VU#782720 concerning the TCG's TPM 2.0 Reference Code Implementation (CVE-2022-45119, CVE-2022-43503). Our Product Security and TPM development teams have already analyzed our product implementations for exposure to these issues and the investigation has concluded with the following results: The reported issues identified in the TCG's TPM 2.0 Reference Code Implementation are NOT affecting our TPM chips, as we have seen in code reviews and also in a practical test. 1. A read attempt attack like reported will result in a TPM error message, blocking that attack path. 2. A write attempt attack like reported is thwarted by the internal data structure of the TPM chip, blocking that attack path. 3. The shortened TPM2B_NAME struct (keySign) will result in a TPM error message, blocking that attack path. 4. A DES key generation is not supported by IFX TPMs, therefore this attack path do not exist. No FW-updates needed or planned! | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Infineon TPM chips are NOT AFFECTED by Issues identified in the TCG's TPM 2.0 Reference Code Implementation (TCGVRT0007 - VU#782720) In more detail: We have access to the details about TCGVRT0007 - VU#782720 concerning the TCG's TPM 2.0 Reference Code Implementation (CVE-2022-45119, CVE-2022-43503). Our Product Security and TPM development teams have already analyzed our product implementations for exposure to these issues and the investigation has concluded with the following results: The reported issues identified in the TCG's TPM 2.0 Reference Code Implementation are NOT affecting our TPM chips, as we have seen in code reviews and also in a practical test. 1. A read attempt attack like reported will result in a TPM error message, blocking that attack path. 2. A write attempt attack like reported is thwarted by the internal data structure of the TPM chip, blocking that attack path. 3. The shortened TPM2B_NAME struct (keySign) will result in a TPM error message, blocking that attack path. 4. A DES key generation is not supported by IFX TPMs, therefore this attack path do not exist. No FW-updates needed or planned! | |
Vendor Statement
Infineon TPM chips are NOT AFFECTED by Issues identified in the TCG's TPM 2.0 Reference Code Implementation (TCGVRT0007 - VU#782720)
In more detail: We have access to the details about TCGVRT0007 - VU#782720 concerning the TCG's TPM 2.0 Reference Code Implementation (CVE-2022-45119, CVE-2022-43503). Our Product Security and TPM development teams have already analyzed our product implementations for exposure to these issues and the investigation has concluded with the following results:
The reported issues identified in the TCG's TPM 2.0 Reference Code Implementation are NOT affecting our TPM chips, as we have seen in code reviews and also in a practical test. 1. A read attempt attack like reported will result in a TPM error message, blocking that attack path. 2. A write attempt attack like reported is thwarted by the internal data structure of the TPM chip, blocking that attack path. 3. The shortened TPM2B_NAME struct (keySign) will result in a TPM error message, blocking that attack path. 4. A DES key generation is not supported by IFX TPMs, therefore this attack path do not exist.
No FW-updates needed or planned!
Inspectiv Not Affected
Statement Date: December 08, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Based on the information shared and what we make available to our customers through our products, we're not directly affected though we will mitigate via other product patches when available
Insyde Software Corporation Not Affected
Statement Date: December 14, 2022
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Insyde's InsydeH2O and Supervyse products do not contain the affected code. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Insyde's InsydeH2O and Supervyse products do not contain the affected code. | |
Intel Not Affected
Statement Date: February 28, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
No Intel products, including Intel® Platform Trust Technology (Intel® PTT) or products that integrate third-party TPM components, are impacted by CVE-2023-1017 or CVE-2023-1018.
International Digital Publishing Forum Not Affected
Statement Date: December 01, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
IPCOMM Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Iridium Communications Inc. Not Affected
Statement Date: December 01, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Joomla Not Affected
Statement Date: December 13, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Juniper Networks Not Affected
Statement Date: February 28, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
KardiaMobile Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Keysight Technologies Not Affected
Statement Date: December 15, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Konica Minolta Not Affected
Statement Date: March 20, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Kontent.AI Not Affected
Statement Date: April 27, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
LANCOM Systems GmbH Not Affected
Statement Date: May 06, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Lanner Inc. Not Affected
Statement Date: March 08, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Confirmed Lanner's BIOS as well as our TPM chip vendor is not affected by TCGVRT0007 - VU#782720). As stated by our TPM vendor that no FW-updates needed or planned. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Confirmed Lanner's BIOS as well as our TPM chip vendor is not affected by TCGVRT0007 - VU#782720). As stated by our TPM vendor that no FW-updates needed or planned. | |
LEAD Technologies Not Affected
Statement Date: February 21, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| The LEADTOOLS toolkit does not interact with the TPM module | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| The LEADTOOLS toolkit does not interact with the TPM module | |
Legion of the Bouncy Castle Not Affected
Statement Date: December 01, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
LemonLDAP Not Affected
Statement Date: December 09, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
LibreOffice Not Affected
Statement Date: December 08, 2022
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Not relevant for LibreOffice | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Not relevant for LibreOffice | |
Vendor Statement
Not relevant for LibreOffice
LibTom Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
LifePoint Informatics Not Affected
Statement Date: March 27, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Liferay Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Lookout Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Luxion Not Affected
Statement Date: December 12, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
lwIP Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Macrium Not Affected
Statement Date: December 06, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Menlo Security Not Affected
Statement Date: January 21, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Micrium Not Affected
Statement Date: December 13, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Microchip Technology Not Affected
Statement Date: February 24, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Microchip has analyzed the reported vulnerabilities (VU#782720.1, VU#782720.2) and performed code review as well as device tests for out of bounce read and write attacks and confirms that Microchip’s TPM devices are not affected with the reported vulnerabilities.
MultiTech Not Affected
Statement Date: April 20, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Summary: After evaluation of all MultiTech products, it is determined MultiTech devices using TPM 2.0 components are not affected by this vulnerability.
Customer Action Plan: No action required.
References
Muonics Inc. Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
None of Muonics Inc.'s products use the technologies in question and thus this vulnerability is not applicable.
Mutiny Technologies Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Nations Technologies Inc. Not Affected
Statement Date: February 25, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We done an in-depth study of this case, we think that all of Nations’ device are not affected by the case. We test all of our device under Windows and Linux, all Nations’ TPM parts have not OOB_Read/OOB_Write issue. The attack data does not affect the normal operation of all Nations’ TPM parts. The chip can identify abnormal data, return reasonable error codes, and run stably after attacks.
Netfilter Not Affected
Statement Date: April 23, 2025
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
netsnmp Not Affected
Statement Date: December 06, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
NGINX Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
NIKSUN Not Affected
Statement Date: March 19, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
These are not applicable as TPM not utilized.
NTP Project Not Affected
Statement Date: December 09, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Our software does not use TPM.
NTPsec Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Nuvoton Not Affected
Statement Date: March 02, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Nuvoton has confirmed that all current Nuvoton TPM 2.0 devices are not affected by issues identified in VU#782720.2 and return a TPM_RC_INSUFFICIENT (0x9A) error code when the relevant attack is performed. However, some EOL devices may enter failure mode. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Nuvoton has confirmed that all current Nuvoton TPM 2.0 devices are not affected by issues identified in VU#782720.1 and return a TPM_RC_INSUFFICIENT (0x9A) error code when the relevant attack is performed. | |
CERT Addendum
https://www.nuvoton.com/support/security/security-advisories/sa-003/
NXP Semiconductors Inc. Not Affected
Statement Date: February 23, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Ontario Systems Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
OpenSourceRouting Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
OpenSSH Not Affected
Statement Date: December 08, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
OpenVPN Technologies Not Affected
Statement Date: March 21, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
OpenVPN does not provide TPM implementations, nor does any OpenVPN product access TPM functionality directly (if we do, it's via pkcs11-helper or OpenSSL engines/providers).
OrbiTeam Software GmbH Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
OTRS Not Affected
Statement Date: December 03, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Ovarro Not Affected
Statement Date: March 01, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Overleaf Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Paessler Not Affected
Statement Date: February 21, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Palo Alto Networks Not Affected
Statement Date: March 21, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Peplink Not Affected
Statement Date: December 01, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Philips Healthcare Not Affected
Statement Date: March 07, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Phoenix Technologies Not Affected
Statement Date: December 15, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
These issues do not affect our firmware or software products.
Pi-Hole Not Affected
Statement Date: February 20, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
PostgreSQL Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Pragma Systems Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Prefix WhoIs Not Affected
Statement Date: February 20, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Prosys OPC Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
PTC Not Affected
Statement Date: January 18, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| PTC Products and Services are not impacted by the TPM vulnerability | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| PTC Products and Services are not impacted by the TPM vulnerability | |
Vendor Statement
PTC Products and Services are not impacted by the TPM vulnerability
pUPNP Not Affected
Statement Date: December 06, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Pure Storage Not Affected
Statement Date: December 17, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Pure Storage products and services are not affected.
PuTTY Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Pyramid Solutions Not Affected
Statement Date: December 03, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
QPR Software Not Affected
Statement Date: December 14, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
TPM2.0 libraries not in use so QPR Products are not affected.
Qualys Not Affected
Statement Date: December 16, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Real-Time Innovations (RTI) Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
There are no RTI products currently using TPM, hence no RTI products affected by this issue.
Red Lion Controls Not Affected
Statement Date: December 16, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Red Lion Products are not affected by these vulnerabilities.
Rejetto Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Roche Diagnostics International AG Not Affected
Statement Date: April 21, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| To date we have not identified any of our products to be vulnerable by virtue of not leveraging the affected components. We are continuously evaluating and monitoring the situation and will provide an update if and where needed. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| To date we have not identified any of our products to be vulnerable by virtue of not leveraging the affected components. We are continuously evaluating and monitoring the situation and will provide an update if and where needed. | |
Rockwell Automation Not Affected
Statement Date: December 27, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Rust Security Response WG Not Affected
Statement Date: December 09, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Samba Not Affected
Statement Date: December 01, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Samba is not impacted.
SanDisk Corporation Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
SAS Not Affected
Statement Date: December 07, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Sauter-Controls Not Affected
Statement Date: February 21, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Schweitzer Engineering Laboratories Not Affected
Statement Date: March 03, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Securepoint GmbH Not Affected
Statement Date: December 08, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
ServiceNow Not Affected
Statement Date: May 14, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Siemens Not Affected
Statement Date: March 31, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Sierra Wireless Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Silicon Labs Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Smiths Medical Not Affected
Statement Date: December 06, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Snap One Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
SolarWinds Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| As a software vendor that does not utilize TPM. SolarWinds is not affected. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| As a software vendor that does not utilize TPM. SolarWinds is not affected. | |
Splunk Not Affected
Statement Date: March 19, 2024
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
STMicroelectronics Not Affected
Statement Date: March 10, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| STMicroelectronics confirms that all STMicroelectronics STSAFE-TPM devices are not affected by the issue identified in VU#782720.2 with CVE-2023-1017. The assessment has been conducted by reviewing the code and by testing the STSAFE-TPM products. When the relevant attack paths are performed, the devices return the error code TPM_RC_SIZE and remain fully functional. Some older products may enter failure mode but behave as expected after failure mode exit. | |
| References: | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| STMicroelectronics confirms that all STMicroelectronics STSAFE-TPM devices are not affected by the issue identified in VU#782720.2 with CVE-2023-1018. The assessment has been conducted by reviewing the code and by testing the STSAFE-TPM products. When the relevant attack paths are performed, the devices return the error code TPM_RC_INSUFFICIENT and remain fully functional. | |
| References: | |
Vendor Statement
STMicroelectronics confirms that all STMicroelectronics STSAFE-TPM devices are not affected by the issue identified in VU#782720. No firmware updates are needed.
References
Supermicro Not Affected
Statement Date: December 14, 2022
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Supermicro BIOS is not affected. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Supermicro BIOS is not affected. | |
Swann Not Affected
Statement Date: February 22, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Swann have confirmed that TPM2.0 is not used in hardware or software implementations of our products or related apps. | |
References:
|
|
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Swann have confirmed that TPM2.0 is not used in hardware or software implementations of our products or related apps. | |
References:
|
|
Vendor Statement
Swann have confirmed that TPM2.0 is not used in hardware or software implementations of our products or related apps.
The Echo Group Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Toshiba Corporation Not Affected
Statement Date: December 28, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Treck Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Triton Data Center Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
SmartOS does not ship any modules that interface directly or indirectly with a TPM.
Twisted Not Affected
Statement Date: December 06, 2022
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| I don't know what the TPM 2.0 library is, and in any case Twisted doesn't use it or reference a CryptParameterDecryption in any way, so I'm not sure why we were included in this advisory. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| I don't know what the TPM 2.0 library is, and in any case Twisted doesn't use it or reference a CryptParameterDecryption in any way, so I'm not sure why we were included in this advisory. | |
Tychon Not Affected
Statement Date: February 21, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
UEFI Security Response Team Not Affected
Statement Date: December 16, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
Based on the vulnerability evaluation reported by the TCG VRT, it does not appear that the Tianocore/EDK2 code is affected.
Unify Software and Solutions GmbH and Co. KG Not Affected
Statement Date: March 02, 2023
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| We do not have any indications at present that any of our supported products are affected by the vulnerability. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| We do not have any indications at present that any of our supported products are affected by the vulnerability. | |
Untangle Not Affected
Statement Date: December 15, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
VanDyke Software Not Affected
Statement Date: December 09, 2022
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| This is not applicable to VanDyke Software. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| This is not applicable to VanDyke Software. | |
Vendor Statement
This is not applicable to VanDyke Software.
Veracode Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Vivaldi Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Wallarm Not Affected
Statement Date: March 31, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Webmin Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
These vulnerabilities do not seem related to Webmin, except to the degree that it uses underlying SSL libraries.
Weintek Not Affected
Statement Date: December 12, 2022
| CVE-2023-1017 | Not Affected |
| Vendor Statement: | |
| Weintek's current products do not have TPM2.0 modules thus are not affected by the vulnerability. | |
| CVE-2023-1018 | Not Affected |
| Vendor Statement: | |
| Weintek's current products do not have TPM2.0 modules thus are not affected by the vulnerability. | |
Vendor Statement
Weintek's current products do not have TPM2.0 modules thus are not affected by the vulnerability.
Western Digital Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Wind River Not Affected
Statement Date: October 09, 2023
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Wintertree Not Affected
Statement Date: December 07, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Wireshark Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
X.org Foundation Not Affected
Statement Date: December 01, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Yubico Not Affected
Statement Date: December 05, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
Zammad Not Affected
Statement Date: December 02, 2022
| CVE-2023-1017 | Not Affected |
| CVE-2023-1018 | Not Affected |
Vendor Statement
We have not received a statement from the vendor.
AMD Unknown
Statement Date: February 28, 2023
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HEIDENHAIN Unknown
Statement Date: April 13, 2023
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Iconics Inc. Unknown
Statement Date: December 05, 2022
| CVE-2023-1017 | Unknown |
| Vendor Statement: | |
| We are checking our products to see if we are affected. | |
| CVE-2023-1018 | Unknown |
Lenovo Unknown
Statement Date: March 01, 2023
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CERT Addendum
https://support.lenovo.com/us/en/product_security/LEN-118320
Modbus Tools Unknown
Statement Date: January 20, 2023
| CVE-2023-1017 | Unknown |
| Vendor Statement: | |
| Not affected | |
| CVE-2023-1018 | Unknown |
| Vendor Statement: | |
| Not affected | |
Navis Unknown
Statement Date: January 19, 2023
| CVE-2023-1017 | Unknown |
| Vendor Statement: | |
| not related to Navis | |
| CVE-2023-1018 | Unknown |
| Vendor Statement: | |
| Not related to Navis | |
SmileCDR Unknown
Statement Date: December 02, 2022
| CVE-2023-1017 | Unknown |
| Vendor Statement: | |
| This library is not in use by our products. | |
| CVE-2023-1018 | Unknown |
| Vendor Statement: | |
| This library is not used by our software. | |
Vendor Statement
We do not use the TPM library.
Universidad de Alcala Unknown
Statement Date: December 03, 2022
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Wago Unknown
Statement Date: December 09, 2022
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
Under investigation.
Wi-Fi Alliance Unknown
Statement Date: April 19, 2023
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
Wi-Fi Alliance tests and certifies Wi-Fi devices but receives no information on whether these devices utilize TPM 2.0. Therefore, the impact of this vulnerability on these Wi-Fi devices cannot be determined, but based on the description of the report, it is unlikely to compromise the function of the Wi-Fi components of a computing device. No action is possible within Wi-Fi Alliance's scope of work to defend against or mitigate this vulnerability. It is up to the individual device manufacturers to assess if this vulnerability has any impact on their devices, and to take mitigating action if appropriate.
wolfSSL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CERT Addendum
GitHub Issue: https://github.com/wolfSSL/wolfTPM/issues/260
1Byte Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
3proxy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
3xLogic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
A10 Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
A51 DOO Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AbanteCart Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ABB Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Abbott Labs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Accellion Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ACCESS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Accuray Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Acer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ACME Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ACME Packet Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AcoInfo SylixOS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Acronis Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Actelis Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ACTi Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Actiontec Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Adaptec Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Adaptiva Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ADATA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AddOn Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Adobe Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AdTrustMedia Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Advanced Sterilization Products (ASP) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Advance Pro Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Advantech B-B Technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Advantech Czech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AdventNet Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AECOM Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Aeotec Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AERAsec Network Services and Security GMbH Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Aerohive Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Afero Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Agile FleetCommander Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Agilent Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AhnLab Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Airbus Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AirDroid Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AirWatch Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AjaXplorer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Akuvox Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Alcatel-Lucent Enterprise Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Alcon Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Alertus Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Alibaba AliOS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Allegro Software Development Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Allied Telesis Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ALLNET GmbH Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Allround Automations Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Alphatron Medical Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Alpine Linux Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Alstom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Alstrasoft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Altair Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AltiGen Communications Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Alt-n Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Altran Intelligent Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Amazon Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ambir Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
American Megatrends Incorporated (AMI) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Amplifi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
am-utils Developer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Analogic Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Anhui Ronds Science and Technology Incorporated Company Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Anova Culinary, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ANTlabs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apache Commons Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apache Dubbo Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apache HTTP Server Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apache Software Foundation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apache Spark Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apache Struts Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apache Tomcat Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apache Traffic Server Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apache XML Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apereo Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Aperto Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Appeal Virtual Machines Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apple Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Application Security Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Apply Yourself Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AppsGeyser Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
APsystems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Arcadyan Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Arch Linux Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Arcomed Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ardent Software Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AREVA T&D Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Armis Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ARM Limited Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ARRIS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Asante Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Asavie Technologies Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Aspen Tech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AssureBridge Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Astaro Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ASUS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ASUSTeK Computer Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ASUSTOR Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Aternity Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Atheros Communications Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Atlassian Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AtMail Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Atmo O Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Atom Security, Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Atredis Partners Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AT&T Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Attachmate Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Audio-Technica Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Aurigma Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Authentium Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AuthLite Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Authy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Autodemo Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Auto-Maskin AS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Automatic Data Processing Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AutomationDirect Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AutoMobility Distribution Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Automox Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Autonomy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AUVESY-MDT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Avahi mDNS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Avast Antivirus Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Avaya Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AVer Information Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Aveva Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
AVG Anti-virus Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Avigilon Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Avira Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Axigen Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Axis Communications Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
axTLS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BackupPC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BackWeb Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BAE Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bahamut Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Baidu Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bank of America Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Barracuda Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Baxter US Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BB&T Bank Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BD Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BDT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Beckman Coulter Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Beeline Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Belimed Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Belkin Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bell Canada Enterprises Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BellSouth Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bendix Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bentley Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Best Buy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
beyondtrust Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BiBa SOFTWARE Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Billion Electric Co Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Binarly Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BioMerieux Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bitdefender Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bitium Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BitRouter Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bitvise Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bizagi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BlackBerry Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Blackberry QNX Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Blackboard Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Black Box Network Services UK Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
blank Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Blankom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bloxx Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BlueCat Networks Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Blue Coat Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Blueriq Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bluetooth SIG Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Blunk Microsystems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BLU Products Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BMC Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Bomgar Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BoonEx Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Booz Allen Hamilton Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Borderware Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BoringSSL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Boston Scientific Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Botan Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BPC Banking Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Brainlab Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Brave Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BreakingPoint Systems Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Broadcom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Broderbund at Riverdeep Interactive Larning Limited Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Brother USA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Buffalo Technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
BullGuard Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Business Objects Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Butter CMS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cable & Wireless Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CacheGuard Technologies Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cactusoft Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cadence Design Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cafelog Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Calix Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cambium Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Canoga Perkins Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Canon Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Carel Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CareStream Health Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Carrier Global Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Casaba Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CaseWorthy Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CA Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Caterpillar Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Caucho Technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cavium Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cayenta Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CCww Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CDNsun Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CentOS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Centreon Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Centrify Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ceragon Networks Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Certicom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CERT Orange Cyberdefense Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cerulean Studios Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cesanta Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Chatterbox Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Checkbox Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Chiyu Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ciena Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ciitizen Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cincom Systems Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Circutor Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cirpack Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CISA Vulnerability Response and Coordination Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cistron Radius Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CKAN Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Clam AntiVirus Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Claroty Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cleo Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CleverFiles Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cloudflare Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cloudmark Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cluster Resources Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CMS Made Simple Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CMX Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cobalt Strike Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cobham plc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CodeLathe Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cog Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cogix Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cognex Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Coherent Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Color Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Columbia SIP User Agent (SIPC) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Comcast Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Commscope (Ruckus Wireless) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Commvault Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
COMODO Security Solutions, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ComponentSpace Pty Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Comsys Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Conectiva Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Conference and Publication Services LLC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Connect2id Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Consona Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ContentKeeper Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Contiki OS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Convedia Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
COP USA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Copy9 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Corel Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CoSoSys Endpoint Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CouchBase Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cox Communications Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Coyote Point Systems Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
cPanel Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cradlepoint Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cray Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CREDANT Technologies Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Creek Audio Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Crestron Electronics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cricket Wireless Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Critical Path Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cryoserver Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Crypto++ Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CS-Cart Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CSL DualCom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cummings Engineering Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CuteSoft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CUworld Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CVS Home Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CVSNT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CVSTrac Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cyanconnode AB Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CyberArk Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CyberMDX Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CyberSafe Limited Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cyble Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cyclades Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cylance Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cynerio Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cynosure Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cypherbridge Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cypress Semiconductor Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cyrus-IMAP Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Cytiva Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
CZ.NIC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dahua Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Daihen Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Daktronics Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DameWare Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Danish e-Infrastructure Cooperation (WAYF) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DansGuardian Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dassault Systemes Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Datalex Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Datalogics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Datameer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Datto Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Datum Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DBPOWER Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
dd-wrt Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Debian GNU/Linux Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dedicated Micros Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dell Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dell EMC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Delta Industrial Automation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dentrix Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dentsply Sirona Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DENX Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DesignCrowd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DesktopBSD Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Desoutter Industrial Tools Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Deterministic Networks Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Device42 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Devicescape Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dexis Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DFLabs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DIDI Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Diebold Election Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Diebold Nixdorf Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Digicast Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DigiCert Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Digicom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Digital Alert Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Digital Ocean Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Digitus Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DirecTV Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Discord Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Discretix Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Distinct Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Distributed Data Systems (WebHMI) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DivX Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DNSFilter Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
dnsmasq Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dobysoft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Docker Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DocuSign Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dome Home Automation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Doogee Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
dotCMS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DotNetNuke Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dovestones Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DragonFly BSD Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dragos Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Duo Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
DyKnow Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dynabook Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Dynatrace Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Eastlink Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
EasyVista Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Eaton Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
eBay Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
E-Book Systems Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Eclipse Foundation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ECSystems.nl Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Edgewall Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Edimax Computer Company Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
EfficientIP Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
EFI Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
EFS Technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Egnite Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
eIQnetworks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ektron Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Eland Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Elcomplus Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ElcomSoft Co. Ltd. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Electronic Arts Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Electronic Frontier Foundation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Elekta Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Elspec Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Embarcadero Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Embed This Go Ahead Web Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Emerson Electric Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Emerson Network Power Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Enablence Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Encore Electronics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ENEA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Engarde Secure Linux Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
EnOcean Edge Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Entegrity Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Enterasys Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Entercept Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Entr'ouvert Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Entrust Datacard Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Environmental Systems Research Institute Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Envoy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Epic Systems Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Epiphany Healthcare Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Epsilon Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ERDAS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ericsson Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ER Mapper Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ESET LLC. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
eSignal Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Espressif Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Exadel Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Experian Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Express Logic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Extreme Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fail2ban Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fanuc America Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FATEK Automation Corp. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FatPipe Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fedora Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fiat Chrysler Automobiles Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fibaro Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fidelity FMR Corp. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FiiO Electronics Technology Co., Ltd. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Filewave Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FireFTP Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fitbit Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fives Landis Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FLAC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FlashRouters Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Flash Seats Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Flexera Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FlexVision Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fluke Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FNet Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fonality Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fone Tracker Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Force10 Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Forcepoint Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ForeScout Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fortinet Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Foxit Software Company Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
F-PROT AVS by Frisk Software International Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fraunhofer Institut Integrierte Schaltungen IIS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FreeBSD Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FreePBX Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Frontier Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
F-Secure Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FTP Software Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FtpUse Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Fuji Electric and Hakko Electric Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
FujiFilm Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
fuse-nfs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GamaSEC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GameTap-Turner Broadcasting subsidiary Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Gamma Tech Computer Corp. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Garmin International, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
G DATA Software AG Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
gdnsd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GE Healthcare Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Gemalto AV Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
General Dynamics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
General Electric Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
General Motors Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Genexis Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Geniatech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Gentoo Linux Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GETAC Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Getinge Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Getjar Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GFI Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ghost Foundation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GIGABYTE Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Gigasys Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Gilat Network Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GitHub Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Github Security lab Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GitLab Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Global Eagle Entertainment Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Global IP Solutions Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GlobalSign Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Global Technology Associates Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Gnash Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GNOME Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GNU adns Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GNU Compiler Collection Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GNU glibc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GNU Grub Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GnuPG Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GNU Sharutils Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GnuTLS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GNU wget Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GoAnywhere Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GoDaddy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Good Technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Google Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Go Programming Language Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GPS Insight Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Grandstream Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Granite Data Services Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GraphicsMagick Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GraphQL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Grass Valley Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GrayLog Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Green Hills Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Green Packet Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
gRPC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Grumman System Support Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
GSMA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Guangzhou Gaoke Communications Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Guest Mobi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Gurock Software GmbH Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Gynoii Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Haas Automation, Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Halaxy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Haldex Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Haliplex Communication Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hanvon Technology Co Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hanwha Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HAProxy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HardenedBSD Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Harman Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HEAL Security Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Health Union Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HelpSystems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hewlett Packard Enterprise Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hex Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HiFime Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hillrom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hillstone Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HiSilicon Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hitachi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hitachi Energy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hitron Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hive Social Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HIWIN Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HLstats Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hologic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Honeywell Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Horizon Software Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Horner Automation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
hostapd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Host Engineering, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HP Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
HTC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Huawei Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hughes Network Systems Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hummingbird Ltd. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Husdawg Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Hyundai Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IAIK Java Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IBM Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IBM Corporation (zseries) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IBM Numa-Q Division (Formerly Sequent) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
iboss Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IcelandAir Group hf. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
iceni technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ICU Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IDC Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Idera Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
iiNet Limited Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Illumina Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Imagely Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ImageMagick Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ImageShack.com Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Impero Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Imperva Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IncrediMail Ltd. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
INEA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Infoblox Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
InfoExpress Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Infor Global Solutions Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Informatica Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
InfoSoft Global Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Infotriever Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
InHand Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
InspIRCd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Intellian Technologies, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Internet Initiative Japan Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Internet Systems Consortium Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Internet Systems Consortium - DHCP Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
InterPeak Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
InterSect Alliance Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
InterSoft International Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Intervations Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Intos Electronic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Intuit Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Invanti Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Invensys Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Investintech.com Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Invitae Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IOGEAR Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ionics Instruments Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IPCop Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IP Filter Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IP Infusion Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IPitomy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
iPolicy Networks Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ipswitch Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Iraje Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
iscsi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ISEEVY Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
iSpyoo Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ISYS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
iTerm 2 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
iTrack Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ivanti Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IVT Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IWATSU Voice Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
IZArc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
J2k-Codec Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
JAMF software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Jasco Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
JasPer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
JDS Labs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
JD Soft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Jenkins Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
JetBrains Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
JFrog Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
JH Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Jive Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
JKEKT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Johnson Controls Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Johnson & Johnson Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Joyent Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
J-Tech Digital Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
JTEKT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Jungo Software Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
K7 Computing Private Limited Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
KAME Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Karl Storz Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Kaseya Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Kaspersky Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
KCodes Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
kcura Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
KDE Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Keda Communications Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
KeepMyFamilySecure Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Kerio Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Keynote Systems Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
KGuard Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Kingston Technology Company, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Kioxia America SSD Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
KMC Controls Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Kodak Easy Share Gallery Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Kodak KCMS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Kofax Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Komodia Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Konig Electronics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Koukaam Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Kyocera Communications Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LabTech Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lacework Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LaCie Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Laird Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lancope Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LANDesk Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Landis+Gyr Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lantronix Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lavasoft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lavu Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Leica Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lemur Vehicle Monitors Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LexisNexis Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lexmark International Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LG Electronics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
libarchive Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Libav Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
libbpg Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
libgcrypt Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
libpng Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LibreSSL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
libspf2 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
lifecell Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lightspeed Systems Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
lighttpd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Linear Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Linkage System Integration Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Linkedin Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Linksys Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LinPHA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Linux Kernel Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Linux KVM Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LITE-ON Technology Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LiteSpeed Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LizardTech Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lockheed Martin Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Loewe Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LogicNP Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Logitech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Longshine Networking Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lotus Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Loytec Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LS Electric Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
lsh Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lucent Sky Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lutron Electronics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Lynx Software Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
LZ4 Compression Library Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
m0n0wall Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
M86 Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Macrovision Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MacSSH Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MadWifi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Magento Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Maguire Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
mail2web.com Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MailFoundry acquired by Barracuda Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mailman Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MailTraq Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Maipu Communication Technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ManageEngine Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mandriva S. A. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Marconi Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MarkLogic Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Marvell Semiconductor Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MatrixSSL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mattel Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MaxLinear Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mbed TLS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
McAfee Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
McCain Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
McIntosh Laboratory, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MCI VMAIL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
McKesson Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Measuresoft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MEDHOST Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
media5 Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Media Technology Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MediaTek Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Medicomp Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Medtronic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Megaproxy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Meinberg Funkuhren GmbH & Co. KG Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mellanox Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Men & Mice Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mentor Graphics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mepis Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Meridian Cooperative Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Meta Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Metabase Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Metaswitch Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Metromile Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mevion Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Micro Digital Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Micro Focus Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Microgaming Software Systems Limited Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Micron Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MicroPact Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Microsemi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Microsoft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Microsoft Vulnerability Research Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Midnight Coders Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MikroTik Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Minecraft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MINE Technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Miniclip SA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Minim Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MiniTool Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MIPS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Miranda Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mirapoint Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Miredo Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mita-Teknik Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mitel Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MIT Kerberos Development Team Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MitraStar Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mitsubishi Electric Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mobatek Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mobile Devices Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mobile Knowledge Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mobile X Global Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mocana Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
mod_auth_mellon Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
mod_ssl Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Momentum Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MongoDB Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mono-Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Monroe Electronics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MontaVista Software Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Moodle Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MooseFS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mort Bay Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Motion Computing Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Motorola Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Move Networks Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Moxa Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MSI - Micro-Star International Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MTV Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MusicLab Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Mutare Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MX Logic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MXSPY Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
myLittleTools Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Myriad Genetics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MyriadNetwork Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
mySCADA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MySQL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MYSQL2 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
MZ Automation GmbH Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NagiosQL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nanometrics Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
National Instruments (NI) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Navien Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NcFTP Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NCR Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NEC Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NeoScale Systems Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nero Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NetApp Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Netatalk Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NET Brazil Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NetBurner Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NetComm Wireless Limited Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NetComposite Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NetEase Games Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Netect Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NETELLER Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NETGEAR Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Netmail Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NetMotion Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NETSCOUT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Netscreen Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
netsnmpj Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NetSupport Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
netsweeper Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nettle Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Netty Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NetWin Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Network Solutions Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Network Technologies Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
New Orange Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Newrelic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NewSoft America Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nexenta Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Next Generation Posix Threads Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nextgen Healthcare Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
nghttp2 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Niantic Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nik SoftwareInc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nixu Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NLnet Labs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Node.js Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nokia Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Norfield Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nortel Networks Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Northbridge Secure Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Novell Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Novosoft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nozomi Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
/n software Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NTCanuck Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Nuance Communications Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NuDesign Technologies Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
NVIDIA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Oberhumer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Objective Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Objectivity Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OctetString Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Okta Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OleumTech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OmniAuth Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OmniGroup Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OMRON Industrial Automation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OnApp Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OneLogin Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OneScreen Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Online Media Technologies Ltd. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenBSD Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Open CA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenCart Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Open Connectivity Foundation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenConnect Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OPeNDAP Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenDedup Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Open Dental Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenDNS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenDocMan Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Openfire Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Opengear Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Open Group DCE Defects Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Open Group Motif Defects Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
openHAB Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenIndiana Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenOffice.org Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenPKG Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
openQRM Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenSIPS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenSSL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Openswan Linux IPsec software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenText Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Openwall GNU/*/Linux Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OpenWRT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Opera Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OPNsense Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Opsview Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Opto 22 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Oracle Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
orb Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Orient Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Oryx Embedded Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
oscar Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OSIsoft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OT Morpho Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OTORIO Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Oupree Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OutBack Resource Group Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Outerthought bvba (Daisy CMS) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Owl Labs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
OXID eSales Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Oy Online Solutions Ltd. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PADL Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PagerDuty Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Palisade Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pam-mysql Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Panasonic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Panda Software Ltd. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pandora Media, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Panini Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Panopsys Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Panopto Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Paperthin Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Particle Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pattern Insight Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PA Turnpike Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Payload CMS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PayPal Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PC Tools Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
pd-admin Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PEAR PHP Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pearson Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PEGA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pepperl+Fuchs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Periscope Holdings Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Perl Developers Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Perlustro Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pfizer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
pfSense Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Philips Electronics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Phil Purviance Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Phoenix Contact Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Photo Stock Plus . Com Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
phpBB Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PHP FormMail Generator Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PHPIDS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PHP Live Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pidgin Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PillPack Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ping Identity Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pinterest Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pivot Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pivotal Software, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PivotX Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
plixer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pluck Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Plumtree Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PNI Digital Media Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PolarSSL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Polycom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PolyVision a Steelcase Company Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Portrait Displays Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Postie Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PowerDNS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Primary Arms Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Primeleaf Consulting Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PrinterLogic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Priva Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Process Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ProFTP Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Progress Software Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Project Open Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Proland Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PROLiNK Fida Intl Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Prometric Holdings LLC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Promise Technology Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Proofpoint Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PROTEGO Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Provideo Instruments Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Proxim Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Proxmox Server Solutions Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pscript.de Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
PSI Services LLC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Pulse Secure Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Puppet Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Python Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
QBIK New Zealand Limited Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
QEMU Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
QLogic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Qmail-TLS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
QNAP Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Qolsys Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Qt Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Quadros Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Quagga Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Qualcomm Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Quanta Grid Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Quantenna Communications Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Quantum Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Quick Heal Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Qustodio Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rackspace Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Radiant Logic Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RADIUS Client Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rad Vision Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Radware Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RainWorx Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Raritan Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Raspberry Pi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RasPlex Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RaySharp Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Razer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
rConfig Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ReactOS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RealNetworks Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Real Time Logic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RealVNC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Recurity Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Red Balloon Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Red Canary Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RedFS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Redis Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Retro64 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Retrospect, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ricoh Company Ltd. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RightNow Technologies Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rippling Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rising Antivirus International Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rittal Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Riverbed Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RJS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Roaring Penguin Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rocket.Chat Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Roku Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Roon Labs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rostelecom CERT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RSA Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rsam Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RSI Video Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
rsync Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RT-Thread China Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rubica Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Rubrik Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ruby Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ruckus Wireless Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
RuggedCom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
S21Sec Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
s2n Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sabre Airline Solutions Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SafeLogic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sage Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sagemcom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sailfish OS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SailPoint Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
salesforce.com Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SAML (golang) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Samsung Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Samsung Mobile Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Samsung Semiconductor Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Samsung TV and visual display Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sanctum Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SAP SE Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SaskTel Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SaviAudio Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Savitech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Saviynt Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ScanSafe Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Schlage Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Schlumberger Cameron Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Schneider Electric Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Scott Johnson Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Scytl Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SDL Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Seagate Technology LLC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SearchBlox Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SeaWell Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Secheron Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SecondClone Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Second Sight Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SecPoint Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Secunia Research Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Secure64 Software Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SecureAuth Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Secure Elements Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Securence Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Securework South Africa Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Securifi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Security Onion Solutions Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SecurStar Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SEIKO EPSON Corp. / Epson America Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Senao International Co. Ltd. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sendmail Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sendmail Consortium Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sequi Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SERENA Software Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SerVision Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Seungyoung "Steve" Kim Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sewio Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ShareLaTeX Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sharp Electronics Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SHDesigns Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Shenzhen Gongjin Electronics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ShenZhen YuLong Audio Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Shibboleth Consortium Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ShoreTel Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Shutterfly.com Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Silvair Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Silverfort Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Silver Peak Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SimCom Wireless Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sk Hynix Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Slack Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Slackware Linux Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Slashcode.com Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sleuth Kit Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SmarterTools Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SMA Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SMC Networks Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SmoothWall Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SNMP Research Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Snort Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Snyk Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Soapstone Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Social Solutions Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SoftArtisans Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Softing Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SoftLayer Technologies Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Software AG Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Software FX Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SolidWorks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Solutions Atlantic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SonarSource Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sonatype Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SonicWall Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sonos Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sony Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sony BMG Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sophos Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sourcefire Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
sourceforge Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Southwest Airlines Co. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Spam Titan Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Speedifi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Spring Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SpringCM Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sprint Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sprint (VMAIL) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Spyrus Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SQLite Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SrcDemo2 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SSH Communications Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SSOCircle Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SSO Easy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Starbucks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Star Labs Online Limited Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Steema Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ST Engineering North America, Inc (Aethon) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Stoner Acoustics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Stonesoft Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
StrangeBee Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Strapi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
strongSwan Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Stryker Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Stunnel Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Subaru of America Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Subrion Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sucuri Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sunbelt Software Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sunbird Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Superfish Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
support.com Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SurfControl Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SwiftView Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Swissray Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Symantec Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Synadia Communications, Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Synology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Synopsys Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Synopsys, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Syntegra Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
SysAid Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Sysinternals Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Systech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Systems Design Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Taglio LLC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Talend Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TASER Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TATA Consulting Services Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TCPWave Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TDS Telecom Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TeamViewer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Technicolor Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TechSmith Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tecknet Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Telos Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Telus Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Temenos Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tenable Network Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tencent Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tenda Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TeraDak Audio Electric Company Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Teradici Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tesla Motors Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Test Peer Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Texas Instruments Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TFTPD32 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Thales Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Thecus Tech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The Horde Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The HSA Foundation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The LLVM Security Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The Open Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The OpenLDAP Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The PHP Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Thermo Fisher Scientific Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The SCO Group Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The SCO Group (SCO Linux) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The SCO Group (SCO UnixWare) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TheSpyApp Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The Truth Spy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The United States Department of Education Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
The Walt Disney Company Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Thingsquare Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ThinkFree Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Thomson Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ThreatMetrix Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ThreeWP Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TIBCO Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tiki Software Community Association Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tinyproxy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tiny Vendor Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TippingPoint Technologies Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tizen Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
T-Mobile Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TMP Consultoria (Brazil) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TMW Systems, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
tomatoCart Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tomita Masahiro Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tools4Ever Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Topica Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Topline Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tor Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Toshiba America Information Systems, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Total Commander File Info Plugin Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TP-LINK Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Trail of Bits Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Transarc Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Trapeze Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Trellix Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Trend Micro Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TRENDnet Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Triangle Microworks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Trihedral Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Trivantis Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tropos Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TrueOS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TrustPort as Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Trustwave Secure Web Gateway (SWG) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Trustwave Web Application Firewall (WAF) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TTSSH Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TUNIX Digital Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Turbolinux Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TutorTrac Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Tut Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TWiki Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
TwinOaks Computing Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Twitter Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
U4EA Technologies Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ubee Interactive Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ubiquiti Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
u-blox Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ubuntu Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
UC Browser for Android Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
uClibc-ng Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ultraseek Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ultra Shareware Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
UltraVNC Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
un4seen Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Unicoi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Unigraphics Solutions Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Unisys Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
United Online Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Univention Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Untangled Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
UPMC Enterprises Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
URayTech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
USRobotics Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Utah Raster Toolkit Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
UTStarcom Incorporated Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
VAIO Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Valmet Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Valve Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Valve Software (Steam) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
VanillaForums Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Varian Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vasco Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
VDE CERT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vdoo Security Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Veeam Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Veeder-Root Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vegastream Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Verdasys Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Verilink Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Veritas Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Verity Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Verizon Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Verizon Wireless Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Versa Networks Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Versiant Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vertiv Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vespa - AI, Engine Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vesta Control Panel Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Viasat Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
VideoLAN Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vina Technologies Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Virtual Access Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
VISAM Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vision Critical Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vision RT Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Visual Tools Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vitronic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
VMware Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vocera Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Vodafone Group Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
vtiger Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
W3 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Watchguard Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Waters Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Wave Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Waystream Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WebDialogs Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WebEx Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WebGate Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WebGlimpse Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Web Reference Database Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Websecure Ltd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WECON Technology Co Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Weinert Automation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Welch Allyn Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WeOnlyDo Software Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Westermo Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WeySys Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Wibu-Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WIN-911 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Windscribe Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Windstream Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WinMagic Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WinSCP Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WinTec Arrowmaker, Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WinZip Computing Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Wizkunde B.V. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WizNET Technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Wizz Computers Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Woodstone Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Woori TG Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WordPress Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Wordpress Mini Mail Dashboard Widget Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Workday Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Workgroup Solutions Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Work Write Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WorldKast Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Worldspan Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Wowza Media Systems Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
WSO2 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
XAMPP-Apache Friends Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Xangati Inc Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
X-Cart Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Xelex Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Xen Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Xerox Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
xFree86 Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Xiaomi Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
XigmaNAS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Xilinx Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Xinje Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
xmcd Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
XMLPortal Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
XML Security Library Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
XMMS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
XnView Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
XOLO Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
xpdf Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
XTRADIUS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Xylem Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
XYZ Company Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Yahoo Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Yamaha Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Yandex Cloud Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
YARDRADIUS Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Yellowfin BI Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Yokogawa Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zaproxy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zebra Technologies Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zendesk Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zenturi Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zephyr Project Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zero Day Initiative (ZDI) Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ZF Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ziehm Imaging Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zillow Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Ziproxy Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zizai Tech Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ZModo Technology Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zoho Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zoll Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zonare/Mindray Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zone Labs Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zoomify Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zooz Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zope Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zscaler Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
ZTE Corporation Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zuken Inc. Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
Zyxel Unknown
| CVE-2023-1017 | Unknown |
| CVE-2023-1018 | Unknown |
Vendor Statement
We have not received a statement from the vendor.
References
- https://blog.quarkslab.com/vulnerabilities-in-the-tpm-20-reference-implementation-code.html
- https://trustedcomputinggroup.org/resource/tpm-library-specification/
- https://trustedcomputinggroup.org/membership/member-companies/
- https://trustedcomputinggroup.org/membership/certification/tpm-certified-products/
- https://www.intel.com/content/www/us/en/business/enterprise-computers/resources/trusted-platform-module.html
- https://learn.microsoft.com/en-us/windows/security/information-protection/tpm/trusted-platform-module-overview
- https://google.github.io/tpm-js/
- https://learn.microsoft.com/en-us/windows/security/information-protection/tpm/tpm-recommendations
- https://github.com/immune-gmbh/tpm-vuln-checker
Other Information
| CVE IDs: | CVE-2023-1017 CVE-2023-1018 |
| API URL: | VINCE JSON | CSAF |
| Date Public: | 2023-02-28 |
| Date First Published: | 2023-02-28 |
| Date Last Updated: | 2025-07-08 20:06 UTC |
| Document Revision: | 40 |