Search for packages
purl | pkg:deb/debian/openssl@1.0.2l-1~bpo8%2B1 |
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 39 other vulnerabilities. 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-4hq6-j84v-aaan
Aliases: CVE-2017-3738 VC-OPENSSL-20171207-CVE-2017-3738 |
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. |
Affected by 39 other vulnerabilities. |
VCID-4vr3-tvzc-aaas
Aliases: CVE-2018-0733 VC-OPENSSL-20180327-CVE-2018-0733 |
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). |
Affected by 39 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 39 other vulnerabilities. Affected by 19 other vulnerabilities. |
VCID-7z9b-u5c4-aaad
Aliases: CVE-2017-3733 VC-OPENSSL-20170216-CVE-2017-3733 |
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. |
Affected by 39 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 39 other vulnerabilities. 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 39 other vulnerabilities. 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-fmvb-j6br-aaap
Aliases: CVE-2018-0739 VC-OPENSSL-20180327-CVE-2018-0739 |
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). |
Affected by 39 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-j6bv-cdqn-aaan
Aliases: CVE-2016-7053 VC-OPENSSL-20161110-CVE-2016-7053 |
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. |
Affected by 39 other vulnerabilities. |
VCID-j8pb-xdpc-aaap
Aliases: CVE-2018-0737 VC-OPENSSL-20180416-CVE-2018-0737 |
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). |
Affected by 39 other vulnerabilities. |
VCID-jhg8-wbm2-aaas
Aliases: CVE-2017-3735 VC-OPENSSL-20170828-CVE-2017-3735 |
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. |
Affected by 39 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-msmt-6x6r-aaaj
Aliases: CVE-2020-1968 VC-OPENSSL-20200909-CVE-2020-1968 |
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. |
Affected by 39 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-pquf-jxju-aaap
Aliases: CVE-2007-6755 |
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. |
Affected by 39 other vulnerabilities. |
VCID-pqvw-s72q-aaam
Aliases: CVE-2016-7054 VC-OPENSSL-20161110-CVE-2016-7054 |
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. |
Affected by 39 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 39 other vulnerabilities. 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 39 other vulnerabilities. Affected by 19 other vulnerabilities. |
VCID-qkh6-sakf-aaar
Aliases: CVE-2017-3732 VC-OPENSSL-20170126-CVE-2017-3732 |
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. |
Affected by 39 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 39 other vulnerabilities. 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-vkda-645k-aaae
Aliases: CVE-2017-3730 VC-OPENSSL-20170126-CVE-2017-3730 |
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. |
Affected by 39 other vulnerabilities. |
VCID-vm2m-bf4p-aaaf
Aliases: CVE-2019-1559 VC-OPENSSL-20190226-CVE-2019-1559 |
Affected by 39 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-w3xz-a1z2-aaaf
Aliases: CVE-2017-3731 VC-OPENSSL-20170126-CVE-2017-3731 |
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. |
Affected by 39 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-y471-3h22-aaah
Aliases: CVE-2016-7055 VC-OPENSSL-20161110-CVE-2016-7055 |
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. |
Affected by 39 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-ys3w-wua9-aaas
Aliases: CVE-2017-3736 VC-OPENSSL-20171102-CVE-2017-3736 |
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. |
Affected by 39 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. |
VCID-zesf-f628-aaad
Aliases: CVE-2017-3737 VC-OPENSSL-20171207-CVE-2017-3737 |
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. |
Affected by 39 other vulnerabilities. |
Vulnerability | Summary | Aliases |
---|---|---|
VCID-3d3c-x2ux-aaaa | When presented with a malformed X509_ATTRIBUTE structure OpenSSL will leak memory. This structure is used by the PKCS#7 and CMS routines so any application which reads PKCS#7 or CMS data from untrusted sources is affected. SSL/TLS is not affected. |
CVE-2015-3195
VC-OPENSSL-20151203-CVE-2015-3195 |
VCID-42tc-p92q-aaap | Integer overflow in the EVP_EncodeUpdate function in crypto/evp/encode.c in OpenSSL before 1.0.1t and 1.0.2 before 1.0.2h allows remote attackers to cause a denial of service (heap memory corruption) via a large amount of binary data. |
CVE-2016-2105
VC-OPENSSL-20160503-CVE-2016-2105 |
VCID-52ea-drta-aaaa | This issue affected versions of OpenSSL prior to April 2015. The bug causing the vulnerability was fixed on April 18th 2015, and released as part of the June 11th 2015 security releases. The security impact of the bug was not known at the time. In previous versions of OpenSSL, ASN.1 encoding the value zero represented as a negative integer can cause a buffer underflow with an out-of-bounds write in i2c_ASN1_INTEGER. The ASN.1 parser does not normally create "negative zeroes" when parsing ASN.1 input, and therefore, an attacker cannot trigger this bug. However, a second, independent bug revealed that the ASN.1 parser (specifically, d2i_ASN1_TYPE) can misinterpret a large universal tag as a negative zero value. Large universal tags are not present in any common ASN.1 structures (such as X509) but are accepted as part of ANY structures. Therefore, if an application deserializes untrusted ASN.1 structures containing an ANY field, and later reserializes them, an attacker may be able to trigger an out-of-bounds write. This has been shown to cause memory corruption that is potentially exploitable with some malloc implementations. Applications that parse and re-encode X509 certificates are known to be vulnerable. Applications that verify RSA signatures on X509 certificates may also be vulnerable; however, only certificates with valid signatures trigger ASN.1 re-encoding and hence the bug. Specifically, since OpenSSL's default TLS X509 chain verification code verifies the certificate chain from root to leaf, TLS handshakes could only be targeted with valid certificates issued by trusted Certification Authorities. |
CVE-2016-2108
VC-OPENSSL-20160503-CVE-2016-2108 |
VCID-581z-anfk-aaaq | The tls_decrypt_ticket function in ssl/t1_lib.c in OpenSSL before 1.1.0 does not consider the HMAC size during validation of the ticket length, which allows remote attackers to cause a denial of service via a ticket that is too short. |
CVE-2016-6302
VC-OPENSSL-20160823-CVE-2016-6302 |
VCID-69ax-cbdq-aaam | If a NewSessionTicket is received by a multi-threaded client when attempting to reuse a previous ticket then a race condition can occur potentially leading to a double free of the ticket data. |
CVE-2015-1791
VC-OPENSSL-20150602-CVE-2015-1791 |
VCID-7e6q-x9ge-aaas | crypto/x509/x509_vfy.c in OpenSSL 1.0.2i allows remote attackers to cause a denial of service (NULL pointer dereference and application crash) by triggering a CRL operation. |
CVE-2016-7052
VC-OPENSSL-20160926-CVE-2016-7052 |
VCID-9fjn-9378-aaae | The DTLS implementation in OpenSSL before 1.1.0 does not properly restrict the lifetime of queue entries associated with unused out-of-order messages, which allows remote attackers to cause a denial of service (memory consumption) by maintaining many crafted DTLS sessions simultaneously, related to d1_lib.c, statem_dtls.c, statem_lib.c, and statem_srvr.c. |
CVE-2016-2179
VC-OPENSSL-20160822-CVE-2016-2179 |
VCID-9wtw-93e9-aaam | The internal |fmtstr| function used in processing a "%s" format string in the BIO_*printf functions could overflow while calculating the length of a string and cause an OOB read when printing very long strings. Additionally the internal |doapr_outch| function can attempt to write to an OOB memory location (at an offset from the NULL pointer) in the event of a memory allocation failure. In 1.0.2 and below this could be caused where the size of a buffer to be allocated is greater than INT_MAX. E.g. this could be in processing a very long "%s" format string. Memory leaks can also occur. The first issue may mask the second issue dependent on compiler behaviour. These problems could enable attacks where large amounts of untrusted data is passed to the BIO_*printf functions. If applications use these functions in this way then they could be vulnerable. OpenSSL itself uses these functions when printing out human-readable dumps of ASN.1 data. Therefore applications that print this data could be vulnerable if the data is from untrusted sources. OpenSSL command line applications could also be vulnerable where they print out ASN.1 data, or if untrusted data is passed as command line arguments. Libssl is not considered directly vulnerable. Additionally certificates etc received via remote connections via libssl are also unlikely to be able to trigger these issues because of message size limits enforced within libssl. |
CVE-2016-0799
VC-OPENSSL-20160301-CVE-2016-0799 |
VCID-a12s-yyr4-aaad | The Anti-Replay feature in the DTLS implementation in OpenSSL before 1.1.0 mishandles early use of a new epoch number in conjunction with a large sequence number, which allows remote attackers to cause a denial of service (false-positive packet drops) via spoofed DTLS records, related to rec_layer_d1.c and ssl3_record.c. |
CVE-2016-2181
VC-OPENSSL-20160819-CVE-2016-2181 |
VCID-agz8-77e4-aaaq | The BN_bn2dec function in crypto/bn/bn_print.c in OpenSSL before 1.1.0 does not properly validate division results, which allows remote attackers to cause a denial of service (out-of-bounds write and application crash) or possibly have unspecified other impact via unknown vectors. |
CVE-2016-2182
VC-OPENSSL-20160816-CVE-2016-2182 |
VCID-arc3-rhts-aaar | When verifying a signedData message the CMS code can enter an infinite loop if presented with an unknown hash function OID. This can be used to perform denial of service against any system which verifies signedData messages using the CMS code. |
CVE-2015-1792
VC-OPENSSL-20150611-CVE-2015-1792 |
VCID-bms1-jrax-aaap | Multiple memory leaks in t1_lib.c in OpenSSL before 1.0.1u, 1.0.2 before 1.0.2i, and 1.1.0 before 1.1.0a allow remote attackers to cause a denial of service (memory consumption) via large OCSP Status Request extensions. |
CVE-2016-6304
VC-OPENSSL-20160922-CVE-2016-6304 |
VCID-cg17-ah7e-aaag | The AES-NI implementation in OpenSSL before 1.0.1t and 1.0.2 before 1.0.2h does not consider memory allocation during a certain padding check, which allows remote attackers to obtain sensitive cleartext information via a padding-oracle attack against an AES CBC session. NOTE: this vulnerability exists because of an incorrect fix for CVE-2013-0169. |
CVE-2016-2107
VC-OPENSSL-20160503-CVE-2016-2107 |
VCID-dnrm-mtb4-aaah | A denial of service flaw was found in OpenSSL 0.9.8, 1.0.1, 1.0.2 through 1.0.2h, and 1.1.0 in the way the TLS/SSL protocol defined processing of ALERT packets during a connection handshake. A remote attacker could use this flaw to make a TLS/SSL server consume an excessive amount of CPU and fail to accept connections from other clients. |
CVE-2016-8610
|
VCID-eg7n-8h8z-aaaa | The certificate parser in OpenSSL before 1.0.1u and 1.0.2 before 1.0.2i might allow remote attackers to cause a denial of service (out-of-bounds read) via crafted certificate operations, related to s3_clnt.c and s3_srvr.c. |
CVE-2016-6306
VC-OPENSSL-20160921-CVE-2016-6306 |
VCID-egbc-ecck-aaag | The asn1_d2i_read_bio function in crypto/asn1/a_d2i_fp.c in the ASN.1 BIO implementation in OpenSSL before 1.0.1t and 1.0.2 before 1.0.2h allows remote attackers to cause a denial of service (memory consumption) via a short invalid encoding. |
CVE-2016-2109
VC-OPENSSL-20160503-CVE-2016-2109 |
VCID-ejg3-awxf-aaan | A double free bug was discovered when OpenSSL parses malformed DSA private keys and could lead to a DoS attack or memory corruption for applications that receive DSA private keys from untrusted sources. This scenario is considered rare. |
CVE-2016-0705
VC-OPENSSL-20160301-CVE-2016-0705 |
VCID-gp3a-7m39-aaam | The signature verification routines will crash with a NULL pointer dereference if presented with an ASN.1 signature using the RSA PSS algorithm and absent mask generation function parameter. Since these routines are used to verify certificate signature algorithms this can be used to crash any certificate verification operation and exploited in a DoS attack. Any application which performs certificate verification is vulnerable including OpenSSL clients and servers which enable client authentication. |
CVE-2015-3194
VC-OPENSSL-20151203-CVE-2015-3194 |
VCID-gydy-46kx-aaaf | X509_cmp_time does not properly check the length of the ASN1_TIME string and can read a few bytes out of bounds. In addition, X509_cmp_time accepts an arbitrary number of fractional seconds in the time string. An attacker can use this to craft malformed certificates and CRLs of various sizes and potentially cause a segmentation fault, resulting in a DoS on applications that verify certificates or CRLs. TLS clients that verify CRLs are affected. TLS clients and servers with client authentication enabled may be affected if they use custom verification callbacks. |
CVE-2015-1789
VC-OPENSSL-20150611-CVE-2015-1789 |
VCID-hzh3-5uc4-aaap | If PSK identity hints are received by a multi-threaded client then the values are wrongly updated in the parent SSL_CTX structure. This can result in a race condition potentially leading to a double free of the identify hint data. |
CVE-2015-3196
VC-OPENSSL-20151203-CVE-2015-3196 |
VCID-jt2u-rn5q-aaap | The doapr_outch function in crypto/bio/b_print.c in OpenSSL 1.0.1 before 1.0.1s and 1.0.2 before 1.0.2g does not verify that a certain memory allocation succeeds, which allows remote attackers to cause a denial of service (out-of-bounds write or memory consumption) or possibly have unspecified other impact via a long string, as demonstrated by a large amount of ASN.1 data, a different vulnerability than CVE-2016-0799. |
CVE-2016-2842
|
VCID-kryh-pfgh-aaag | OpenSSL through 1.0.2h incorrectly uses pointer arithmetic for heap-buffer boundary checks, which might allow remote attackers to cause a denial of service (integer overflow and application crash) or possibly have unspecified other impact by leveraging unexpected malloc behavior, related to s3_srvr.c, ssl_sess.c, and t1_lib.c. |
CVE-2016-2177
VC-OPENSSL-20160601-CVE-2016-2177 |
VCID-m4nz-uw2e-aaaq | The SRP user database lookup method SRP_VBASE_get_by_user had confusing memory management semantics; the returned pointer was sometimes newly allocated, and sometimes owned by the callee. The calling code has no way of distinguishing these two cases. Specifically, SRP servers that configure a secret seed to hide valid login information are vulnerable to a memory leak: an attacker connecting with an invalid username can cause a memory leak of around 300 bytes per connection. Servers that do not configure SRP, or configure SRP but do not configure a seed are not vulnerable. In Apache, the seed directive is known as SSLSRPUnknownUserSeed. To mitigate the memory leak, the seed handling in SRP_VBASE_get_by_user is now disabled even if the user has configured a seed. Applications are advised to migrate to SRP_VBASE_get1_by_user. However, note that OpenSSL makes no strong guarantees about the indistinguishability of valid and invalid logins. In particular, computations are currently not carried out in constant time. |
CVE-2016-0798
VC-OPENSSL-20160301-CVE-2016-0798 |
VCID-nuyz-b9da-aaam | A timing attack flaw was found in OpenSSL 1.0.1u and before that could allow a malicious user with local access to recover ECDSA P-256 private keys. |
CVE-2016-7056
|
VCID-pmtm-skvc-aaar | The TLS protocol 1.2 and earlier, when a DHE_EXPORT ciphersuite is enabled on a server but not on a client, does not properly convey a DHE_EXPORT choice, which allows man-in-the-middle attackers to conduct cipher-downgrade attacks by rewriting a ClientHello with DHE replaced by DHE_EXPORT and then rewriting a ServerHello with DHE_EXPORT replaced by DHE, aka the "Logjam" issue. |
CVE-2015-4000
|
VCID-rhab-a2ya-aaae | When processing an ECParameters structure OpenSSL enters an infinite loop if the curve specified is over a specially malformed binary polynomial field. This can be used to perform denial of service against any system which processes public keys, certificate requests or certificates. This includes TLS clients and TLS servers with client authentication enabled. |
CVE-2015-1788
VC-OPENSSL-20150611-CVE-2015-1788 |
VCID-sgbg-ntsk-aaac | Integer overflow in the MDC2_Update function in crypto/mdc2/mdc2dgst.c in OpenSSL before 1.1.0 allows remote attackers to cause a denial of service (out-of-bounds write and application crash) or possibly have unspecified other impact via unknown vectors. |
CVE-2016-6303
VC-OPENSSL-20160824-CVE-2016-6303 |
VCID-shkr-cjuz-aaad | An error in the implementation of the alternative certificate chain logic could allow an attacker to cause certain checks on untrusted certificates to be bypassed, such as the CA flag, enabling them to use a valid leaf certificate to act as a CA and "issue" an invalid certificate. |
CVE-2015-1793
VC-OPENSSL-20150709-CVE-2015-1793 |
VCID-t9zu-eqq1-aaag | A side-channel attack was found which makes use of cache-bank conflicts on the Intel Sandy-Bridge microarchitecture which could lead to the recovery of RSA keys. The ability to exploit this issue is limited as it relies on an attacker who has control of code in a thread running on the same hyper-threaded core as the victim thread which is performing decryptions. |
CVE-2016-0702
VC-OPENSSL-20160301-CVE-2016-0702 |
VCID-tc8g-det5-aaad | The PKCS#7 parsing code does not handle missing inner EncryptedContent correctly. An attacker can craft malformed ASN.1-encoded PKCS#7 blobs with missing content and trigger a NULL pointer dereference on parsing. Applications that decrypt PKCS#7 data or otherwise parse PKCS#7 structures from untrusted sources are affected. OpenSSL clients and servers are not affected. |
CVE-2015-1790
VC-OPENSSL-20150611-CVE-2015-1790 |
VCID-ue1t-xset-aaah | The TS_OBJ_print_bio function in crypto/ts/ts_lib.c in the X.509 Public Key Infrastructure Time-Stamp Protocol (TSP) implementation in OpenSSL through 1.0.2h allows remote attackers to cause a denial of service (out-of-bounds read and application crash) via a crafted time-stamp file that is mishandled by the "openssl ts" command. |
CVE-2016-2180
VC-OPENSSL-20160722-CVE-2016-2180 |
VCID-uh6s-bvxe-aaaf | In the BN_hex2bn function the number of hex digits is calculated using an int value |i|. Later |bn_expand| is called with a value of |i * 4|. For large values of |i| this can result in |bn_expand| not allocating any memory because |i * 4| is negative. This can leave the internal BIGNUM data field as NULL leading to a subsequent NULL ptr deref. For very large values of |i|, the calculation |i * 4| could be a positive value smaller than |i|. In this case memory is allocated to the internal BIGNUM data field, but it is insufficiently sized leading to heap corruption. A similar issue exists in BN_dec2bn. This could have security consequences if BN_hex2bn/BN_dec2bn is ever called by user applications with very large untrusted hex/dec data. This is anticipated to be a rare occurrence. All OpenSSL internal usage of these functions use data that is not expected to be untrusted, e.g. config file data or application command line arguments. If user developed applications generate config file data based on untrusted data then it is possible that this could also lead to security consequences. This is also anticipated to be rare. |
CVE-2016-0797
VC-OPENSSL-20160301-CVE-2016-0797 |
VCID-vzvx-xtm8-aaac | If a client receives a ServerKeyExchange for an anonymous DH ciphersuite with the value of p set to 0 then a seg fault can occur leading to a possible denial of service attack. |
CVE-2015-1794
VC-OPENSSL-20150811-CVE-2015-1794 |
VCID-w299-9hqt-aaan | There is a carry propagating bug in the x86_64 Montgomery squaring procedure. 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. |
CVE-2015-3193
VC-OPENSSL-20151203-CVE-2015-3193 |
VCID-w8mr-jycm-aaag | Historically OpenSSL usually only ever generated DH parameters based on "safe" primes. More recently (in version 1.0.2) support was provided for generating X9.42 style parameter files such as those required for RFC 5114 support. The primes used in such files may not be "safe". Where an application is using DH configured with parameters based on primes that are not "safe" then an attacker could use this fact to find a peer's private DH exponent. This attack requires that the attacker complete multiple handshakes in which the peer uses the same private DH exponent. For example this could be used to discover a TLS server's private DH exponent if it's reusing the private DH exponent or it's using a static DH ciphersuite. OpenSSL provides the option SSL_OP_SINGLE_DH_USE for ephemeral DH (DHE) in TLS. It is not on by default. If the option is not set then the server reuses the same private DH exponent for the life of the server process and would be vulnerable to this attack. It is believed that many popular applications do set this option and would therefore not be at risk. OpenSSL before 1.0.2f will reuse the key if: - SSL_CTX_set_tmp_dh()/SSL_set_tmp_dh() is used and SSL_OP_SINGLE_DH_USE is not set. - SSL_CTX_set_tmp_dh_callback()/SSL_set_tmp_dh_callback() is used, and both the parameters and the key are set and SSL_OP_SINGLE_DH_USE is not used. This is an undocumted feature and parameter files don't contain the key. - Static DH ciphersuites are used. The key is part of the certificate and so it will always reuse it. This is only supported in 1.0.2. It will not reuse the key for DHE ciphers suites if: - SSL_OP_SINGLE_DH_USE is set - SSL_CTX_set_tmp_dh_callback()/SSL_set_tmp_dh_callback() is used and the callback does not provide the key, only the parameters. The callback is almost always used like this. Non-safe primes are generated by OpenSSL when using: - genpkey with the dh_rfc5114 option. This will write an X9.42 style file including the prime-order subgroup size "q". This is supported since the 1.0.2 version. Older versions can't read files generated in this way. - dhparam with the -dsaparam option. This has always been documented as requiring the single use. The fix for this issue adds an additional check where a "q" parameter is available (as is the case in X9.42 based parameters). This detects the only known attack, and is the only possible defense for static DH ciphersuites. This could have some performance impact. Additionally the SSL_OP_SINGLE_DH_USE option has been switched on by default and cannot be disabled. This could have some performance impact. |
CVE-2016-0701
VC-OPENSSL-20160128-CVE-2016-0701 |
VCID-xsy7-be4x-aaas | Integer overflow in the EVP_EncryptUpdate function in crypto/evp/evp_enc.c in OpenSSL before 1.0.1t and 1.0.2 before 1.0.2h allows remote attackers to cause a denial of service (heap memory corruption) via a large amount of data. |
CVE-2016-2106
VC-OPENSSL-20160503-CVE-2016-2106 |
VCID-z6bg-hyhu-aaas | The dsa_sign_setup function in crypto/dsa/dsa_ossl.c in OpenSSL through 1.0.2h does not properly ensure the use of constant-time operations, which makes it easier for local users to discover a DSA private key via a timing side-channel attack. |
CVE-2016-2178
VC-OPENSSL-20160607-CVE-2016-2178 |
VCID-zkqe-jrqc-aaab | This vulnerability does not affect current versions of OpenSSL. It existed in previous OpenSSL versions and was fixed in June 2014. If a DTLS peer receives application data between the ChangeCipherSpec and Finished messages, buffering of such data may cause an invalid free, resulting in a segmentation fault or potentially, memory corruption. |
CVE-2014-8176
VC-OPENSSL-20150611-CVE-2014-8176 |
Date | Actor | Action | Vulnerability | Source | VulnerableCode Version |
---|---|---|---|---|---|
2025-06-21T19:17:19.144514+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:14:19.078316+00:00 | Debian Oval Importer | Fixing | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T19:08:38.878582+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.758866+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:53.000037+00:00 | Debian Oval Importer | Fixing | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T19:04:26.128131+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:45.017965+00:00 | Debian Oval Importer | Fixing | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:52:38.101581+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:51:21.708482+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:48:29.161128+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:46:55.271235+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:44:04.440723+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:39:50.645160+00:00 | Debian Oval Importer | Fixing | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:38:13.335798+00:00 | Debian Oval Importer | Fixing | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:36:29.217835+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.222691+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:26:14.195822+00:00 | Debian Oval Importer | Fixing | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:24:11.167852+00:00 | Debian Oval Importer | Fixing | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:24:00.293097+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.046526+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.357669+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.527753+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:15:21.070274+00:00 | Debian Oval Importer | Fixing | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:12:23.469106+00:00 | Debian Oval Importer | Fixing | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:10:48.289441+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-21T18:07:20.708718+00:00 | Debian Oval Importer | Fixing | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T17:53:27.734958+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:52:39.982482+00:00 | Debian Oval Importer | Fixing | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:48:13.923173+00:00 | Debian Oval Importer | Fixing | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:44:46.880243+00:00 | Debian Oval Importer | Fixing | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:25:53.725986+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:19:22.425926+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.936337+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-21T17:15:11.013275+00:00 | Debian Oval Importer | Fixing | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:13:11.545175+00:00 | Debian Oval Importer | Fixing | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:01:49.493230+00:00 | Debian Oval Importer | Fixing | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:53:37.728738+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:46:06.698735+00:00 | Debian Oval Importer | Fixing | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:45:02.149788+00:00 | Debian Oval Importer | Fixing | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:43:38.839573+00:00 | Debian Oval Importer | Fixing | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:42:34.152072+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.511185+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:37:18.273004+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.920475+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:31:25.324959+00:00 | Debian Oval Importer | Fixing | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:27:54.122498+00:00 | Debian Oval Importer | Fixing | VCID-shkr-cjuz-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:27:37.015128+00:00 | Debian Oval Importer | Fixing | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:24:13.069501+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.893638+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.200753+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.305046+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:16:32.106755+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:12:20.602560+00:00 | Debian Oval Importer | Fixing | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:04:04.466562+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.958366+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:58:59.616759+00:00 | Debian Oval Importer | Fixing | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:55:31.083157+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:54:30.475147+00:00 | Debian Oval Importer | Fixing | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:53:21.051720+00:00 | Debian Oval Importer | Fixing | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:48:22.786429+00:00 | Debian Oval Importer | Fixing | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:47:21.435711+00:00 | Debian Oval Importer | Fixing | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:25:29.912551+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:18:58.950370+00:00 | Debian Oval Importer | Fixing | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:12:28.085924+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.415282+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.659032+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:57:23.695942+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:44:05.341649+00:00 | Debian Oval Importer | Fixing | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:43:43.180111+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:42:22.406828+00:00 | Debian Oval Importer | Fixing | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:36:28.737325+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.410757+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:31:57.311983+00:00 | Debian Oval Importer | Fixing | VCID-7e6q-x9ge-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:29:24.762885+00:00 | Debian Oval Importer | Fixing | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:26:27.114288+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:23:55.215615+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:21:18.038983+00:00 | Debian Oval Importer | Fixing | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:17:42.814755+00:00 | Debian Oval Importer | Fixing | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:17:38.442974+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.447490+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.686609+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.456472+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.936172+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:02:28.702913+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:00:47.743233+00:00 | Debian Oval Importer | Fixing | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:56:35.760218+00:00 | Debian Oval Importer | Fixing | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:47:50.609118+00:00 | Debian Oval Importer | Fixing | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:45:31.079145+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:37:25.799965+00:00 | Debian Oval Importer | Fixing | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:36:19.417335+00:00 | Debian Oval Importer | Fixing | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:36:06.198705+00:00 | Debian Oval Importer | Fixing | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:35:35.506073+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:24:10.293280+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.652889+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.638102+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:58:17.446368+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.043348+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.599274+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:59.756957+00:00 | Debian Oval Importer | Fixing | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:40:09.204134+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:34:35.926987+00:00 | Debian Oval Importer | Fixing | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:24:18.855995+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.143681+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.393325+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-21T12:15:27.426754+00:00 | Debian Oval Importer | Fixing | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:11:48.467016+00:00 | Debian Oval Importer | Fixing | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:53:01.288946+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:46:16.297556+00:00 | Debian Oval Importer | Fixing | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:43:30.669226+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.834599+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:18:09.719047+00:00 | Debian Oval Importer | Fixing | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:11:05.133075+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T11:09:00.800947+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:55:52.515734+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:53:08.184192+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:50:03.110488+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:41:24.120582+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:38:03.341517+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:29:48.423933+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:27:19.357517+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T10:21:34.780935+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.3 |
2025-06-21T08:46:39.531660+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | None | 36.1.3 |
2025-06-21T08:46:36.842361+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | None | 36.1.3 |
2025-06-21T08:21:50.542782+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | None | 36.1.3 |
2025-06-21T08:21:49.821521+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | None | 36.1.3 |
2025-06-21T08:21:49.083400+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | None | 36.1.3 |
2025-06-21T08:21:48.374693+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | None | 36.1.3 |
2025-06-21T07:31:14.844050+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | None | 36.1.3 |
2025-06-21T07:29:58.553650+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | None | 36.1.3 |
2025-06-21T07:29:27.620648+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | None | 36.1.3 |
2025-06-21T07:28:44.617075+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | None | 36.1.3 |
2025-06-21T07:27:08.060533+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | None | 36.1.3 |
2025-06-21T05:06:58.062077+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | None | 36.1.3 |
2025-06-21T01:21:05.428244+00:00 | Debian Oval Importer | Fixing | VCID-eg7n-8h8z-aaaa | None | 36.1.3 |
2025-06-21T01:19:37.797850+00:00 | Debian Oval Importer | Fixing | VCID-gp3a-7m39-aaam | None | 36.1.3 |
2025-06-21T01:18:11.644525+00:00 | Debian Oval Importer | Fixing | VCID-pmtm-skvc-aaar | None | 36.1.3 |
2025-06-21T01:06:53.977955+00:00 | Debian Oval Importer | Fixing | VCID-ejg3-awxf-aaan | None | 36.1.3 |
2025-06-21T00:48:04.891880+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | None | 36.1.3 |
2025-06-21T00:47:49.987801+00:00 | Debian Oval Importer | Fixing | VCID-581z-anfk-aaaq | None | 36.1.3 |
2025-06-21T00:41:50.664592+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | None | 36.1.3 |
2025-06-21T00:39:26.646342+00:00 | Debian Oval Importer | Fixing | VCID-rhab-a2ya-aaae | None | 36.1.3 |
2025-06-21T00:37:33.620888+00:00 | Debian Oval Importer | Fixing | VCID-69ax-cbdq-aaam | None | 36.1.3 |
2025-06-21T00:29:20.647070+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | None | 36.1.3 |
2025-06-21T00:26:10.282982+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | None | 36.1.3 |
2025-06-21T00:23:59.718315+00:00 | Debian Oval Importer | Fixing | VCID-t9zu-eqq1-aaag | None | 36.1.3 |
2025-06-21T00:23:22.018858+00:00 | Debian Oval Importer | Fixing | VCID-3d3c-x2ux-aaaa | None | 36.1.3 |
2025-06-21T00:14:38.801387+00:00 | Debian Oval Importer | Fixing | VCID-9wtw-93e9-aaam | None | 36.1.3 |
2025-06-21T00:13:16.711026+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | None | 36.1.3 |
2025-06-21T00:05:03.658831+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.1.3 |
2025-06-21T00:02:05.848372+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | None | 36.1.3 |
2025-06-20T23:59:15.144999+00:00 | Debian Oval Importer | Fixing | VCID-ue1t-xset-aaah | None | 36.1.3 |
2025-06-20T23:57:14.561333+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | None | 36.1.3 |
2025-06-20T23:55:27.707313+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | None | 36.1.3 |
2025-06-20T23:44:45.593484+00:00 | Debian Oval Importer | Fixing | VCID-cg17-ah7e-aaag | None | 36.1.3 |
2025-06-20T23:43:07.401253+00:00 | Debian Oval Importer | Fixing | VCID-arc3-rhts-aaar | None | 36.1.3 |
2025-06-20T23:42:07.040370+00:00 | Debian Oval Importer | Fixing | VCID-tc8g-det5-aaad | None | 36.1.3 |
2025-06-20T23:31:06.597693+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | None | 36.1.3 |
2025-06-20T23:30:19.541359+00:00 | Debian Oval Importer | Fixing | VCID-m4nz-uw2e-aaaq | None | 36.1.3 |
2025-06-20T23:29:42.743607+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | None | 36.1.3 |
2025-06-20T23:29:19.083462+00:00 | Debian Oval Importer | Fixing | VCID-dnrm-mtb4-aaah | None | 36.1.3 |
2025-06-20T23:23:53.834841+00:00 | Debian Oval Importer | Fixing | VCID-xsy7-be4x-aaas | None | 36.1.3 |
2025-06-20T23:23:48.924267+00:00 | Debian Oval Importer | Fixing | VCID-egbc-ecck-aaag | None | 36.1.3 |
2025-06-20T23:20:00.468278+00:00 | Debian Oval Importer | Fixing | VCID-vzvx-xtm8-aaac | None | 36.1.3 |
2025-06-20T23:16:03.880814+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | None | 36.1.3 |
2025-06-20T23:15:50.726613+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | None | 36.1.3 |
2025-06-20T23:11:02.190878+00:00 | Debian Oval Importer | Fixing | VCID-kryh-pfgh-aaag | None | 36.1.3 |
2025-06-20T23:09:11.548021+00:00 | Debian Oval Importer | Fixing | VCID-sgbg-ntsk-aaac | None | 36.1.3 |
2025-06-20T22:56:19.216156+00:00 | Debian Oval Importer | Fixing | VCID-uh6s-bvxe-aaaf | None | 36.1.3 |
2025-06-20T22:56:04.862654+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | None | 36.1.3 |
2025-06-20T22:54:44.892279+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | None | 36.1.3 |
2025-06-20T22:47:37.595154+00:00 | Debian Oval Importer | Fixing | VCID-z6bg-hyhu-aaas | None | 36.1.3 |
2025-06-20T22:46:37.492125+00:00 | Debian Oval Importer | Fixing | VCID-9fjn-9378-aaae | None | 36.1.3 |
2025-06-20T22:45:00.699402+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | None | 36.1.3 |
2025-06-20T22:37:53.722986+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | None | 36.1.3 |
2025-06-20T22:36:59.704755+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | None | 36.1.3 |
2025-06-20T22:28:46.926244+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.1.3 |
2025-06-20T22:28:37.134863+00:00 | Debian Oval Importer | Fixing | VCID-42tc-p92q-aaap | None | 36.1.3 |
2025-06-20T22:27:10.613770+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | None | 36.1.3 |
2025-06-20T22:23:54.765743+00:00 | Debian Oval Importer | Fixing | VCID-shkr-cjuz-aaad | None | 36.1.3 |
2025-06-20T22:16:42.385933+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | None | 36.1.3 |
2025-06-20T22:12:13.753162+00:00 | Debian Oval Importer | Fixing | VCID-jt2u-rn5q-aaap | None | 36.1.3 |
2025-06-20T22:09:37.731164+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | None | 36.1.3 |
2025-06-20T22:07:43.356760+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | None | 36.1.3 |
2025-06-20T22:03:02.050273+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | None | 36.1.3 |
2025-06-20T21:58:39.072719+00:00 | Debian Oval Importer | Fixing | VCID-w299-9hqt-aaan | None | 36.1.3 |
2025-06-20T21:57:10.029385+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | None | 36.1.3 |
2025-06-20T21:56:31.090758+00:00 | Debian Oval Importer | Fixing | VCID-nuyz-b9da-aaam | None | 36.1.3 |
2025-06-20T21:51:44.975128+00:00 | Debian Oval Importer | Fixing | VCID-hzh3-5uc4-aaap | None | 36.1.3 |
2025-06-20T21:51:18.642818+00:00 | Debian Oval Importer | Fixing | VCID-bms1-jrax-aaap | None | 36.1.3 |
2025-06-20T21:49:58.879352+00:00 | Debian Oval Importer | Fixing | VCID-agz8-77e4-aaaq | None | 36.1.3 |
2025-06-20T21:47:39.802700+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | None | 36.1.3 |
2025-06-20T21:41:31.070071+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | None | 36.1.3 |
2025-06-20T21:35:25.436400+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | None | 36.1.3 |
2025-06-20T21:33:19.401769+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | None | 36.1.3 |
2025-06-20T21:32:44.589243+00:00 | Debian Oval Importer | Fixing | VCID-52ea-drta-aaaa | None | 36.1.3 |
2025-06-20T21:32:15.848552+00:00 | Debian Oval Importer | Fixing | VCID-gydy-46kx-aaaf | None | 36.1.3 |
2025-06-20T21:31:04.185902+00:00 | Debian Oval Importer | Fixing | VCID-a12s-yyr4-aaad | None | 36.1.3 |
2025-06-20T21:29:28.816065+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | None | 36.1.3 |
2025-06-20T20:51:09.975756+00:00 | Debian Oval Importer | Fixing | VCID-7e6q-x9ge-aaas | None | 36.1.3 |
2025-06-20T20:50:20.538496+00:00 | Debian Oval Importer | Fixing | VCID-w8mr-jycm-aaag | None | 36.1.3 |
2025-06-20T20:36:12.996344+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | None | 36.1.3 |
2025-06-20T20:15:08.757236+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | None | 36.1.3 |
2025-06-20T20:14:20.162688+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | None | 36.1.3 |
2025-06-20T20:13:08.495593+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | None | 36.1.3 |
2025-06-20T20:07:15.065436+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | None | 36.1.3 |
2025-06-20T19:59:35.053634+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | None | 36.1.3 |
2025-06-20T19:58:36.828550+00:00 | Debian Oval Importer | Fixing | VCID-zkqe-jrqc-aaab | None | 36.1.3 |
2025-06-08T13:18:39.134770+00:00 | Debian Oval Importer | Fixing | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T13:11:20.858102+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T13:06:35.243760+00:00 | Debian Oval Importer | Fixing | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:56:58.529953+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.112317+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.820398+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.346638+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.394675+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:29:48.945983+00:00 | Debian Oval Importer | Fixing | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:25:21.908020+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.946024+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:24:22.631966+00:00 | Debian Oval Importer | Fixing | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:22:49.516597+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.968084+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:13:28.391207+00:00 | Debian Oval Importer | Fixing | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:13:18.043736+00:00 | Debian Oval Importer | Fixing | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:11:58.641224+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.581543+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:52:29.183811+00:00 | Debian Oval Importer | Fixing | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:51:39.706851+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:46:07.160285+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:43:07.082579+00:00 | Debian Oval Importer | Fixing | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:37:40.267861+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.748987+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:34:03.149411+00:00 | Debian Oval Importer | Fixing | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:33:36.429706+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:32.909085+00:00 | Debian Oval Importer | Fixing | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:22:25.984023+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:21:10.757868+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:18:21.473954+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:16:51.324557+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:14:06.115562+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:09:59.421459+00:00 | Debian Oval Importer | Fixing | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:08:24.700916+00:00 | Debian Oval Importer | Fixing | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:06:45.869543+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.916947+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:56:49.864998+00:00 | Debian Oval Importer | Fixing | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:54:51.594800+00:00 | Debian Oval Importer | Fixing | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:54:40.996303+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.108701+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.672650+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.384975+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:46:31.889995+00:00 | Debian Oval Importer | Fixing | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:43:42.719790+00:00 | Debian Oval Importer | Fixing | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:42:12.286926+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:38:54.310356+00:00 | Debian Oval Importer | Fixing | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:25:16.270560+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:24:40.204196+00:00 | Debian Oval Importer | Fixing | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:21:12.207910+00:00 | Debian Oval Importer | Fixing | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:17:51.130430+00:00 | Debian Oval Importer | Fixing | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:05:14.310778+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:00:30.233611+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.415739+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:56:37.760119+00:00 | Debian Oval Importer | Fixing | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:54:45.671549+00:00 | Debian Oval Importer | Fixing | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:46:50.600772+00:00 | Debian Oval Importer | Fixing | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:38:46.671892+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:31:22.722116+00:00 | Debian Oval Importer | Fixing | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:30:16.970561+00:00 | Debian Oval Importer | Fixing | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:28:54.278261+00:00 | Debian Oval Importer | Fixing | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:27:50.828324+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.386041+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:22:54.727152+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.963916+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:17:14.467720+00:00 | Debian Oval Importer | Fixing | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:13:49.726445+00:00 | Debian Oval Importer | Fixing | VCID-shkr-cjuz-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:13:33.243428+00:00 | Debian Oval Importer | Fixing | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:10:14.223687+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.241646+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.985223+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.447558+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:03:16.468809+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:00:39.343238+00:00 | Debian Oval Importer | Fixing | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:57:03.736344+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.515547+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:52:18.202515+00:00 | Debian Oval Importer | Fixing | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:48:49.522336+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:47:46.145184+00:00 | Debian Oval Importer | Fixing | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:46:39.493625+00:00 | Debian Oval Importer | Fixing | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:41:46.686743+00:00 | Debian Oval Importer | Fixing | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:40:47.035424+00:00 | Debian Oval Importer | Fixing | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:20:02.948692+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:12:55.263393+00:00 | Debian Oval Importer | Fixing | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:06:12.631448+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.230122+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.325373+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:50:42.263360+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:24.674255+00:00 | Debian Oval Importer | Fixing | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:37:02.228474+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:35:39.659080+00:00 | Debian Oval Importer | Fixing | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:29:35.545326+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.551978+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:25:00.462653+00:00 | Debian Oval Importer | Fixing | VCID-7e6q-x9ge-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:22:27.046053+00:00 | Debian Oval Importer | Fixing | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:19:30.366933+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:17:00.343719+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:14:25.773361+00:00 | Debian Oval Importer | Fixing | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:11:00.222629+00:00 | Debian Oval Importer | Fixing | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:10:56.055380+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.062905+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.007927+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.494013+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.826499+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:56:31.038876+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:54:54.427072+00:00 | Debian Oval Importer | Fixing | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:50:47.670236+00:00 | Debian Oval Importer | Fixing | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:42:00.366197+00:00 | Debian Oval Importer | Fixing | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:39:41.975335+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:31:38.213096+00:00 | Debian Oval Importer | Fixing | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:30:27.976845+00:00 | Debian Oval Importer | Fixing | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:30:13.686142+00:00 | Debian Oval Importer | Fixing | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:29:44.370342+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:18:20.398631+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.501496+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.021251+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:53:15.596492+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.399775+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.345219+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:37:04.277516+00:00 | Debian Oval Importer | Fixing | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:36:35.966071+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:32:47.631244+00:00 | Debian Oval Importer | Fixing | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:25:49.134919+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.430052+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.246571+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:20:07.050358+00:00 | Debian Oval Importer | Fixing | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:17:29.721383+00:00 | Debian Oval Importer | Fixing | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:05:51.900671+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-08T05:01:16.043567+00:00 | Debian Oval Importer | Fixing | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:59:12.143759+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.510406+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:42:28.417707+00:00 | Debian Oval Importer | Fixing | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:38:14.837189+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:37:21.508267+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:29:35.200742+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:27:52.639520+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:25:48.386194+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:21:03.185262+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:18:41.720269+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:13:54.118930+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:12:19.475371+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T04:08:15.632515+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.1.0 |
2025-06-08T02:32:55.830466+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | None | 36.1.0 |
2025-06-08T02:32:52.538221+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | None | 36.1.0 |
2025-06-08T02:03:11.211931+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | None | 36.1.0 |
2025-06-08T02:03:10.509741+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | None | 36.1.0 |
2025-06-08T02:03:09.804093+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | None | 36.1.0 |
2025-06-08T02:03:09.073226+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | None | 36.1.0 |
2025-06-08T01:11:03.954267+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | None | 36.1.0 |
2025-06-08T01:09:44.847983+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | None | 36.1.0 |
2025-06-08T01:09:13.216782+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | None | 36.1.0 |
2025-06-08T01:08:30.500146+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | None | 36.1.0 |
2025-06-08T01:06:54.144867+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | None | 36.1.0 |
2025-06-07T22:44:26.015066+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | None | 36.1.0 |
2025-06-07T18:43:52.642562+00:00 | Debian Oval Importer | Fixing | VCID-eg7n-8h8z-aaaa | None | 36.1.0 |
2025-06-07T18:42:23.817690+00:00 | Debian Oval Importer | Fixing | VCID-gp3a-7m39-aaam | None | 36.1.0 |
2025-06-07T18:40:55.264068+00:00 | Debian Oval Importer | Fixing | VCID-pmtm-skvc-aaar | None | 36.1.0 |
2025-06-07T18:29:29.876661+00:00 | Debian Oval Importer | Fixing | VCID-ejg3-awxf-aaan | None | 36.1.0 |
2025-06-07T18:10:35.276117+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | None | 36.1.0 |
2025-06-07T18:10:20.030550+00:00 | Debian Oval Importer | Fixing | VCID-581z-anfk-aaaq | None | 36.1.0 |
2025-06-07T18:04:24.897939+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | None | 36.1.0 |
2025-06-07T18:02:01.509691+00:00 | Debian Oval Importer | Fixing | VCID-rhab-a2ya-aaae | None | 36.1.0 |
2025-06-07T18:00:10.812455+00:00 | Debian Oval Importer | Fixing | VCID-69ax-cbdq-aaam | None | 36.1.0 |
2025-06-07T17:52:01.148245+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | None | 36.1.0 |
2025-06-07T17:48:54.885826+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | None | 36.1.0 |
2025-06-07T17:46:47.992635+00:00 | Debian Oval Importer | Fixing | VCID-t9zu-eqq1-aaag | None | 36.1.0 |
2025-06-07T17:46:10.596566+00:00 | Debian Oval Importer | Fixing | VCID-3d3c-x2ux-aaaa | None | 36.1.0 |
2025-06-07T17:37:31.744172+00:00 | Debian Oval Importer | Fixing | VCID-9wtw-93e9-aaam | None | 36.1.0 |
2025-06-07T17:36:06.631219+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | None | 36.1.0 |
2025-06-07T17:27:49.791462+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.1.0 |
2025-06-07T17:24:53.452846+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | None | 36.1.0 |
2025-06-07T17:22:08.287542+00:00 | Debian Oval Importer | Fixing | VCID-ue1t-xset-aaah | None | 36.1.0 |
2025-06-07T17:20:08.677274+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | None | 36.1.0 |
2025-06-07T17:18:20.116184+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | None | 36.1.0 |
2025-06-07T17:07:39.435770+00:00 | Debian Oval Importer | Fixing | VCID-cg17-ah7e-aaag | None | 36.1.0 |
2025-06-07T17:06:01.397346+00:00 | Debian Oval Importer | Fixing | VCID-arc3-rhts-aaar | None | 36.1.0 |
2025-06-07T17:05:02.043208+00:00 | Debian Oval Importer | Fixing | VCID-tc8g-det5-aaad | None | 36.1.0 |
2025-06-07T16:54:01.653665+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | None | 36.1.0 |
2025-06-07T16:53:14.435903+00:00 | Debian Oval Importer | Fixing | VCID-m4nz-uw2e-aaaq | None | 36.1.0 |
2025-06-07T16:52:37.723276+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | None | 36.1.0 |
2025-06-07T16:52:14.254004+00:00 | Debian Oval Importer | Fixing | VCID-dnrm-mtb4-aaah | None | 36.1.0 |
2025-06-07T16:46:47.860879+00:00 | Debian Oval Importer | Fixing | VCID-xsy7-be4x-aaas | None | 36.1.0 |
2025-06-07T16:46:42.914966+00:00 | Debian Oval Importer | Fixing | VCID-egbc-ecck-aaag | None | 36.1.0 |
2025-06-07T16:42:58.253895+00:00 | Debian Oval Importer | Fixing | VCID-vzvx-xtm8-aaac | None | 36.1.0 |
2025-06-07T16:39:08.999051+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | None | 36.1.0 |
2025-06-07T16:38:55.859078+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | None | 36.1.0 |
2025-06-07T16:34:08.748755+00:00 | Debian Oval Importer | Fixing | VCID-kryh-pfgh-aaag | None | 36.1.0 |
2025-06-07T16:32:20.825401+00:00 | Debian Oval Importer | Fixing | VCID-sgbg-ntsk-aaac | None | 36.1.0 |
2025-06-07T16:19:35.882067+00:00 | Debian Oval Importer | Fixing | VCID-uh6s-bvxe-aaaf | None | 36.1.0 |
2025-06-07T16:19:21.907784+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | None | 36.1.0 |
2025-06-07T16:18:02.148852+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | None | 36.1.0 |
2025-06-07T16:11:31.912296+00:00 | Debian Oval Importer | Fixing | VCID-z6bg-hyhu-aaas | None | 36.1.0 |
2025-06-07T16:10:32.430140+00:00 | Debian Oval Importer | Fixing | VCID-9fjn-9378-aaae | None | 36.1.0 |
2025-06-07T16:08:56.741637+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | None | 36.1.0 |
2025-06-07T16:01:50.727107+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | None | 36.1.0 |
2025-06-07T16:00:58.649519+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | None | 36.1.0 |
2025-06-07T15:52:57.387083+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.1.0 |
2025-06-07T15:52:47.709572+00:00 | Debian Oval Importer | Fixing | VCID-42tc-p92q-aaap | None | 36.1.0 |
2025-06-07T15:51:25.119734+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | None | 36.1.0 |
2025-06-07T15:48:08.296902+00:00 | Debian Oval Importer | Fixing | VCID-shkr-cjuz-aaad | None | 36.1.0 |
2025-06-07T15:40:44.350920+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | None | 36.1.0 |
2025-06-07T15:36:17.347185+00:00 | Debian Oval Importer | Fixing | VCID-jt2u-rn5q-aaap | None | 36.1.0 |
2025-06-07T15:33:38.497530+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | None | 36.1.0 |
2025-06-07T15:31:39.302085+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | None | 36.1.0 |
2025-06-07T15:26:44.654823+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | None | 36.1.0 |
2025-06-07T15:22:07.360513+00:00 | Debian Oval Importer | Fixing | VCID-w299-9hqt-aaan | None | 36.1.0 |
2025-06-07T15:20:37.026948+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | None | 36.1.0 |
2025-06-07T15:19:53.473592+00:00 | Debian Oval Importer | Fixing | VCID-nuyz-b9da-aaam | None | 36.1.0 |
2025-06-07T15:15:00.580305+00:00 | Debian Oval Importer | Fixing | VCID-hzh3-5uc4-aaap | None | 36.1.0 |
2025-06-07T15:14:32.922917+00:00 | Debian Oval Importer | Fixing | VCID-bms1-jrax-aaap | None | 36.1.0 |
2025-06-07T15:13:08.438056+00:00 | Debian Oval Importer | Fixing | VCID-agz8-77e4-aaaq | None | 36.1.0 |
2025-06-07T15:10:43.080355+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | None | 36.1.0 |
2025-06-07T15:04:20.691234+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | None | 36.1.0 |
2025-06-07T14:58:00.430192+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | None | 36.1.0 |
2025-06-07T14:55:52.918422+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | None | 36.1.0 |
2025-06-07T14:55:17.162774+00:00 | Debian Oval Importer | Fixing | VCID-52ea-drta-aaaa | None | 36.1.0 |
2025-06-07T14:54:47.478886+00:00 | Debian Oval Importer | Fixing | VCID-gydy-46kx-aaaf | None | 36.1.0 |
2025-06-07T14:53:31.785668+00:00 | Debian Oval Importer | Fixing | VCID-a12s-yyr4-aaad | None | 36.1.0 |
2025-06-07T14:51:51.954771+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | None | 36.1.0 |
2025-06-07T14:22:09.492599+00:00 | Debian Oval Importer | Fixing | VCID-7e6q-x9ge-aaas | None | 36.1.0 |
2025-06-07T14:21:19.507917+00:00 | Debian Oval Importer | Fixing | VCID-w8mr-jycm-aaag | None | 36.1.0 |
2025-06-07T14:08:44.821269+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | None | 36.1.0 |
2025-06-07T13:55:20.992039+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | None | 36.1.0 |
2025-06-07T13:55:17.144550+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | None | 36.1.0 |
2025-06-07T13:54:33.551343+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | None | 36.1.0 |
2025-06-07T13:52:53.252237+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | None | 36.1.0 |
2025-06-07T13:49:18.300664+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | None | 36.1.0 |
2025-06-07T13:48:16.143879+00:00 | Debian Oval Importer | Fixing | VCID-zkqe-jrqc-aaab | None | 36.1.0 |
2025-04-13T02:21:23.037752+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.271378+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.787265+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.000136+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.212021+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.457639+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.309874+00:00 | Debian Oval Importer | Affected by | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-13T00:39:16.412674+00:00 | Debian Oval Importer | Affected by | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T22:38:43.122749+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:24:18.847773+00:00 | Debian Oval Importer | Fixing | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:23:40.856833+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:13:10.072116+00:00 | Debian Oval Importer | Fixing | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:10:50.554871+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:06:42.505069+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:46:17.306053+00:00 | Debian Oval Importer | Fixing | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:31:58.193413+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:30:45.302531+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:28:47.047566+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:25:31.681254+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:19:38.756316+00:00 | Debian Oval Importer | Fixing | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:19:00.682036+00:00 | Debian Oval Importer | Fixing | VCID-shkr-cjuz-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:16:57.007806+00:00 | Debian Oval Importer | Fixing | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:07:41.194922+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:07:24.933673+00:00 | Debian Oval Importer | Fixing | VCID-7e6q-x9ge-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:05:56.048894+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:03:43.389777+00:00 | Debian Oval Importer | Fixing | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:00:37.595168+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:59:51.987871+00:00 | Debian Oval Importer | Fixing | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:56:52.832986+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.736235+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:41:18.151179+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:28:38.704601+00:00 | Debian Oval Importer | Fixing | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:22:49.548863+00:00 | Debian Oval Importer | Fixing | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:06:09.852758+00:00 | Debian Oval Importer | Fixing | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:05:54.325841+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:05:11.355284+00:00 | Debian Oval Importer | Fixing | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:59:56.331308+00:00 | Debian Oval Importer | Fixing | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:57:04.644235+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:55:59.255221+00:00 | Debian Oval Importer | Fixing | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:55:51.312906+00:00 | Debian Oval Importer | Fixing | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:52:10.261318+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.394393+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:48:39.797055+00:00 | Debian Oval Importer | Fixing | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:41:28.790489+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-12T19:40:12.723741+00:00 | Debian Oval Importer | Fixing | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:37:19.979777+00:00 | Debian Oval Importer | Fixing | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:25:22.723354+00:00 | Debian Oval Importer | Fixing | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:06:42.515127+00:00 | Debian Oval Importer | Fixing | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:59:05.588852+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:54:10.305800+00:00 | Debian Oval Importer | Fixing | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:44:15.302821+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.452901+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.425174+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.324181+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.323502+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:16:09.596745+00:00 | Debian Oval Importer | Fixing | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:11:30.364050+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.317195+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:10:28.560381+00:00 | Debian Oval Importer | Fixing | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:08:51.510515+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.334239+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:59:10.186192+00:00 | Debian Oval Importer | Fixing | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:58:59.496952+00:00 | Debian Oval Importer | Fixing | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:57:39.783847+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.428378+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:37:33.318167+00:00 | Debian Oval Importer | Fixing | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:36:41.604165+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:30:59.487301+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:27:57.367345+00:00 | Debian Oval Importer | Fixing | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:22:15.883371+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.644706+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:29.676532+00:00 | Debian Oval Importer | Fixing | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:18:02.950738+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:35.073911+00:00 | Debian Oval Importer | Fixing | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:06:27.862327+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:05:11.632880+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:02:16.195943+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:00:40.832545+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:57:46.096003+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:53:29.055216+00:00 | Debian Oval Importer | Fixing | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:51:50.347325+00:00 | Debian Oval Importer | Fixing | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:50:07.892664+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.978280+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:39:30.111806+00:00 | Debian Oval Importer | Fixing | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:37:24.792732+00:00 | Debian Oval Importer | Fixing | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:37:13.552613+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.312368+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.028037+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.136872+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:28:36.273864+00:00 | Debian Oval Importer | Fixing | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:25:37.057068+00:00 | Debian Oval Importer | Fixing | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:24:01.079078+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:20:31.638424+00:00 | Debian Oval Importer | Fixing | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:06:22.389661+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-12T16:05:47.971774+00:00 | Debian Oval Importer | Fixing | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T16:02:13.058326+00:00 | Debian Oval Importer | Fixing | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T15:58:45.460257+00:00 | Debian Oval Importer | Fixing | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:37:33.822330+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:32:46.383691+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.069976+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:28:50.427063+00:00 | Debian Oval Importer | Fixing | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:26:59.660814+00:00 | Debian Oval Importer | Fixing | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:19:09.502925+00:00 | Debian Oval Importer | Fixing | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:11:09.612712+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:03:46.022897+00:00 | Debian Oval Importer | Fixing | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:02:42.478655+00:00 | Debian Oval Importer | Fixing | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:01:20.533460+00:00 | Debian Oval Importer | Fixing | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:00:14.899906+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.296001+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:55:09.840528+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.799739+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:49:19.062325+00:00 | Debian Oval Importer | Fixing | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:45:47.058606+00:00 | Debian Oval Importer | Fixing | VCID-shkr-cjuz-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:45:29.419736+00:00 | Debian Oval Importer | Fixing | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:42:06.436689+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.649832+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.173955+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.622028+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:34:57.070216+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:32:18.976553+00:00 | Debian Oval Importer | Fixing | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:28:40.170207+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.952838+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:23:51.091889+00:00 | Debian Oval Importer | Fixing | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:20:22.668837+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:19:21.589777+00:00 | Debian Oval Importer | Fixing | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:18:12.883295+00:00 | Debian Oval Importer | Fixing | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:13:15.198029+00:00 | Debian Oval Importer | Fixing | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:12:14.851082+00:00 | Debian Oval Importer | Fixing | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:51:23.544866+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:44:47.020059+00:00 | Debian Oval Importer | Fixing | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:38:15.765049+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.522804+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.968138+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:23:09.453454+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:57.075261+00:00 | Debian Oval Importer | Fixing | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:09:35.490877+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:08:14.795842+00:00 | Debian Oval Importer | Fixing | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:02:23.797958+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.289972+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:57:37.057418+00:00 | Debian Oval Importer | Fixing | VCID-7e6q-x9ge-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:55:03.562447+00:00 | Debian Oval Importer | Fixing | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:52:07.045221+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:49:34.450419+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:46:59.190241+00:00 | Debian Oval Importer | Fixing | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:43:35.123599+00:00 | Debian Oval Importer | Fixing | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:43:30.795360+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.606236+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.751907+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.720793+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.456510+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:29:02.208847+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:27:24.314630+00:00 | Debian Oval Importer | Fixing | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:23:14.475072+00:00 | Debian Oval Importer | Fixing | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:14:28.849755+00:00 | Debian Oval Importer | Fixing | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:12:07.411024+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:03:53.764558+00:00 | Debian Oval Importer | Fixing | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:02:45.052826+00:00 | Debian Oval Importer | Fixing | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:02:30.947274+00:00 | Debian Oval Importer | Fixing | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:02:01.122087+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:50:36.301269+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.048661+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.880390+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:25:06.022201+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.958173+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.935816+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:37.521948+00:00 | Debian Oval Importer | Fixing | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:08:08.327707+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:04:10.549658+00:00 | Debian Oval Importer | Fixing | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:56:58.924867+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.175744+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.756427+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:51:08.941430+00:00 | Debian Oval Importer | Fixing | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:48:33.975296+00:00 | Debian Oval Importer | Fixing | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:36:47.005574+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:32:09.944644+00:00 | Debian Oval Importer | Fixing | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:30:10.566407+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.277072+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:13:31.238296+00:00 | Debian Oval Importer | Fixing | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:09:10.939490+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T03:08:13.132091+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:59:51.188096+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:58:00.215069+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:55:46.935046+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:50:38.385369+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:48:08.500390+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:43:03.022065+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:41:24.067567+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T02:36:57.331394+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | https://www.debian.org/security/oval/oval-definitions-stretch.xml.bz2 | 36.0.0 |
2025-04-08T01:00:21.376296+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | None | 36.0.0 |
2025-04-08T01:00:18.618222+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | None | 36.0.0 |
2025-04-08T00:35:02.209099+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | None | 36.0.0 |
2025-04-08T00:35:01.439788+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | None | 36.0.0 |
2025-04-08T00:35:00.696361+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | None | 36.0.0 |
2025-04-08T00:34:59.934341+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | None | 36.0.0 |
2025-04-07T23:43:41.676785+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | None | 36.0.0 |
2025-04-07T23:42:19.844767+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | None | 36.0.0 |
2025-04-07T23:41:46.854671+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | None | 36.0.0 |
2025-04-07T23:41:03.491702+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | None | 36.0.0 |
2025-04-07T23:39:23.686800+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | None | 36.0.0 |
2025-04-07T21:16:14.285274+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | None | 36.0.0 |
2025-04-07T17:21:42.234966+00:00 | Debian Oval Importer | Fixing | VCID-eg7n-8h8z-aaaa | None | 36.0.0 |
2025-04-07T17:20:12.881376+00:00 | Debian Oval Importer | Fixing | VCID-gp3a-7m39-aaam | None | 36.0.0 |
2025-04-07T17:18:44.253962+00:00 | Debian Oval Importer | Fixing | VCID-pmtm-skvc-aaar | None | 36.0.0 |
2025-04-07T17:07:09.309500+00:00 | Debian Oval Importer | Fixing | VCID-ejg3-awxf-aaan | None | 36.0.0 |
2025-04-07T16:47:52.995895+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | None | 36.0.0 |
2025-04-07T16:47:37.710751+00:00 | Debian Oval Importer | Fixing | VCID-581z-anfk-aaaq | None | 36.0.0 |
2025-04-07T16:41:29.557699+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | None | 36.0.0 |
2025-04-07T16:39:01.712996+00:00 | Debian Oval Importer | Fixing | VCID-rhab-a2ya-aaae | None | 36.0.0 |
2025-04-07T16:37:08.066684+00:00 | Debian Oval Importer | Fixing | VCID-69ax-cbdq-aaam | None | 36.0.0 |
2025-04-07T16:28:42.386237+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | None | 36.0.0 |
2025-04-07T16:25:27.325052+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | None | 36.0.0 |
2025-04-07T16:23:13.150962+00:00 | Debian Oval Importer | Fixing | VCID-t9zu-eqq1-aaag | None | 36.0.0 |
2025-04-07T16:22:28.756351+00:00 | Debian Oval Importer | Fixing | VCID-3d3c-x2ux-aaaa | None | 36.0.0 |
2025-04-07T16:12:18.453374+00:00 | Debian Oval Importer | Fixing | VCID-9wtw-93e9-aaam | None | 36.0.0 |
2025-04-07T16:10:49.203707+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | None | 36.0.0 |
2025-04-07T16:02:15.807135+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.0.0 |
2025-04-07T15:59:07.017867+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | None | 36.0.0 |
2025-04-07T15:56:12.818226+00:00 | Debian Oval Importer | Fixing | VCID-ue1t-xset-aaah | None | 36.0.0 |
2025-04-07T15:54:08.629820+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | None | 36.0.0 |
2025-04-07T15:52:17.447275+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | None | 36.0.0 |
2025-04-07T15:41:09.652868+00:00 | Debian Oval Importer | Fixing | VCID-cg17-ah7e-aaag | None | 36.0.0 |
2025-04-07T15:39:28.242849+00:00 | Debian Oval Importer | Fixing | VCID-arc3-rhts-aaar | None | 36.0.0 |
2025-04-07T15:38:25.616122+00:00 | Debian Oval Importer | Fixing | VCID-tc8g-det5-aaad | None | 36.0.0 |
2025-04-07T15:26:59.070080+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | None | 36.0.0 |
2025-04-07T15:26:09.142859+00:00 | Debian Oval Importer | Fixing | VCID-m4nz-uw2e-aaaq | None | 36.0.0 |
2025-04-07T15:25:30.057173+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | None | 36.0.0 |
2025-04-07T15:25:05.491886+00:00 | Debian Oval Importer | Fixing | VCID-dnrm-mtb4-aaah | None | 36.0.0 |
2025-04-07T15:19:26.234105+00:00 | Debian Oval Importer | Fixing | VCID-xsy7-be4x-aaas | None | 36.0.0 |
2025-04-07T15:19:20.955020+00:00 | Debian Oval Importer | Fixing | VCID-egbc-ecck-aaag | None | 36.0.0 |
2025-04-07T15:15:27.076932+00:00 | Debian Oval Importer | Fixing | VCID-vzvx-xtm8-aaac | None | 36.0.0 |
2025-04-07T15:11:25.758702+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | None | 36.0.0 |
2025-04-07T15:11:12.369931+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | None | 36.0.0 |
2025-04-07T15:06:15.900045+00:00 | Debian Oval Importer | Fixing | VCID-kryh-pfgh-aaag | None | 36.0.0 |
2025-04-07T15:04:23.488286+00:00 | Debian Oval Importer | Fixing | VCID-sgbg-ntsk-aaac | None | 36.0.0 |
2025-04-07T14:51:15.087632+00:00 | Debian Oval Importer | Fixing | VCID-uh6s-bvxe-aaaf | None | 36.0.0 |
2025-04-07T14:51:00.767581+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | None | 36.0.0 |
2025-04-07T14:49:39.224692+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | None | 36.0.0 |
2025-04-07T14:42:54.934147+00:00 | Debian Oval Importer | Fixing | VCID-z6bg-hyhu-aaas | None | 36.0.0 |
2025-04-07T14:41:52.791583+00:00 | Debian Oval Importer | Fixing | VCID-9fjn-9378-aaae | None | 36.0.0 |
2025-04-07T14:40:13.336095+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | None | 36.0.0 |
2025-04-07T14:32:59.776464+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | None | 36.0.0 |
2025-04-07T14:32:07.186896+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | None | 36.0.0 |
2025-04-07T14:23:52.296762+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.0.0 |
2025-04-07T14:23:41.949690+00:00 | Debian Oval Importer | Fixing | VCID-42tc-p92q-aaap | None | 36.0.0 |
2025-04-07T14:22:17.255640+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | None | 36.0.0 |
2025-04-07T14:18:54.944886+00:00 | Debian Oval Importer | Fixing | VCID-shkr-cjuz-aaad | None | 36.0.0 |
2025-04-07T14:11:37.157193+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | None | 36.0.0 |
2025-04-07T14:07:16.761964+00:00 | Debian Oval Importer | Fixing | VCID-jt2u-rn5q-aaap | None | 36.0.0 |
2025-04-07T14:04:35.502677+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | None | 36.0.0 |
2025-04-07T14:02:41.950581+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | None | 36.0.0 |
2025-04-07T13:57:55.926809+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | None | 36.0.0 |
2025-04-07T13:53:30.407624+00:00 | Debian Oval Importer | Fixing | VCID-w299-9hqt-aaan | None | 36.0.0 |
2025-04-07T13:51:59.838110+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | None | 36.0.0 |
2025-04-07T13:51:21.006008+00:00 | Debian Oval Importer | Fixing | VCID-nuyz-b9da-aaam | None | 36.0.0 |
2025-04-07T13:46:37.809710+00:00 | Debian Oval Importer | Fixing | VCID-hzh3-5uc4-aaap | None | 36.0.0 |
2025-04-07T13:46:10.114104+00:00 | Debian Oval Importer | Fixing | VCID-bms1-jrax-aaap | None | 36.0.0 |
2025-04-07T13:44:49.355888+00:00 | Debian Oval Importer | Fixing | VCID-agz8-77e4-aaaq | None | 36.0.0 |
2025-04-07T13:42:25.671097+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | None | 36.0.0 |
2025-04-07T13:36:09.358111+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | None | 36.0.0 |
2025-04-07T13:29:55.165634+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | None | 36.0.0 |
2025-04-07T13:27:51.037475+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | None | 36.0.0 |
2025-04-07T13:27:15.666670+00:00 | Debian Oval Importer | Fixing | VCID-52ea-drta-aaaa | None | 36.0.0 |
2025-04-07T13:26:43.984016+00:00 | Debian Oval Importer | Fixing | VCID-gydy-46kx-aaaf | None | 36.0.0 |
2025-04-07T13:25:33.791033+00:00 | Debian Oval Importer | Fixing | VCID-a12s-yyr4-aaad | None | 36.0.0 |
2025-04-07T13:23:53.761542+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | None | 36.0.0 |
2025-04-07T12:54:47.894226+00:00 | Debian Oval Importer | Fixing | VCID-7e6q-x9ge-aaas | None | 36.0.0 |
2025-04-07T12:53:59.570307+00:00 | Debian Oval Importer | Fixing | VCID-w8mr-jycm-aaag | None | 36.0.0 |
2025-04-07T12:42:15.611533+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | None | 36.0.0 |
2025-04-07T12:30:06.914785+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | None | 36.0.0 |
2025-04-07T12:30:03.199421+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | None | 36.0.0 |
2025-04-07T12:29:20.959386+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | None | 36.0.0 |
2025-04-07T12:27:45.745326+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | None | 36.0.0 |
2025-04-07T12:24:17.442990+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | None | 36.0.0 |
2025-04-07T12:23:17.704845+00:00 | Debian Oval Importer | Fixing | VCID-zkqe-jrqc-aaab | None | 36.0.0 |
2024-11-26T11:29:36.493560+00:00 | Debian Oval Importer | Affected by | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-10-12T14:14:24.453720+00:00 | Debian Oval Importer | Affected by | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-09-20T15:24:16.772753+00:00 | Debian Oval Importer | Affected by | VCID-pquf-jxju-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |