Search for packages
purl | pkg:deb/debian/openssl@1.1.0l-1~deb9u1 |
Next non-vulnerable version | 3.0.16-1~deb12u1 |
Latest non-vulnerable version | 3.5.0-2 |
Risk | 10.0 |
Vulnerability | Summary | Fixed by |
---|---|---|
VCID-1gxv-1j1x-aaag
Aliases: CVE-2019-1547 VC-OPENSSL-20190910-CVE-2019-1547 |
Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s). |
Affected by 19 other vulnerabilities. |
VCID-2bxp-9qmt-aaar
Aliases: CVE-2024-5535 |
Issue summary: Calling the OpenSSL API function SSL_select_next_proto with an empty supported client protocols buffer may cause a crash or memory contents to be sent to the peer. Impact summary: A buffer overread can have a range of potential consequences such as unexpected application beahviour or a crash. In particular this issue could result in up to 255 bytes of arbitrary private data from memory being sent to the peer leading to a loss of confidentiality. However, only applications that directly call the SSL_select_next_proto function with a 0 length list of supported client protocols are affected by this issue. This would normally never be a valid scenario and is typically not under attacker control but may occur by accident in the case of a configuration or programming error in the calling application. The OpenSSL API function SSL_select_next_proto is typically used by TLS applications that support ALPN (Application Layer Protocol Negotiation) or NPN (Next Protocol Negotiation). NPN is older, was never standardised and is deprecated in favour of ALPN. We believe that ALPN is significantly more widely deployed than NPN. The SSL_select_next_proto function accepts a list of protocols from the server and a list of protocols from the client and returns the first protocol that appears in the server list that also appears in the client list. In the case of no overlap between the two lists it returns the first item in the client list. In either case it will signal whether an overlap between the two lists was found. In the case where SSL_select_next_proto is called with a zero length client list it fails to notice this condition and returns the memory immediately following the client list pointer (and reports that there was no overlap in the lists). This function is typically called from a server side application callback for ALPN or a client side application callback for NPN. In the case of ALPN the list of protocols supplied by the client is guaranteed by libssl to never be zero in length. The list of server protocols comes from the application and should never normally be expected to be of zero length. In this case if the SSL_select_next_proto function has been called as expected (with the list supplied by the client passed in the client/client_len parameters), then the application will not be vulnerable to this issue. If the application has accidentally been configured with a zero length server list, and has accidentally passed that zero length server list in the client/client_len parameters, and has additionally failed to correctly handle a "no overlap" response (which would normally result in a handshake failure in ALPN) then it will be vulnerable to this problem. In the case of NPN, the protocol permits the client to opportunistically select a protocol when there is no overlap. OpenSSL returns the first client protocol in the no overlap case in support of this. The list of client protocols comes from the application and should never normally be expected to be of zero length. However if the SSL_select_next_proto function is accidentally called with a client_len of 0 then an invalid memory pointer will be returned instead. If the application uses this output as the opportunistic protocol then the loss of confidentiality will occur. This issue has been assessed as Low severity because applications are most likely to be vulnerable if they are using NPN instead of ALPN - but NPN is not widely used. It also requires an application configuration or programming error. Finally, this issue would not typically be under attacker control making active exploitation unlikely. The FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue. Due to the low severity of this issue we are not issuing new releases of OpenSSL at this time. The fix will be included in the next releases when they become available. |
Affected by 7 other vulnerabilities. Affected by 2 other vulnerabilities. Affected by 1 other vulnerability. Affected by 0 other vulnerabilities. |
VCID-2rtj-nbth-aaam
Aliases: CVE-2023-3817 |
Issue summary: Checking excessively long DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. After fixing CVE-2023-3446 it was discovered that a large q parameter value can also trigger an overly long computation during some of these checks. A correct q value, if present, cannot be larger than the modulus p parameter, thus it is unnecessary to perform these checks if q is larger than p. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the "-check" option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue. |
Affected by 0 other vulnerabilities. Affected by 7 other vulnerabilities. Affected by 0 other vulnerabilities. Affected by 2 other vulnerabilities. |
VCID-5khv-27u8-aaaa
Aliases: CVE-2022-2097 GHSA-3wx7-46ch-7rq2 VC-OPENSSL-20220705-CVE-2022-2097 |
AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p). |
Affected by 3 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-5kqm-99x8-aaak
Aliases: CVE-2023-3446 |
Issue summary: Checking excessively long DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. One of those checks confirms that the modulus ('p' parameter) is not too large. Trying to use a very large modulus is slow and OpenSSL will not normally use a modulus which is over 10,000 bits in length. However the DH_check() function checks numerous aspects of the key or parameters that have been supplied. Some of those checks use the supplied modulus value even if it has already been found to be too large. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulernable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the '-check' option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue. |
Affected by 0 other vulnerabilities. Affected by 7 other vulnerabilities. Affected by 0 other vulnerabilities. Affected by 2 other vulnerabilities. |
VCID-6cjv-xp17-aaah
Aliases: CVE-2021-3449 GHSA-83mx-573x-5rw9 VC-OPENSSL-20210325-CVE-2021-3449 |
An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j). |
Affected by 19 other vulnerabilities. |
VCID-6pjh-cgdt-aaaj
Aliases: CVE-2022-0778 GHSA-x3mh-jvjw-3xwx VC-OPENSSL-20220315-CVE-2022-0778 |
The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc). |
Affected by 19 other vulnerabilities. |
VCID-6uk8-2jnu-aaam
Aliases: CVE-2024-4741 |
Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause memory to be accessed that was previously freed in some situations Impact summary: A use after free can have a range of potential consequences such as the corruption of valid data, crashes or execution of arbitrary code. However, only applications that directly call the SSL_free_buffers function are affected by this issue. Applications that do not call this function are not vulnerable. Our investigations indicate that this function is rarely used by applications. The SSL_free_buffers function is used to free the internal OpenSSL buffer used when processing an incoming record from the network. The call is only expected to succeed if the buffer is not currently in use. However, two scenarios have been identified where the buffer is freed even when still in use. The first scenario occurs where a record header has been received from the network and processed by OpenSSL, but the full record body has not yet arrived. In this case calling SSL_free_buffers will succeed even though a record has only been partially processed and the buffer is still in use. The second scenario occurs where a full record containing application data has been received and processed by OpenSSL but the application has only read part of this data. Again a call to SSL_free_buffers will succeed even though the buffer is still in use. While these scenarios could occur accidentally during normal operation a malicious attacker could attempt to engineer a stituation where this occurs. We are not aware of this issue being actively exploited. The FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue. |
Affected by 7 other vulnerabilities. Affected by 2 other vulnerabilities. |
VCID-7bwv-hdm1-aaae
Aliases: CVE-2020-1967 GHSA-jq65-29v4-4x35 VC-OPENSSL-20200421-CVE-2020-1967 |
Server or client applications that call the SSL_check_chain() function during or after a TLS 1.3 handshake may crash due to a NULL pointer dereference as a result of incorrect handling of the "signature_algorithms_cert" TLS extension. The crash occurs if an invalid or unrecognised signature algorithm is received from the peer. This could be exploited by a malicious peer in a Denial of Service attack. OpenSSL version 1.1.1d, 1.1.1e, and 1.1.1f are affected by this issue. This issue did not affect OpenSSL versions prior to 1.1.1d. Fixed in OpenSSL 1.1.1g (Affected 1.1.1d-1.1.1f). |
Affected by 19 other vulnerabilities. |
VCID-7y2m-nqcd-aaaj
Aliases: CVE-2018-0735 VC-OPENSSL-20181029-CVE-2018-0735 |
The OpenSSL ECDSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.1.1a (Affected 1.1.1). |
Affected by 19 other vulnerabilities. |
VCID-9cyz-en38-aaad
Aliases: CVE-2018-0732 VC-OPENSSL-20180612-CVE-2018-0732 |
During key agreement in a TLS handshake using a DH(E) based ciphersuite a malicious server can send a very large prime value to the client. This will cause the client to spend an unreasonably long period of time generating a key for this prime resulting in a hang until the client has finished. This could be exploited in a Denial Of Service attack. Fixed in OpenSSL 1.1.0i-dev (Affected 1.1.0-1.1.0h). Fixed in OpenSSL 1.0.2p-dev (Affected 1.0.2-1.0.2o). |
Affected by 19 other vulnerabilities. |
VCID-9ruy-372r-aaas
Aliases: CVE-2021-23841 GHSA-84rm-qf37-fgc2 VC-OPENSSL-20210216-CVE-2021-23841 |
The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x). |
Affected by 19 other vulnerabilities. |
VCID-9wtx-9sbn-aaam
Aliases: CVE-2023-0286 GHSA-x4qr-2fvf-3mr5 |
Vulnerable OpenSSL included in cryptography wheels |
Affected by 3 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-9yg1-fuqa-aaas
Aliases: DSA-4539-3 openssl |
regression update |
Affected by 19 other vulnerabilities. |
VCID-ceua-4xhz-aaag
Aliases: CVE-2018-5407 VC-OPENSSL-20181102-CVE-2018-5407 |
Simultaneous Multi-threading (SMT) in processors can enable local users to exploit software vulnerable to timing attacks via a side-channel timing attack on 'port contention'. |
Affected by 19 other vulnerabilities. |
VCID-ec3y-aejm-aaad
Aliases: CVE-2022-4450 GHSA-v5w6-wcm8-jm4q |
The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue. |
Affected by 3 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-fq1f-pcr9-aaak
Aliases: CVE-2019-1549 VC-OPENSSL-20190910-CVE-2019-1549 |
OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). |
Affected by 19 other vulnerabilities. |
VCID-ghgs-7167-aaag
Aliases: CVE-2021-3712 GHSA-q9wj-f4qw-6vfj VC-OPENSSL-20210824-CVE-2021-3712 |
ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own "d2i" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the "data" and "length" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the "data" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y). |
Affected by 19 other vulnerabilities. |
VCID-jm31-c3d3-aaap
Aliases: CVE-2024-0727 GHSA-9v9h-cgj8-h64p |
openssl: denial of service via null dereference |
Affected by 7 other vulnerabilities. Affected by 2 other vulnerabilities. Affected by 0 other vulnerabilities. Affected by 2 other vulnerabilities. |
VCID-kc39-vfd3-aaad
Aliases: CVE-2023-5678 |
Issue summary: Generating excessively long X9.42 DH keys or checking excessively long X9.42 DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_generate_key() to generate an X9.42 DH key may experience long delays. Likewise, applications that use DH_check_pub_key(), DH_check_pub_key_ex() or EVP_PKEY_public_check() to check an X9.42 DH key or X9.42 DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. While DH_check() performs all the necessary checks (as of CVE-2023-3817), DH_check_pub_key() doesn't make any of these checks, and is therefore vulnerable for excessively large P and Q parameters. Likewise, while DH_generate_key() performs a check for an excessively large P, it doesn't check for an excessively large Q. An application that calls DH_generate_key() or DH_check_pub_key() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. DH_generate_key() and DH_check_pub_key() are also called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_pub_key_ex(), EVP_PKEY_public_check(), and EVP_PKEY_generate(). Also vulnerable are the OpenSSL pkey command line application when using the "-pubcheck" option, as well as the OpenSSL genpkey command line application. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue. |
Affected by 7 other vulnerabilities. Affected by 3 other vulnerabilities. Affected by 0 other vulnerabilities. Affected by 2 other vulnerabilities. |
VCID-kn8m-m9v4-aaaa
Aliases: CVE-2023-0466 |
Improper Certificate Validation The function X509_VERIFY_PARAM_add0_policy() is documented to implicitly enable the certificate policy check when doing certificate verification. However the implementation of the function does not enable the check which allows certificates with invalid or incorrect policies to pass the certificate verification. As suddenly enabling the policy check could break existing deployments it was decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() function. Instead the applications that require OpenSSL to perform certificate policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly enable the policy check by calling X509_VERIFY_PARAM_set_flags() with the X509_V_FLAG_POLICY_CHECK flag argument. Certificate policy checks are disabled by default in OpenSSL and are not commonly used by applications. |
Affected by 3 other vulnerabilities. Affected by 0 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-mu8w-emsy-aaak
Aliases: CVE-2023-0465 |
Improper Certificate Validation Applications that use a non-default option when verifying certificates may be vulnerable to an attack from a malicious CA to circumvent certain checks. Invalid certificate policies in leaf certificates are silently ignored by OpenSSL and other certificate policy checks are skipped for that certificate. A malicious CA could use this to deliberately assert invalid certificate policies in order to circumvent policy checking on the certificate altogether. Policy processing is disabled by default but can be enabled by passing the `-policy' argument to the command line utilities or by calling the `X509_VERIFY_PARAM_set1_policies()' function. |
Affected by 3 other vulnerabilities. Affected by 0 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-nx9u-49dk-aaag
Aliases: CVE-2020-1971 VC-OPENSSL-20201208-CVE-2020-1971 |
Affected by 19 other vulnerabilities. |
|
VCID-psvb-thr2-aaap
Aliases: CVE-2018-0734 VC-OPENSSL-20181030-CVE-2018-0734 |
The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p). |
Affected by 19 other vulnerabilities. |
VCID-q9r2-dz2p-aaap
Aliases: CVE-2019-1563 VC-OPENSSL-20190910-CVE-2019-1563 |
In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s). |
Affected by 19 other vulnerabilities. |
VCID-qtbw-vpbp-aaaj
Aliases: CVE-2021-4160 VC-OPENSSL-20220128-CVE-2021-4160 |
There is a carry propagation bug in the MIPS32 and MIPS64 squaring procedure. Many EC algorithms are affected, including some of the TLS 1.3 default curves. Impact was not analyzed in detail, because the pre-requisites for attack are considered unlikely and include reusing private keys. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH private key among multiple clients, which is no longer an option since CVE-2016-0701. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0.0. It was addressed in the releases of 1.1.1m and 3.0.1 on the 15th of December 2021. For the 1.0.2 release it is addressed in git commit 6fc1aaaf3 that is available to premium support customers only. It will be made available in 1.0.2zc when it is released. The issue only affects OpenSSL on MIPS platforms. |
Affected by 19 other vulnerabilities. |
VCID-r7qs-74zt-aaab
Aliases: CVE-2021-3711 GHSA-5ww6-px42-wc85 VC-OPENSSL-20210824-CVE-2021-3711 |
In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the "out" parameter can be NULL and, on exit, the "outlen" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the "out" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated. Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). |
Affected by 19 other vulnerabilities. |
VCID-s758-gezj-aaan
Aliases: CVE-2019-1543 VC-OPENSSL-20190306-CVE-2019-1543 |
ChaCha20-Poly1305 is an AEAD cipher, and requires a unique nonce input for every encryption operation. RFC 7539 specifies that the nonce value (IV) should be 96 bits (12 bytes). OpenSSL allows a variable nonce length and front pads the nonce with 0 bytes if it is less than 12 bytes. However it also incorrectly allows a nonce to be set of up to 16 bytes. In this case only the last 12 bytes are significant and any additional leading bytes are ignored. It is a requirement of using this cipher that nonce values are unique. Messages encrypted using a reused nonce value are susceptible to serious confidentiality and integrity attacks. If an application changes the default nonce length to be longer than 12 bytes and then makes a change to the leading bytes of the nonce expecting the new value to be a new unique nonce then such an application could inadvertently encrypt messages with a reused nonce. Additionally the ignored bytes in a long nonce are not covered by the integrity guarantee of this cipher. Any application that relies on the integrity of these ignored leading bytes of a long nonce may be further affected. Any OpenSSL internal use of this cipher, including in SSL/TLS, is safe because no such use sets such a long nonce value. However user applications that use this cipher directly and set a non-default nonce length to be longer than 12 bytes may be vulnerable. OpenSSL versions 1.1.1 and 1.1.0 are affected by this issue. Due to the limited scope of affected deployments this has been assessed as low severity and therefore we are not creating new releases at this time. Fixed in OpenSSL 1.1.1c (Affected 1.1.1-1.1.1b). Fixed in OpenSSL 1.1.0k (Affected 1.1.0-1.1.0j). |
Affected by 19 other vulnerabilities. |
VCID-tkv7-cnhy-aaas
Aliases: CVE-2023-0464 |
Improper Certificate Validation A security vulnerability has been identified in all supported versions of OpenSSL related to the verification of X.509 certificate chains that include policy constraints. Attackers may be able to exploit this vulnerability by creating a malicious certificate chain that triggers exponential use of computational resources, leading to a denial-of-service (DoS) attack on affected systems. Policy processing is disabled by default but can be enabled by passing the `-policy' argument to the command line utilities or by calling the `X509_VERIFY_PARAM_set1_policies()' function. |
Affected by 3 other vulnerabilities. Affected by 0 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-ur7f-5ey8-aaak
Aliases: CVE-2022-4304 GHSA-p52g-cm5j-mjv4 |
A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection. |
Affected by 3 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-ut1w-jvp1-aaaj
Aliases: CVE-2021-3450 GHSA-8hfj-xrj2-pm22 VC-OPENSSL-20210325-CVE-2021-3450 |
The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a "purpose" has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named "purpose" values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it can be overridden or removed by an application. In order to be affected, an application must explicitly set the X509_V_FLAG_X509_STRICT verification flag and either not set a purpose for the certificate verification or, in the case of TLS client or server applications, override the default purpose. OpenSSL versions 1.1.1h and newer are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1h-1.1.1j). |
Affected by 19 other vulnerabilities. |
VCID-uua4-ygek-aaah
Aliases: CVE-2023-0215 GHSA-r7jw-wp68-3xch |
The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by end user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions, for example if a CMS recipient public key is invalid, the new filter BIO is freed and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then goes on to call BIO_pop() on the BIO then a use-after-free will occur. This will most likely result in a crash. This scenario occurs directly in the internal function B64_write_ASN1() which may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on the BIO. This internal function is in turn called by the public API functions PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. Other public API functions that may be impacted by this include i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and i2d_PKCS7_bio_stream. The OpenSSL cms and smime command line applications are similarly affected. |
Affected by 3 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-vc4y-g9fg-aaak
Aliases: CVE-2021-23840 GHSA-qgm6-9472-pwq7 VC-OPENSSL-20210216-CVE-2021-23840 |
Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x). |
Affected by 19 other vulnerabilities. |
VCID-w17h-u8wd-aaaj
Aliases: CVE-2022-2068 VC-OPENSSL-20220621-CVE-2022-2068 |
In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze). |
Affected by 19 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-xda1-h5nv-aaaf
Aliases: CVE-2023-2650 |
Issue summary: Processing some specially crafted ASN.1 object identifiers or data containing them may be very slow. Impact summary: Applications that use OBJ_obj2txt() directly, or use any of the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message size limit may experience notable to very long delays when processing those messages, which may lead to a Denial of Service. An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - most of which have no size limit. OBJ_obj2txt() may be used to translate an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL type ASN1_OBJECT) to its canonical numeric text form, which are the sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by periods. When one of the sub-identifiers in the OBJECT IDENTIFIER is very large (these are sizes that are seen as absurdly large, taking up tens or hundreds of KiBs), the translation to a decimal number in text may take a very long time. The time complexity is O(n^2) with 'n' being the size of the sub-identifiers in bytes (*). With OpenSSL 3.0, support to fetch cryptographic algorithms using names / identifiers in string form was introduced. This includes using OBJECT IDENTIFIERs in canonical numeric text form as identifiers for fetching algorithms. Such OBJECT IDENTIFIERs may be received through the ASN.1 structure AlgorithmIdentifier, which is commonly used in multiple protocols to specify what cryptographic algorithm should be used to sign or verify, encrypt or decrypt, or digest passed data. Applications that call OBJ_obj2txt() directly with untrusted data are affected, with any version of OpenSSL. If the use is for the mere purpose of display, the severity is considered low. In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 certificates, including simple things like verifying its signature. The impact on TLS is relatively low, because all versions of OpenSSL have a 100KiB limit on the peer's certificate chain. Additionally, this only impacts clients, or servers that have explicitly enabled client authentication. In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, such as X.509 certificates. This is assumed to not happen in such a way that it would cause a Denial of Service, so these versions are considered not affected by this issue in such a way that it would be cause for concern, and the severity is therefore considered low. |
Affected by 0 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-y2q8-1hgf-aaak
Aliases: CVE-2019-1551 VC-OPENSSL-20191206-CVE-2019-1551 |
There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t). |
Affected by 19 other vulnerabilities. |
VCID-yr2h-w72w-aaab
Aliases: CVE-2024-2511 |
Issue summary: Some non-default TLS server configurations can cause unbounded memory growth when processing TLSv1.3 sessions Impact summary: An attacker may exploit certain server configurations to trigger unbounded memory growth that would lead to a Denial of Service This problem can occur in TLSv1.3 if the non-default SSL_OP_NO_TICKET option is being used (but not if early_data support is also configured and the default anti-replay protection is in use). In this case, under certain conditions, the session cache can get into an incorrect state and it will fail to flush properly as it fills. The session cache will continue to grow in an unbounded manner. A malicious client could deliberately create the scenario for this failure to force a Denial of Service. It may also happen by accident in normal operation. This issue only affects TLS servers supporting TLSv1.3. It does not affect TLS clients. The FIPS modules in 3.2, 3.1 and 3.0 are not affected by this issue. OpenSSL 1.0.2 is also not affected by this issue. |
Affected by 7 other vulnerabilities. Affected by 2 other vulnerabilities. |
VCID-yrx6-rcrr-aaap
Aliases: CVE-2022-1292 VC-OPENSSL-20220503-CVE-2022-1292 |
The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd). |
Affected by 19 other vulnerabilities. Affected by 7 other vulnerabilities. |
VCID-z5js-c6pd-yybd
Aliases: CVE-2024-9143 |
Issue summary: Use of the low-level GF(2^m) elliptic curve APIs with untrusted explicit values for the field polynomial can lead to out-of-bounds memory reads or writes. Impact summary: Out of bound memory writes can lead to an application crash or even a possibility of a remote code execution, however, in all the protocols involving Elliptic Curve Cryptography that we're aware of, either only "named curves" are supported, or, if explicit curve parameters are supported, they specify an X9.62 encoding of binary (GF(2^m)) curves that can't represent problematic input values. Thus the likelihood of existence of a vulnerable application is low. In particular, the X9.62 encoding is used for ECC keys in X.509 certificates, so problematic inputs cannot occur in the context of processing X.509 certificates. Any problematic use-cases would have to be using an "exotic" curve encoding. The affected APIs include: EC_GROUP_new_curve_GF2m(), EC_GROUP_new_from_params(), and various supporting BN_GF2m_*() functions. Applications working with "exotic" explicit binary (GF(2^m)) curve parameters, that make it possible to represent invalid field polynomials with a zero constant term, via the above or similar APIs, may terminate abruptly as a result of reading or writing outside of array bounds. Remote code execution cannot easily be ruled out. The FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue. |
Affected by 7 other vulnerabilities. Affected by 2 other vulnerabilities. Affected by 1 other vulnerability. Affected by 0 other vulnerabilities. |
Vulnerability | Summary | Aliases |
---|---|---|
VCID-1gxv-1j1x-aaag | Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s). |
CVE-2019-1547
VC-OPENSSL-20190910-CVE-2019-1547 |
VCID-4hq6-j84v-aaan | There is an overflow bug in the AVX2 Montgomery multiplication procedure used in exponentiation with 1024-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH1024 are considered just feasible, because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH1024 private key among multiple clients, which is no longer an option since CVE-2016-0701. This only affects processors that support the AVX2 but not ADX extensions like Intel Haswell (4th generation). Note: The impact from this issue is similar to CVE-2017-3736, CVE-2017-3732 and CVE-2015-3193. OpenSSL version 1.0.2-1.0.2m and 1.1.0-1.1.0g are affected. Fixed in OpenSSL 1.0.2n. Due to the low severity of this issue we are not issuing a new release of OpenSSL 1.1.0 at this time. The fix will be included in OpenSSL 1.1.0h when it becomes available. The fix is also available in commit e502cc86d in the OpenSSL git repository. |
CVE-2017-3738
VC-OPENSSL-20171207-CVE-2017-3738 |
VCID-4vr3-tvzc-aaas | Because of an implementation bug the PA-RISC CRYPTO_memcmp function is effectively reduced to only comparing the least significant bit of each byte. This allows an attacker to forge messages that would be considered as authenticated in an amount of tries lower than that guaranteed by the security claims of the scheme. The module can only be compiled by the HP-UX assembler, so that only HP-UX PA-RISC targets are affected. Fixed in OpenSSL 1.1.0h (Affected 1.1.0-1.1.0g). |
CVE-2018-0733
VC-OPENSSL-20180327-CVE-2018-0733 |
VCID-7y2m-nqcd-aaaj | The OpenSSL ECDSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.1.1a (Affected 1.1.1). |
CVE-2018-0735
VC-OPENSSL-20181029-CVE-2018-0735 |
VCID-7z9b-u5c4-aaad | During a renegotiation handshake if the Encrypt-Then-Mac extension is negotiated where it was not in the original handshake (or vice-versa) then this can cause OpenSSL to crash (dependent on ciphersuite). Both clients and servers are affected. |
CVE-2017-3733
VC-OPENSSL-20170216-CVE-2017-3733 |
VCID-9cyz-en38-aaad | During key agreement in a TLS handshake using a DH(E) based ciphersuite a malicious server can send a very large prime value to the client. This will cause the client to spend an unreasonably long period of time generating a key for this prime resulting in a hang until the client has finished. This could be exploited in a Denial Of Service attack. Fixed in OpenSSL 1.1.0i-dev (Affected 1.1.0-1.1.0h). Fixed in OpenSSL 1.0.2p-dev (Affected 1.0.2-1.0.2o). |
CVE-2018-0732
VC-OPENSSL-20180612-CVE-2018-0732 |
VCID-ceua-4xhz-aaag | Simultaneous Multi-threading (SMT) in processors can enable local users to exploit software vulnerable to timing attacks via a side-channel timing attack on 'port contention'. |
CVE-2018-5407
VC-OPENSSL-20181102-CVE-2018-5407 |
VCID-fmvb-j6br-aaap | Constructed ASN.1 types with a recursive definition (such as can be found in PKCS7) could eventually exceed the stack given malicious input with excessive recursion. This could result in a Denial Of Service attack. There are no such structures used within SSL/TLS that come from untrusted sources so this is considered safe. Fixed in OpenSSL 1.1.0h (Affected 1.1.0-1.1.0g). Fixed in OpenSSL 1.0.2o (Affected 1.0.2b-1.0.2n). |
CVE-2018-0739
VC-OPENSSL-20180327-CVE-2018-0739 |
VCID-j6bv-cdqn-aaan | Applications parsing invalid CMS structures can crash with a NULL pointer dereference. This is caused by a bug in the handling of the ASN.1 CHOICE type in OpenSSL 1.1.0 which can result in a NULL value being passed to the structure callback if an attempt is made to free certain invalid encodings. Only CHOICE structures using a callback which do not handle NULL value are affected. |
CVE-2016-7053
VC-OPENSSL-20161110-CVE-2016-7053 |
VCID-j8pb-xdpc-aaap | The OpenSSL RSA Key generation algorithm has been shown to be vulnerable to a cache timing side channel attack. An attacker with sufficient access to mount cache timing attacks during the RSA key generation process could recover the private key. Fixed in OpenSSL 1.1.0i-dev (Affected 1.1.0-1.1.0h). Fixed in OpenSSL 1.0.2p-dev (Affected 1.0.2b-1.0.2o). |
CVE-2018-0737
VC-OPENSSL-20180416-CVE-2018-0737 |
VCID-jhg8-wbm2-aaas | While parsing an IPAddressFamily extension in an X.509 certificate, it is possible to do a one-byte overread. This would result in an incorrect text display of the certificate. This bug has been present since 2006 and is present in all versions of OpenSSL before 1.0.2m and 1.1.0g. |
CVE-2017-3735
VC-OPENSSL-20170828-CVE-2017-3735 |
VCID-msmt-6x6r-aaaj | The Raccoon attack exploits a flaw in the TLS specification which can lead to an attacker being able to compute the pre-master secret in connections which have used a Diffie-Hellman (DH) based ciphersuite. In such a case this would result in the attacker being able to eavesdrop on all encrypted communications sent over that TLS connection. The attack can only be exploited if an implementation re-uses a DH secret across multiple TLS connections. Note that this issue only impacts DH ciphersuites and not ECDH ciphersuites. This issue affects OpenSSL 1.0.2 which is out of support and no longer receiving public updates. OpenSSL 1.1.1 is not vulnerable to this issue. |
CVE-2020-1968
VC-OPENSSL-20200909-CVE-2020-1968 |
VCID-pquf-jxju-aaap | The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE. |
CVE-2007-6755
|
VCID-pqvw-s72q-aaam | TLS connections using *-CHACHA20-POLY1305 ciphersuites are susceptible to a DoS attack by corrupting larger payloads. This can result in an OpenSSL crash. This issue is not considered to be exploitable beyond a DoS. |
CVE-2016-7054
VC-OPENSSL-20161110-CVE-2016-7054 |
VCID-psvb-thr2-aaap | The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p). |
CVE-2018-0734
VC-OPENSSL-20181030-CVE-2018-0734 |
VCID-q9r2-dz2p-aaap | In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s). |
CVE-2019-1563
VC-OPENSSL-20190910-CVE-2019-1563 |
VCID-qkh6-sakf-aaar | There is a carry propagating bug in the x86_64 Montgomery squaring procedure in OpenSSL 1.0.2 before 1.0.2k and 1.1.0 before 1.1.0d. No EC algorithms are affected. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be very significant and likely only accessible to a limited number of attackers. An attacker would additionally need online access to an unpatched system using the target private key in a scenario with persistent DH parameters and a private key that is shared between multiple clients. For example this can occur by default in OpenSSL DHE based SSL/TLS ciphersuites. Note: This issue is very similar to CVE-2015-3193 but must be treated as a separate problem. |
CVE-2017-3732
VC-OPENSSL-20170126-CVE-2017-3732 |
VCID-s758-gezj-aaan | ChaCha20-Poly1305 is an AEAD cipher, and requires a unique nonce input for every encryption operation. RFC 7539 specifies that the nonce value (IV) should be 96 bits (12 bytes). OpenSSL allows a variable nonce length and front pads the nonce with 0 bytes if it is less than 12 bytes. However it also incorrectly allows a nonce to be set of up to 16 bytes. In this case only the last 12 bytes are significant and any additional leading bytes are ignored. It is a requirement of using this cipher that nonce values are unique. Messages encrypted using a reused nonce value are susceptible to serious confidentiality and integrity attacks. If an application changes the default nonce length to be longer than 12 bytes and then makes a change to the leading bytes of the nonce expecting the new value to be a new unique nonce then such an application could inadvertently encrypt messages with a reused nonce. Additionally the ignored bytes in a long nonce are not covered by the integrity guarantee of this cipher. Any application that relies on the integrity of these ignored leading bytes of a long nonce may be further affected. Any OpenSSL internal use of this cipher, including in SSL/TLS, is safe because no such use sets such a long nonce value. However user applications that use this cipher directly and set a non-default nonce length to be longer than 12 bytes may be vulnerable. OpenSSL versions 1.1.1 and 1.1.0 are affected by this issue. Due to the limited scope of affected deployments this has been assessed as low severity and therefore we are not creating new releases at this time. Fixed in OpenSSL 1.1.1c (Affected 1.1.1-1.1.1b). Fixed in OpenSSL 1.1.0k (Affected 1.1.0-1.1.0j). |
CVE-2019-1543
VC-OPENSSL-20190306-CVE-2019-1543 |
VCID-vkda-645k-aaae | If a malicious server supplies bad parameters for a DHE or ECDHE key exchange then this can result in the client attempting to dereference a NULL pointer leading to a client crash. This could be exploited in a Denial of Service attack. |
CVE-2017-3730
VC-OPENSSL-20170126-CVE-2017-3730 |
VCID-vm2m-bf4p-aaaf |
CVE-2019-1559
VC-OPENSSL-20190226-CVE-2019-1559 |
|
VCID-w3xz-a1z2-aaaf | If an SSL/TLS server or client is running on a 32-bit host, and a specific cipher is being used, then a truncated packet can cause that server or client to perform an out-of-bounds read, usually resulting in a crash. For OpenSSL 1.1.0, the crash can be triggered when using CHACHA20/POLY1305; users should upgrade to 1.1.0d. For Openssl 1.0.2, the crash can be triggered when using RC4-MD5; users who have not disabled that algorithm should update to 1.0.2k. |
CVE-2017-3731
VC-OPENSSL-20170126-CVE-2017-3731 |
VCID-y471-3h22-aaah | There is a carry propagating bug in the Broadwell-specific Montgomery multiplication procedure in OpenSSL 1.0.2 and 1.1.0 before 1.1.0c that handles input lengths divisible by, but longer than 256 bits. Analysis suggests that attacks against RSA, DSA and DH private keys are impossible. This is because the subroutine in question is not used in operations with the private key itself and an input of the attacker's direct choice. Otherwise the bug can manifest itself as transient authentication and key negotiation failures or reproducible erroneous outcome of public-key operations with specially crafted input. Among EC algorithms only Brainpool P-512 curves are affected and one presumably can attack ECDH key negotiation. Impact was not analyzed in detail, because pre-requisites for attack are considered unlikely. Namely multiple clients have to choose the curve in question and the server has to share the private key among them, neither of which is default behaviour. Even then only clients that chose the curve will be affected. |
CVE-2016-7055
VC-OPENSSL-20161110-CVE-2016-7055 |
VCID-ys3w-wua9-aaas | There is a carry propagating bug in the x86_64 Montgomery squaring procedure in OpenSSL before 1.0.2m and 1.1.0 before 1.1.0g. No EC algorithms are affected. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be very significant and likely only accessible to a limited number of attackers. An attacker would additionally need online access to an unpatched system using the target private key in a scenario with persistent DH parameters and a private key that is shared between multiple clients. This only affects processors that support the BMI1, BMI2 and ADX extensions like Intel Broadwell (5th generation) and later or AMD Ryzen. |
CVE-2017-3736
VC-OPENSSL-20171102-CVE-2017-3736 |
VCID-zesf-f628-aaad | OpenSSL 1.0.2 (starting from version 1.0.2b) introduced an "error state" mechanism. The intent was that if a fatal error occurred during a handshake then OpenSSL would move into the error state and would immediately fail if you attempted to continue the handshake. This works as designed for the explicit handshake functions (SSL_do_handshake(), SSL_accept() and SSL_connect()), however due to a bug it does not work correctly if SSL_read() or SSL_write() is called directly. In that scenario, if the handshake fails then a fatal error will be returned in the initial function call. If SSL_read()/SSL_write() is subsequently called by the application for the same SSL object then it will succeed and the data is passed without being decrypted/encrypted directly from the SSL/TLS record layer. In order to exploit this issue an application bug would have to be present that resulted in a call to SSL_read()/SSL_write() being issued after having already received a fatal error. OpenSSL version 1.0.2b-1.0.2m are affected. Fixed in OpenSSL 1.0.2n. OpenSSL 1.1.0 is not affected. |
CVE-2017-3737
VC-OPENSSL-20171207-CVE-2017-3737 |
Date | Actor | Action | Vulnerability | Source | VulnerableCode Version |
---|---|---|---|---|---|
2025-06-22T07:21:21.073176+00:00 | Debian Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.1.3 |
2025-06-21T19:17:19.146610+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T19:08:38.881118+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T19:08:13.762166+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T19:04:26.131026+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:52:38.103869+00:00 | Debian Oval Importer | Fixing | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:51:21.710944+00:00 | Debian Oval Importer | Fixing | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:48:29.163280+00:00 | Debian Oval Importer | Fixing | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:46:55.273308+00:00 | Debian Oval Importer | Fixing | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:44:04.443714+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:36:29.220487+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:28:03.225586+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:24:00.295507+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:23:50.048514+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:23:37.359799+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:18:07.529979+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:10:48.291926+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T17:53:27.737277+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:25:53.728248+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:19:22.428159+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:18:35.938472+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:53:37.730707+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:42:34.154066+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:39:46.513333+00:00 | Debian Oval Importer | Fixing | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:37:18.274956+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:31:28.922317+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:24:13.072102+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:22:13.895465+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:20:35.203058+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:20:06.306806+00:00 | Debian Oval Importer | Fixing | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:16:32.108940+00:00 | Debian Oval Importer | Fixing | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:04:04.468910+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:59:14.960642+00:00 | Debian Oval Importer | Fixing | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:55:31.085429+00:00 | Debian Oval Importer | Fixing | VCID-msmt-6x6r-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:25:29.914889+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:12:28.088309+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:12:12.417690+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:04:20.661119+00:00 | Debian Oval Importer | Fixing | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:57:23.699020+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:43:43.183292+00:00 | Debian Oval Importer | Affected by | VCID-9yg1-fuqa-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:36:28.739347+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:33:38.413205+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:26:27.116122+00:00 | Debian Oval Importer | Fixing | VCID-4hq6-j84v-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:23:55.218204+00:00 | Debian Oval Importer | Fixing | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:17:38.445318+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:16:04.450061+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:15:31.689794+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:14:15.458968+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:07:44.938472+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:02:28.705319+00:00 | Debian Oval Importer | Fixing | VCID-vkda-645k-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:45:31.081845+00:00 | Debian Oval Importer | Fixing | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:35:35.508566+00:00 | Debian Oval Importer | Fixing | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:24:10.296055+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:17:04.655370+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:11:36.640349+00:00 | Debian Oval Importer | Fixing | VCID-7z9b-u5c4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:58:17.448834+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:45:30.045274+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:42:56.602464+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:40:09.206510+00:00 | Debian Oval Importer | Fixing | VCID-ys3w-wua9-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:24:18.858185+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:24:18.145784+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:16:10.395707+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:53:01.291529+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:43:30.671615+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:35:48.836617+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:11:05.135594+00:00 | Debian Oval Importer | Fixing | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T11:09:00.803167+00:00 | Debian Oval Importer | Fixing | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:55:52.517760+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:53:08.186216+00:00 | Debian Oval Importer | Fixing | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:50:03.112957+00:00 | Debian Oval Importer | Fixing | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:41:24.123028+00:00 | Debian Oval Importer | Fixing | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:38:03.343737+00:00 | Debian Oval Importer | Fixing | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:29:48.425960+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:27:19.359920+00:00 | Debian Oval Importer | Fixing | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:21:34.783017+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T08:46:39.533725+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | None | 36.1.3 |
2025-06-21T08:46:36.844850+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | None | 36.1.3 |
2025-06-21T08:21:50.544773+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | None | 36.1.3 |
2025-06-21T08:21:49.823649+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | None | 36.1.3 |
2025-06-21T08:21:49.085654+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | None | 36.1.3 |
2025-06-21T08:21:48.377192+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | None | 36.1.3 |
2025-06-21T07:31:14.847212+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | None | 36.1.3 |
2025-06-21T07:29:58.556339+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | None | 36.1.3 |
2025-06-21T07:29:27.622916+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | None | 36.1.3 |
2025-06-21T07:28:44.619602+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | None | 36.1.3 |
2025-06-21T07:27:08.062821+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | None | 36.1.3 |
2025-06-21T05:06:58.064238+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | None | 36.1.3 |
2025-06-21T00:48:04.894590+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | None | 36.1.3 |
2025-06-21T00:41:50.666958+00:00 | Debian Oval Importer | Fixing | VCID-vm2m-bf4p-aaaf | None | 36.1.3 |
2025-06-21T00:29:20.649352+00:00 | Debian Oval Importer | Fixing | VCID-msmt-6x6r-aaaj | None | 36.1.3 |
2025-06-21T00:26:10.285655+00:00 | Debian Oval Importer | Fixing | VCID-zesf-f628-aaad | None | 36.1.3 |
2025-06-21T00:13:16.713151+00:00 | Debian Oval Importer | Fixing | VCID-pqvw-s72q-aaam | None | 36.1.3 |
2025-06-21T00:05:03.660911+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.1.3 |
2025-06-21T00:02:05.850342+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | None | 36.1.3 |
2025-06-20T23:57:14.563264+00:00 | Debian Oval Importer | Fixing | VCID-y471-3h22-aaah | None | 36.1.3 |
2025-06-20T23:55:27.709313+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | None | 36.1.3 |
2025-06-20T23:50:53.621713+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | None | 36.1.3 |
2025-06-20T23:40:50.958181+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | None | 36.1.3 |
2025-06-20T23:31:06.600038+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | None | 36.1.3 |
2025-06-20T23:29:42.745908+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | None | 36.1.3 |
2025-06-20T23:16:03.883272+00:00 | Debian Oval Importer | Fixing | VCID-4vr3-tvzc-aaas | None | 36.1.3 |
2025-06-20T23:15:50.729085+00:00 | Debian Oval Importer | Fixing | VCID-j6bv-cdqn-aaan | None | 36.1.3 |
2025-06-20T22:56:04.864537+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | None | 36.1.3 |
2025-06-20T22:54:44.894583+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | None | 36.1.3 |
2025-06-20T22:47:32.472451+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | None | 36.1.3 |
2025-06-20T22:45:00.701751+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | None | 36.1.3 |
2025-06-20T22:37:53.725770+00:00 | Debian Oval Importer | Fixing | VCID-ys3w-wua9-aaas | None | 36.1.3 |
2025-06-20T22:36:59.706867+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | None | 36.1.3 |
2025-06-20T22:28:46.928424+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.1.3 |
2025-06-20T22:27:10.616131+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | None | 36.1.3 |
2025-06-20T22:16:42.387917+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | None | 36.1.3 |
2025-06-20T22:09:37.733783+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | None | 36.1.3 |
2025-06-20T22:07:43.359125+00:00 | Debian Oval Importer | Fixing | VCID-7z9b-u5c4-aaad | None | 36.1.3 |
2025-06-20T22:03:02.052728+00:00 | Debian Oval Importer | Fixing | VCID-vkda-645k-aaae | None | 36.1.3 |
2025-06-20T21:57:10.031422+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | None | 36.1.3 |
2025-06-20T21:47:39.805013+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | None | 36.1.3 |
2025-06-20T21:41:31.072760+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | None | 36.1.3 |
2025-06-20T21:35:25.438096+00:00 | Debian Oval Importer | Fixing | VCID-qkh6-sakf-aaar | None | 36.1.3 |
2025-06-20T21:33:19.403836+00:00 | Debian Oval Importer | Fixing | VCID-w3xz-a1z2-aaaf | None | 36.1.3 |
2025-06-20T21:29:28.817995+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | None | 36.1.3 |
2025-06-20T20:36:12.998759+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | None | 36.1.3 |
2025-06-20T20:15:08.759205+00:00 | Debian Oval Importer | Fixing | VCID-9cyz-en38-aaad | None | 36.1.3 |
2025-06-20T20:14:20.164611+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | None | 36.1.3 |
2025-06-20T20:13:08.497535+00:00 | Debian Oval Importer | Fixing | VCID-4hq6-j84v-aaan | None | 36.1.3 |
2025-06-20T20:07:15.067083+00:00 | Debian Oval Importer | Fixing | VCID-1gxv-1j1x-aaag | None | 36.1.3 |
2025-06-20T19:59:35.055758+00:00 | Debian Oval Importer | Fixing | VCID-s758-gezj-aaan | None | 36.1.3 |
2025-06-08T13:11:20.860067+00:00 | Debian Oval Importer | Fixing | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:56:58.531573+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:54:42.113930+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:42:47.823007+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:39:15.348248+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:38:46.396312+00:00 | Debian Oval Importer | Fixing | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:25:21.909931+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:24:56.947724+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:22:49.518242+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:21:46.969729+00:00 | Debian Oval Importer | Fixing | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:11:58.643128+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:07:17.583170+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:51:39.708482+00:00 | Debian Oval Importer | Fixing | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:46:07.162266+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:37:40.269478+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:37:15.750600+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:33:36.431312+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:22:25.985962+00:00 | Debian Oval Importer | Fixing | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:21:10.759823+00:00 | Debian Oval Importer | Fixing | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:18:21.475930+00:00 | Debian Oval Importer | Fixing | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:16:51.326201+00:00 | Debian Oval Importer | Fixing | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:14:06.117486+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:06:45.871168+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:58:34.918545+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:54:40.997861+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:54:31.110606+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:54:19.674291+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:49:10.386608+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:42:12.288871+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:25:16.272183+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:05:14.312359+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:00:30.235314+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:59:42.417384+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:38:46.673572+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:27:50.829978+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:25:18.387657+00:00 | Debian Oval Importer | Fixing | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:22:54.728778+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:17:17.965553+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:10:14.225314+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:08:20.243422+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:06:44.986991+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:06:18.449180+00:00 | Debian Oval Importer | Fixing | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:03:16.470710+00:00 | Debian Oval Importer | Fixing | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:57:03.738336+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:52:33.517541+00:00 | Debian Oval Importer | Fixing | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:48:49.524248+00:00 | Debian Oval Importer | Fixing | VCID-msmt-6x6r-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:20:02.950606+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:06:12.633340+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:05:58.232250+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:57:46.327001+00:00 | Debian Oval Importer | Fixing | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:50:42.264978+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:37:02.230252+00:00 | Debian Oval Importer | Affected by | VCID-9yg1-fuqa-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:29:35.546882+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:26:41.553599+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:19:30.368835+00:00 | Debian Oval Importer | Fixing | VCID-4hq6-j84v-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:17:00.345636+00:00 | Debian Oval Importer | Fixing | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:10:56.056986+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:09:26.065209+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:08:53.009507+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:07:36.495909+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:01:20.828070+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:56:31.040792+00:00 | Debian Oval Importer | Fixing | VCID-vkda-645k-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:39:41.977015+00:00 | Debian Oval Importer | Fixing | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:29:44.371954+00:00 | Debian Oval Importer | Fixing | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:18:20.400530+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:11:42.503391+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:06:18.023671+00:00 | Debian Oval Importer | Fixing | VCID-7z9b-u5c4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:53:15.598381+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:40:48.401378+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:38:26.346942+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:36:35.968108+00:00 | Debian Oval Importer | Fixing | VCID-ys3w-wua9-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:25:49.136804+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:25:48.431937+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:20:33.248466+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:05:51.902532+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:59:12.145381+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:53:59.512480+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:38:14.838795+00:00 | Debian Oval Importer | Fixing | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:37:21.509849+00:00 | Debian Oval Importer | Fixing | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:29:35.202707+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:27:52.641158+00:00 | Debian Oval Importer | Fixing | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:25:48.388126+00:00 | Debian Oval Importer | Fixing | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:21:03.186830+00:00 | Debian Oval Importer | Fixing | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:18:41.721923+00:00 | Debian Oval Importer | Fixing | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:13:54.120860+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:12:19.477646+00:00 | Debian Oval Importer | Fixing | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:08:15.635006+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T02:32:55.832075+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | None | 36.1.0 |
2025-06-08T02:32:52.539783+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | None | 36.1.0 |
2025-06-08T02:03:11.213872+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | None | 36.1.0 |
2025-06-08T02:03:10.511684+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | None | 36.1.0 |
2025-06-08T02:03:09.805720+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | None | 36.1.0 |
2025-06-08T02:03:09.075212+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | None | 36.1.0 |
2025-06-08T01:11:03.956172+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | None | 36.1.0 |
2025-06-08T01:09:44.849732+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | None | 36.1.0 |
2025-06-08T01:09:13.218653+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | None | 36.1.0 |
2025-06-08T01:08:30.502239+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | None | 36.1.0 |
2025-06-08T01:06:54.147182+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | None | 36.1.0 |
2025-06-07T22:44:26.016875+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | None | 36.1.0 |
2025-06-07T18:10:35.277693+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | None | 36.1.0 |
2025-06-07T18:04:24.899539+00:00 | Debian Oval Importer | Fixing | VCID-vm2m-bf4p-aaaf | None | 36.1.0 |
2025-06-07T17:52:01.150138+00:00 | Debian Oval Importer | Fixing | VCID-msmt-6x6r-aaaj | None | 36.1.0 |
2025-06-07T17:48:54.887398+00:00 | Debian Oval Importer | Fixing | VCID-zesf-f628-aaad | None | 36.1.0 |
2025-06-07T17:36:06.632798+00:00 | Debian Oval Importer | Fixing | VCID-pqvw-s72q-aaam | None | 36.1.0 |
2025-06-07T17:27:49.793078+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.1.0 |
2025-06-07T17:24:53.454447+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | None | 36.1.0 |
2025-06-07T17:20:08.679172+00:00 | Debian Oval Importer | Fixing | VCID-y471-3h22-aaah | None | 36.1.0 |
2025-06-07T17:18:20.117762+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | None | 36.1.0 |
2025-06-07T17:13:45.842273+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | None | 36.1.0 |
2025-06-07T17:03:46.704479+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | None | 36.1.0 |
2025-06-07T16:54:01.655287+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | None | 36.1.0 |
2025-06-07T16:52:37.725165+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | None | 36.1.0 |
2025-06-07T16:39:09.000639+00:00 | Debian Oval Importer | Fixing | VCID-4vr3-tvzc-aaas | None | 36.1.0 |
2025-06-07T16:38:55.860647+00:00 | Debian Oval Importer | Fixing | VCID-j6bv-cdqn-aaan | None | 36.1.0 |
2025-06-07T16:19:21.910542+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | None | 36.1.0 |
2025-06-07T16:18:02.150651+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | None | 36.1.0 |
2025-06-07T16:11:26.997158+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | None | 36.1.0 |
2025-06-07T16:08:56.743219+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | None | 36.1.0 |
2025-06-07T16:01:50.729034+00:00 | Debian Oval Importer | Fixing | VCID-ys3w-wua9-aaas | None | 36.1.0 |
2025-06-07T16:00:58.651409+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | None | 36.1.0 |
2025-06-07T15:52:57.388755+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.1.0 |
2025-06-07T15:51:25.121644+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | None | 36.1.0 |
2025-06-07T15:40:44.352774+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | None | 36.1.0 |
2025-06-07T15:33:38.499144+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | None | 36.1.0 |
2025-06-07T15:31:39.303681+00:00 | Debian Oval Importer | Fixing | VCID-7z9b-u5c4-aaad | None | 36.1.0 |
2025-06-07T15:26:44.656440+00:00 | Debian Oval Importer | Fixing | VCID-vkda-645k-aaae | None | 36.1.0 |
2025-06-07T15:20:37.028857+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | None | 36.1.0 |
2025-06-07T15:10:43.081936+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | None | 36.1.0 |
2025-06-07T15:04:20.692873+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | None | 36.1.0 |
2025-06-07T14:58:00.431756+00:00 | Debian Oval Importer | Fixing | VCID-qkh6-sakf-aaar | None | 36.1.0 |
2025-06-07T14:55:52.919986+00:00 | Debian Oval Importer | Fixing | VCID-w3xz-a1z2-aaaf | None | 36.1.0 |
2025-06-07T14:51:51.956600+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | None | 36.1.0 |
2025-06-07T14:08:44.822849+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | None | 36.1.0 |
2025-06-07T13:55:20.993857+00:00 | Debian Oval Importer | Fixing | VCID-9cyz-en38-aaad | None | 36.1.0 |
2025-06-07T13:55:17.146279+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | None | 36.1.0 |
2025-06-07T13:54:33.553709+00:00 | Debian Oval Importer | Fixing | VCID-4hq6-j84v-aaan | None | 36.1.0 |
2025-06-07T13:52:53.253851+00:00 | Debian Oval Importer | Fixing | VCID-1gxv-1j1x-aaag | None | 36.1.0 |
2025-06-07T13:49:18.303606+00:00 | Debian Oval Importer | Fixing | VCID-s758-gezj-aaan | None | 36.1.0 |
2025-04-13T02:21:23.043303+00:00 | Debian Oval Importer | Affected by | VCID-yr2h-w72w-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-13T02:21:22.277033+00:00 | Debian Oval Importer | Affected by | VCID-kc39-vfd3-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-13T02:21:20.792829+00:00 | Debian Oval Importer | Affected by | VCID-jm31-c3d3-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-13T02:21:20.005643+00:00 | Debian Oval Importer | Affected by | VCID-z5js-c6pd-yybd | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-13T02:21:19.217553+00:00 | Debian Oval Importer | Affected by | VCID-2bxp-9qmt-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-13T02:21:18.463526+00:00 | Debian Oval Importer | Affected by | VCID-6uk8-2jnu-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-13T00:39:21.315220+00:00 | Debian Oval Importer | Fixing | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-13T00:39:16.417907+00:00 | Debian Oval Importer | Fixing | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T22:38:43.127741+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:23:40.861643+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:10:50.559826+00:00 | Debian Oval Importer | Fixing | VCID-vkda-645k-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:06:42.510232+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:31:58.198201+00:00 | Debian Oval Importer | Fixing | VCID-7z9b-u5c4-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:30:45.307537+00:00 | Debian Oval Importer | Fixing | VCID-msmt-6x6r-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:28:47.052632+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:25:31.686439+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:07:41.199885+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:05:56.053989+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:00:37.600026+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:56:52.838334+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:55:37.741378+00:00 | Debian Oval Importer | Fixing | VCID-4hq6-j84v-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:41:18.156249+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:05:54.330854+00:00 | Debian Oval Importer | Fixing | VCID-ys3w-wua9-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:57:04.649489+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:52:10.266382+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:49:08.399140+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:41:28.795463+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:59:05.594150+00:00 | Debian Oval Importer | Fixing | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:44:15.307785+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:41:53.458059+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:29:36.430306+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:25:57.329101+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:25:27.328824+00:00 | Debian Oval Importer | Fixing | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:11:30.369532+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:11:04.322280+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:08:51.515447+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:07:47.339311+00:00 | Debian Oval Importer | Fixing | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:57:39.789220+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:52:50.433416+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:36:41.609366+00:00 | Debian Oval Importer | Fixing | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:30:59.492618+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:22:15.888401+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:21:50.650014+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:18:02.955683+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:06:27.867713+00:00 | Debian Oval Importer | Fixing | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:05:11.637950+00:00 | Debian Oval Importer | Fixing | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:02:16.200887+00:00 | Debian Oval Importer | Fixing | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:00:40.837239+00:00 | Debian Oval Importer | Fixing | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:57:46.100540+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:50:07.897706+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:41:20.983728+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:37:13.557669+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:37:03.317769+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:36:51.032941+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:31:23.141917+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:24:01.084020+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:06:22.394953+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:37:33.827475+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:32:46.388671+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:31:59.074969+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:11:09.618065+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:00:14.904817+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:57:37.301299+00:00 | Debian Oval Importer | Fixing | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:55:09.845552+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:49:22.804870+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:42:06.442389+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:40:10.655244+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:38:32.179034+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:38:04.627292+00:00 | Debian Oval Importer | Fixing | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:34:57.075238+00:00 | Debian Oval Importer | Fixing | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:28:40.175640+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:24:06.959922+00:00 | Debian Oval Importer | Fixing | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:20:22.673864+00:00 | Debian Oval Importer | Fixing | VCID-msmt-6x6r-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:51:23.550249+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:38:15.770183+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:38:00.527719+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:30:09.973151+00:00 | Debian Oval Importer | Fixing | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:23:09.458319+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:09:35.496273+00:00 | Debian Oval Importer | Affected by | VCID-9yg1-fuqa-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:02:23.803020+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:59:32.294953+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:52:07.050214+00:00 | Debian Oval Importer | Fixing | VCID-4hq6-j84v-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:49:34.455459+00:00 | Debian Oval Importer | Fixing | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:43:30.800515+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:41:59.611619+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:41:27.756965+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:40:13.725977+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:34:01.461517+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:29:02.213856+00:00 | Debian Oval Importer | Fixing | VCID-vkda-645k-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:12:07.416059+00:00 | Debian Oval Importer | Fixing | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:02:01.127418+00:00 | Debian Oval Importer | Fixing | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:50:36.306194+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:43:48.053651+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:38:21.885364+00:00 | Debian Oval Importer | Fixing | VCID-7z9b-u5c4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:25:06.027170+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:12:29.963118+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:09:59.940795+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:08:08.332674+00:00 | Debian Oval Importer | Fixing | VCID-ys3w-wua9-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:56:58.929933+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:56:58.180847+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:51:35.761451+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:36:47.010437+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:30:10.571709+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:25:10.282317+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:09:10.944923+00:00 | Debian Oval Importer | Fixing | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T03:08:13.138399+00:00 | Debian Oval Importer | Fixing | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:59:51.193034+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:58:00.220465+00:00 | Debian Oval Importer | Fixing | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:55:46.940750+00:00 | Debian Oval Importer | Fixing | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:50:38.391036+00:00 | Debian Oval Importer | Fixing | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:48:08.505702+00:00 | Debian Oval Importer | Fixing | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:43:03.027056+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:41:24.073338+00:00 | Debian Oval Importer | Fixing | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:36:57.336695+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T01:00:21.381693+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | None | 36.0.0 |
2025-04-08T01:00:18.623604+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | None | 36.0.0 |
2025-04-08T00:35:02.214543+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | None | 36.0.0 |
2025-04-08T00:35:01.445320+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | None | 36.0.0 |
2025-04-08T00:35:00.701792+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | None | 36.0.0 |
2025-04-08T00:34:59.939756+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | None | 36.0.0 |
2025-04-07T23:43:41.682925+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | None | 36.0.0 |
2025-04-07T23:42:19.850272+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | None | 36.0.0 |
2025-04-07T23:41:46.859979+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | None | 36.0.0 |
2025-04-07T23:41:03.497609+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | None | 36.0.0 |
2025-04-07T23:39:23.692117+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | None | 36.0.0 |
2025-04-07T21:16:14.290707+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | None | 36.0.0 |
2025-04-07T16:47:53.001208+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | None | 36.0.0 |
2025-04-07T16:41:29.563144+00:00 | Debian Oval Importer | Fixing | VCID-vm2m-bf4p-aaaf | None | 36.0.0 |
2025-04-07T16:28:42.391559+00:00 | Debian Oval Importer | Fixing | VCID-msmt-6x6r-aaaj | None | 36.0.0 |
2025-04-07T16:25:27.330732+00:00 | Debian Oval Importer | Fixing | VCID-zesf-f628-aaad | None | 36.0.0 |
2025-04-07T16:10:49.209103+00:00 | Debian Oval Importer | Fixing | VCID-pqvw-s72q-aaam | None | 36.0.0 |
2025-04-07T16:02:15.812158+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.0.0 |
2025-04-07T15:59:07.023402+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | None | 36.0.0 |
2025-04-07T15:54:08.636012+00:00 | Debian Oval Importer | Fixing | VCID-y471-3h22-aaah | None | 36.0.0 |
2025-04-07T15:52:17.452902+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | None | 36.0.0 |
2025-04-07T15:47:32.442740+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | None | 36.0.0 |
2025-04-07T15:37:06.637401+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | None | 36.0.0 |
2025-04-07T15:26:59.075505+00:00 | Debian Oval Importer | Fixing | VCID-fmvb-j6br-aaap | None | 36.0.0 |
2025-04-07T15:25:30.062634+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | None | 36.0.0 |
2025-04-07T15:11:25.764051+00:00 | Debian Oval Importer | Fixing | VCID-4vr3-tvzc-aaas | None | 36.0.0 |
2025-04-07T15:11:12.375550+00:00 | Debian Oval Importer | Fixing | VCID-j6bv-cdqn-aaan | None | 36.0.0 |
2025-04-07T14:51:00.773351+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | None | 36.0.0 |
2025-04-07T14:49:39.230096+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | None | 36.0.0 |
2025-04-07T14:42:49.687222+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | None | 36.0.0 |
2025-04-07T14:40:13.341629+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | None | 36.0.0 |
2025-04-07T14:32:59.781896+00:00 | Debian Oval Importer | Fixing | VCID-ys3w-wua9-aaas | None | 36.0.0 |
2025-04-07T14:32:07.192190+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | None | 36.0.0 |
2025-04-07T14:23:52.301866+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.0.0 |
2025-04-07T14:22:17.261488+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | None | 36.0.0 |
2025-04-07T14:11:37.162593+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | None | 36.0.0 |
2025-04-07T14:04:35.507986+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | None | 36.0.0 |
2025-04-07T14:02:41.955822+00:00 | Debian Oval Importer | Fixing | VCID-7z9b-u5c4-aaad | None | 36.0.0 |
2025-04-07T13:57:55.932168+00:00 | Debian Oval Importer | Fixing | VCID-vkda-645k-aaae | None | 36.0.0 |
2025-04-07T13:51:59.843929+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | None | 36.0.0 |
2025-04-07T13:42:25.676949+00:00 | Debian Oval Importer | Fixing | VCID-j8pb-xdpc-aaap | None | 36.0.0 |
2025-04-07T13:36:09.363937+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | None | 36.0.0 |
2025-04-07T13:29:55.171292+00:00 | Debian Oval Importer | Fixing | VCID-qkh6-sakf-aaar | None | 36.0.0 |
2025-04-07T13:27:51.043368+00:00 | Debian Oval Importer | Fixing | VCID-w3xz-a1z2-aaaf | None | 36.0.0 |
2025-04-07T13:23:53.766458+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | None | 36.0.0 |
2025-04-07T12:42:15.616917+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | None | 36.0.0 |
2025-04-07T12:30:06.920094+00:00 | Debian Oval Importer | Fixing | VCID-9cyz-en38-aaad | None | 36.0.0 |
2025-04-07T12:30:03.204903+00:00 | Debian Oval Importer | Fixing | VCID-jhg8-wbm2-aaas | None | 36.0.0 |
2025-04-07T12:29:20.964816+00:00 | Debian Oval Importer | Fixing | VCID-4hq6-j84v-aaan | None | 36.0.0 |
2025-04-07T12:27:45.750735+00:00 | Debian Oval Importer | Fixing | VCID-1gxv-1j1x-aaag | None | 36.0.0 |
2025-04-07T12:24:17.448275+00:00 | Debian Oval Importer | Fixing | VCID-s758-gezj-aaan | None | 36.0.0 |
2025-04-07T11:39:25.376439+00:00 | Debian Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.0.0 |
2025-04-06T01:00:10.480542+00:00 | Debian Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.0.0 |
2025-02-20T16:29:08.467462+00:00 | Debian Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 35.1.0 |
2025-02-20T06:41:37.360085+00:00 | Debian Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 35.1.0 |
2024-11-26T11:29:36.507825+00:00 | Debian Oval Importer | Fixing | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-23T09:31:34.225828+00:00 | Debian Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 35.0.0 |
2024-11-23T00:33:24.257819+00:00 | Debian Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 35.0.0 |
2024-10-12T14:14:24.466802+00:00 | Debian Oval Importer | Fixing | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-10T07:45:26.205200+00:00 | Debian Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 34.0.2 |
2024-10-09T22:53:07.581399+00:00 | Debian Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 34.0.2 |
2024-09-20T15:24:16.782320+00:00 | Debian Oval Importer | Fixing | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-19T14:19:38.980127+00:00 | Debian Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 34.0.1 |
2024-09-19T06:46:35.609432+00:00 | Debian Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 34.0.1 |
2024-04-25T11:34:43.680058+00:00 | Debian Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 34.0.0rc4 |
2024-04-25T05:09:51.539957+00:00 | Debian Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 34.0.0rc4 |
2024-01-11T13:30:35.357890+00:00 | Debian Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 34.0.0rc2 |
2024-01-11T06:45:25.579738+00:00 | Debian Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 34.0.0rc2 |
2024-01-04T23:08:59.595909+00:00 | Debian Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 34.0.0rc1 |
2024-01-04T17:48:35.369838+00:00 | Debian Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 34.0.0rc1 |