Search for packages
purl | pkg:deb/debian/openssl@0.9.8o-4squeeze23 |
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-13e6-xxe5-aaas
Aliases: CVE-2011-1945 |
The elliptic curve cryptography (ECC) subsystem in OpenSSL 1.0.0d and earlier, when the Elliptic Curve Digital Signature Algorithm (ECDSA) is used for the ECDHE_ECDSA cipher suite, does not properly implement curves over binary fields, which makes it easier for context-dependent attackers to determine private keys via a timing attack and a lattice calculation. |
Affected by 135 other vulnerabilities. |
VCID-1bwf-h8y6-aaar
Aliases: CVE-2015-0206 VC-OPENSSL-20150108-CVE-2015-0206 |
A memory leak can occur in the dtls1_buffer_record function under certain conditions. In particular this could occur if an attacker sent repeated DTLS records with the same sequence number but for the next epoch. The memory leak could be exploited by an attacker in a Denial of Service attack through memory exhaustion. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
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-1h5d-fnug-aaac
Aliases: CVE-2014-3470 VC-OPENSSL-20140530-CVE-2014-3470 |
OpenSSL TLS clients enabling anonymous ECDH ciphersuites are subject to a denial of service attack. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-1pke-t171-aaas
Aliases: CVE-2015-0287 VC-OPENSSL-20150319-CVE-2015-0287 |
ASN.1 structure reuse memory corruption. Reusing a structure in ASN.1 parsing may allow an attacker to cause memory corruption via an invalid write. Such reuse is and has been strongly discouraged and is believed to be rare. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-1t6y-1zjy-aaae
Aliases: CVE-2016-0704 VC-OPENSSL-20160301-CVE-2016-0704 |
This issue only affected versions of OpenSSL prior to March 19th 2015 at which time the code was refactored to address the vulnerability CVE-2015-0293. s2_srvr.c overwrite the wrong bytes in the master-key when applying Bleichenbacher protection for export cipher suites. This provides a Bleichenbacher oracle, and could potentially allow more efficient variants of the DROWN attack. |
Affected by 135 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-2tt7-g7qs-aaae
Aliases: CVE-2014-5139 VC-OPENSSL-20140806-CVE-2014-5139 |
A crash was found affecting SRP ciphersuites used in a Server Hello message. The issue affects OpenSSL clients and allows a malicious server to crash the client with a null pointer dereference (read) by specifying an SRP ciphersuite even though it was not properly negotiated with the client. This could lead to a Denial of Service. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-2zab-6bzp-aaae
Aliases: CVE-2015-7575 |
Mozilla Network Security Services (NSS) before 3.20.2, as used in Mozilla Firefox before 43.0.2 and Firefox ESR 38.x before 38.5.2, does not reject MD5 signatures in Server Key Exchange messages in TLS 1.2 Handshake Protocol traffic, which makes it easier for man-in-the-middle attackers to spoof servers by triggering a collision. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-3d3c-x2ux-aaaa
Aliases: CVE-2015-3195 VC-OPENSSL-20151203-CVE-2015-3195 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-42tc-p92q-aaap
Aliases: CVE-2016-2105 VC-OPENSSL-20160503-CVE-2016-2105 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-49hw-yjgb-aaab
Aliases: CVE-2013-4353 VC-OPENSSL-20140106-CVE-2013-4353 |
A carefully crafted invalid TLS handshake could crash OpenSSL with a NULL pointer exception. A malicious server could use this flaw to crash a connecting client. This issue only affected OpenSSL 1.0.1 versions. |
Affected by 135 other vulnerabilities. Affected by 95 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 94 other vulnerabilities. Affected by 39 other vulnerabilities. |
VCID-4qww-3wn9-aaag
Aliases: CVE-2014-3566 |
The SSL protocol 3.0, as used in OpenSSL through 1.0.1i and other products, uses nondeterministic CBC padding, which makes it easier for man-in-the-middle attackers to obtain cleartext data via a padding-oracle attack, aka the "POODLE" issue. |
Affected by 95 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-52ea-drta-aaaa
Aliases: CVE-2016-2108 VC-OPENSSL-20160503-CVE-2016-2108 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-581z-anfk-aaaq
Aliases: CVE-2016-6302 VC-OPENSSL-20160823-CVE-2016-6302 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-5g8u-a3pe-aaan
Aliases: CVE-2014-8275 VC-OPENSSL-20150105-CVE-2014-8275 |
OpenSSL accepts several non-DER-variations of certificate signature algorithm and signature encodings. OpenSSL also does not enforce a match between the signature algorithm between the signed and unsigned portions of the certificate. By modifying the contents of the signature algorithm or the encoding of the signature, it is possible to change the certificate's fingerprint. This does not allow an attacker to forge certificates, and does not affect certificate verification or OpenSSL servers/clients in any other way. It also does not affect common revocation mechanisms. Only custom applications that rely on the uniqueness of the fingerprint (e.g. certificate blacklists) may be affected. |
Affected by 135 other vulnerabilities. Affected by 95 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-5s8d-gm6u-aaam
Aliases: CVE-2011-4619 VC-OPENSSL-20120104-CVE-2011-4619 |
Support for handshake restarts for server gated cryptograpy (SGC) can be used in a denial-of-service attack. |
Affected by 135 other vulnerabilities. |
VCID-68v4-qbae-aaak
Aliases: CVE-2015-3197 VC-OPENSSL-20160128-CVE-2015-3197 |
A malicious client can negotiate SSLv2 ciphers that have been disabled on the server and complete SSLv2 handshakes even if all SSLv2 ciphers have been disabled, provided that the SSLv2 protocol was not also disabled via SSL_OP_NO_SSLv2. |
Affected by 135 other vulnerabilities. |
VCID-69ax-cbdq-aaam
Aliases: CVE-2015-1791 VC-OPENSSL-20150602-CVE-2015-1791 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 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-6xd4-wjkk-aaak
Aliases: CVE-2014-0224 VC-OPENSSL-20140605-CVE-2014-0224 |
An attacker can force the use of weak keying material in OpenSSL SSL/TLS clients and servers. This can be exploited by a Man-in-the-middle (MITM) attack where the attacker can decrypt and modify traffic from the attacked client and server. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-75pz-sunt-aaaa
Aliases: CVE-2015-0209 VC-OPENSSL-20150319-CVE-2015-0209 |
Use After Free following d2i_ECPrivatekey error. A malformed EC private key file consumed via the d2i_ECPrivateKey function could cause a use after free condition. This, in turn, could cause a double free in several private key parsing functions (such as d2i_PrivateKey or EVP_PKCS82PKEY) and could lead to a DoS attack or memory corruption for applications that receive EC private keys from untrusted sources. This scenario is considered rare. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-77pn-m7ra-aaap
Aliases: CVE-2014-3505 VC-OPENSSL-20140806-CVE-2014-3505 |
A Double Free was found when processing DTLS packets. An attacker can force an error condition which causes openssl to crash whilst processing DTLS packets due to memory being freed twice. This could lead to a Denial of Service attack. |
Affected by 135 other vulnerabilities. Affected by 95 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-7e6q-x9ge-aaas
Aliases: CVE-2016-7052 VC-OPENSSL-20160926-CVE-2016-7052 |
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. |
Affected by 56 other vulnerabilities. |
VCID-7rx2-n4hr-aaan
Aliases: CVE-2014-3569 VC-OPENSSL-20141021-CVE-2014-3569 |
When openssl is built with the no-ssl3 option and a SSL v3 ClientHello is received the ssl method would be set to NULL which could later result in a NULL pointer dereference. |
Affected by 135 other vulnerabilities. Affected by 95 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-7zby-e6xb-aaan
Aliases: CVE-2014-3511 VC-OPENSSL-20140806-CVE-2014-3511 |
A flaw in the OpenSSL SSL/TLS server code causes the server to negotiate TLS 1.0 instead of higher protocol versions when the ClientHello message is badly fragmented. This allows a man-in-the-middle attacker to force a downgrade to TLS 1.0 even if both the server and the client support a higher protocol version, by modifying the client's TLS records. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-88dn-xmg2-aaab
Aliases: CVE-2014-0195 VC-OPENSSL-20140605-CVE-2014-0195 |
A buffer overrun attack can be triggered by sending invalid DTLS fragments to an OpenSSL DTLS client or server. This is potentially exploitable to run arbitrary code on a vulnerable client or server. Only applications using OpenSSL as a DTLS client or server affected. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-8c1z-2ue1-aaaj
Aliases: CVE-2013-0169 VC-OPENSSL-20130204-CVE-2013-0169 |
A weakness in the handling of CBC ciphersuites in SSL, TLS and DTLS which could lead to plaintext recovery by exploiting timing differences arising during MAC processing. |
Affected by 135 other vulnerabilities. |
VCID-8fnh-vemq-aaaf
Aliases: CVE-2012-0050 VC-OPENSSL-20120104-CVE-2012-0050 |
A flaw in the fix to CVE-2011-4108 can be exploited in a denial of service attack. Only DTLS applications are affected. |
Affected by 135 other vulnerabilities. |
VCID-8xeh-vwwg-aaak
Aliases: CVE-2014-3508 VC-OPENSSL-20140806-CVE-2014-3508 |
A flaw in OBJ_obj2txt may cause pretty printing functions such as X509_name_oneline, X509_name_print_ex, to leak some information from the stack. Applications may be affected if they echo pretty printing output to the attacker. OpenSSL SSL/TLS clients and servers themselves are not affected. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-914k-6fj2-aaac
Aliases: CVE-2015-0286 VC-OPENSSL-20150319-CVE-2015-0286 |
Segmentation fault in ASN1_TYPE_cmp. The function ASN1_TYPE_cmp will crash with an invalid read if an attempt is made to compare ASN.1 boolean types. Since ASN1_TYPE_cmp is used to check certificate signature algorithm consistency 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. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-9cw5-dhf3-aaag
Aliases: DSA-3197-2 openssl |
regression update |
Affected by 135 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-9dxv-6zus-aaan
Aliases: CVE-2012-4929 |
The TLS protocol 1.2 and earlier, as used in Mozilla Firefox, Google Chrome, Qt, and other products, can encrypt compressed data without properly obfuscating the length of the unencrypted data, which allows man-in-the-middle attackers to obtain plaintext HTTP headers by observing length differences during a series of guesses in which a string in an HTTP request potentially matches an unknown string in an HTTP header, aka a "CRIME" attack. |
Affected by 95 other vulnerabilities. |
VCID-9few-spp9-aaag
Aliases: CVE-2015-0293 VC-OPENSSL-20150319-CVE-2015-0293 |
DoS via reachable assert in SSLv2 servers. A malicious client can trigger an OPENSSL_assert in servers that both support SSLv2 and enable export cipher suites by sending a specially crafted SSLv2 CLIENT-MASTER-KEY message. |
Affected by 135 other vulnerabilities. |
VCID-9fjn-9378-aaae
Aliases: CVE-2016-2179 VC-OPENSSL-20160822-CVE-2016-2179 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 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-9wtw-93e9-aaam
Aliases: CVE-2016-0799 VC-OPENSSL-20160301-CVE-2016-0799 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 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-a12s-yyr4-aaad
Aliases: CVE-2016-2181 VC-OPENSSL-20160819-CVE-2016-2181 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-agz8-77e4-aaaq
Aliases: CVE-2016-2182 VC-OPENSSL-20160816-CVE-2016-2182 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-amba-4zuy-aaap
Aliases: CVE-2014-3571 VC-OPENSSL-20150105-CVE-2014-3571 |
A carefully crafted DTLS message can cause a segmentation fault in OpenSSL due to a NULL pointer dereference. This could lead to a Denial Of Service attack. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-arc3-rhts-aaar
Aliases: CVE-2015-1792 VC-OPENSSL-20150611-CVE-2015-1792 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-av3z-72je-aaak
Aliases: CVE-2011-4576 VC-OPENSSL-20120104-CVE-2011-4576 |
OpenSSL failed to clear the bytes used as block cipher padding in SSL 3.0 records which could leak the contents of memory in some circumstances. |
Affected by 135 other vulnerabilities. |
VCID-bms1-jrax-aaap
Aliases: CVE-2016-6304 VC-OPENSSL-20160922-CVE-2016-6304 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-bsap-s527-aaaj
Aliases: CVE-2015-0289 VC-OPENSSL-20150319-CVE-2015-0289 |
PKCS#7 NULL pointer dereference. The PKCS#7 parsing code does not handle missing outer ContentInfo 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 verify PKCS#7 signatures, decrypt PKCS#7 data or otherwise parse PKCS#7 structures from untrusted sources are affected. OpenSSL clients and servers are not affected. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-bydn-b3ub-aaah
Aliases: CVE-2013-6449 VC-OPENSSL-20131214-CVE-2013-6449 |
A flaw in OpenSSL can cause an application using OpenSSL to crash when using TLS version 1.2. This issue only affected OpenSSL 1.0.1 versions. |
Affected by 135 other vulnerabilities. Affected by 95 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-cg17-ah7e-aaag
Aliases: CVE-2016-2107 VC-OPENSSL-20160503-CVE-2016-2107 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-ch34-h9ey-aaam
Aliases: CVE-2014-0221 VC-OPENSSL-20140605-CVE-2014-0221 |
By sending an invalid DTLS handshake to an OpenSSL DTLS client the code can be made to recurse eventually crashing in a DoS attack. Only applications using OpenSSL as a DTLS client are affected. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-chu6-e54e-aaaj
Aliases: CVE-2021-23839 VC-OPENSSL-20210216-CVE-2021-23839 |
OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt is made. Only OpenSSL 1.0.2 servers from version 1.0.2s to 1.0.2x are affected by this issue. In order to be vulnerable a 1.0.2 server must: 1) have configured SSLv2 support at compile time (this is off by default), 2) have configured SSLv2 support at runtime (this is off by default), 3) have configured SSLv2 ciphersuites (these are not in the default ciphersuite list) OpenSSL 1.1.1 does not have SSLv2 support and therefore is not vulnerable to this issue. The underlying error is in the implementation of the RSA_padding_check_SSLv23() function. This also affects the RSA_SSLV23_PADDING padding mode used by various other functions. Although 1.1.1 does not support SSLv2 the RSA_padding_check_SSLv23() function still exists, as does the RSA_SSLV23_PADDING padding mode. Applications that directly call that function or use that padding mode will encounter this issue. However since there is no support for the SSLv2 protocol in 1.1.1 this is considered a bug and not a security issue in that version. 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.0.2y (Affected 1.0.2s-1.0.2x). |
Affected by 135 other vulnerabilities. |
VCID-d5n3-6bk2-aaag
Aliases: CVE-2011-3207 VC-OPENSSL-20110906-CVE-2011-3207 |
Under certain circumstances OpenSSL's internal certificate verification routines can incorrectly accept a CRL whose nextUpdate field is in the past. Applications are only affected by the CRL checking vulnerability if they enable OpenSSL's internal CRL checking which is off by default. Applications which use their own custom CRL checking (such as Apache) are not affected. |
Affected by 135 other vulnerabilities. |
VCID-dhsz-kcke-aaan
Aliases: CVE-2014-3572 VC-OPENSSL-20150105-CVE-2014-3572 |
An OpenSSL client will accept a handshake using an ephemeral ECDH ciphersuite using an ECDSA certificate if the server key exchange message is omitted. This effectively removes forward secrecy from the ciphersuite. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-dnrm-mtb4-aaah
Aliases: CVE-2016-8610 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-e7ep-2kks-aaad
Aliases: CVE-2014-0076 VC-OPENSSL-20140214-CVE-2014-0076 |
Fix for the attack described in the paper "Recovering OpenSSL ECDSA Nonces Using the FLUSH+RELOAD Cache Side-channel Attack" |
Affected by 135 other vulnerabilities. Affected by 95 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-eg7n-8h8z-aaaa
Aliases: CVE-2016-6306 VC-OPENSSL-20160921-CVE-2016-6306 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-egbc-ecck-aaag
Aliases: CVE-2016-2109 VC-OPENSSL-20160503-CVE-2016-2109 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-ejg3-awxf-aaan
Aliases: CVE-2016-0705 VC-OPENSSL-20160301-CVE-2016-0705 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-ex38-peem-aaan
Aliases: CVE-2012-0027 VC-OPENSSL-20120104-CVE-2012-0027 |
A malicious TLS client can send an invalid set of GOST parameters which will cause the server to crash due to lack of error checking. This could be used in a denial-of-service attack. Only users of the OpenSSL GOST ENGINE are affected by this bug. |
Affected by 135 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 94 other vulnerabilities. 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-fry5-vykr-aaac
Aliases: CVE-2011-4109 VC-OPENSSL-20120104-CVE-2011-4109 |
If X509_V_FLAG_POLICY_CHECK is set in OpenSSL 0.9.8, then a policy check failure can lead to a double-free. The bug does not occur unless this flag is set. Users of OpenSSL 1.0.0 are not affected |
Affected by 135 other vulnerabilities. |
VCID-ftte-av19-aaad
Aliases: CVE-2016-0703 VC-OPENSSL-20160301-CVE-2016-0703 |
This issue only affected versions of OpenSSL prior to March 19th 2015 at which time the code was refactored to address vulnerability CVE-2015-0293. s2_srvr.c did not enforce that clear-key-length is 0 for non-export ciphers. If clear-key bytes are present for these ciphers, they *displace* encrypted-key bytes. This leads to an efficient divide-and-conquer key recovery attack: if an eavesdropper has intercepted an SSLv2 handshake, they can use the server as an oracle to determine the SSLv2 master-key, using only 16 connections to the server and negligible computation. More importantly, this leads to a more efficient version of DROWN that is effective against non-export ciphersuites, and requires no significant computation. |
Affected by 135 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-gp3a-7m39-aaam
Aliases: CVE-2015-3194 VC-OPENSSL-20151203-CVE-2015-3194 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-gydy-46kx-aaaf
Aliases: CVE-2015-1789 VC-OPENSSL-20150611-CVE-2015-1789 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-h9w2-2k7p-aaae
Aliases: CVE-2012-2333 VC-OPENSSL-20120510-CVE-2012-2333 |
An integer underflow flaw, leading to a buffer over-read, was found in the way OpenSSL handled TLS 1.1, TLS 1.2, and DTLS (Datagram Transport Layer Security) application data record lengths when using a block cipher in CBC (cipher-block chaining) mode. A malicious TLS 1.1, TLS 1.2, or DTLS client or server could use this flaw to crash its connection peer. |
Affected by 135 other vulnerabilities. |
VCID-hzh3-5uc4-aaap
Aliases: CVE-2015-3196 VC-OPENSSL-20151203-CVE-2015-3196 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 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 94 other vulnerabilities. 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-jt2u-rn5q-aaap
Aliases: CVE-2016-2842 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-k2k5-a2cd-aaac
Aliases: CVE-2014-0198 VC-OPENSSL-20140421-CVE-2014-0198 |
A flaw in the do_ssl3_write function can allow remote attackers to cause a denial of service via a NULL pointer dereference. This flaw only affects OpenSSL 1.0.0 and 1.0.1 where SSL_MODE_RELEASE_BUFFERS is enabled, which is not the default and not common. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-kay4-6j1g-aaas
Aliases: CVE-2014-3513 VC-OPENSSL-20141015-CVE-2014-3513 |
A flaw in the DTLS SRTP extension parsing code allows an attacker, who sends a carefully crafted handshake message, to cause OpenSSL to fail to free up to 64k of memory causing a memory leak. This could be exploited in a Denial Of Service attack. This issue affects OpenSSL 1.0.1 server implementations for both SSL/TLS and DTLS regardless of whether SRTP is used or configured. Implementations of OpenSSL that have been compiled with OPENSSL_NO_SRTP defined are not affected. |
Affected by 135 other vulnerabilities. Affected by 95 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-kna9-u4rt-aaar
Aliases: CVE-2014-3507 VC-OPENSSL-20140806-CVE-2014-3507 |
A DTLS memory leak from zero-length fragments was found. By sending carefully crafted DTLS packets an attacker could cause OpenSSL to leak memory. This could lead to a Denial of Service attack. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-kryh-pfgh-aaag
Aliases: CVE-2016-2177 VC-OPENSSL-20160601-CVE-2016-2177 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-m4nz-uw2e-aaaq
Aliases: CVE-2016-0798 VC-OPENSSL-20160301-CVE-2016-0798 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-m9qa-4nzy-aaaf
Aliases: CVE-2011-0014 VC-OPENSSL-20110208-CVE-2011-0014 |
A buffer over-read flaw was discovered in the way OpenSSL parsed the Certificate Status Request TLS extensions in ClientHello TLS handshake messages. A remote attacker could possibly use this flaw to crash an SSL server using the affected OpenSSL functionality. |
Affected by 135 other vulnerabilities. |
VCID-mhzv-sn7g-aaae
Aliases: CVE-2011-4108 VC-OPENSSL-20120104-CVE-2011-4108 |
OpenSSL was susceptable an extension of the Vaudenay padding oracle attack on CBC mode encryption which enables an efficient plaintext recovery attack against the OpenSSL implementation of DTLS by exploiting timing differences arising during decryption processing. |
Affected by 135 other vulnerabilities. |
VCID-mjvr-p7dt-aaah
Aliases: DSA-3673-2 openssl |
regression update |
Affected by 94 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-nemw-6d8n-aaah
Aliases: CVE-2014-3567 VC-OPENSSL-20141015-CVE-2014-3567 |
When an OpenSSL SSL/TLS/DTLS server receives a session ticket the integrity of that ticket is first verified. In the event of a session ticket integrity check failing, OpenSSL will fail to free memory causing a memory leak. By sending a large number of invalid session tickets an attacker could exploit this issue in a Denial Of Service attack. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-nuyz-b9da-aaam
Aliases: CVE-2016-7056 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-nx9u-49dk-aaag
Aliases: CVE-2020-1971 VC-OPENSSL-20201208-CVE-2020-1971 |
Affected by 19 other vulnerabilities. |
|
VCID-nxs5-1vex-aaag
Aliases: CVE-2011-3210 VC-OPENSSL-20110906-CVE-2011-3210 |
OpenSSL server code for ephemeral ECDH ciphersuites is not thread-safe, and furthermore can crash if a client violates the protocol by sending handshake messages in incorrect order. Only server-side applications that specifically support ephemeral ECDH ciphersuites are affected, and only if ephemeral ECDH ciphersuites are enabled in the configuration. |
Affected by 135 other vulnerabilities. |
VCID-nzda-4crz-aaad
Aliases: CVE-2012-1165 |
The mime_param_cmp function in crypto/asn1/asn_mime.c in OpenSSL before 0.9.8u and 1.x before 1.0.0h allows remote attackers to cause a denial of service (NULL pointer dereference and application crash) via a crafted S/MIME message, a different vulnerability than CVE-2006-7250. |
Affected by 135 other vulnerabilities. |
VCID-phs7-u4c9-aaah
Aliases: CVE-2012-0884 VC-OPENSSL-20120312-CVE-2012-0884 |
A weakness in the OpenSSL CMS and PKCS #7 code can be exploited using Bleichenbacher's attack on PKCS #1 v1.5 RSA padding also known as the million message attack (MMA). Only users of CMS, PKCS #7, or S/MIME decryption operations are affected, SSL/TLS applications are not affected by this issue. |
Affected by 135 other vulnerabilities. |
VCID-pmtm-skvc-aaar
Aliases: CVE-2015-4000 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 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-qhb8-626k-aaad
Aliases: CVE-2012-2110 VC-OPENSSL-20120419-CVE-2012-2110 |
Multiple numeric conversion errors, leading to a buffer overflow, were found in the way OpenSSL parsed ASN.1 (Abstract Syntax Notation One) data from BIO (OpenSSL's I/O abstraction) inputs. Specially-crafted DER (Distinguished Encoding Rules) encoded data read from a file or other BIO input could cause an application using the OpenSSL library to crash or, potentially, execute arbitrary code. |
Affected by 135 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-qnz6-p4f5-aaag
Aliases: CVE-2015-0205 VC-OPENSSL-20150108-CVE-2015-0205 |
An OpenSSL server will accept a DH certificate for client authentication without the certificate verify message. This effectively allows a client to authenticate without the use of a private key. This only affects servers which trust a client certificate authority which issues certificates containing DH keys: these are extremely rare and hardly ever encountered. |
Affected by 135 other vulnerabilities. Affected by 95 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-rhab-a2ya-aaae
Aliases: CVE-2015-1788 VC-OPENSSL-20150611-CVE-2015-1788 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-rr5p-edvp-aaar
Aliases: CVE-2014-3506 VC-OPENSSL-20140806-CVE-2014-3506 |
A DTLS flaw leading to memory exhaustion was found. An attacker can force openssl to consume large amounts of memory whilst processing DTLS handshake messages. This could lead to a Denial of Service attack. |
Affected by 135 other vulnerabilities. Affected by 95 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-sgbg-ntsk-aaac
Aliases: CVE-2016-6303 VC-OPENSSL-20160824-CVE-2016-6303 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-shkr-cjuz-aaad
Aliases: CVE-2015-1793 VC-OPENSSL-20150709-CVE-2015-1793 |
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. |
Affected by 56 other vulnerabilities. |
VCID-smk6-cmv3-aaad
Aliases: CVE-2006-7250 |
The mime_hdr_cmp function in crypto/asn1/asn_mime.c in OpenSSL 0.9.8t and earlier allows remote attackers to cause a denial of service (NULL pointer dereference and application crash) via a crafted S/MIME message. |
Affected by 135 other vulnerabilities. |
VCID-sya7-pd7p-aaaa
Aliases: CVE-2014-3510 VC-OPENSSL-20140806-CVE-2014-3510 |
A flaw in handling DTLS anonymous EC(DH) ciphersuites was found. OpenSSL DTLS clients enabling anonymous (EC)DH ciphersuites are subject to a denial of service attack. A malicious server can crash the client with a null pointer dereference (read) by specifying an anonymous (EC)DH ciphersuite and sending carefully crafted handshake messages. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-t7yk-yxfk-aaaj
Aliases: CVE-2010-0742 VC-OPENSSL-20100601-CVE-2010-0742 |
A flaw in the handling of CMS structures containing OriginatorInfo was found which could lead to a write to invalid memory address or double free. CMS support is disabled by default in OpenSSL 0.9.8 versions. |
Affected by 135 other vulnerabilities. |
VCID-t9zu-eqq1-aaag
Aliases: CVE-2016-0702 VC-OPENSSL-20160301-CVE-2016-0702 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-tc8g-det5-aaad
Aliases: CVE-2015-1790 VC-OPENSSL-20150611-CVE-2015-1790 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-te3m-wuz7-aaam
Aliases: CVE-2014-3509 VC-OPENSSL-20140806-CVE-2014-3509 |
A race condition was found in ssl_parse_serverhello_tlsext. If a multithreaded client connects to a malicious server using a resumed session and the server sends an ec point format extension, it could write up to 255 bytes to freed memory. |
Affected by 135 other vulnerabilities. Affected by 95 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-tvpy-7bfy-aaad
Aliases: CVE-2012-2686 VC-OPENSSL-20130205-CVE-2012-2686 |
A flaw in the OpenSSL handling of CBC ciphersuites in TLS 1.1 and TLS 1.2 on AES-NI supporting platforms can be exploited in a DoS attack. |
Affected by 135 other vulnerabilities. |
VCID-ue1t-xset-aaah
Aliases: CVE-2016-2180 VC-OPENSSL-20160722-CVE-2016-2180 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-uh6s-bvxe-aaaf
Aliases: CVE-2016-0797 VC-OPENSSL-20160301-CVE-2016-0797 |
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. |
Affected by 135 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 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-vqn2-4c3d-aaab
Aliases: CVE-2013-6450 VC-OPENSSL-20131213-CVE-2013-6450 |
A flaw in DTLS handling can cause an application using OpenSSL and DTLS to crash. This is not a vulnerability for OpenSSL prior to 1.0.0. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-vu6d-q79f-aaaa
Aliases: CVE-2013-0166 VC-OPENSSL-20130205-CVE-2013-0166 |
A flaw in the OpenSSL handling of OCSP response verification can be exploited in a denial of service attack. |
Affected by 135 other vulnerabilities. |
VCID-vvuz-hvfa-aaae
Aliases: CVE-2014-3570 VC-OPENSSL-20150108-CVE-2014-3570 |
Bignum squaring (BN_sqr) may produce incorrect results on some platforms, including x86_64. This bug occurs at random with a very low probability, and is not known to be exploitable in any way, though its exact impact is difficult to determine. The following has been determined: *) The probability of BN_sqr producing an incorrect result at random is very low: 1/2^64 on the single affected 32-bit platform (MIPS) and 1/2^128 on affected 64-bit platforms. *) On most platforms, RSA follows a different code path and RSA operations are not affected at all. For the remaining platforms (e.g. OpenSSL built without assembly support), pre-existing countermeasures thwart bug attacks [1]. *) Static ECDH is theoretically affected: it is possible to construct elliptic curve points that would falsely appear to be on the given curve. However, there is no known computationally feasible way to construct such points with low order, and so the security of static ECDH private keys is believed to be unaffected. *) Other routines known to be theoretically affected are modular exponentiation, primality testing, DSA, RSA blinding, JPAKE and SRP. No exploits are known and straightforward bug attacks fail - either the attacker cannot control when the bug triggers, or no private key material is involved. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-vz46-gfhm-aaap
Aliases: CVE-2016-0800 VC-OPENSSL-20160301-CVE-2016-0800 |
A cross-protocol attack was discovered that could lead to decryption of TLS sessions by using a server supporting SSLv2 and EXPORT cipher suites as a Bleichenbacher RSA padding oracle. Note that traffic between clients and non-vulnerable servers can be decrypted provided another server supporting SSLv2 and EXPORT ciphers (even with a different protocol such as SMTP, IMAP or POP) shares the RSA keys of the non-vulnerable server. This vulnerability is known as DROWN (CVE-2016-0800). Recovering one session key requires the attacker to perform approximately 2^50 computation, as well as thousands of connections to the affected server. A more efficient variant of the DROWN attack exists against unpatched OpenSSL servers using versions that predate 1.0.2a, 1.0.1m, 1.0.0r and 0.9.8zf released on 19/Mar/2015 (see CVE-2016-0703 below). Users can avoid this issue by disabling the SSLv2 protocol in all their SSL/TLS servers, if they've not done so already. Disabling all SSLv2 ciphers is also sufficient, provided the patches for CVE-2015-3197 (fixed in OpenSSL 1.0.1r and 1.0.2f) have been deployed. Servers that have not disabled the SSLv2 protocol, and are not patched for CVE-2015-3197 are vulnerable to DROWN even if all SSLv2 ciphers are nominally disabled, because malicious clients can force the use of SSLv2 with EXPORT ciphers. OpenSSL 1.0.2g and 1.0.1s deploy the following mitigation against DROWN: SSLv2 is now by default disabled at build-time. Builds that are not configured with "enable-ssl2" will not support SSLv2. Even if "enable-ssl2" is used, users who want to negotiate SSLv2 via the version-flexible SSLv23_method() will need to explicitly call either of: SSL_CTX_clear_options(ctx, SSL_OP_NO_SSLv2); or SSL_clear_options(ssl, SSL_OP_NO_SSLv2); as appropriate. Even if either of those is used, or the application explicitly uses the version-specific SSLv2_method() or its client or server variants, SSLv2 ciphers vulnerable to exhaustive search key recovery have been removed. Specifically, the SSLv2 40-bit EXPORT ciphers, and SSLv2 56-bit DES are no longer available. In addition, weak ciphers in SSLv3 and up are now disabled in default builds of OpenSSL. Builds that are not configured with "enable-weak-ssl-ciphers" will not provide any "EXPORT" or "LOW" strength ciphers. |
Affected by 135 other vulnerabilities. |
VCID-vzvx-xtm8-aaac
Aliases: CVE-2015-1794 VC-OPENSSL-20150811-CVE-2015-1794 |
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. |
Affected by 56 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-w299-9hqt-aaan
Aliases: CVE-2015-3193 VC-OPENSSL-20151203-CVE-2015-3193 |
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. |
Affected by 56 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 94 other vulnerabilities. Affected by 39 other vulnerabilities. |
VCID-w8mr-jycm-aaag
Aliases: CVE-2016-0701 VC-OPENSSL-20160128-CVE-2016-0701 |
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. |
Affected by 56 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-xmkv-s3ye-aaae
Aliases: CVE-2015-0204 VC-OPENSSL-20150106-CVE-2015-0204 |
An OpenSSL client will accept the use of an RSA temporary key in a non-export RSA key exchange ciphersuite. A server could present a weak temporary key and downgrade the security of the session. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-xrv3-gt8k-aaak
Aliases: CVE-2015-0292 VC-OPENSSL-20150319-CVE-2015-0292 |
A vulnerability existed in previous versions of OpenSSL related to the processing of base64 encoded data. Any code path that reads base64 data from an untrusted source could be affected (such as the PEM processing routines). Maliciously crafted base 64 data could trigger a segmenation fault or memory corruption. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-xsy7-be4x-aaas
Aliases: CVE-2016-2106 VC-OPENSSL-20160503-CVE-2016-2106 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-xtpm-4m3a-aaar
Aliases: CVE-2011-4577 VC-OPENSSL-20120104-CVE-2011-4577 |
RFC 3779 data can be included in certificates, and if it is malformed, may trigger an assertion failure. This could be used in a denial-of-service attack. Builds of OpenSSL are only vulnerable if configured with "enable-rfc3779", which is not a default. |
Affected by 135 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-y49b-wcn4-aaaa
Aliases: CVE-2015-0288 VC-OPENSSL-20150302-CVE-2015-0288 |
X509_to_X509_REQ NULL pointer deref. The function X509_to_X509_REQ will crash with a NULL pointer dereference if the certificate key is invalid. This function is rarely used in practice. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-yndp-nypz-aaam
Aliases: CVE-2014-3512 VC-OPENSSL-20140806-CVE-2014-3512 |
A SRP buffer overrun was found. A malicious client or server can send invalid SRP parameters and overrun an internal buffer. Only applications which are explicitly set up for SRP use are affected. |
Affected by 135 other vulnerabilities. Affected by 95 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-z47s-afyn-aaak
Aliases: CVE-2010-5298 VC-OPENSSL-20140408-CVE-2010-5298 |
A race condition in the ssl3_read_bytes function can allow remote attackers to inject data across sessions or cause a denial of service. This flaw only affects multithreaded applications using OpenSSL 1.0.0 and 1.0.1, where SSL_MODE_RELEASE_BUFFERS is enabled, which is not the default and not common. |
Affected by 135 other vulnerabilities. Affected by 95 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-z6bg-hyhu-aaas
Aliases: CVE-2016-2178 VC-OPENSSL-20160607-CVE-2016-2178 |
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. |
Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
VCID-z8sc-rus1-aaae
Aliases: CVE-2014-3568 VC-OPENSSL-20141015-CVE-2014-3568 |
When OpenSSL is configured with "no-ssl3" as a build option, servers could accept and complete a SSL 3.0 handshake, and clients could be configured to send them. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. |
VCID-zenr-u2eq-aaap
Aliases: CVE-2014-0160 VC-OPENSSL-20140407-CVE-2014-0160 |
A missing bounds check in the handling of the TLS heartbeat extension can be used to reveal up to 64kB of memory to a connected client or server (a.k.a. Heartbleed). This issue did not affect versions of OpenSSL prior to 1.0.1. |
Affected by 135 other vulnerabilities. Affected by 95 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. |
VCID-zkqe-jrqc-aaab
Aliases: CVE-2014-8176 VC-OPENSSL-20150611-CVE-2014-8176 |
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. |
Affected by 135 other vulnerabilities. Affected by 95 other vulnerabilities. Affected by 94 other vulnerabilities. Affected by 56 other vulnerabilities. |
Vulnerability | Summary | Aliases |
---|---|---|
This package is not known to fix vulnerabilities. |
Date | Actor | Action | Vulnerability | Source | VulnerableCode Version |
---|---|---|---|---|---|
2025-06-21T19:18:33.683203+00:00 | Debian Oval Importer | Affected by | VCID-ftte-av19-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T19:17:19.134611+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.068242+00:00 | Debian Oval Importer | Affected by | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T19:08:38.867234+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.745108+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:52.987659+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T19:04:26.117220+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:58:36.570169+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:52:45.007648+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:52:38.092488+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.697138+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.151656+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.262166+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:45:51.278400+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:44:36.251895+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:44:04.427041+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:42:31.052641+00:00 | Debian Oval Importer | Affected by | VCID-68v4-qbae-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:41:26.828551+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:40:26.693732+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:39:50.634475+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:38:13.325650+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:36:29.205807+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:36:27.483773+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:29:06.320952+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:28:31.237304+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:28:03.210847+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.188174+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:25:43.000384+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:24:11.158146+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:24:00.282185+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.037358+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.349089+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:23:24.166927+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:18:07.515454+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.061032+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:12:23.460090+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:10:48.278884+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.699082+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.3 |
2025-06-21T18:00:56.269225+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:59:23.464330+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:53:27.725868+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.714126+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:51:21.649102+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:48:13.908029+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:44:46.862230+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:44:09.745713+00:00 | Debian Oval Importer | Affected by | VCID-68v4-qbae-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:40:18.746939+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:25:53.716722+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.416721+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:19:10.191612+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:18:35.926427+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:41.678976+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:15:11.003382+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:13:11.527367+00:00 | Debian Oval Importer | Affected by | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:10:08.523447+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T17:01:49.482573+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:59:24.299528+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:57:14.362675+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:54:54.124648+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:53:37.720163+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:52:33.971675+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:46:16.534616+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:46:06.688607+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:45:02.141216+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:43:38.828706+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:43:24.254840+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:42:34.142794+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:42:02.382230+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:39:46.502388+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.263400+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.912960+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.315794+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:28:11.110354+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:27:54.110851+00:00 | Debian Oval Importer | Affected by | VCID-shkr-cjuz-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:27:37.003200+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:24:13.058598+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.885534+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.190142+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.297137+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:19:41.536135+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:16:32.098535+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.593307+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:09:25.957960+00:00 | Debian Oval Importer | Affected by | VCID-ftte-av19-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T16:04:04.455959+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.947975+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.606110+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:57:09.741176+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:55:31.074283+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.465026+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:53:21.042476+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:50:07.199694+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:49:29.957466+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:48:22.776089+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:47:21.424568+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:37:04.845135+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:32:09.019723+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:25:29.900903+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:22:46.557443+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:20:22.167730+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:18:58.937338+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:14:06.273011+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:12:28.073480+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:22.468175+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:12:12.404355+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:05:46.723144+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T15:04:20.649904+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-21T15:03:41.493629+00:00 | Debian Oval Importer | Affected by | VCID-1t6y-1zjy-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:57:23.684148+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:54:22.789373+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:47:39.399275+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:44:49.677149+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:44:05.327999+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:43:43.164865+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.395813+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:41:45.601944+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:40:29.360270+00:00 | Debian Oval Importer | Affected by | VCID-chu6-e54e-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:36:28.728132+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:34:29.571936+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:33:38.399942+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.301751+00:00 | Debian Oval Importer | Affected by | VCID-7e6q-x9ge-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:29:24.748955+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:26:27.105534+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.204834+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.030047+00:00 | Debian Oval Importer | Affected by | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:18:01.865733+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:17:59.500291+00:00 | Debian Oval Importer | Affected by | VCID-4qww-3wn9-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:17:42.805088+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:17:38.431708+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.435295+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.672207+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:15:29.636596+00:00 | Debian Oval Importer | Affected by | VCID-vz46-gfhm-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:15:20.188011+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:14:15.445316+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.923227+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.691828+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:01:24.094460+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T14:00:47.733885+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:56:35.748132+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:55:03.860445+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:47:50.600829+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:45:31.066559+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:44:41.809566+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:43:56.027781+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:37:25.787442+00:00 | Debian Oval Importer | Affected by | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:36:19.399118+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:36:06.189421+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:35:35.493785+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:30:42.717853+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:24:10.279978+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.644167+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:13:32.241981+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:11:36.627041+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-21T13:08:19.689985+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:05:07.222774+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T13:01:41.130495+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:58:17.434953+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:54:50.763227+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:45:30.034294+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:45:25.131511+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:42:56.588531+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:41:39.086123+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:40:59.747961+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:40:09.192352+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.916645+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:33:31.887144+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:25:05.044052+00:00 | Debian Oval Importer | Affected by | VCID-9few-spp9-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:24:18.846198+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.135235+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:21:58.468737+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:16:10.383464+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.412235+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:11:48.458228+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:11:41.985406+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:07:30.497492+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:01:57.566547+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T12:00:35.240186+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:59:52.573928+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:53:01.277103+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:51:33.458356+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:49:26.811718+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:46:16.285271+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:44:33.358092+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:43:30.658886+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:42:06.814428+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:35:48.824744+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:30:28.601614+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:29:30.401119+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:24:25.335830+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:22:22.662404+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:18:09.706664+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.3 |
2025-06-21T11:11:05.121856+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.790889+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.506229+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.174745+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.098148+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.110016+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.330066+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.413985+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.347338+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.769863+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-21T10:11:49.231429+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:10:37.122248+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:10:27.800709+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:10:01.066382+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:09:59.686429+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:09:43.527160+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:05:30.069641+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:04:53.122590+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:04:29.545696+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:02:54.901969+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:02:44.669279+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:02:24.265881+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:01:36.731423+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:01:13.071306+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T10:00:52.108457+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:56:34.306297+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:55:07.906837+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:55:06.518292+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:54:34.739895+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:54:16.056310+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:48:52.164695+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:48:36.687127+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:47:36.548098+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:46:45.130261+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:45:08.597329+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:44:31.340895+00:00 | Debian Oval Importer | Affected by | VCID-mjvr-p7dt-aaah | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:44:27.694414+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:44:11.065601+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:42:23.916701+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:41:12.327539+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:38:46.588305+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:38:32.752005+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:35:21.530567+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:35:09.177393+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:34:30.977820+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:33:32.744085+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:32:37.560022+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.3 |
2025-06-21T09:27:33.569135+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:27:22.322045+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:26:15.276926+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:26:11.047567+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:26:03.335434+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:25:19.238167+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:25:14.380177+00:00 | Debian Oval Importer | Affected by | VCID-9cw5-dhf3-aaag | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:24:48.880654+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:24:36.906599+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:23:19.726397+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:22:56.158476+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:21:22.194248+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:21:06.503997+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:20:49.702675+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:20:14.901552+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:19:16.907931+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:17:59.442030+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:17:27.211033+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:17:25.834236+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:17:21.019373+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:16:53.571009+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:16:29.463334+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:16:05.682025+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:15:20.434871+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:15:09.733408+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:14:58.611807+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:14:53.804484+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:14:11.892922+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:14:02.918566+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:13:06.485462+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:12:58.881314+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:12:39.549169+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:12:38.122790+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:12:06.228556+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:11:44.885082+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:11:17.922852+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:09:24.790320+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:08:44.664555+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:07:43.088953+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:06:29.455064+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:05:18.805479+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:05:12.935155+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:04:10.581226+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:03:56.114624+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:03:32.498367+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:03:00.501094+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:02:26.438540+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:01:46.436159+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:01:40.245573+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T09:00:04.187048+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T08:59:46.031135+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T08:59:41.911780+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T08:58:53.453069+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T08:58:42.799340+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T08:58:41.092540+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.3 |
2025-06-21T08:46:39.521108+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | None | 36.1.3 |
2025-06-21T08:46:36.832352+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | None | 36.1.3 |
2025-06-21T08:21:50.533448+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | None | 36.1.3 |
2025-06-21T08:21:49.810952+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | None | 36.1.3 |
2025-06-21T08:21:49.074523+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | None | 36.1.3 |
2025-06-21T08:21:48.360189+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | None | 36.1.3 |
2025-06-21T07:31:14.830535+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | None | 36.1.3 |
2025-06-21T07:29:58.544246+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | None | 36.1.3 |
2025-06-21T07:29:27.608945+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | None | 36.1.3 |
2025-06-21T07:28:44.606975+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | None | 36.1.3 |
2025-06-21T07:27:08.050596+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | None | 36.1.3 |
2025-06-21T05:06:58.053368+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | None | 36.1.3 |
2025-06-21T01:21:05.418325+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | None | 36.1.3 |
2025-06-21T01:18:11.632990+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | None | 36.1.3 |
2025-06-21T01:17:44.090972+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | None | 36.1.3 |
2025-06-21T01:13:56.907239+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | None | 36.1.3 |
2025-06-21T01:06:53.967782+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | None | 36.1.3 |
2025-06-21T00:58:38.827346+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | None | 36.1.3 |
2025-06-21T00:58:06.042180+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | None | 36.1.3 |
2025-06-21T00:57:13.120517+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | None | 36.1.3 |
2025-06-21T00:53:39.901155+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | None | 36.1.3 |
2025-06-21T00:49:29.607589+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | None | 36.1.3 |
2025-06-21T00:48:04.882028+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | None | 36.1.3 |
2025-06-21T00:47:49.978196+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | None | 36.1.3 |
2025-06-21T00:41:50.654617+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | None | 36.1.3 |
2025-06-21T00:41:34.069729+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | None | 36.1.3 |
2025-06-21T00:39:26.636181+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | None | 36.1.3 |
2025-06-21T00:37:33.610776+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | None | 36.1.3 |
2025-06-21T00:35:13.682909+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | None | 36.1.3 |
2025-06-21T00:34:10.675535+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | None | 36.1.3 |
2025-06-21T00:32:54.849726+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | None | 36.1.3 |
2025-06-21T00:31:25.947370+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | None | 36.1.3 |
2025-06-21T00:29:20.635711+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | None | 36.1.3 |
2025-06-21T00:26:10.272515+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | None | 36.1.3 |
2025-06-21T00:25:43.967582+00:00 | Debian Oval Importer | Affected by | VCID-ftte-av19-aaad | None | 36.1.3 |
2025-06-21T00:23:22.008100+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | None | 36.1.3 |
2025-06-21T00:19:25.194456+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | None | 36.1.3 |
2025-06-21T00:14:38.792534+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | None | 36.1.3 |
2025-06-21T00:13:16.701978+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | None | 36.1.3 |
2025-06-21T00:11:27.469226+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | None | 36.1.3 |
2025-06-21T00:05:03.648146+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.1.3 |
2025-06-21T00:02:53.374229+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | None | 36.1.3 |
2025-06-21T00:02:05.839694+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | None | 36.1.3 |
2025-06-21T00:00:45.993203+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | None | 36.1.3 |
2025-06-20T23:59:15.135172+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | None | 36.1.3 |
2025-06-20T23:58:41.328567+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | None | 36.1.3 |
2025-06-20T23:57:14.552632+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | None | 36.1.3 |
2025-06-20T23:55:27.698139+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | None | 36.1.3 |
2025-06-20T23:54:53.827067+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | None | 36.1.3 |
2025-06-20T23:50:49.356440+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | None | 36.1.3 |
2025-06-20T23:44:45.583358+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | None | 36.1.3 |
2025-06-20T23:43:07.392753+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | None | 36.1.3 |
2025-06-20T23:42:07.028906+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | None | 36.1.3 |
2025-06-20T23:38:00.951800+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | None | 36.1.3 |
2025-06-20T23:37:46.543597+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | None | 36.1.3 |
2025-06-20T23:35:33.066395+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | None | 36.1.3 |
2025-06-20T23:35:26.890421+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | None | 36.1.3 |
2025-06-20T23:31:06.587182+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | None | 36.1.3 |
2025-06-20T23:30:19.529231+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | None | 36.1.3 |
2025-06-20T23:29:42.733951+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | None | 36.1.3 |
2025-06-20T23:29:19.072763+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | None | 36.1.3 |
2025-06-20T23:27:51.350287+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | None | 36.1.3 |
2025-06-20T23:25:14.944874+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | None | 36.1.3 |
2025-06-20T23:23:53.824818+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | None | 36.1.3 |
2025-06-20T23:23:48.915795+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | None | 36.1.3 |
2025-06-20T23:20:00.458326+00:00 | Debian Oval Importer | Affected by | VCID-vzvx-xtm8-aaac | None | 36.1.3 |
2025-06-20T23:17:07.902210+00:00 | Debian Oval Importer | Affected by | VCID-chu6-e54e-aaaj | None | 36.1.3 |
2025-06-20T23:16:03.870687+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | None | 36.1.3 |
2025-06-20T23:15:50.715760+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | None | 36.1.3 |
2025-06-20T23:12:03.486369+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | None | 36.1.3 |
2025-06-20T23:09:11.539626+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | None | 36.1.3 |
2025-06-20T23:08:17.066139+00:00 | Debian Oval Importer | Affected by | VCID-vz46-gfhm-aaap | None | 36.1.3 |
2025-06-20T23:04:29.783476+00:00 | Debian Oval Importer | Affected by | VCID-1t6y-1zjy-aaae | None | 36.1.3 |
2025-06-20T23:03:18.979951+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | None | 36.1.3 |
2025-06-20T22:59:51.617742+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | None | 36.1.3 |
2025-06-20T22:56:19.207506+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | None | 36.1.3 |
2025-06-20T22:56:04.853809+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | None | 36.1.3 |
2025-06-20T22:54:44.882290+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | None | 36.1.3 |
2025-06-20T22:47:37.582603+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | None | 36.1.3 |
2025-06-20T22:46:37.482382+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | None | 36.1.3 |
2025-06-20T22:45:00.688605+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | None | 36.1.3 |
2025-06-20T22:44:43.985438+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | None | 36.1.3 |
2025-06-20T22:39:13.333713+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | None | 36.1.3 |
2025-06-20T22:37:53.712085+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | None | 36.1.3 |
2025-06-20T22:36:59.695557+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | None | 36.1.3 |
2025-06-20T22:28:52.422857+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | None | 36.1.3 |
2025-06-20T22:28:46.914809+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.1.3 |
2025-06-20T22:27:10.604155+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | None | 36.1.3 |
2025-06-20T22:23:54.754734+00:00 | Debian Oval Importer | Affected by | VCID-shkr-cjuz-aaad | None | 36.1.3 |
2025-06-20T22:16:42.376964+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | None | 36.1.3 |
2025-06-20T22:12:13.742249+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | None | 36.1.3 |
2025-06-20T22:09:40.467743+00:00 | Debian Oval Importer | Affected by | VCID-9few-spp9-aaag | None | 36.1.3 |
2025-06-20T22:09:37.720823+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | None | 36.1.3 |
2025-06-20T22:07:43.346829+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | None | 36.1.3 |
2025-06-20T22:07:32.848105+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | None | 36.1.3 |
2025-06-20T22:05:57.604494+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | None | 36.1.3 |
2025-06-20T22:03:02.038335+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | None | 36.1.3 |
2025-06-20T21:58:39.063028+00:00 | Debian Oval Importer | Affected by | VCID-w299-9hqt-aaan | None | 36.1.3 |
2025-06-20T21:57:10.020404+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | None | 36.1.3 |
2025-06-20T21:52:14.927299+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | None | 36.1.3 |
2025-06-20T21:51:44.965291+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | None | 36.1.3 |
2025-06-20T21:51:18.634454+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | None | 36.1.3 |
2025-06-20T21:50:55.408736+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | None | 36.1.3 |
2025-06-20T21:49:58.870517+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | None | 36.1.3 |
2025-06-20T21:47:47.451125+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | None | 36.1.3 |
2025-06-20T21:47:39.792384+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | None | 36.1.3 |
2025-06-20T21:46:30.988526+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | None | 36.1.3 |
2025-06-20T21:41:31.058895+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | None | 36.1.3 |
2025-06-20T21:35:25.429480+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | None | 36.1.3 |
2025-06-20T21:33:19.391571+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | None | 36.1.3 |
2025-06-20T21:32:44.582217+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | None | 36.1.3 |
2025-06-20T21:32:15.841261+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | None | 36.1.3 |
2025-06-20T21:31:04.178138+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | None | 36.1.3 |
2025-06-20T21:29:28.807926+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | None | 36.1.3 |
2025-06-20T21:24:37.828241+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | None | 36.1.3 |
2025-06-20T21:11:05.152113+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | None | 36.1.3 |
2025-06-20T21:11:01.794176+00:00 | Debian Oval Importer | Affected by | VCID-68v4-qbae-aaak | None | 36.1.3 |
2025-06-20T21:02:08.351034+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | None | 36.1.3 |
2025-06-20T21:01:19.213988+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | None | 36.1.3 |
2025-06-20T21:00:28.423837+00:00 | Debian Oval Importer | Affected by | VCID-4qww-3wn9-aaag | None | 36.1.3 |
2025-06-20T20:51:09.966832+00:00 | Debian Oval Importer | Affected by | VCID-7e6q-x9ge-aaas | None | 36.1.3 |
2025-06-20T20:50:20.530299+00:00 | Debian Oval Importer | Affected by | VCID-w8mr-jycm-aaag | None | 36.1.3 |
2025-06-20T20:48:29.733229+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | None | 36.1.3 |
2025-06-20T20:45:03.946408+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | None | 36.1.3 |
2025-06-20T20:41:42.462457+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | None | 36.1.3 |
2025-06-20T20:36:12.988590+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | None | 36.1.3 |
2025-06-20T20:15:08.748036+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | None | 36.1.3 |
2025-06-20T20:07:15.058171+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | None | 36.1.3 |
2025-06-20T19:59:35.045093+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | None | 36.1.3 |
2025-06-20T19:51:41.272381+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | None | 36.1.3 |
2025-06-20T19:49:03.228935+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | None | 36.1.3 |
2025-06-20T19:45:03.459353+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | None | 36.1.3 |
2025-06-20T19:44:24.128889+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | None | 36.1.3 |
2025-06-20T19:44:16.137665+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | None | 36.1.3 |
2025-06-20T19:35:45.482245+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | None | 36.1.3 |
2025-06-20T19:35:34.506983+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | None | 36.1.3 |
2025-06-20T19:35:22.174835+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | None | 36.1.3 |
2025-06-20T19:34:08.584062+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | None | 36.1.3 |
2025-06-20T19:33:19.969811+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | None | 36.1.3 |
2025-06-20T19:33:18.569629+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | None | 36.1.3 |
2025-06-20T19:33:09.604237+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | None | 36.1.3 |
2025-06-20T19:31:43.181678+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | None | 36.1.3 |
2025-06-20T19:31:38.978574+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | None | 36.1.3 |
2025-06-20T19:29:20.152333+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | None | 36.1.3 |
2025-06-20T19:28:42.051528+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | None | 36.1.3 |
2025-06-20T19:27:41.644146+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | None | 36.1.3 |
2025-06-20T19:27:34.853092+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | None | 36.1.3 |
2025-06-20T19:27:24.202383+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | None | 36.1.3 |
2025-06-20T19:21:51.268368+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | None | 36.1.3 |
2025-06-20T19:21:07.402346+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | None | 36.1.3 |
2025-06-20T19:20:40.400198+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | None | 36.1.3 |
2025-06-20T19:20:10.115509+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | None | 36.1.3 |
2025-06-08T13:18:39.126406+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T13:18:19.428822+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T13:12:12.159026+00:00 | Debian Oval Importer | Affected by | VCID-chu6-e54e-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T13:11:20.849938+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.235475+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T13:01:32.658348+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:59:58.579522+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:56:58.522849+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.105268+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:52:18.287000+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:47:51.373309+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:42:47.812034+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:40:08.485298+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:39:15.339645+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.387806+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:38:28.971207+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:38:00.650712+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:29:48.939027+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:25:21.900850+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.939061+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:53.525784+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:24:22.624380+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:22:49.509569+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.960883+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:19:23.733756+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:14:42.674347+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:13:28.382974+00:00 | Debian Oval Importer | Affected by | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:13:18.036837+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:13:14.641788+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:11:58.633038+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:11:05.456433+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T12:07:17.573723+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-08T12:00:09.396936+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:52:29.176876+00:00 | Debian Oval Importer | Affected by | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:51:52.651384+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:51:39.699784+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:51:00.608688+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:47:19.691357+00:00 | Debian Oval Importer | Affected by | VCID-ftte-av19-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:46:07.153335+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.073361+00:00 | Debian Oval Importer | Affected by | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:37:40.260619+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.742044+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.142333+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:33:36.422694+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:27:59.166984+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:22:32.900733+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:22:25.976615+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.750682+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.465833+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.317660+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:15:49.315766+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:14:35.956699+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:14:06.107395+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:12:34.768464+00:00 | Debian Oval Importer | Affected by | VCID-68v4-qbae-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:11:31.949195+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:10:35.077693+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:09:59.412617+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:08:24.694014+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T11:06:45.862409+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-08T11:06:44.455211+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:59:37.117594+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:59:02.191744+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:58:34.909901+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.856891+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:56:19.303385+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:54:51.586687+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:54:40.989403+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.100558+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.665764+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:54:07.760834+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:49:10.377935+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.881896+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:43:42.711639+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:42:12.278603+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.303506+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.1.0 |
2025-06-08T10:32:38.252748+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:31:05.551262+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:25:16.263216+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.196940+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:24:12.720819+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:21:12.200892+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:17:51.122539+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:17:15.954606+00:00 | Debian Oval Importer | Affected by | VCID-68v4-qbae-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:13:57.504000+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T10:05:14.303839+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.226570+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-08T10:00:16.441157+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:59:42.407273+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:57:07.763895+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:56:37.751885+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:54:45.663679+00:00 | Debian Oval Importer | Affected by | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:52:07.978289+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:46:50.592726+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:44:28.714039+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:42:19.127274+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:40:01.796796+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:38:46.662937+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:37:42.244879+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:31:32.776908+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:31:22.714644+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:30:16.963113+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:28:54.271362+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:28:40.354666+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:27:50.819798+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:27:20.001135+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:25:18.379007+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.720122+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.956890+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.460749+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:14:05.185050+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:13:49.718603+00:00 | Debian Oval Importer | Affected by | VCID-shkr-cjuz-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:13:33.236466+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:10:14.215630+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.233444+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.977208+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.440692+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:05:55.294003+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T09:03:16.461816+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.335126+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:59:32.425946+00:00 | Debian Oval Importer | Affected by | VCID-ftte-av19-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:57:03.728374+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.507668+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.194489+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:50:29.463294+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:48:49.514296+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.138300+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:46:39.485746+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:43:28.952366+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:42:53.436308+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:41:46.679532+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:40:47.028457+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:31:37.547681+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:26:39.968445+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:20:02.940500+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:17:11.541488+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:14:28.972702+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:12:55.256500+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:07:51.985710+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:06:12.623435+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:06:07.557007+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T08:05:58.222704+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:59:12.722330+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:57:46.317562+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:57:05.500175+00:00 | Debian Oval Importer | Affected by | VCID-1t6y-1zjy-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:50:42.256455+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:47:45.588015+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:41:02.029281+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:38:08.452673+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:37:24.666854+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:37:02.220475+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.651992+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:35:04.070293+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:33:41.521582+00:00 | Debian Oval Importer | Affected by | VCID-chu6-e54e-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:29:35.538553+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:27:33.523395+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:26:41.543311+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.454566+00:00 | Debian Oval Importer | Affected by | VCID-7e6q-x9ge-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:22:27.038054+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:19:30.358900+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.335712+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.766506+00:00 | Debian Oval Importer | Affected by | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:11:20.444871+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:11:18.435559+00:00 | Debian Oval Importer | Affected by | VCID-4qww-3wn9-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:11:00.215888+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:10:56.047970+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.055968+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.001145+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:08:50.862876+00:00 | Debian Oval Importer | Affected by | VCID-vz46-gfhm-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:08:42.164880+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T07:07:36.486002+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.819696+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.030838+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:55:29.286520+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:54:54.419092+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:50:47.663000+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:49:19.383731+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:42:00.359388+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:39:41.966860+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:38:53.559627+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:38:06.015921+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:31:38.205010+00:00 | Debian Oval Importer | Affected by | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:30:27.970004+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:30:13.679267+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:29:44.363444+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:24:43.535869+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:18:20.390449+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.492272+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:08:12.624648+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T06:06:18.013059+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-08T06:03:11.134549+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:59:59.718983+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:56:35.779718+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:53:15.588461+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:49:51.848199+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:40:48.392301+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:40:43.572197+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:38:26.336981+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:32.694114+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:37:04.269529+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:36:35.958720+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.623300+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:32:03.800472+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:26:22.789263+00:00 | Debian Oval Importer | Affected by | VCID-9few-spp9-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:25:49.126881+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.422067+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:24:20.605174+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:20:33.238530+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.041847+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:17:29.713348+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:17:25.577972+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:14:15.452894+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:10:58.722126+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:10:05.828988+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:09:39.550098+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:05:51.892034+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:04:56.571053+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:03:38.838990+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T05:01:16.035555+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:59:58.060350+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:59:12.135512+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:58:10.041313+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:53:59.503545+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:50:47.097371+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:50:07.697465+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:46:42.330733+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:45:35.789609+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:42:28.410738+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.1.0 |
2025-06-08T04:38:14.830252+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.501560+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.192618+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.631722+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.378258+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.178483+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.712602+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.110900+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.468340+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.625005+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-08T04:00:50.115003+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:59:42.288461+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:59:32.808522+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:59:06.965607+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:59:05.582706+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:58:49.285679+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:54:38.740387+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:54:02.648265+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:53:39.320639+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:52:02.024251+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:51:52.280221+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:51:31.169932+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:50:43.122155+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:50:19.633989+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:49:56.783036+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:45:31.623675+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:44:00.658952+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:43:58.910175+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:43:23.362822+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:43:03.584801+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:37:32.393872+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:37:17.491787+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:36:19.728841+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:35:28.046899+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:33:49.881849+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:33:12.345850+00:00 | Debian Oval Importer | Affected by | VCID-mjvr-p7dt-aaah | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:33:08.188816+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:32:50.165001+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:31:02.037651+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:29:53.608758+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:27:23.586078+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:27:09.910647+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:23:56.434660+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:23:44.341093+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:23:05.325903+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:22:04.151284+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:21:06.277765+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.1.0 |
2025-06-08T03:15:42.517869+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:15:31.317434+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:14:20.143030+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:14:15.281637+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:14:07.586432+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:13:21.131395+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:13:15.502314+00:00 | Debian Oval Importer | Affected by | VCID-9cw5-dhf3-aaag | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:12:48.919162+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:12:35.599925+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:11:12.355163+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:10:48.696589+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:09:12.421527+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:08:57.355532+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:08:40.484532+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:08:05.175810+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:07:07.597514+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:05:49.274893+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:05:16.637466+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:05:14.707212+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:05:09.062215+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:04:40.950669+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:04:14.307344+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:03:50.558852+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:03:03.202004+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:02:52.623197+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:02:40.981089+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:02:35.332149+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:01:51.776444+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:01:41.401757+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:00:43.550592+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:00:35.098335+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:00:14.112618+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T03:00:12.764301+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:59:37.078152+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:59:16.314402+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:58:44.691144+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:56:43.375014+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:55:59.565638+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:54:55.822427+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:53:38.339115+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:52:23.109344+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:52:17.490164+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:51:11.843999+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:50:57.176305+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:50:32.890239+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:49:59.014754+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:49:24.191030+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:48:41.434489+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:48:34.141735+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:46:53.915580+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:46:32.177253+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:46:28.031291+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:45:34.717072+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:45:22.851069+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:45:21.471307+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.1.0 |
2025-06-08T02:32:55.823517+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | None | 36.1.0 |
2025-06-08T02:32:52.531517+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | None | 36.1.0 |
2025-06-08T02:03:11.203823+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | None | 36.1.0 |
2025-06-08T02:03:10.501673+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | None | 36.1.0 |
2025-06-08T02:03:09.797117+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | None | 36.1.0 |
2025-06-08T02:03:09.065865+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | None | 36.1.0 |
2025-06-08T01:11:03.946517+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | None | 36.1.0 |
2025-06-08T01:09:44.840312+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | None | 36.1.0 |
2025-06-08T01:09:13.209409+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | None | 36.1.0 |
2025-06-08T01:08:30.491276+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | None | 36.1.0 |
2025-06-08T01:06:54.136990+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | None | 36.1.0 |
2025-06-07T22:44:26.007882+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | None | 36.1.0 |
2025-06-07T18:43:52.634572+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | None | 36.1.0 |
2025-06-07T18:40:55.257411+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | None | 36.1.0 |
2025-06-07T18:40:27.379952+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | None | 36.1.0 |
2025-06-07T18:36:36.550019+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | None | 36.1.0 |
2025-06-07T18:29:29.870013+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | None | 36.1.0 |
2025-06-07T18:21:03.490860+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | None | 36.1.0 |
2025-06-07T18:20:30.187325+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | None | 36.1.0 |
2025-06-07T18:19:34.287979+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | None | 36.1.0 |
2025-06-07T18:16:01.333634+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | None | 36.1.0 |
2025-06-07T18:11:51.931785+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | None | 36.1.0 |
2025-06-07T18:10:35.269143+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | None | 36.1.0 |
2025-06-07T18:10:20.023803+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | None | 36.1.0 |
2025-06-07T18:04:24.891290+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | None | 36.1.0 |
2025-06-07T18:04:08.687498+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | None | 36.1.0 |
2025-06-07T18:02:01.502437+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | None | 36.1.0 |
2025-06-07T18:00:10.805749+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | None | 36.1.0 |
2025-06-07T17:57:51.302990+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | None | 36.1.0 |
2025-06-07T17:56:48.615620+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | None | 36.1.0 |
2025-06-07T17:55:33.288520+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | None | 36.1.0 |
2025-06-07T17:54:04.522483+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | None | 36.1.0 |
2025-06-07T17:52:01.140321+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | None | 36.1.0 |
2025-06-07T17:48:54.878872+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | None | 36.1.0 |
2025-06-07T17:48:28.971752+00:00 | Debian Oval Importer | Affected by | VCID-ftte-av19-aaad | None | 36.1.0 |
2025-06-07T17:46:10.589905+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | None | 36.1.0 |
2025-06-07T17:42:20.715876+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | None | 36.1.0 |
2025-06-07T17:37:31.736778+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | None | 36.1.0 |
2025-06-07T17:36:06.624599+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | None | 36.1.0 |
2025-06-07T17:34:15.795929+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | None | 36.1.0 |
2025-06-07T17:27:49.783907+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.1.0 |
2025-06-07T17:25:41.304891+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | None | 36.1.0 |
2025-06-07T17:24:53.445534+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | None | 36.1.0 |
2025-06-07T17:23:35.795668+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | None | 36.1.0 |
2025-06-07T17:22:08.280888+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | None | 36.1.0 |
2025-06-07T17:21:34.752232+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | None | 36.1.0 |
2025-06-07T17:20:08.669495+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | None | 36.1.0 |
2025-06-07T17:18:20.109588+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | None | 36.1.0 |
2025-06-07T17:17:45.797342+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | None | 36.1.0 |
2025-06-07T17:13:41.555794+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | None | 36.1.0 |
2025-06-07T17:07:39.427888+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | None | 36.1.0 |
2025-06-07T17:06:01.390568+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | None | 36.1.0 |
2025-06-07T17:05:02.036363+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | None | 36.1.0 |
2025-06-07T17:00:57.390532+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | None | 36.1.0 |
2025-06-07T17:00:42.847958+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | None | 36.1.0 |
2025-06-07T16:58:29.983787+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | None | 36.1.0 |
2025-06-07T16:58:23.620778+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | None | 36.1.0 |
2025-06-07T16:54:01.647069+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | None | 36.1.0 |
2025-06-07T16:53:14.429194+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | None | 36.1.0 |
2025-06-07T16:52:37.715358+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | None | 36.1.0 |
2025-06-07T16:52:14.247253+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | None | 36.1.0 |
2025-06-07T16:50:46.809650+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | None | 36.1.0 |
2025-06-07T16:48:08.844968+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | None | 36.1.0 |
2025-06-07T16:46:47.853040+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | None | 36.1.0 |
2025-06-07T16:46:42.908170+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | None | 36.1.0 |
2025-06-07T16:42:58.247233+00:00 | Debian Oval Importer | Affected by | VCID-vzvx-xtm8-aaac | None | 36.1.0 |
2025-06-07T16:40:11.365853+00:00 | Debian Oval Importer | Affected by | VCID-chu6-e54e-aaaj | None | 36.1.0 |
2025-06-07T16:39:08.992005+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | None | 36.1.0 |
2025-06-07T16:38:55.851882+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | None | 36.1.0 |
2025-06-07T16:35:09.920000+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | None | 36.1.0 |
2025-06-07T16:32:20.818754+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | None | 36.1.0 |
2025-06-07T16:31:26.072543+00:00 | Debian Oval Importer | Affected by | VCID-vz46-gfhm-aaap | None | 36.1.0 |
2025-06-07T16:27:44.130555+00:00 | Debian Oval Importer | Affected by | VCID-1t6y-1zjy-aaae | None | 36.1.0 |
2025-06-07T16:26:33.890807+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | None | 36.1.0 |
2025-06-07T16:23:03.254583+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | None | 36.1.0 |
2025-06-07T16:19:35.875203+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | None | 36.1.0 |
2025-06-07T16:19:21.901110+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | None | 36.1.0 |
2025-06-07T16:18:02.141477+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | None | 36.1.0 |
2025-06-07T16:11:31.903354+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | None | 36.1.0 |
2025-06-07T16:10:32.421857+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | None | 36.1.0 |
2025-06-07T16:08:56.733396+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | None | 36.1.0 |
2025-06-07T16:08:39.839910+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | None | 36.1.0 |
2025-06-07T16:03:10.235691+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | None | 36.1.0 |
2025-06-07T16:01:50.719125+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | None | 36.1.0 |
2025-06-07T16:00:58.641700+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | None | 36.1.0 |
2025-06-07T15:53:02.924336+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | None | 36.1.0 |
2025-06-07T15:52:57.380467+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.1.0 |
2025-06-07T15:51:25.112974+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | None | 36.1.0 |
2025-06-07T15:48:08.290236+00:00 | Debian Oval Importer | Affected by | VCID-shkr-cjuz-aaad | None | 36.1.0 |
2025-06-07T15:40:44.343308+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | None | 36.1.0 |
2025-06-07T15:36:17.339747+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | None | 36.1.0 |
2025-06-07T15:33:41.533216+00:00 | Debian Oval Importer | Affected by | VCID-9few-spp9-aaag | None | 36.1.0 |
2025-06-07T15:33:38.490971+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | None | 36.1.0 |
2025-06-07T15:31:39.295232+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | None | 36.1.0 |
2025-06-07T15:31:28.375381+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | None | 36.1.0 |
2025-06-07T15:29:48.782693+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | None | 36.1.0 |
2025-06-07T15:26:44.647686+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | None | 36.1.0 |
2025-06-07T15:22:07.353538+00:00 | Debian Oval Importer | Affected by | VCID-w299-9hqt-aaan | None | 36.1.0 |
2025-06-07T15:20:37.018971+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | None | 36.1.0 |
2025-06-07T15:15:32.666239+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | None | 36.1.0 |
2025-06-07T15:15:00.573509+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | None | 36.1.0 |
2025-06-07T15:14:32.916321+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | None | 36.1.0 |
2025-06-07T15:14:07.929585+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | None | 36.1.0 |
2025-06-07T15:13:08.431562+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | None | 36.1.0 |
2025-06-07T15:10:51.096322+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | None | 36.1.0 |
2025-06-07T15:10:43.073655+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | None | 36.1.0 |
2025-06-07T15:09:33.040220+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | None | 36.1.0 |
2025-06-07T15:04:20.684665+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | None | 36.1.0 |
2025-06-07T14:58:00.423639+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | None | 36.1.0 |
2025-06-07T14:55:52.911845+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | None | 36.1.0 |
2025-06-07T14:55:17.156206+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | None | 36.1.0 |
2025-06-07T14:54:47.471330+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | None | 36.1.0 |
2025-06-07T14:53:31.777858+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | None | 36.1.0 |
2025-06-07T14:51:51.947020+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | None | 36.1.0 |
2025-06-07T14:47:30.387319+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | None | 36.1.0 |
2025-06-07T14:36:07.166658+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | None | 36.1.0 |
2025-06-07T14:36:04.226297+00:00 | Debian Oval Importer | Affected by | VCID-68v4-qbae-aaak | None | 36.1.0 |
2025-06-07T14:28:43.894207+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | None | 36.1.0 |
2025-06-07T14:28:26.022997+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | None | 36.1.0 |
2025-06-07T14:27:38.310531+00:00 | Debian Oval Importer | Affected by | VCID-4qww-3wn9-aaag | None | 36.1.0 |
2025-06-07T14:22:09.486046+00:00 | Debian Oval Importer | Affected by | VCID-7e6q-x9ge-aaas | None | 36.1.0 |
2025-06-07T14:21:19.500060+00:00 | Debian Oval Importer | Affected by | VCID-w8mr-jycm-aaag | None | 36.1.0 |
2025-06-07T14:19:58.235564+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | None | 36.1.0 |
2025-06-07T14:16:58.488893+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | None | 36.1.0 |
2025-06-07T14:13:40.929331+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | None | 36.1.0 |
2025-06-07T14:08:44.814692+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | None | 36.1.0 |
2025-06-07T13:55:20.985564+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | None | 36.1.0 |
2025-06-07T13:52:53.245649+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | None | 36.1.0 |
2025-06-07T13:49:18.294161+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | None | 36.1.0 |
2025-06-07T13:43:07.120743+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | None | 36.1.0 |
2025-06-07T13:41:11.247906+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | None | 36.1.0 |
2025-06-07T13:37:37.441215+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | None | 36.1.0 |
2025-06-07T13:37:06.061102+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | None | 36.1.0 |
2025-06-07T13:36:58.597162+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | None | 36.1.0 |
2025-06-07T13:30:54.863298+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | None | 36.1.0 |
2025-06-07T13:30:43.498429+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | None | 36.1.0 |
2025-06-07T13:30:33.523305+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | None | 36.1.0 |
2025-06-07T13:30:04.566440+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | None | 36.1.0 |
2025-06-07T13:29:14.652821+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | None | 36.1.0 |
2025-06-07T13:29:13.024296+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | None | 36.1.0 |
2025-06-07T13:29:03.367693+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | None | 36.1.0 |
2025-06-07T13:28:31.761191+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | None | 36.1.0 |
2025-06-07T13:28:26.530891+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | None | 36.1.0 |
2025-06-07T13:26:23.291055+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | None | 36.1.0 |
2025-06-07T13:26:01.295781+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | None | 36.1.0 |
2025-06-07T13:25:19.470764+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | None | 36.1.0 |
2025-06-07T13:25:14.917312+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | None | 36.1.0 |
2025-06-07T13:25:09.196827+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | None | 36.1.0 |
2025-06-07T13:21:26.189351+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | None | 36.1.0 |
2025-06-07T13:20:40.734601+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | None | 36.1.0 |
2025-06-07T13:20:12.882226+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | None | 36.1.0 |
2025-06-07T13:19:44.941522+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | None | 36.1.0 |
2025-06-03T13:25:39.904666+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | None | 36.1.2 |
2025-06-03T13:25:19.057349+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | None | 36.1.2 |
2025-06-03T13:24:36.721011+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | None | 36.1.2 |
2025-06-03T13:24:32.132914+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | None | 36.1.2 |
2025-06-03T13:24:26.487603+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | None | 36.1.2 |
2025-06-03T13:20:49.277884+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | None | 36.1.2 |
2025-06-03T13:20:07.120765+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | None | 36.1.2 |
2025-06-03T13:19:40.674443+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | None | 36.1.2 |
2025-06-03T13:19:15.052456+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | None | 36.1.2 |
2025-04-13T02:21:23.013481+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.248104+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.763421+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:19.977310+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.188094+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.433385+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.288475+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.390692+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.101059+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:28:33.604726+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:24:18.826244+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:23:40.835975+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:14:45.054460+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:13:10.051055+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:10:50.533826+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:09:47.599799+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T22:06:42.482556+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:54:37.259039+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:51:27.986886+00:00 | Debian Oval Importer | Affected by | VCID-vz46-gfhm-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:49:01.385505+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:46:17.284343+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:31:58.172416+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:31:23.551769+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:30:45.281525+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:30:01.393625+00:00 | Debian Oval Importer | Affected by | VCID-4qww-3wn9-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:29:31.452566+00:00 | Debian Oval Importer | Affected by | VCID-9few-spp9-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:28:47.026752+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:26:23.915560+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:25:31.658524+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:24:04.721935+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:19:38.735172+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:19:00.660431+00:00 | Debian Oval Importer | Affected by | VCID-shkr-cjuz-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:16:56.983045+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:07:41.173502+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.912470+00:00 | Debian Oval Importer | Affected by | VCID-7e6q-x9ge-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:05:56.028142+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:04:53.736361+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:03:43.368013+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:02:46.758337+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:01:11.846765+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:00:43.454956+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T21:00:37.573911+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.963200+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:58:24.529721+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:56:52.811479+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:40.015422+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:55:37.715181+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:55:31.352164+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:54:09.403660+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:53:30.292123+00:00 | Debian Oval Importer | Affected by | VCID-1t6y-1zjy-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:48:57.448308+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:47:01.468717+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:41:18.130749+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:36:15.283361+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:28:38.684140+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:24:04.128335+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:22:49.527755+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:12:37.138716+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:09:59.648147+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:08:29.976382+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:06:09.831815+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:05:54.305216+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.334488+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T20:03:15.022707+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:59:56.310535+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:58:05.997672+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:57:04.623057+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.232815+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:55:51.292410+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:52:24.500048+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:52:10.240558+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.372907+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:58.954457+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:48:39.776380+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:48:33.144496+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:46:55.610553+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:46:36.891400+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:41:28.768716+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.702351+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:37:19.958664+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:33:59.173948+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:25:22.702561+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:18:46.142915+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:14:49.032860+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:12:14.492674+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:06:42.494028+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T19:06:22.146266+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:59:58.804253+00:00 | Debian Oval Importer | Affected by | VCID-chu6-e54e-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:59:05.567086+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.285371+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:48:58.492477+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:47:19.860048+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:44:15.281743+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.431894+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:39:23.864979+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:34:46.244319+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:29:36.402199+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:26:53.335064+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:25:57.302901+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.302313+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:25:08.940371+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:24:39.523879+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:16:09.574259+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:11:30.342447+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.294716+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:11:00.726601+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:10:28.539990+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:08:51.489487+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.313177+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-12T18:05:18.549267+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T18:00:26.342469+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:59:10.164301+00:00 | Debian Oval Importer | Affected by | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:58:59.476164+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:58:55.769143+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:57:39.762125+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:56:44.713623+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:52:50.407872+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:45:26.501544+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:37:33.297133+00:00 | Debian Oval Importer | Affected by | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:36:55.246430+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:36:41.582401+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:36:01.263078+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:32:16.369288+00:00 | Debian Oval Importer | Affected by | VCID-ftte-av19-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:30:59.466612+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.345314+00:00 | Debian Oval Importer | Affected by | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:22:15.861752+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.624299+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.656306+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:18:02.929966+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:12:11.090622+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:06:35.049639+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T17:06:27.840291+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.611678+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.175802+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.811909+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:59:35.583467+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:58:17.771741+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:57:46.075954+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:56:11.722119+00:00 | Debian Oval Importer | Affected by | VCID-68v4-qbae-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:55:05.713882+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:54:06.211355+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:53:29.032216+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:51:50.326267+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:50:07.872838+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:50:06.418638+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:42:25.677346+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:41:49.787201+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:41:20.956197+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.090696+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:38:57.200129+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:37:24.772185+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:37:13.532350+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.289182+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.007532+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:36:38.045085+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:31:23.115985+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.250059+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:25:37.036403+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:24:01.058116+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.617201+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 36.0.0 |
2025-04-12T16:13:59.680310+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T16:12:23.834280+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T16:06:22.368310+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.951278+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T16:05:19.374909+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T16:02:13.036723+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T15:58:45.439586+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T15:58:07.586147+00:00 | Debian Oval Importer | Affected by | VCID-68v4-qbae-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-12T15:54:47.662448+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:37:33.800649+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.359865+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:32:32.944311+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:31:59.049486+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:29:20.387945+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:28:50.407850+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:26:59.640294+00:00 | Debian Oval Importer | Affected by | VCID-w8mr-jycm-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:24:21.043457+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:19:09.480719+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:16:51.053130+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:14:43.585038+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:12:25.628840+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:11:09.588445+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:10:05.943657+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:03:55.978821+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:03:46.001903+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:02:42.458504+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:01:20.514141+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:01:06.371859+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T08:00:14.879906+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:59:42.926898+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:57:37.273652+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.820745+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.778798+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.041347+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:46:03.354565+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:45:47.038374+00:00 | Debian Oval Importer | Affected by | VCID-shkr-cjuz-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:45:29.393533+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:42:06.410536+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.629428+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.153630+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.600302+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:37:40.546526+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:34:57.049163+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.954540+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:31:09.927712+00:00 | Debian Oval Importer | Affected by | VCID-ftte-av19-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:28:40.148777+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.932077+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.069420+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:22:03.139625+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:20:22.647735+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.569224+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:18:12.861607+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:14:59.955968+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:14:22.875704+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:13:15.176231+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:12:14.829448+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T07:03:02.270724+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:58:02.863203+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:51:23.524153+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:48:39.651958+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:46:11.800390+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:44:46.998465+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:39:52.194389+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:38:15.743871+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:10.343564+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:38:00.501854+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:31:35.491779+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:30:09.946786+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:29:30.557670+00:00 | Debian Oval Importer | Affected by | VCID-1t6y-1zjy-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:23:09.433266+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:20:16.487625+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:13:29.953918+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:10:41.041154+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:09:57.054750+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:09:35.468281+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.776298+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:07:39.764480+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:06:24.698474+00:00 | Debian Oval Importer | Affected by | VCID-chu6-e54e-aaaj | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T06:02:23.776585+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-08T06:00:23.119860+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:59:32.268283+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.036163+00:00 | Debian Oval Importer | Affected by | VCID-7e6q-x9ge-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:55:03.540082+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:52:07.024160+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.429431+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.168178+00:00 | Debian Oval Importer | Affected by | VCID-vzvx-xtm8-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:43:53.681720+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:43:51.594517+00:00 | Debian Oval Importer | Affected by | VCID-4qww-3wn9-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:43:35.101547+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:43:30.774746+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.584777+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.730619+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:41:25.475009+00:00 | Debian Oval Importer | Affected by | VCID-vz46-gfhm-aaap | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:41:16.313609+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:40:13.700308+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.435835+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.188226+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:59.846983+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:27:24.293540+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:23:14.454712+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:21:44.231575+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:14:28.828094+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:12:07.390159+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:11:18.988268+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:10:32.820839+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:03:53.743868+00:00 | Debian Oval Importer | Affected by | VCID-w299-9hqt-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:02:45.031831+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:02:30.925644+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T05:02:01.101342+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:57:02.045796+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:50:36.280157+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.025209+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:40:14.729050+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:38:21.859785+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:35:10.032291+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:31:55.903202+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:28:28.569247+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:25:06.002480+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:21:37.593239+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:12:29.938372+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:12:24.989021+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:09:59.916605+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:09:06.624940+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:08:37.499383+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:08:08.307102+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.529686+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T04:03:26.068003+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:57:34.165292+00:00 | Debian Oval Importer | Affected by | VCID-9few-spp9-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:56:58.903200+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.154064+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:55:27.169802+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:51:35.735897+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.921662+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:48:33.954319+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:48:29.667012+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:45:16.380062+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:41:56.019562+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:41:02.489960+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:40:36.626561+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:36:46.985214+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:35:50.303409+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:34:32.363893+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:32:09.925107+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:30:55.859490+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:30:10.543628+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:29:11.882496+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:25:10.254893+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:21:56.229074+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:21:18.434390+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:17:45.843964+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:16:41.001076+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:13:31.218027+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-buster.xml.bz2 | 36.0.0 |
2025-04-08T03:09:10.914828+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.108877+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.167331+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.193324+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.914070+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.364004+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.480033+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.001324+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.046522+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.310641+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-08T02:29:05.151525+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:27:53.286389+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:27:43.375891+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:27:15.871092+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:27:14.449146+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:26:57.859427+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:22:32.132934+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:21:54.173009+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:21:28.523784+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:19:53.365287+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:19:42.366872+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:19:21.714412+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:18:33.038663+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:18:08.304337+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:17:46.945751+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:13:17.345744+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:11:44.929672+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:11:43.475661+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:11:10.509631+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:10:50.542551+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:05:16.186928+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:04:59.025292+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:03:58.114398+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:03:03.643886+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:01:21.893488+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:00:42.668028+00:00 | Debian Oval Importer | Affected by | VCID-mjvr-p7dt-aaah | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:00:38.751161+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T02:00:20.667672+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:58:32.143850+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:57:22.022543+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:54:48.686297+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:54:34.960445+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:51:20.945611+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:51:07.918198+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:50:28.519710+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:49:27.494523+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:48:30.000102+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | https://www.debian.org/security/oval/oval-definitions-jessie.xml.bz2 | 36.0.0 |
2025-04-08T01:43:08.743727+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:42:56.888259+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:41:43.130355+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:41:38.180528+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:41:30.077336+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:40:44.000866+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:40:38.856310+00:00 | Debian Oval Importer | Affected by | VCID-9cw5-dhf3-aaag | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:40:09.992958+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:39:57.713033+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:38:37.797054+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:38:11.138415+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:36:30.420632+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:36:14.518014+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:35:57.123282+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:35:21.342410+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:34:21.282972+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:33:00.053286+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:32:26.793473+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:32:25.304339+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:32:20.209413+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:31:52.219260+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:31:26.656761+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:31:01.731568+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:30:10.855639+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:29:59.713303+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:29:48.299462+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:29:43.216826+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:28:58.851695+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:28:49.041626+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:27:49.771365+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:27:41.561011+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:27:18.738313+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:27:17.250113+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:26:43.768128+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:26:21.831116+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:25:54.469000+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:23:56.227583+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:23:14.313623+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:22:09.540803+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:20:53.883692+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:19:37.757874+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:19:31.907844+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:18:25.802434+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:18:10.018766+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:17:46.007775+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:17:08.419054+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:16:33.164103+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:15:49.822156+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:15:43.474168+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:14:03.450241+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:13:44.584883+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:13:39.731272+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:12:49.531636+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:12:38.793145+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:12:37.303950+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 36.0.0 |
2025-04-08T01:00:21.353576+00:00 | Debian Oval Importer | Affected by | VCID-5kqm-99x8-aaak | None | 36.0.0 |
2025-04-08T01:00:18.595432+00:00 | Debian Oval Importer | Affected by | VCID-2rtj-nbth-aaam | None | 36.0.0 |
2025-04-08T00:35:02.187297+00:00 | Debian Oval Importer | Affected by | VCID-kn8m-m9v4-aaaa | None | 36.0.0 |
2025-04-08T00:35:01.417525+00:00 | Debian Oval Importer | Affected by | VCID-mu8w-emsy-aaak | None | 36.0.0 |
2025-04-08T00:35:00.673571+00:00 | Debian Oval Importer | Affected by | VCID-xda1-h5nv-aaaf | None | 36.0.0 |
2025-04-08T00:34:59.911525+00:00 | Debian Oval Importer | Affected by | VCID-tkv7-cnhy-aaas | None | 36.0.0 |
2025-04-07T23:43:41.649880+00:00 | Debian Oval Importer | Affected by | VCID-uua4-ygek-aaah | None | 36.0.0 |
2025-04-07T23:42:19.822910+00:00 | Debian Oval Importer | Affected by | VCID-ec3y-aejm-aaad | None | 36.0.0 |
2025-04-07T23:41:46.832966+00:00 | Debian Oval Importer | Affected by | VCID-ur7f-5ey8-aaak | None | 36.0.0 |
2025-04-07T23:41:03.467469+00:00 | Debian Oval Importer | Affected by | VCID-9wtx-9sbn-aaam | None | 36.0.0 |
2025-04-07T23:39:23.665134+00:00 | Debian Oval Importer | Affected by | VCID-5khv-27u8-aaaa | None | 36.0.0 |
2025-04-07T21:16:14.262272+00:00 | Debian Oval Importer | Affected by | VCID-ut1w-jvp1-aaaj | None | 36.0.0 |
2025-04-07T17:21:42.212858+00:00 | Debian Oval Importer | Affected by | VCID-eg7n-8h8z-aaaa | None | 36.0.0 |
2025-04-07T17:18:44.232032+00:00 | Debian Oval Importer | Affected by | VCID-pmtm-skvc-aaar | None | 36.0.0 |
2025-04-07T17:18:16.375504+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | None | 36.0.0 |
2025-04-07T17:14:22.518781+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | None | 36.0.0 |
2025-04-07T17:07:09.287776+00:00 | Debian Oval Importer | Affected by | VCID-ejg3-awxf-aaan | None | 36.0.0 |
2025-04-07T16:58:39.748343+00:00 | Debian Oval Importer | Affected by | VCID-yndp-nypz-aaam | None | 36.0.0 |
2025-04-07T16:58:05.221527+00:00 | Debian Oval Importer | Affected by | VCID-dhsz-kcke-aaan | None | 36.0.0 |
2025-04-07T16:57:10.268013+00:00 | Debian Oval Importer | Affected by | VCID-vvuz-hvfa-aaae | None | 36.0.0 |
2025-04-07T16:53:29.683485+00:00 | Debian Oval Importer | Affected by | VCID-ch34-h9ey-aaam | None | 36.0.0 |
2025-04-07T16:49:11.622785+00:00 | Debian Oval Importer | Affected by | VCID-y49b-wcn4-aaaa | None | 36.0.0 |
2025-04-07T16:47:52.971222+00:00 | Debian Oval Importer | Affected by | VCID-ghgs-7167-aaag | None | 36.0.0 |
2025-04-07T16:47:37.688929+00:00 | Debian Oval Importer | Affected by | VCID-581z-anfk-aaaq | None | 36.0.0 |
2025-04-07T16:41:29.535953+00:00 | Debian Oval Importer | Affected by | VCID-vm2m-bf4p-aaaf | None | 36.0.0 |
2025-04-07T16:41:12.377728+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | None | 36.0.0 |
2025-04-07T16:39:01.691037+00:00 | Debian Oval Importer | Affected by | VCID-rhab-a2ya-aaae | None | 36.0.0 |
2025-04-07T16:37:08.045010+00:00 | Debian Oval Importer | Affected by | VCID-69ax-cbdq-aaam | None | 36.0.0 |
2025-04-07T16:34:45.603667+00:00 | Debian Oval Importer | Affected by | VCID-1pke-t171-aaas | None | 36.0.0 |
2025-04-07T16:33:40.904163+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | None | 36.0.0 |
2025-04-07T16:32:22.515892+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | None | 36.0.0 |
2025-04-07T16:30:50.963422+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | None | 36.0.0 |
2025-04-07T16:28:42.364537+00:00 | Debian Oval Importer | Affected by | VCID-msmt-6x6r-aaaj | None | 36.0.0 |
2025-04-07T16:25:27.303364+00:00 | Debian Oval Importer | Affected by | VCID-zesf-f628-aaad | None | 36.0.0 |
2025-04-07T16:25:00.012525+00:00 | Debian Oval Importer | Affected by | VCID-ftte-av19-aaad | None | 36.0.0 |
2025-04-07T16:22:28.731879+00:00 | Debian Oval Importer | Affected by | VCID-3d3c-x2ux-aaaa | None | 36.0.0 |
2025-04-07T16:17:47.544870+00:00 | Debian Oval Importer | Affected by | VCID-rr5p-edvp-aaar | None | 36.0.0 |
2025-04-07T16:12:18.429437+00:00 | Debian Oval Importer | Affected by | VCID-9wtw-93e9-aaam | None | 36.0.0 |
2025-04-07T16:10:49.181476+00:00 | Debian Oval Importer | Affected by | VCID-pqvw-s72q-aaam | None | 36.0.0 |
2025-04-07T16:08:54.532654+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | None | 36.0.0 |
2025-04-07T16:02:15.784796+00:00 | Debian Oval Importer | Affected by | VCID-w17h-u8wd-aaaj | None | 36.0.0 |
2025-04-07T16:00:00.853511+00:00 | Debian Oval Importer | Affected by | VCID-te3m-wuz7-aaam | None | 36.0.0 |
2025-04-07T15:59:06.995839+00:00 | Debian Oval Importer | Affected by | VCID-psvb-thr2-aaap | None | 36.0.0 |
2025-04-07T15:57:45.489096+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | None | 36.0.0 |
2025-04-07T15:56:12.796149+00:00 | Debian Oval Importer | Affected by | VCID-ue1t-xset-aaah | None | 36.0.0 |
2025-04-07T15:55:38.223744+00:00 | Debian Oval Importer | Affected by | VCID-qnz6-p4f5-aaag | None | 36.0.0 |
2025-04-07T15:54:08.605954+00:00 | Debian Oval Importer | Affected by | VCID-y471-3h22-aaah | None | 36.0.0 |
2025-04-07T15:52:17.425416+00:00 | Debian Oval Importer | Affected by | VCID-7bwv-hdm1-aaae | None | 36.0.0 |
2025-04-07T15:51:41.658194+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | None | 36.0.0 |
2025-04-07T15:47:27.809172+00:00 | Debian Oval Importer | Affected by | VCID-1bwf-h8y6-aaar | None | 36.0.0 |
2025-04-07T15:41:09.630836+00:00 | Debian Oval Importer | Affected by | VCID-cg17-ah7e-aaag | None | 36.0.0 |
2025-04-07T15:39:28.220984+00:00 | Debian Oval Importer | Affected by | VCID-arc3-rhts-aaar | None | 36.0.0 |
2025-04-07T15:38:25.593303+00:00 | Debian Oval Importer | Affected by | VCID-tc8g-det5-aaad | None | 36.0.0 |
2025-04-07T15:34:10.853969+00:00 | Debian Oval Importer | Affected by | VCID-914k-6fj2-aaac | None | 36.0.0 |
2025-04-07T15:33:55.725682+00:00 | Debian Oval Importer | Affected by | VCID-2tt7-g7qs-aaae | None | 36.0.0 |
2025-04-07T15:31:37.525549+00:00 | Debian Oval Importer | Affected by | VCID-xmkv-s3ye-aaae | None | 36.0.0 |
2025-04-07T15:31:31.057579+00:00 | Debian Oval Importer | Affected by | VCID-nemw-6d8n-aaah | None | 36.0.0 |
2025-04-07T15:26:59.048159+00:00 | Debian Oval Importer | Affected by | VCID-fmvb-j6br-aaap | None | 36.0.0 |
2025-04-07T15:26:09.120674+00:00 | Debian Oval Importer | Affected by | VCID-m4nz-uw2e-aaaq | None | 36.0.0 |
2025-04-07T15:25:30.035212+00:00 | Debian Oval Importer | Affected by | VCID-6pjh-cgdt-aaaj | None | 36.0.0 |
2025-04-07T15:25:05.469600+00:00 | Debian Oval Importer | Affected by | VCID-dnrm-mtb4-aaah | None | 36.0.0 |
2025-04-07T15:23:33.406352+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | None | 36.0.0 |
2025-04-07T15:20:50.200282+00:00 | Debian Oval Importer | Affected by | VCID-amba-4zuy-aaap | None | 36.0.0 |
2025-04-07T15:19:26.212069+00:00 | Debian Oval Importer | Affected by | VCID-xsy7-be4x-aaas | None | 36.0.0 |
2025-04-07T15:19:20.932974+00:00 | Debian Oval Importer | Affected by | VCID-egbc-ecck-aaag | None | 36.0.0 |
2025-04-07T15:15:27.055013+00:00 | Debian Oval Importer | Affected by | VCID-vzvx-xtm8-aaac | None | 36.0.0 |
2025-04-07T15:12:31.671584+00:00 | Debian Oval Importer | Affected by | VCID-chu6-e54e-aaaj | None | 36.0.0 |
2025-04-07T15:11:25.736254+00:00 | Debian Oval Importer | Affected by | VCID-4vr3-tvzc-aaas | None | 36.0.0 |
2025-04-07T15:11:12.347820+00:00 | Debian Oval Importer | Affected by | VCID-j6bv-cdqn-aaan | None | 36.0.0 |
2025-04-07T15:07:19.470822+00:00 | Debian Oval Importer | Affected by | VCID-xrv3-gt8k-aaak | None | 36.0.0 |
2025-04-07T15:04:23.468304+00:00 | Debian Oval Importer | Affected by | VCID-sgbg-ntsk-aaac | None | 36.0.0 |
2025-04-07T15:03:27.817626+00:00 | Debian Oval Importer | Affected by | VCID-vz46-gfhm-aaap | None | 36.0.0 |
2025-04-07T14:59:35.416561+00:00 | Debian Oval Importer | Affected by | VCID-1t6y-1zjy-aaae | None | 36.0.0 |
2025-04-07T14:58:22.624839+00:00 | Debian Oval Importer | Affected by | VCID-1h5d-fnug-aaac | None | 36.0.0 |
2025-04-07T14:54:51.233448+00:00 | Debian Oval Importer | Affected by | VCID-8xeh-vwwg-aaak | None | 36.0.0 |
2025-04-07T14:51:15.065492+00:00 | Debian Oval Importer | Affected by | VCID-uh6s-bvxe-aaaf | None | 36.0.0 |
2025-04-07T14:51:00.745365+00:00 | Debian Oval Importer | Affected by | VCID-fq1f-pcr9-aaak | None | 36.0.0 |
2025-04-07T14:49:39.202643+00:00 | Debian Oval Importer | Affected by | VCID-7y2m-nqcd-aaaj | None | 36.0.0 |
2025-04-07T14:42:54.912225+00:00 | Debian Oval Importer | Affected by | VCID-z6bg-hyhu-aaas | None | 36.0.0 |
2025-04-07T14:41:52.769616+00:00 | Debian Oval Importer | Affected by | VCID-9fjn-9378-aaae | None | 36.0.0 |
2025-04-07T14:40:13.314747+00:00 | Debian Oval Importer | Affected by | VCID-ceua-4xhz-aaag | None | 36.0.0 |
2025-04-07T14:39:56.256907+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | None | 36.0.0 |
2025-04-07T14:34:19.614658+00:00 | Debian Oval Importer | Affected by | VCID-e7ep-2kks-aaad | None | 36.0.0 |
2025-04-07T14:32:59.754275+00:00 | Debian Oval Importer | Affected by | VCID-ys3w-wua9-aaas | None | 36.0.0 |
2025-04-07T14:32:07.164941+00:00 | Debian Oval Importer | Affected by | VCID-9ruy-372r-aaas | None | 36.0.0 |
2025-04-07T14:23:58.212758+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | None | 36.0.0 |
2025-04-07T14:23:52.274865+00:00 | Debian Oval Importer | Affected by | VCID-qtbw-vpbp-aaaj | None | 36.0.0 |
2025-04-07T14:22:17.231572+00:00 | Debian Oval Importer | Affected by | VCID-vc4y-g9fg-aaak | None | 36.0.0 |
2025-04-07T14:18:54.922959+00:00 | Debian Oval Importer | Affected by | VCID-shkr-cjuz-aaad | None | 36.0.0 |
2025-04-07T14:11:37.135258+00:00 | Debian Oval Importer | Affected by | VCID-q9r2-dz2p-aaap | None | 36.0.0 |
2025-04-07T14:07:16.738391+00:00 | Debian Oval Importer | Affected by | VCID-jt2u-rn5q-aaap | None | 36.0.0 |
2025-04-07T14:04:38.323877+00:00 | Debian Oval Importer | Affected by | VCID-9few-spp9-aaag | None | 36.0.0 |
2025-04-07T14:04:35.480755+00:00 | Debian Oval Importer | Affected by | VCID-r7qs-74zt-aaab | None | 36.0.0 |
2025-04-07T14:02:41.928685+00:00 | Debian Oval Importer | Affected by | VCID-7z9b-u5c4-aaad | None | 36.0.0 |
2025-04-07T14:02:31.645469+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | None | 36.0.0 |
2025-04-07T14:00:53.507727+00:00 | Debian Oval Importer | Affected by | VCID-vqn2-4c3d-aaab | None | 36.0.0 |
2025-04-07T13:57:55.904544+00:00 | Debian Oval Importer | Affected by | VCID-vkda-645k-aaae | None | 36.0.0 |
2025-04-07T13:53:30.383900+00:00 | Debian Oval Importer | Affected by | VCID-w299-9hqt-aaan | None | 36.0.0 |
2025-04-07T13:51:59.816390+00:00 | Debian Oval Importer | Affected by | VCID-nx9u-49dk-aaag | None | 36.0.0 |
2025-04-07T13:47:08.084707+00:00 | Debian Oval Importer | Affected by | VCID-7zby-e6xb-aaan | None | 36.0.0 |
2025-04-07T13:46:37.787846+00:00 | Debian Oval Importer | Affected by | VCID-hzh3-5uc4-aaap | None | 36.0.0 |
2025-04-07T13:46:10.092216+00:00 | Debian Oval Importer | Affected by | VCID-bms1-jrax-aaap | None | 36.0.0 |
2025-04-07T13:45:46.375526+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | None | 36.0.0 |
2025-04-07T13:44:49.334629+00:00 | Debian Oval Importer | Affected by | VCID-agz8-77e4-aaaq | None | 36.0.0 |
2025-04-07T13:42:33.444955+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | None | 36.0.0 |
2025-04-07T13:42:25.640800+00:00 | Debian Oval Importer | Affected by | VCID-j8pb-xdpc-aaap | None | 36.0.0 |
2025-04-07T13:41:15.615541+00:00 | Debian Oval Importer | Affected by | VCID-sya7-pd7p-aaaa | None | 36.0.0 |
2025-04-07T13:36:09.336287+00:00 | Debian Oval Importer | Affected by | VCID-yrx6-rcrr-aaap | None | 36.0.0 |
2025-04-07T13:29:55.143707+00:00 | Debian Oval Importer | Affected by | VCID-qkh6-sakf-aaar | None | 36.0.0 |
2025-04-07T13:27:51.013598+00:00 | Debian Oval Importer | Affected by | VCID-w3xz-a1z2-aaaf | None | 36.0.0 |
2025-04-07T13:27:15.644812+00:00 | Debian Oval Importer | Affected by | VCID-52ea-drta-aaaa | None | 36.0.0 |
2025-04-07T13:26:43.962152+00:00 | Debian Oval Importer | Affected by | VCID-gydy-46kx-aaaf | None | 36.0.0 |
2025-04-07T13:25:33.769265+00:00 | Debian Oval Importer | Affected by | VCID-a12s-yyr4-aaad | None | 36.0.0 |
2025-04-07T13:23:53.738089+00:00 | Debian Oval Importer | Affected by | VCID-6cjv-xp17-aaah | None | 36.0.0 |
2025-04-07T13:19:29.141726+00:00 | Debian Oval Importer | Affected by | VCID-bsap-s527-aaaj | None | 36.0.0 |
2025-04-07T13:08:15.517857+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | None | 36.0.0 |
2025-04-07T13:08:12.094684+00:00 | Debian Oval Importer | Affected by | VCID-68v4-qbae-aaak | None | 36.0.0 |
2025-04-07T13:01:00.765590+00:00 | Debian Oval Importer | Affected by | VCID-z8sc-rus1-aaae | None | 36.0.0 |
2025-04-07T13:00:43.452035+00:00 | Debian Oval Importer | Affected by | VCID-6xd4-wjkk-aaak | None | 36.0.0 |
2025-04-07T12:59:56.659667+00:00 | Debian Oval Importer | Affected by | VCID-4qww-3wn9-aaag | None | 36.0.0 |
2025-04-07T12:54:47.872778+00:00 | Debian Oval Importer | Affected by | VCID-7e6q-x9ge-aaas | None | 36.0.0 |
2025-04-07T12:53:59.548394+00:00 | Debian Oval Importer | Affected by | VCID-w8mr-jycm-aaag | None | 36.0.0 |
2025-04-07T12:52:43.484767+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | None | 36.0.0 |
2025-04-07T12:49:46.714619+00:00 | Debian Oval Importer | Affected by | VCID-kna9-u4rt-aaar | None | 36.0.0 |
2025-04-07T12:46:46.757391+00:00 | Debian Oval Importer | Affected by | VCID-5g8u-a3pe-aaan | None | 36.0.0 |
2025-04-07T12:42:15.590147+00:00 | Debian Oval Importer | Affected by | VCID-y2q8-1hgf-aaak | None | 36.0.0 |
2025-04-07T12:30:06.893282+00:00 | Debian Oval Importer | Affected by | VCID-9cyz-en38-aaad | None | 36.0.0 |
2025-04-07T12:27:45.723902+00:00 | Debian Oval Importer | Affected by | VCID-1gxv-1j1x-aaag | None | 36.0.0 |
2025-04-07T12:24:17.420991+00:00 | Debian Oval Importer | Affected by | VCID-s758-gezj-aaan | None | 36.0.0 |
2025-04-07T12:18:24.544273+00:00 | Debian Oval Importer | Affected by | VCID-nuyz-b9da-aaam | None | 36.0.0 |
2025-04-07T12:16:30.402105+00:00 | Debian Oval Importer | Affected by | VCID-4hq6-j84v-aaan | None | 36.0.0 |
2025-04-07T12:13:02.785613+00:00 | Debian Oval Importer | Affected by | VCID-42tc-p92q-aaap | None | 36.0.0 |
2025-04-07T12:12:31.480084+00:00 | Debian Oval Importer | Affected by | VCID-kryh-pfgh-aaag | None | 36.0.0 |
2025-04-07T12:12:24.127856+00:00 | Debian Oval Importer | Affected by | VCID-jhg8-wbm2-aaas | None | 36.0.0 |
2025-04-07T12:06:21.267392+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | None | 36.0.0 |
2025-04-07T12:06:10.384635+00:00 | Debian Oval Importer | Affected by | VCID-77pn-m7ra-aaap | None | 36.0.0 |
2025-04-07T12:06:00.198352+00:00 | Debian Oval Importer | Affected by | VCID-zkqe-jrqc-aaab | None | 36.0.0 |
2025-04-07T12:05:31.328099+00:00 | Debian Oval Importer | Affected by | VCID-49hw-yjgb-aaab | None | 36.0.0 |
2025-04-07T12:04:43.209274+00:00 | Debian Oval Importer | Affected by | VCID-7rx2-n4hr-aaan | None | 36.0.0 |
2025-04-07T12:04:41.745121+00:00 | Debian Oval Importer | Affected by | VCID-88dn-xmg2-aaab | None | 36.0.0 |
2025-04-07T12:04:32.495864+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | None | 36.0.0 |
2025-04-07T12:04:01.674625+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | None | 36.0.0 |
2025-04-07T12:03:57.340080+00:00 | Debian Oval Importer | Affected by | VCID-2zab-6bzp-aaae | None | 36.0.0 |
2025-04-07T12:01:54.324967+00:00 | Debian Oval Importer | Affected by | VCID-t9zu-eqq1-aaag | None | 36.0.0 |
2025-04-07T12:01:32.436216+00:00 | Debian Oval Importer | Affected by | VCID-zenr-u2eq-aaap | None | 36.0.0 |
2025-04-07T12:00:50.345641+00:00 | Debian Oval Importer | Affected by | VCID-gp3a-7m39-aaam | None | 36.0.0 |
2025-04-07T12:00:45.920567+00:00 | Debian Oval Importer | Affected by | VCID-kay4-6j1g-aaas | None | 36.0.0 |
2025-04-07T12:00:40.153408+00:00 | Debian Oval Importer | Affected by | VCID-k2k5-a2cd-aaac | None | 36.0.0 |
2025-04-07T11:56:56.804600+00:00 | Debian Oval Importer | Affected by | VCID-75pz-sunt-aaaa | None | 36.0.0 |
2025-04-07T11:56:12.932144+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | None | 36.0.0 |
2025-04-07T11:55:45.662022+00:00 | Debian Oval Importer | Affected by | VCID-bydn-b3ub-aaah | None | 36.0.0 |
2025-04-07T11:55:18.625315+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | None | 36.0.0 |
2024-11-29T14:15:29.314736+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-29T14:11:53.045350+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-29T08:54:14.795357+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-29T01:08:43.838414+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-29T00:06:29.416512+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T23:09:17.373391+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T21:18:13.539820+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T19:41:52.653018+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T17:46:58.725627+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T17:27:15.277054+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T15:53:19.929722+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T15:26:18.740528+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T15:25:12.290435+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T14:04:11.478089+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T14:02:23.249157+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T11:16:32.480382+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T11:14:41.825097+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T07:21:28.729541+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T01:54:30.063594+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T01:35:44.484996+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-28T01:35:43.731786+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 35.0.0 |
2024-11-27T14:57:59.583922+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-11-26T11:29:36.473882+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-11-25T23:16:48.292261+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 35.0.0 |
2024-10-14T21:02:29.104674+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T20:59:09.844347+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T16:39:36.937100+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T08:54:42.393238+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T08:11:04.847173+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T07:31:05.419538+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T06:12:31.769775+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T04:49:37.011311+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T03:27:35.136485+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T03:13:04.383891+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T02:04:48.713872+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T01:45:01.672273+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T01:44:20.968857+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T00:47:52.142801+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-14T00:46:32.083374+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-13T22:50:19.400195+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-13T22:49:37.185978+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-13T20:00:51.558753+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-13T16:17:04.505826+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-13T16:05:09.472734+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-13T16:05:08.684269+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 34.0.2 |
2024-10-13T08:53:20.900967+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-10-12T14:14:24.434458+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-10-12T06:17:33.530189+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.2 |
2024-09-21T12:24:00.623984+00:00 | Debian Oval Importer | Affected by | VCID-8c1z-2ue1-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T12:21:40.045428+00:00 | Debian Oval Importer | Affected by | VCID-vu6d-q79f-aaaa | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T10:34:32.348866+00:00 | Debian Oval Importer | Affected by | VCID-9dxv-6zus-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T07:55:29.859960+00:00 | Debian Oval Importer | Affected by | VCID-tvpy-7bfy-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T07:34:25.362032+00:00 | Debian Oval Importer | Affected by | VCID-h9w2-2k7p-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T07:14:56.001271+00:00 | Debian Oval Importer | Affected by | VCID-qhb8-626k-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T06:37:42.392829+00:00 | Debian Oval Importer | Affected by | VCID-nzda-4crz-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T06:08:00.413508+00:00 | Debian Oval Importer | Affected by | VCID-phs7-u4c9-aaah | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T05:33:40.762118+00:00 | Debian Oval Importer | Affected by | VCID-8fnh-vemq-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T05:27:35.822486+00:00 | Debian Oval Importer | Affected by | VCID-ex38-peem-aaan | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T04:59:29.602197+00:00 | Debian Oval Importer | Affected by | VCID-5s8d-gm6u-aaam | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T04:51:52.282054+00:00 | Debian Oval Importer | Affected by | VCID-xtpm-4m3a-aaar | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T04:51:10.476018+00:00 | Debian Oval Importer | Affected by | VCID-av3z-72je-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T04:27:58.821394+00:00 | Debian Oval Importer | Affected by | VCID-fry5-vykr-aaac | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T04:27:17.187486+00:00 | Debian Oval Importer | Affected by | VCID-mhzv-sn7g-aaae | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T03:39:46.768633+00:00 | Debian Oval Importer | Affected by | VCID-nxs5-1vex-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T03:39:04.385061+00:00 | Debian Oval Importer | Affected by | VCID-d5n3-6bk2-aaag | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T02:29:29.443011+00:00 | Debian Oval Importer | Affected by | VCID-13e6-xxe5-aaas | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T00:54:39.424357+00:00 | Debian Oval Importer | Affected by | VCID-m9qa-4nzy-aaaf | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T00:50:15.096926+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-21T00:50:14.383961+00:00 | Debian Oval Importer | Affected by | VCID-z47s-afyn-aaak | https://www.debian.org/security/oval/oval-definitions-wheezy.xml.bz2 | 34.0.1 |
2024-09-20T21:52:53.662633+00:00 | Debian Oval Importer | Affected by | VCID-t7yk-yxfk-aaaj | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |
2024-09-20T15:24:16.745891+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 |
2024-09-20T13:09:30.943994+00:00 | Debian Oval Importer | Affected by | VCID-smk6-cmv3-aaad | https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 | 34.0.1 |