diff --git a/requirements.txt b/requirements.txt index 757246715..1c0e0ba98 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ cached-property==1.5.1 cffi==1.14.0 contextlib2==0.5.5 decorator==4.4.2 -univers==21.4.8 +univers==21.4.16.6 dj-database-url==0.4.2 Django==3.0.14 django-filter==2.2.0 diff --git a/vulnerabilities/admin.py b/vulnerabilities/admin.py index 6e5e04a53..71e638a53 100644 --- a/vulnerabilities/admin.py +++ b/vulnerabilities/admin.py @@ -51,7 +51,7 @@ class PackageAdmin(admin.ModelAdmin): @admin.register(PackageRelatedVulnerability) class PackageRelatedVulnerabilityAdmin(admin.ModelAdmin): - list_filter = ("is_vulnerable", "package__type", "package__namespace") + list_filter = ("package__type", "package__namespace") search_fields = ["vulnerability__vulnerability_id", "package__name"] diff --git a/vulnerabilities/data_source.py b/vulnerabilities/data_source.py index 3010eea9e..136bce914 100644 --- a/vulnerabilities/data_source.py +++ b/vulnerabilities/data_source.py @@ -20,7 +20,6 @@ # VulnerableCode is a free software code scanning tool from nexB Inc. and others. # Visit https://github.com/nexB/vulnerablecode/ for support and download. -import pickle import dataclasses import logging import os @@ -47,6 +46,8 @@ from vulnerabilities.oval_parser import OvalParser from vulnerabilities.severity_systems import ScoringSystem from vulnerabilities.helpers import is_cve +from vulnerabilities.helpers import nearest_patched_package +from vulnerabilities.helpers import AffectedPackage logger = logging.getLogger(__name__) @@ -87,8 +88,7 @@ class Advisory: summary: str vulnerability_id: Optional[str] = None - impacted_package_urls: Iterable[PackageURL] = dataclasses.field(default_factory=list) - resolved_package_urls: Iterable[PackageURL] = dataclasses.field(default_factory=list) + affected_packages: List[AffectedPackage] = dataclasses.field(default_factory=list) references: List[Reference] = dataclasses.field(default_factory=list) def __post_init__(self): @@ -96,8 +96,6 @@ def __post_init__(self): raise ValueError("CVE expected, found: {}".format(self.vulnerability_id)) def normalized(self): - impacted_package_urls = {package_url for package_url in self.impacted_package_urls} - resolved_package_urls = {package_url for package_url in self.resolved_package_urls} references = sorted( self.references, key=lambda reference: (reference.reference_id, reference.url) ) @@ -107,8 +105,7 @@ def normalized(self): return Advisory( summary=self.summary, vulnerability_id=self.vulnerability_id, - impacted_package_urls=impacted_package_urls, - resolved_package_urls=resolved_package_urls, + affected_packages=sorted(self.affected_packages), references=references, ) @@ -531,9 +528,8 @@ def get_data_from_xml_doc(self, xml_doc: ET.ElementTree, pkg_metadata={}) -> Lis # connected/linked to an OvalDefinition vuln_id = definition_data["vuln_id"] description = definition_data["description"] - affected_purls = set() - safe_purls = set() references = [Reference(url=url) for url in definition_data["reference_urls"]] + affected_packages = [] for test_data in definition_data["test_data"]: for package_name in test_data["package_list"]: if package_name and len(package_name) >= 50: @@ -552,35 +548,31 @@ def get_data_from_xml_doc(self, xml_doc: ET.ElementTree, pkg_metadata={}) -> Lis # FIXME: we should not drop data this way # This filter is for filtering out long versions. # 50 is limit because that's what db permits atm. - all_versions = set(filter(lambda x: len(x) < 50, all_versions)) + all_versions = [version for version in all_versions if len(version) < 50] if not all_versions: continue - affected_versions = set( - filter(lambda x: version_class(x) in affected_version_range, all_versions) - ) - safe_versions = all_versions - affected_versions - for version in affected_versions: + affected_purls = [] + safe_purls = [] + for version in all_versions: purl = self.create_purl( pkg_name=package_name, pkg_version=version, pkg_data=pkg_metadata, ) - affected_purls.add(purl) + if version_class(version) in affected_version_range: + affected_purls.append(purl) + else: + safe_purls.append(purl) - for version in safe_versions: - purl = self.create_purl( - pkg_name=package_name, - pkg_version=version, - pkg_data=pkg_metadata, - ) - safe_purls.add(purl) + affected_packages.extend( + nearest_patched_package(affected_purls, safe_purls), + ) all_adv.append( Advisory( summary=description, - impacted_package_urls=affected_purls, - resolved_package_urls=safe_purls, + affected_packages=affected_packages, vulnerability_id=vuln_id, references=references, ) diff --git a/vulnerabilities/fixtures/debian.json b/vulnerabilities/fixtures/debian.json index 31163444f..9b0e3ddf3 100644 --- a/vulnerabilities/fixtures/debian.json +++ b/vulnerabilities/fixtures/debian.json @@ -1,110 +1,89 @@ [ -{ - "model": "vulnerabilities.vulnerability", - "pk": 1, - "fields": { - "vulnerability_id": "CVE-2014-8242", - "summary": "" - + { + "model": "vulnerabilities.vulnerability", + "pk": 1, + "fields": { + "vulnerability_id": "CVE-2014-8242", + "old_vulnerability_id": null, + "summary": "" + } + }, + { + "model": "vulnerabilities.vulnerability", + "pk": 2, + "fields": { + "vulnerability_id": "CVE-2009-1382", + "old_vulnerability_id": null, + "summary": "" + } + }, + { + "model": "vulnerabilities.vulnerability", + "pk": 3, + "fields": { + "vulnerability_id": "CVE-2009-2459", + "old_vulnerability_id": null, + "summary": "" + } + }, + { + "model": "vulnerabilities.package", + "pk": 1, + "fields": { + "type": "deb", + "namespace": "debian", + "name": "librsync", + "version": "0.9.7-10", + "subpath": "", + "qualifiers": { + "distro": "jessie" + } + } + }, + { + "model": "vulnerabilities.package", + "pk": 2, + "fields": { + "type": "deb", + "namespace": "debian", + "name": "mimetex", + "version": "1.74-1", + "subpath": "", + "qualifiers": { + "distro": "jessie" + } + } + }, + { + "model": "vulnerabilities.package", + "pk": 3, + "fields": { + "type": "deb", + "namespace": "debian", + "name": "mimetex", + "version": "1.50-1.1", + "subpath": "", + "qualifiers": { + "distro": "jessie" + } + } + }, + { + "model": "vulnerabilities.packagerelatedvulnerability", + "pk": 1, + "fields": { + "package": 1, + "vulnerability": 1, + "patched_package": null + } + }, + { + "model": "vulnerabilities.packagerelatedvulnerability", + "pk": 4, + "fields": { + "package": 3, + "vulnerability": 3, + "patched_package": 2 + } } -}, -{ - "model": "vulnerabilities.vulnerability", - "pk": 2, - "fields": { - "vulnerability_id": "CVE-2009-1382", - "summary": "" - - } -}, -{ - "model": "vulnerabilities.vulnerability", - "pk": 3, - "fields": { - "vulnerability_id": "CVE-2009-2459", - "summary": "" - - } -}, -{ - "model": "vulnerabilities.package", - "pk": 1, - "fields": { - "type": "deb", - "namespace": "debian", - "name": "librsync", - "version": "0.9.7-10", - "qualifiers": {"distro":"jessie"}, - "subpath": "" - } -}, -{ - "model": "vulnerabilities.package", - "pk": 2, - "fields": { - "type": "deb", - "namespace": "debian", - "name": "mimetex", - "version": "1.74-1", - "qualifiers": {"distro":"jessie"}, - "subpath": "" - } -}, -{ - "model": "vulnerabilities.package", - "pk": 3, - "fields": { - "type": "deb", - "namespace": "debian", - "name": "mimetex", - "version": "1.50-1.1", - "qualifiers": {"distro":"jessie"}, - "subpath": "" - } -}, -{ - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 1, - "fields": { - "vulnerability": 1, - "package": 1, - "is_vulnerable": true - } -}, -{ - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 10, - "fields": { - "vulnerability": 2, - "package": 2, - "is_vulnerable": false - } -}, -{ - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 2, - "fields": { - "vulnerability": 2, - "package": 3, - "is_vulnerable": false - } -}, -{ - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3, - "fields": { - "vulnerability": 3, - "package": 2, - "is_vulnerable": false - } -}, -{ - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4, - "fields": { - "vulnerability": 3, - "package": 3, - "is_vulnerable": false - } -} -] +] \ No newline at end of file diff --git a/vulnerabilities/fixtures/github.json b/vulnerabilities/fixtures/github.json index 11c9423c2..76511570c 100644 --- a/vulnerabilities/fixtures/github.json +++ b/vulnerabilities/fixtures/github.json @@ -74,22 +74,13 @@ "qualifiers": {} } }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3844, - "fields": { - "package": 3469, - "vulnerability": 60, - "is_vulnerable": false - } - }, { "model": "vulnerabilities.packagerelatedvulnerability", "pk": 3845, "fields": { "package": 3467, "vulnerability": 60, - "is_vulnerable": true + "patched_package": 3469 } }, { @@ -98,7 +89,7 @@ "fields": { "package": 3468, "vulnerability": 60, - "is_vulnerable": true + "patched_package": 3469 } }, { diff --git a/vulnerabilities/fixtures/openssl.json b/vulnerabilities/fixtures/openssl.json index 0976eaa1b..5e2004030 100644 --- a/vulnerabilities/fixtures/openssl.json +++ b/vulnerabilities/fixtures/openssl.json @@ -4,6 +4,7 @@ "pk": 293, "fields": { "vulnerability_id": "CVE-2018-5407", + "old_vulnerability_id": null, "summary": "OpenSSL ECC scalar multiplication, used in e.g. ECDSA and ECDH, has been shown to be vulnerable to a microarchitecture timing side channel attack. An attacker with sufficient access to mount local timing attacks during ECDSA signature generation could recover the private key." } }, @@ -12,6 +13,7 @@ "pk": 294, "fields": { "vulnerability_id": "CVE-2019-1549", + "old_vulnerability_id": null, "summary": "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 i significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all." } }, @@ -20,6 +22,7 @@ "pk": 295, "fields": { "vulnerability_id": "CVE-2020-1967", + "old_vulnerability_id": null, "summary": "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 thi issue. This issue did not affect OpenSSL versions prior to 1.1.1d." } }, @@ -28,6 +31,7 @@ "pk": 296, "fields": { "vulnerability_id": "CVE-2019-1552", + "old_vulnerability_id": null, "summary": "OpenSSL has internal defaults for a directory tree where it can find a configuration file as well as certificates used for verification in TLS. This directory is most commonly referred to as OPENSSLDIR, and is configurable with the --prefix / --openssldir configuration options. For OpenSSL versions 1.1.0 and 1.1.1, the mingw configuration targets assume that resulting programs and libraries are installed in a Unix-like environment and the default prefix for progra installation as well as for OPENSSLDIR should be '/usr/local'. However, mingw programs are Windows programs, and as such, find themselves looking at sub-directories of 'C:/usr/local', which may be world writable, which enables untrusted users to modify OpenSSL's default configuration, insert CA certificates, modify (or even replace) existing engine modules, etc. For OpenSSL 1.0.2, '/usr/local/ssl' is used as default for OPENSSLDIR on all Unix and Windows targets, including Visual C builds. However, some build instructions for the diverse Windows targets on 1.0.2 encourage you to specify your own --prefix. OpenSSL versions 1.1.1, 1.1.0 and 1.0.2 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." } }, @@ -36,6 +40,7 @@ "pk": 297, "fields": { "vulnerability_id": "CVE-2019-1551", + "old_vulnerability_id": null, "summary": "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 recommende anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME." } }, @@ -44,6 +49,7 @@ "pk": 298, "fields": { "vulnerability_id": "CVE-2019-1543", + "old_vulnerability_id": null, "summary": "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 requiremen 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." } }, @@ -52,6 +58,7 @@ "pk": 299, "fields": { "vulnerability_id": "CVE-2020-1968", + "old_vulnerability_id": null, "summary": "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 onl 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." } }, @@ -60,6 +67,7 @@ "pk": 300, "fields": { "vulnerability_id": "CVE-2019-1547", + "old_vulnerability_id": null, "summary": "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 cod 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." } }, @@ -68,6 +76,7 @@ "pk": 301, "fields": { "vulnerability_id": "CVE-2019-1563", + "old_vulnerability_id": null, "summary": "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 th CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt." } }, @@ -76,6 +85,7 @@ "pk": 302, "fields": { "vulnerability_id": "CVE-2019-1559", + "old_vulnerability_id": null, "summary": "If an application encounters a fatal protocol error and then calls SSL_shutdown() twice (once to send a close_notify, and once to receive one) then OpenSSL can respond differently to the calling application if a 0 byte record is received with invalid padding compared to if a 0 byte record is received with an invalid MAC. If the application then behaves differently based on that in a way that is detectable to the remote peer, then this amounts to a padding oracle tha could be used to decrypt data. In order for this to be exploitable \"non-stitched\" ciphersuites must be in use. Stitched ciphersuites are optimised implementations of certain commonly used ciphersuites. Also the application must call SSL_shutdown() twice even if a protocol error has occurred (applications should not do this but some do anyway). AEAD ciphersuites are not impacted." } }, @@ -84,6 +94,7 @@ "pk": 303, "fields": { "vulnerability_id": "CVE-2017-3738", + "old_vulnerability_id": null, "summary": "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 resource 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. 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." } }, @@ -92,6 +103,7 @@ "pk": 304, "fields": { "vulnerability_id": "CVE-2017-3735", + "old_vulnerability_id": null, "summary": "While parsing an IPAdressFamily 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." } }, @@ -100,6 +112,7 @@ "pk": 305, "fields": { "vulnerability_id": "CVE-2018-0733", + "old_vulnerability_id": null, "summary": "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." } }, @@ -108,6 +121,7 @@ "pk": 306, "fields": { "vulnerability_id": "CVE-2017-3737", + "old_vulnerability_id": null, "summary": "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 calle 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." } }, @@ -116,6 +130,7 @@ "pk": 307, "fields": { "vulnerability_id": "CVE-2018-0735", + "old_vulnerability_id": null, "summary": "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." } }, @@ -124,6 +139,7 @@ "pk": 308, "fields": { "vulnerability_id": "CVE-2017-3736", + "old_vulnerability_id": null, "summary": "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 a 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." } }, @@ -132,6 +148,7 @@ "pk": 309, "fields": { "vulnerability_id": "CVE-2018-0737", + "old_vulnerability_id": null, "summary": "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." } }, @@ -140,6 +157,7 @@ "pk": 310, "fields": { "vulnerability_id": "CVE-2018-0739", + "old_vulnerability_id": null, "summary": "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." } }, @@ -148,6 +166,7 @@ "pk": 311, "fields": { "vulnerability_id": "CVE-2018-0734", + "old_vulnerability_id": null, "summary": "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." } }, @@ -156,6 +175,7 @@ "pk": 312, "fields": { "vulnerability_id": "CVE-2018-0732", + "old_vulnerability_id": null, "summary": "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." } }, @@ -164,6 +184,7 @@ "pk": 313, "fields": { "vulnerability_id": "CVE-2017-3732", + "old_vulnerability_id": null, "summary": "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 a 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." } }, @@ -172,6 +193,7 @@ "pk": 314, "fields": { "vulnerability_id": "CVE-2017-3733", + "old_vulnerability_id": null, "summary": "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." } }, @@ -180,6 +202,7 @@ "pk": 315, "fields": { "vulnerability_id": "CVE-2016-7053", + "old_vulnerability_id": null, "summary": "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." } }, @@ -188,6 +211,7 @@ "pk": 316, "fields": { "vulnerability_id": "CVE-2017-3730", + "old_vulnerability_id": null, "summary": "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." } }, @@ -196,6 +220,7 @@ "pk": 317, "fields": { "vulnerability_id": "CVE-2016-7052", + "old_vulnerability_id": null, "summary": "This issue only affects OpenSSL 1.0.2i, released on 22nd September 2016. A bug fix which included a CRL sanity check was added to OpenSSL 1.1.0 but was omitted from OpenSSL 1.0.2i. As a result any attempt to use CRLs in OpenSSL 1.0.2i will crash with a null pointer exception." } }, @@ -204,6 +229,7 @@ "pk": 318, "fields": { "vulnerability_id": "CVE-2016-6304", + "old_vulnerability_id": null, "summary": "A malicious client can send an excessively large OCSP Status Request extension. If that client continually requests renegotiation, sending a large OCSP Status Request extension each time, then there will be unbounded memory growth on the server. This will eventually lead to a Denial Of Service attack through memory exhaustion. Servers with a default configuration are vulnerable even if they do not support OCSP. Builds using the \"no-ocsp\" build time option are no affected. Servers using OpenSSL versions prior to 1.0.1g are not vulnerable in a default configuration, instead only if an application explicitly enables OCSP stapling support." } }, @@ -212,6 +238,7 @@ "pk": 319, "fields": { "vulnerability_id": "CVE-2016-7054", + "old_vulnerability_id": null, "summary": "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." } }, @@ -220,6 +247,7 @@ "pk": 320, "fields": { "vulnerability_id": "CVE-2016-6309", + "old_vulnerability_id": null, "summary": "This issue only affects OpenSSL 1.1.0a, released on 22nd September 2016. The patch applied to address CVE-2016-6307 resulted in an issue where if a message larger than approx 16k is received then the underlying buffer to store the incoming message is reallocated and moved. Unfortunately a dangling pointer to the old location is left which results in an attempt to write to the previously freed location. This is likely to result in a crash, however it could potentiall lead to execution of arbitrary code." } }, @@ -228,6 +256,7 @@ "pk": 321, "fields": { "vulnerability_id": "CVE-2017-3731", + "old_vulnerability_id": null, "summary": "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" } }, @@ -236,6 +265,7 @@ "pk": 322, "fields": { "vulnerability_id": "CVE-2016-7055", + "old_vulnerability_id": null, "summary": "There is a carry propagating bug in the Broadwell-specific Montgomery multiplication procedure 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 negotiatio 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." } }, @@ -244,6 +274,7 @@ "pk": 323, "fields": { "vulnerability_id": "CVE-2016-6302", + "old_vulnerability_id": null, "summary": "If a server uses SHA512 for TLS session ticket HMAC it is vulnerable to a DoS attack where a malformed ticket will result in an OOB read which will ultimately crash. The use of SHA512 in TLS session tickets is comparatively rare as it requires a custom server callback and ticket lookup mechanism." } }, @@ -252,6 +283,7 @@ "pk": 324, "fields": { "vulnerability_id": "CVE-2016-2182", + "old_vulnerability_id": null, "summary": "The function BN_bn2dec() does not check the return value of BN_div_word(). This can cause an OOB write if an application uses this function with an overly large BIGNUM. This could be a problem if an overly large certificate or CRL is printed out from an untrusted source. TLS is not affected because record limits will reject an oversized certificate before it is parsed." } }, @@ -260,6 +292,7 @@ "pk": 325, "fields": { "vulnerability_id": "CVE-2016-2180", + "old_vulnerability_id": null, "summary": "The function TS_OBJ_print_bio() misuses OBJ_obj2txt(): the return value is the total length the OID text representation would use and not the amount of data written. This will result in OOB reads when large OIDs are presented." } }, @@ -268,6 +301,7 @@ "pk": 326, "fields": { "vulnerability_id": "CVE-2016-2178", + "old_vulnerability_id": null, "summary": "Operations in the DSA signing algorithm should run in constant time in order to avoid side channel attacks. A flaw in the OpenSSL DSA implementation means that a non-constant time codepath is followed for certain operations. This has been demonstrated through a cache-timing attack to be sufficient for an attacker to recover the private DSA key." } }, @@ -276,6 +310,7 @@ "pk": 327, "fields": { "vulnerability_id": "CVE-2016-6305", + "old_vulnerability_id": null, "summary": "OpenSSL 1.1.0 SSL/TLS will hang during a call to SSL_peek() if the peer sends an empty record. This could be exploited by a malicious peer in a Denial Of Service attack." } }, @@ -284,6 +319,7 @@ "pk": 328, "fields": { "vulnerability_id": "CVE-2016-6306", + "old_vulnerability_id": null, "summary": "In OpenSSL 1.0.2 and earlier some missing message length checks can result in OOB reads of up to 2 bytes beyond an allocated buffer. There is a theoretical DoS risk but this has not been observed in practice on common platforms. The messages affected are client certificate, client certificate request and server certificate. As a result the attack can only be performed against a client or a server which enables client authentication." } }, @@ -292,6 +328,7 @@ "pk": 329, "fields": { "vulnerability_id": "CVE-2016-2181", + "old_vulnerability_id": null, "summary": "A flaw in the DTLS replay attack protection mechanism means that records that arrive for future epochs update the replay protection \"window\" before the MAC for the record has been validated. This could be exploited by an attacker by sending a record for the next epoch (which does not have to decrypt or have a valid MAC), with a very large sequence number. This means that all subsequent legitimate packets are dropped causing a denial of service for a specific DTL connection." } }, @@ -300,6 +337,7 @@ "pk": 330, "fields": { "vulnerability_id": "CVE-2016-2179", + "old_vulnerability_id": null, "summary": "In a DTLS connection where handshake messages are delivered out-of-order those messages that OpenSSL is not yet ready to process will be buffered for later use. Under certain circumstances, a flaw in the logic means that those messages do not get removed from the buffer even though the handshake has been completed. An attacker could force up to approx. 15 messages to remain in the buffer when they are no longer required. These messages will be cleared when the DTL connection is closed. The default maximum size for a message is 100k. Therefore the attacker could force an additional 1500k to be consumed per connection. By opening many simulataneous connections an attacker could cause a DoS attack through memory exhaustion." } }, @@ -308,6 +346,7 @@ "pk": 331, "fields": { "vulnerability_id": "CVE-2016-2177", + "old_vulnerability_id": null, "summary": "Avoid some undefined pointer arithmetic A common idiom in the codebase is to check limits in the following manner: \"p + len > limit\" Where \"p\" points to some malloc'd data of SIZE bytes and limit == p + SIZE \"len\" here could be from some externally supplied data (e.g. from a TLS message). The rules of C pointer arithmetic are such that \"p + len\" is only well defined where len <= SIZE. Therefore the above idiom is actually undefined behaviour. For example thi could cause problems if some malloc implementation provides an address for \"p\" such that \"p + len\" actually overflows for values of len that are too big and therefore p + len < limit." } }, @@ -316,6 +355,7 @@ "pk": 332, "fields": { "vulnerability_id": "CVE-2016-6303", + "old_vulnerability_id": null, "summary": "An overflow can occur in MDC2_Update() either if called directly or through the EVP_DigestUpdate() function using MDC2. If an attacker is able to supply very large amounts of input data after a previous call to EVP_EncryptUpdate() with a partial block then a length check can overflow resulting in a heap corruption. The amount of data needed is comparable to SIZE_MAX which is impractical on most platforms." } }, @@ -324,6 +364,7 @@ "pk": 333, "fields": { "vulnerability_id": "CVE-2016-2106", + "old_vulnerability_id": null, "summary": "An overflow can occur in the EVP_EncryptUpdate() function. If an attacker is able to supply very large amounts of input data after a previous call to EVP_EncryptUpdate() with a partial block then a length check can overflow resulting in a heap corruption. Following an analysis of all OpenSSL internal usage of the EVP_EncryptUpdate() function all usage is one of two forms. The first form is where the EVP_EncryptUpdate() call is known to be the first called function afte an EVP_EncryptInit(), and therefore that specific call must be safe. The second form is where the length passed to EVP_EncryptUpdate() can be seen from the code to be some small value and therefore there is no possibility of an overflow. Since all instances are one of these two forms, it is believed that there can be no overflows in internal code due to this problem. It should be noted that EVP_DecryptUpdate() can call EVP_EncryptUpdate() in certain code paths. Also EVP_CipherUpdate() is a synonym for EVP_EncryptUpdate(). All instances of these calls have also been analysed too and it is believed there are no instances in internal usage where an overflow could occur. This could still represent a security issue for end user code that calls this function directly." } }, @@ -332,6 +373,7 @@ "pk": 334, "fields": { "vulnerability_id": "CVE-2016-6308", + "old_vulnerability_id": null, "summary": "A DTLS message includes 3 bytes for its length in the header for the message. This would allow for messages up to 16Mb in length. Messages of this length are excessive and OpenSSL includes a check to ensure that a peer is sending reasonably sized messages in order to avoid too much memory being consumed to service a connection. A flaw in the logic of version 1.1.0 means that memory for the message is allocated too early, prior to the excessive message length check. Du to way memory is allocated in OpenSSL this could mean an attacker could force up to 21Mb to be allocated to service a connection. This could lead to a Denial of Service through memory exhaustion. However, the excessive message length check still takes place, and this would cause the connection to immediately fail. Assuming that the application calls SSL_free() on the failed conneciton in a timely manner then the 21Mb of allocated memory will then be immediately freed again. Therefore the excessive memory allocation will be transitory in nature. This then means that there is only a security impact if: 1) The application does not call SSL_free() in a timely manner in the event that the connection fails or 2) The application is working in a constrained environment where there is very little free memory or 3) The attacker initiates multiple connection attempts such that there are multiple connections in a state where memory has been allocated for the connection; SSL_free() has not yet been called; and there is insufficient memory to service the multiple requests. Except in the instance of (1) above any Denial Of Service is likely to be transitory because as soon as the connection fails the memory is subsequently freed again in the SSL_free() call. However there is an increased risk during this period of application crashes due to the lack of memory - which would then mean a more serious Denial of Service." } }, @@ -340,6 +382,7 @@ "pk": 335, "fields": { "vulnerability_id": "CVE-2016-6307", + "old_vulnerability_id": null, "summary": "A TLS message includes 3 bytes for its length in the header for the message. This would allow for messages up to 16Mb in length. Messages of this length are excessive and OpenSSL includes a check to ensure that a peer is sending reasonably sized messages in order to avoid too much memory being consumed to service a connection. A flaw in the logic of version 1.1.0 means that memory for the message is allocated too early, prior to the excessive message length check. Due t way memory is allocated in OpenSSL this could mean an attacker could force up to 21Mb to be allocated to service a connection. This could lead to a Denial of Service through memory exhaustion. However, the excessive message length check still takes place, and this would cause the connection to immediately fail. Assuming that the application calls SSL_free() on the failed conneciton in a timely manner then the 21Mb of allocated memory will then be immediately freed again. Therefore the excessive memory allocation will be transitory in nature. This then means that there is only a security impact if: 1) The application does not call SSL_free() in a timely manner in the event that the connection fails or 2) The application is working in a constrained environment where there is very little free memory or 3) The attacker initiates multiple connection attempts such that there are multiple connections in a state where memory has been allocated for the connection; SSL_free() has not yet been called; and there is insufficient memory to service the multiple requests. Except in the instance of (1) above any Denial Of Service is likely to be transitory because as soon as the connection fails the memory is subsequently freed again in the SSL_free() call. However there is an increased risk during this period of application crashes due to the lack of memory - which would then mean a more serious Denial of Service." } }, @@ -348,6 +391,7 @@ "pk": 336, "fields": { "vulnerability_id": "CVE-2016-2109", + "old_vulnerability_id": null, "summary": "When ASN.1 data is read from a BIO using functions such as d2i_CMS_bio() a short invalid encoding can casuse allocation of large amounts of memory potentially consuming excessive resources or exhausting memory. Any application parsing untrusted data through d2i BIO functions is affected. The memory based functions such as d2i_X509() are *not* affected. Since the memory based functions are used by the TLS library, TLS applications are not affected." } }, @@ -356,6 +400,7 @@ "pk": 337, "fields": { "vulnerability_id": "CVE-2016-2107", + "old_vulnerability_id": null, "summary": "A MITM attacker can use a padding oracle attack to decrypt traffic when the connection uses an AES CBC cipher and the server support AES-NI. This issue was introduced as part of the fix for Lucky 13 padding attack (CVE-2013-0169). The padding check was rewritten to be in constant time by making sure that always the same bytes are read and compared against either the MAC or padding bytes. But it no longer checked that there was enough data to have both the MAC and paddin bytes." } }, @@ -364,6 +409,7 @@ "pk": 338, "fields": { "vulnerability_id": "CVE-2016-0705", + "old_vulnerability_id": null, "summary": "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." } }, @@ -372,6 +418,7 @@ "pk": 339, "fields": { "vulnerability_id": "CVE-2016-2108", + "old_vulnerability_id": null, "summary": "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 \"negativ 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." } }, @@ -380,6 +427,7 @@ "pk": 340, "fields": { "vulnerability_id": "CVE-2016-2105", + "old_vulnerability_id": null, "summary": "An overflow can occur in the EVP_EncodeUpdate() function which is used for Base64 encoding of binary data. If an attacker is able to supply very large amounts of input data then a length check can overflow resulting in a heap corruption. Internally to OpenSSL the EVP_EncodeUpdate() function is primarly used by the PEM_write_bio* family of functions. These are mainly used within the OpenSSL command line applications. These internal uses are not considered vulnerabl because all calls are bounded with length checks so no overflow is possible. User applications that call these APIs directly with large amounts of untrusted data may be vulnerable. (Note: Initial analysis suggested that the PEM_write_bio* were vulnerable, and this is reflected in the patch commit message. This is no longer believed to be the case)." } }, @@ -388,6 +436,7 @@ "pk": 341, "fields": { "vulnerability_id": "CVE-2016-2176", + "old_vulnerability_id": null, "summary": "ASN1 Strings that are over 1024 bytes can cause an overread in applications using the X509_NAME_oneline() function on EBCDIC systems. This could result in arbitrary stack data being returned in the buffer." } }, @@ -396,6 +445,7 @@ "pk": 342, "fields": { "vulnerability_id": "CVE-2016-0800", + "old_vulnerability_id": null, "summary": "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 (CV-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." } }, @@ -404,6 +454,7 @@ "pk": 343, "fields": { "vulnerability_id": "CVE-2016-0703", + "old_vulnerability_id": null, "summary": "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 t 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." } }, @@ -412,6 +463,7 @@ "pk": 344, "fields": { "vulnerability_id": "CVE-2016-0799", + "old_vulnerability_id": null, "summary": "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 allocate 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." } }, @@ -420,6 +472,7 @@ "pk": 345, "fields": { "vulnerability_id": "CVE-2015-3193", + "old_vulnerability_id": null, "summary": "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 a 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." } }, @@ -428,6 +481,7 @@ "pk": 346, "fields": { "vulnerability_id": "CVE-2016-0704", + "old_vulnerability_id": null, "summary": "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." } }, @@ -436,6 +490,7 @@ "pk": 347, "fields": { "vulnerability_id": "CVE-2015-3197", + "old_vulnerability_id": null, "summary": "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." } }, @@ -444,6 +499,7 @@ "pk": 348, "fields": { "vulnerability_id": "CVE-2015-1794", + "old_vulnerability_id": null, "summary": "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." } }, @@ -452,6 +508,7 @@ "pk": 349, "fields": { "vulnerability_id": "CVE-2016-0798", + "old_vulnerability_id": null, "summary": "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 pe 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." } }, @@ -460,6 +517,7 @@ "pk": 350, "fields": { "vulnerability_id": "CVE-2016-0797", + "old_vulnerability_id": null, "summary": "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 i 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." } }, @@ -468,6 +526,7 @@ "pk": 351, "fields": { "vulnerability_id": "CVE-2016-0701", + "old_vulnerability_id": null, "summary": "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 require 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." } }, @@ -476,6 +535,7 @@ "pk": 352, "fields": { "vulnerability_id": "CVE-2016-0702", + "old_vulnerability_id": null, "summary": "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." } }, @@ -484,6 +544,7 @@ "pk": 353, "fields": { "vulnerability_id": "CVE-2015-3196", + "old_vulnerability_id": null, "summary": "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." } }, @@ -492,6 +553,7 @@ "pk": 354, "fields": { "vulnerability_id": "CVE-2015-1793", + "old_vulnerability_id": null, "summary": "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." } }, @@ -500,6 +562,7 @@ "pk": 355, "fields": { "vulnerability_id": "CVE-2015-3195", + "old_vulnerability_id": null, "summary": "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." } }, @@ -508,6 +571,7 @@ "pk": 356, "fields": { "vulnerability_id": "CVE-2015-1792", + "old_vulnerability_id": null, "summary": "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." } }, @@ -516,6 +580,7 @@ "pk": 357, "fields": { "vulnerability_id": "CVE-2015-1790", + "old_vulnerability_id": null, "summary": "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." } }, @@ -524,6 +589,7 @@ "pk": 358, "fields": { "vulnerability_id": "CVE-2015-1788", + "old_vulnerability_id": null, "summary": "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." } }, @@ -532,6 +598,7 @@ "pk": 359, "fields": { "vulnerability_id": "CVE-2015-1789", + "old_vulnerability_id": null, "summary": "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 server with client authentication enabled may be affected if they use custom verification callbacks." } }, @@ -540,6 +607,7 @@ "pk": 360, "fields": { "vulnerability_id": "CVE-2014-8176", + "old_vulnerability_id": null, "summary": "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." } }, @@ -548,6 +616,7 @@ "pk": 361, "fields": { "vulnerability_id": "CVE-2015-1791", + "old_vulnerability_id": null, "summary": "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." } }, @@ -556,6 +625,7 @@ "pk": 362, "fields": { "vulnerability_id": "CVE-2015-3194", + "old_vulnerability_id": null, "summary": "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 whic enable client authentication." } }, @@ -564,6 +634,7 @@ "pk": 363, "fields": { "vulnerability_id": "CVE-2015-0293", + "old_vulnerability_id": null, "summary": "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." } }, @@ -572,6 +643,7 @@ "pk": 364, "fields": { "vulnerability_id": "CVE-2015-0292", + "old_vulnerability_id": null, "summary": "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." } }, @@ -580,6 +652,7 @@ "pk": 365, "fields": { "vulnerability_id": "CVE-2015-0287", + "old_vulnerability_id": null, "summary": "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." } }, @@ -588,6 +661,7 @@ "pk": 366, "fields": { "vulnerability_id": "CVE-2015-0286", + "old_vulnerability_id": null, "summary": "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." } }, @@ -596,6 +670,7 @@ "pk": 367, "fields": { "vulnerability_id": "CVE-2015-0208", + "old_vulnerability_id": null, "summary": "Segmentation fault for invalid PSS parameters. The signature verification routines will crash with a NULL pointer dereference if presented with an ASN.1 signature using the RSA PSS algorithm and invalid parameters. 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 OpenSS clients and servers which enable client authentication." } }, @@ -604,6 +679,7 @@ "pk": 368, "fields": { "vulnerability_id": "CVE-2015-0207", + "old_vulnerability_id": null, "summary": "Segmentation fault in DTLSv1_listen. A defect in the implementation of DTLSv1_listen means that state is preserved in the SSL object from one invocation to the next that can lead to a segmentation fault. Errors processing the initial ClientHello can trigger this scenario. An example of such an error could be that a DTLS1.0 only client is attempting to connect to a DTLS1.2 only server." } }, @@ -612,6 +688,7 @@ "pk": 369, "fields": { "vulnerability_id": "CVE-2015-1787", + "old_vulnerability_id": null, "summary": "Empty CKE with client auth and DHE. If client auth is used then a server can seg fault in the event of a DHE ciphersuite being selected and a zero length ClientKeyExchange message being sent by the client. This could be exploited in a DoS attack." } }, @@ -620,6 +697,7 @@ "pk": 370, "fields": { "vulnerability_id": "CVE-2015-0289", + "old_vulnerability_id": null, "summary": "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." } }, @@ -628,6 +706,7 @@ "pk": 371, "fields": { "vulnerability_id": "CVE-2015-0290", + "old_vulnerability_id": null, "summary": "Multiblock corrupted pointer. OpenSSL 1.0.2 introduced the \"multiblock\" performance improvement. This feature only applies on 64 bit x86 architecture platforms that support AES NI instructions. A defect in the implementation of \"multiblock\" can cause OpenSSL's internal write buffer to become incorrectly set to NULL when using non-blocking IO. Typically, when the user application is using a socket BIO for writing, this will only result in a failed connection. Howeve if some other BIO is used then it is likely that a segmentation fault will be triggered, thus enabling a potential DoS attack." } }, @@ -636,6 +715,7 @@ "pk": 372, "fields": { "vulnerability_id": "CVE-2015-0291", + "old_vulnerability_id": null, "summary": "ClientHello sigalgs DoS. If a client connects to an OpenSSL 1.0.2 server and renegotiates with an invalid signature algorithms extension a NULL pointer dereference will occur. This can be exploited in a DoS attack against the server." } }, @@ -644,6 +724,7 @@ "pk": 373, "fields": { "vulnerability_id": "CVE-2015-0205", + "old_vulnerability_id": null, "summary": "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." } }, @@ -652,6 +733,7 @@ "pk": 374, "fields": { "vulnerability_id": "CVE-2015-0206", + "old_vulnerability_id": null, "summary": "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." } }, @@ -660,6 +742,7 @@ "pk": 375, "fields": { "vulnerability_id": "CVE-2015-0204", + "old_vulnerability_id": null, "summary": "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." } }, @@ -668,6 +751,7 @@ "pk": 376, "fields": { "vulnerability_id": "CVE-2015-0209", + "old_vulnerability_id": null, "summary": "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." } }, @@ -676,6 +760,7 @@ "pk": 377, "fields": { "vulnerability_id": "CVE-2015-0288", + "old_vulnerability_id": null, "summary": "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." } }, @@ -684,6 +769,7 @@ "pk": 378, "fields": { "vulnerability_id": "CVE-2014-3572", + "old_vulnerability_id": null, "summary": "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." } }, @@ -692,6 +778,7 @@ "pk": 379, "fields": { "vulnerability_id": "CVE-2015-0285", + "old_vulnerability_id": null, "summary": "Under certain conditions an OpenSSL 1.0.2 client can complete a handshake with an unseeded PRNG. If the handshake succeeds then the client random that has been used will have been generated from a PRNG with insufficient entropy and therefore the output may be predictable." } }, @@ -700,6 +787,7 @@ "pk": 380, "fields": { "vulnerability_id": "CVE-2014-8275", + "old_vulnerability_id": null, "summary": "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 certificat 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." } }, @@ -708,6 +796,7 @@ "pk": 381, "fields": { "vulnerability_id": "CVE-2014-3571", + "old_vulnerability_id": null, "summary": "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." } }, @@ -716,6 +805,7 @@ "pk": 382, "fields": { "vulnerability_id": "CVE-2014-3569", + "old_vulnerability_id": null, "summary": "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." } }, @@ -724,6 +814,7 @@ "pk": 383, "fields": { "vulnerability_id": "CVE-2014-5139", + "old_vulnerability_id": null, "summary": "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." } }, @@ -732,6 +823,7 @@ "pk": 384, "fields": { "vulnerability_id": "CVE-2014-3508", + "old_vulnerability_id": null, "summary": "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." } }, @@ -740,6 +832,7 @@ "pk": 385, "fields": { "vulnerability_id": "CVE-2014-3505", + "old_vulnerability_id": null, "summary": "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." } }, @@ -748,6 +841,7 @@ "pk": 386, "fields": { "vulnerability_id": "CVE-2014-3509", + "old_vulnerability_id": null, "summary": "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." } }, @@ -756,6 +850,7 @@ "pk": 387, "fields": { "vulnerability_id": "VULCOID-2021-02-11155435", + "old_vulnerability_id": null, "summary": "OpenSSL has added support for TLS_FALLBACK_SCSV to allow applications to block the ability for a MITM attacker to force a protocol downgrade. Some client applications (such as browsers) will reconnect using a downgraded protocol to work around interoperability bugs in older servers. This could be exploited by an active man-in-the-middle to downgrade connections to SSL 3.0 even if both sides of the connection support higher protocols. SSL 3.0 contains a number o weaknesses including POODLE (CVE-2014-3566). See also https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00 and https://www.openssl.org/~bodo/ssl-poodle.pdf" } }, @@ -764,6 +859,7 @@ "pk": 388, "fields": { "vulnerability_id": "CVE-2014-3568", + "old_vulnerability_id": null, "summary": "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." } }, @@ -772,6 +868,7 @@ "pk": 389, "fields": { "vulnerability_id": "CVE-2014-3506", + "old_vulnerability_id": null, "summary": "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." } }, @@ -780,6 +877,7 @@ "pk": 390, "fields": { "vulnerability_id": "CVE-2014-3567", + "old_vulnerability_id": null, "summary": "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." } }, @@ -788,6 +886,7 @@ "pk": 391, "fields": { "vulnerability_id": "CVE-2014-3570", + "old_vulnerability_id": null, "summary": "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 mos 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." } }, @@ -796,6 +895,7 @@ "pk": 392, "fields": { "vulnerability_id": "CVE-2014-3513", + "old_vulnerability_id": null, "summary": "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 no affected." } }, @@ -804,6 +904,7 @@ "pk": 393, "fields": { "vulnerability_id": "CVE-2002-0659", + "old_vulnerability_id": null, "summary": "A flaw in the ASN1 library allowed remote attackers to cause a denial of service by sending invalid encodings." } }, @@ -812,6 +913,7 @@ "pk": 394, "fields": { "vulnerability_id": "CVE-2014-3507", + "old_vulnerability_id": null, "summary": "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." } }, @@ -820,6 +922,7 @@ "pk": 395, "fields": { "vulnerability_id": "CVE-2014-3512", + "old_vulnerability_id": null, "summary": "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." } }, @@ -828,6 +931,7 @@ "pk": 396, "fields": { "vulnerability_id": "CVE-2002-1568", + "old_vulnerability_id": null, "summary": "The use of assertions when detecting buffer overflow attacks allowed remote attackers to cause a denial of service (crash) by sending certain messages to cause OpenSSL to abort from a failed assertion, as demonstrated using SSLv2 CLIENT_MASTER_KEY messages, which were not properly handled in s2_srvr.c." } }, @@ -836,6 +940,7 @@ "pk": 397, "fields": { "vulnerability_id": "CVE-2002-0656", + "old_vulnerability_id": null, "summary": "A buffer overflow allowed remote attackers to execute arbitrary code by sending a large client master key in SSL2 or a large session ID in SSL3." } }, @@ -844,6 +949,7 @@ "pk": 398, "fields": { "vulnerability_id": "CVE-2014-3511", + "old_vulnerability_id": null, "summary": "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." } }, @@ -852,6 +958,7 @@ "pk": 399, "fields": { "vulnerability_id": "CVE-2002-0655", + "old_vulnerability_id": null, "summary": "Inproper handling of ASCII representations of integers on 64 bit platforms allowed remote attackers to cause a denial of service or possibly execute arbitrary code." } }, @@ -860,6 +967,7 @@ "pk": 400, "fields": { "vulnerability_id": "CVE-2002-0657", + "old_vulnerability_id": null, "summary": "A buffer overflow when Kerberos is enabled allowed attackers to execute arbitrary code by sending a long master key. Note that this flaw did not affect any released version of 0.9.6 or 0.9.7" } }, @@ -868,6 +976,7 @@ "pk": 401, "fields": { "vulnerability_id": "CVE-2003-0078", + "old_vulnerability_id": null, "summary": "sl3_get_record in s3_pkt.c did not perform a MAC computation if an incorrect block cipher padding was used, causing an information leak (timing discrepancy) that may make it easier to launch cryptographic attacks that rely on distinguishing between padding and MAC verification errors, possibly leading to extraction of the original plaintext, aka the \"Vaudenay timing attack.\"" } }, @@ -876,6 +985,7 @@ "pk": 402, "fields": { "vulnerability_id": "CVE-2014-3510", + "old_vulnerability_id": null, "summary": "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." } }, @@ -884,6 +994,7 @@ "pk": 403, "fields": { "vulnerability_id": "CVE-2003-0545", + "old_vulnerability_id": null, "summary": "Certain ASN.1 encodings that were rejected as invalid by the parser could trigger a bug in the deallocation of the corresponding data structure, corrupting the stack, leading to a crash." } }, @@ -892,6 +1003,7 @@ "pk": 404, "fields": { "vulnerability_id": "CVE-2004-0079", + "old_vulnerability_id": null, "summary": "The Codenomicon TLS Test Tool uncovered a null-pointer assignment in the do_change_cipher_spec() function. A remote attacker could perform a carefully crafted SSL/TLS handshake against a server that used the OpenSSL library in such a way as to cause a crash." } }, @@ -900,6 +1012,7 @@ "pk": 405, "fields": { "vulnerability_id": "CVE-2004-0112", + "old_vulnerability_id": null, "summary": "A flaw in SSL/TLS handshaking code when using Kerberos ciphersuites. A remote attacker could perform a carefully crafted SSL/TLS handshake against a server configured to use Kerberos ciphersuites in such a way as to cause OpenSSL to crash. Most applications have no ability to use Kerberos ciphersuites and will therefore be unaffected." } }, @@ -908,6 +1021,7 @@ "pk": 406, "fields": { "vulnerability_id": "CVE-2004-0975", + "old_vulnerability_id": null, "summary": "The der_chop script created temporary files insecurely which could allow local users to overwrite files via a symlink attack on temporary files. Note that it is quite unlikely that a user would be using the redundant der_chop script, and this script was removed from the OpenSSL distribution." } }, @@ -916,6 +1030,7 @@ "pk": 407, "fields": { "vulnerability_id": "CVE-2003-0851", + "old_vulnerability_id": null, "summary": "A flaw in OpenSSL 0.9.6k (only) would cause certain ASN.1 sequences to trigger a large recursion. On platforms such as Windows this large recursion cannot be handled correctly and so the bug causes OpenSSL to crash. A remote attacker could exploit this flaw if they can send arbitrary ASN.1 sequences which would cause OpenSSL to crash. This could be performed for example by sending a client certificate to a SSL/TLS enabled server which is configured to accept them." } }, @@ -924,6 +1039,7 @@ "pk": 408, "fields": { "vulnerability_id": "CVE-2003-0147", + "old_vulnerability_id": null, "summary": "RSA blinding was not enabled by default, which could allow local and remote attackers to obtain a server's private key by determining factors using timing differences on (1) the number of extra reductions during Montgomery reduction, and (2) the use of different integer multiplication algorithms (\"Karatsuba\" and normal)." } }, @@ -932,6 +1048,7 @@ "pk": 409, "fields": { "vulnerability_id": "CVE-2003-0543", + "old_vulnerability_id": null, "summary": "An integer overflow could allow remote attackers to cause a denial of service (crash) via an SSL client certificate with certain ASN.1 tag values." } }, @@ -940,6 +1057,7 @@ "pk": 410, "fields": { "vulnerability_id": "CVE-2003-0131", + "old_vulnerability_id": null, "summary": "The SSL and TLS components allowed remote attackers to perform an unauthorized RSA private key operation via a modified Bleichenbacher attack that uses a large number of SSL or TLS connections using PKCS #1 v1.5 padding that caused OpenSSL to leak information regarding the relationship between ciphertext and the associated plaintext, aka the \"Klima-Pokorny-Rosa attack\"" } }, @@ -948,6 +1066,7 @@ "pk": 411, "fields": { "vulnerability_id": "CVE-2004-0081", + "old_vulnerability_id": null, "summary": "The Codenomicon TLS Test Tool found that some unknown message types were handled incorrectly, allowing a remote attacker to cause a denial of service (infinite loop)." } }, @@ -956,6 +1075,7 @@ "pk": 412, "fields": { "vulnerability_id": "CVE-2003-0544", + "old_vulnerability_id": null, "summary": "Incorrect tracking of the number of characters in certain ASN.1 inputs could allow remote attackers to cause a denial of service (crash) by sending an SSL client certificate that causes OpenSSL to read past the end of a buffer when the long form is used." } }, @@ -964,6 +1084,7 @@ "pk": 413, "fields": { "vulnerability_id": "CVE-2006-4343", + "old_vulnerability_id": null, "summary": "A flaw in the SSLv2 client code was discovered. When a client application used OpenSSL to create an SSLv2 connection to a malicious server, that server could cause the client to crash." } }, @@ -972,6 +1093,7 @@ "pk": 414, "fields": { "vulnerability_id": "CVE-2006-2937", + "old_vulnerability_id": null, "summary": "During the parsing of certain invalid ASN.1 structures an error condition is mishandled. This can result in an infinite loop which consumes system memory" } }, @@ -980,6 +1102,7 @@ "pk": 415, "fields": { "vulnerability_id": "CVE-2007-5502", + "old_vulnerability_id": null, "summary": "The PRNG implementation for the OpenSSL FIPS Object Module 1.1.1 does not perform auto-seeding during the FIPS self-test, which generates random data that is more predictable than expected and makes it easier for attackers to bypass protection mechanisms that rely on the randomness." } }, @@ -988,6 +1111,7 @@ "pk": 416, "fields": { "vulnerability_id": "CVE-2007-5135", + "old_vulnerability_id": null, "summary": "A flaw was found in the SSL_get_shared_ciphers() utility function. An attacker could send a list of ciphers to an application that used this function and overrun a buffer with a single byte. Few applications make use of this vulnerable function and generally it is used only when applications are compiled for debugging." } }, @@ -996,6 +1120,7 @@ "pk": 417, "fields": { "vulnerability_id": "CVE-2007-4995", + "old_vulnerability_id": null, "summary": "A flaw in DTLS support. An attacker could create a malicious client or server that could trigger a heap overflow. This is possibly exploitable to run arbitrary code, but it has not been verified." } }, @@ -1004,6 +1129,7 @@ "pk": 418, "fields": { "vulnerability_id": "CVE-2006-4339", + "old_vulnerability_id": null, "summary": "Daniel Bleichenbacher discovered an attack on PKCS #1 v1.5 signatures where under certain circumstances it may be possible for an attacker to forge a PKCS #1 v1.5 signature that would be incorrectly verified by OpenSSL." } }, @@ -1012,6 +1138,7 @@ "pk": 419, "fields": { "vulnerability_id": "CVE-2005-2969", + "old_vulnerability_id": null, "summary": "A deprecated option, SSL_OP_MISE_SSLV2_RSA_PADDING, could allow an attacker acting as a \"man in the middle\" to force a connection to downgrade to SSL 2.0 even if both parties support better protocols." } }, @@ -1020,6 +1147,7 @@ "pk": 420, "fields": { "vulnerability_id": "CVE-2008-0891", + "old_vulnerability_id": null, "summary": "Testing using the Codenomicon TLS test suite discovered a flaw in the handling of server name extension data in OpenSSL 0.9.8f and OpenSSL 0.9.8g. If OpenSSL has been compiled using the non-default TLS server name extensions, a remote attacker could send a carefully crafted packet to a server application using OpenSSL and cause it to crash." } }, @@ -1028,6 +1156,7 @@ "pk": 421, "fields": { "vulnerability_id": "CVE-2006-2940", + "old_vulnerability_id": null, "summary": "Certain types of public key can take disproportionate amounts of time to process. This could be used by an attacker in a denial of service attack." } }, @@ -1036,6 +1165,7 @@ "pk": 422, "fields": { "vulnerability_id": "CVE-2006-3738", + "old_vulnerability_id": null, "summary": "A buffer overflow was discovered in the SSL_get_shared_ciphers() utility function. An attacker could send a list of ciphers to an application that uses this function and overrun a buffer." } }, @@ -1044,6 +1174,7 @@ "pk": 423, "fields": { "vulnerability_id": "CVE-2009-3555", + "old_vulnerability_id": null, "summary": "Implement RFC5746 to address vulnerabilities in SSL/TLS renegotiation." } }, @@ -1052,6 +1183,7 @@ "pk": 424, "fields": { "vulnerability_id": "CVE-2009-0590", + "old_vulnerability_id": null, "summary": "The function ASN1_STRING_print_ex() when used to print a BMPString or UniversalString will crash with an invalid memory access if the encoded length of the string is illegal. Any OpenSSL application which prints out the contents of a certificate could be affected by this bug, including SSL servers, clients and S/MIME software." } }, @@ -1060,6 +1192,7 @@ "pk": 425, "fields": { "vulnerability_id": "CVE-2009-1378", + "old_vulnerability_id": null, "summary": "Fix a denial of service flaw in the DTLS implementation. In dtls1_process_out_of_seq_message() the check if the current message is already buffered was missing. For every new message was memory allocated, allowing an attacker to perform an denial of service attack against a DTLS server by sending out of seq handshake messages until there is no memory left." } }, @@ -1068,6 +1201,7 @@ "pk": 426, "fields": { "vulnerability_id": "CVE-2009-0789", + "old_vulnerability_id": null, "summary": "When a malformed ASN1 structure is received it's contents are freed up and zeroed and an error condition returned. On a small number of platforms where sizeof(long) < sizeof(void *) (for example WIN64) this can cause an invalid memory access later resulting in a crash when some invalid structures are read, for example RSA public keys." } }, @@ -1076,6 +1210,7 @@ "pk": 427, "fields": { "vulnerability_id": "CVE-2008-1672", + "old_vulnerability_id": null, "summary": "Testing using the Codenomicon TLS test suite discovered a flaw if the 'Server Key exchange message' is omitted from a TLS handshake in OpenSSL 0.9.8f and OpenSSL 0.9.8g. If a client connects to a malicious server with particular cipher suites, the server could cause the client to crash." } }, @@ -1084,6 +1219,7 @@ "pk": 428, "fields": { "vulnerability_id": "CVE-2009-1386", + "old_vulnerability_id": null, "summary": "Fix a NULL pointer dereference if a DTLS server recieved ChangeCipherSpec as first record. A remote attacker could use this flaw to cause a DTLS server to crash" } }, @@ -1092,6 +1228,7 @@ "pk": 429, "fields": { "vulnerability_id": "CVE-2008-5077", + "old_vulnerability_id": null, "summary": "The Google Security Team discovered several functions inside OpenSSL incorrectly checked the result after calling the EVP_VerifyFinal function, allowing a malformed signature to be treated as a good signature rather than as an error. This issue affected the signature checks on DSA and ECDSA keys used with SSL/TLS. One way to exploit this flaw would be for a remote attacker who is in control of a malicious server or who can use a 'man in the middle' attack to present malformed SSL/TLS signature from a certificate chain to a vulnerable client, bypassing validation." } }, @@ -1100,6 +1237,7 @@ "pk": 430, "fields": { "vulnerability_id": "CVE-2009-1377", + "old_vulnerability_id": null, "summary": "Fix a denial of service flaw in the DTLS implementation. Records are buffered if they arrive with a future epoch to be processed after finishing the corresponding handshake. There is currently no limitation to this buffer allowing an attacker to perform a DOS attack to a DTLS server by sending records with future epochs until there is no memory left." } }, @@ -1108,6 +1246,7 @@ "pk": 431, "fields": { "vulnerability_id": "CVE-2009-1387", + "old_vulnerability_id": null, "summary": "Fix denial of service flaw due in the DTLS implementation. A remote attacker could use this flaw to cause a DTLS server to crash." } }, @@ -1116,6 +1255,7 @@ "pk": 432, "fields": { "vulnerability_id": "CVE-2009-0591", + "old_vulnerability_id": null, "summary": "The function CMS_verify() does not correctly handle an error condition involving malformed signed attributes. This will cause an invalid set of signed attributes to appear valid and content digests will not be checked." } }, @@ -1124,6 +1264,7 @@ "pk": 433, "fields": { "vulnerability_id": "CVE-2010-0740", + "old_vulnerability_id": null, "summary": "In TLS connections, certain incorrectly formatted records can cause an OpenSSL client or server to crash due to a read attempt at NULL." } }, @@ -1132,6 +1273,7 @@ "pk": 434, "fields": { "vulnerability_id": "CVE-2009-3245", + "old_vulnerability_id": null, "summary": "It was discovered that OpenSSL did not always check the return value of the bn_wexpand() function. An attacker able to trigger a memory allocation failure in that function could cause an application using the OpenSSL library to crash or, possibly, execute arbitrary code" } }, @@ -1140,6 +1282,7 @@ "pk": 435, "fields": { "vulnerability_id": "CVE-2009-1379", + "old_vulnerability_id": null, "summary": "Use-after-free vulnerability in the dtls1_retrieve_buffered_fragment function could cause a client accessing a malicious DTLS server to crash." } }, @@ -1148,6 +1291,7 @@ "pk": 436, "fields": { "vulnerability_id": "CVE-2009-4355", + "old_vulnerability_id": null, "summary": "A memory leak in the zlib_stateful_finish function in crypto/comp/c_zlib.c allows remote attackers to cause a denial of service via vectors that trigger incorrect calls to the CRYPTO_cleanup_all_ex_data function." } }, @@ -1156,6 +1300,7 @@ "pk": 437, "fields": { "vulnerability_id": "CVE-2010-0742", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1164,6 +1309,7 @@ "pk": 438, "fields": { "vulnerability_id": "CVE-2010-0433", + "old_vulnerability_id": null, "summary": "A missing return value check flaw was discovered in OpenSSL, that could possibly cause OpenSSL to call a Kerberos library function with invalid arguments, resulting in a NULL pointer dereference crash in the MIT Kerberos library. In certain configurations, a remote attacker could use this flaw to crash a TLS/SSL server using OpenSSL by requesting Kerberos cipher suites during the TLS handshake" } }, @@ -1172,6 +1318,7 @@ "pk": 439, "fields": { "vulnerability_id": "CVE-2010-3864", + "old_vulnerability_id": null, "summary": "A flaw in the OpenSSL TLS server extension code parsing which on affected servers can be exploited in a buffer overrun attack. Any OpenSSL based TLS server is vulnerable if it is multi-threaded and uses OpenSSL's internal caching mechanism. Servers that are multi-process and/or disable internal session caching are NOT affected." } }, @@ -1180,6 +1327,7 @@ "pk": 440, "fields": { "vulnerability_id": "CVE-2010-4252", + "old_vulnerability_id": null, "summary": "An error in OpenSSL's experimental J-PAKE implementation which could lead to successful validation by someone with no knowledge of the shared secret. The OpenSSL Team still consider the implementation of J-PAKE to be experimental and is not compiled by default." } }, @@ -1188,6 +1336,7 @@ "pk": 441, "fields": { "vulnerability_id": "CVE-2010-4180", + "old_vulnerability_id": null, "summary": "A flaw in the OpenSSL SSL/TLS server code where an old bug workaround allows malicious clients to modify the stored session cache ciphersuite. In some cases the ciphersuite can be downgraded to a weaker one on subsequent connections. This issue only affects OpenSSL based SSL/TLS server if it uses OpenSSL's internal caching mechanisms and the SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG flag (many applications enable this by using the SSL_OP_ALL option)." } }, @@ -1196,6 +1345,7 @@ "pk": 442, "fields": { "vulnerability_id": "CVE-2010-1633", + "old_vulnerability_id": null, "summary": "An invalid Return value check in pkey_rsa_verifyrecover was discovered. When verification recovery fails for RSA keys an uninitialised buffer with an undefined length is returned instead of an error code. This could lead to an information leak." } }, @@ -1204,6 +1354,7 @@ "pk": 443, "fields": { "vulnerability_id": "CVE-2011-4108", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1212,6 +1363,7 @@ "pk": 444, "fields": { "vulnerability_id": "CVE-2011-4576", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1220,6 +1372,7 @@ "pk": 445, "fields": { "vulnerability_id": "CVE-2011-3207", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1228,6 +1381,7 @@ "pk": 446, "fields": { "vulnerability_id": "CVE-2012-0027", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1236,6 +1390,7 @@ "pk": 447, "fields": { "vulnerability_id": "CVE-2011-4109", + "old_vulnerability_id": null, "summary": "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" } }, @@ -1244,6 +1399,7 @@ "pk": 448, "fields": { "vulnerability_id": "CVE-2012-0050", + "old_vulnerability_id": null, "summary": "A flaw in the fix to CVE-2011-4108 can be exploited in a denial of service attack. Only DTLS applications are affected." } }, @@ -1252,6 +1408,7 @@ "pk": 449, "fields": { "vulnerability_id": "CVE-2011-3210", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1260,6 +1417,7 @@ "pk": 450, "fields": { "vulnerability_id": "CVE-2012-0884", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1268,6 +1426,7 @@ "pk": 451, "fields": { "vulnerability_id": "CVE-2011-4577", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1276,6 +1435,7 @@ "pk": 452, "fields": { "vulnerability_id": "CVE-2011-4619", + "old_vulnerability_id": null, "summary": "Support for handshake restarts for server gated cryptograpy (SGC) can be used in a denial-of-service attack." } }, @@ -1284,6 +1444,7 @@ "pk": 453, "fields": { "vulnerability_id": "CVE-2012-2686", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1292,6 +1453,7 @@ "pk": 454, "fields": { "vulnerability_id": "CVE-2011-0014", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1300,6 +1462,7 @@ "pk": 455, "fields": { "vulnerability_id": "CVE-2013-6450", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1308,6 +1471,7 @@ "pk": 456, "fields": { "vulnerability_id": "CVE-2013-6449", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1316,6 +1480,7 @@ "pk": 457, "fields": { "vulnerability_id": "CVE-2013-0169", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1324,6 +1489,7 @@ "pk": 458, "fields": { "vulnerability_id": "CVE-2012-2110", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1332,6 +1498,7 @@ "pk": 459, "fields": { "vulnerability_id": "CVE-2012-2333", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1340,6 +1507,7 @@ "pk": 460, "fields": { "vulnerability_id": "CVE-2013-4353", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1348,6 +1516,7 @@ "pk": 461, "fields": { "vulnerability_id": "CVE-2013-0166", + "old_vulnerability_id": null, "summary": "A flaw in the OpenSSL handling of OCSP response verification can be exploited in a denial of service attack." } }, @@ -1356,6 +1525,7 @@ "pk": 462, "fields": { "vulnerability_id": "CVE-2012-2131", + "old_vulnerability_id": null, "summary": "It was discovered that the fix for CVE-2012-2110 released on 19 Apr 2012 was not sufficient to correct the issue for OpenSSL 0.9.8. This issue only affects OpenSSL 0.9.8v. OpenSSL 1.0.1a and 1.0.0i already contain a patch sufficient to correct CVE-2012-2110." } }, @@ -1364,6 +1534,7 @@ "pk": 463, "fields": { "vulnerability_id": "CVE-2014-0224", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1372,6 +1543,7 @@ "pk": 464, "fields": { "vulnerability_id": "CVE-2014-0198", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1380,6 +1552,7 @@ "pk": 465, "fields": { "vulnerability_id": "CVE-2014-0221", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1388,6 +1561,7 @@ "pk": 466, "fields": { "vulnerability_id": "CVE-2010-5298", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1396,6 +1570,7 @@ "pk": 467, "fields": { "vulnerability_id": "CVE-2014-3470", + "old_vulnerability_id": null, "summary": "OpenSSL TLS clients enabling anonymous ECDH ciphersuites are subject to a denial of service attack." } }, @@ -1404,6 +1579,7 @@ "pk": 468, "fields": { "vulnerability_id": "CVE-2014-0076", + "old_vulnerability_id": null, "summary": "Fix for the attack described in the paper \"Recovering OpenSSL ECDSA Nonces Using the FLUSH+RELOAD Cache Side-channel Attack\"" } }, @@ -1412,6 +1588,7 @@ "pk": 469, "fields": { "vulnerability_id": "CVE-2014-0160", + "old_vulnerability_id": null, "summary": "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." } }, @@ -1420,6 +1597,7 @@ "pk": 470, "fields": { "vulnerability_id": "CVE-2014-0195", + "old_vulnerability_id": null, "summary": "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." } }, @@ -4065,16 +4243,7 @@ "fields": { "package": 10468, "vulnerability": 343, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3055, - "fields": { - "package": 10471, - "vulnerability": 388, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -4083,7 +4252,7 @@ "fields": { "package": 10477, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -4092,7 +4261,7 @@ "fields": { "package": 10477, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -4101,7 +4270,7 @@ "fields": { "package": 10430, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -4110,7 +4279,7 @@ "fields": { "package": 10417, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -4119,7 +4288,7 @@ "fields": { "package": 10455, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -4128,7 +4297,7 @@ "fields": { "package": 10472, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -4137,7 +4306,7 @@ "fields": { "package": 10477, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -4146,16 +4315,7 @@ "fields": { "package": 10464, "vulnerability": 390, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3064, - "fields": { - "package": 10398, - "vulnerability": 340, - "is_vulnerable": false + "patched_package": 10471 } }, { @@ -4164,7 +4324,7 @@ "fields": { "package": 10433, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -4173,7 +4333,7 @@ "fields": { "package": 10402, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -4182,7 +4342,7 @@ "fields": { "package": 10446, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -4191,7 +4351,7 @@ "fields": { "package": 10394, "vulnerability": 318, - "is_vulnerable": true + "patched_package": null } }, { @@ -4200,7 +4360,7 @@ "fields": { "package": 10453, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -4209,7 +4369,7 @@ "fields": { "package": 10480, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -4218,7 +4378,7 @@ "fields": { "package": 10428, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -4227,7 +4387,7 @@ "fields": { "package": 10434, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -4236,7 +4396,7 @@ "fields": { "package": 10490, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -4245,7 +4405,7 @@ "fields": { "package": 10441, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -4254,7 +4414,7 @@ "fields": { "package": 10448, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -4263,7 +4423,7 @@ "fields": { "package": 10462, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -4272,7 +4432,7 @@ "fields": { "package": 10457, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -4281,7 +4441,7 @@ "fields": { "package": 10456, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -4290,7 +4450,7 @@ "fields": { "package": 10390, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -4299,16 +4459,7 @@ "fields": { "package": 10444, "vulnerability": 325, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3081, - "fields": { - "package": 10446, - "vulnerability": 350, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -4317,7 +4468,7 @@ "fields": { "package": 10481, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -4326,16 +4477,7 @@ "fields": { "package": 10461, "vulnerability": 457, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3084, - "fields": { - "package": 10493, - "vulnerability": 441, - "is_vulnerable": false + "patched_package": 10488 } }, { @@ -4344,7 +4486,7 @@ "fields": { "package": 10431, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -4353,7 +4495,7 @@ "fields": { "package": 10430, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -4362,7 +4504,7 @@ "fields": { "package": 10477, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -4371,7 +4513,7 @@ "fields": { "package": 10493, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -4380,7 +4522,7 @@ "fields": { "package": 10505, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -4389,16 +4531,7 @@ "fields": { "package": 10480, "vulnerability": 465, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3091, - "fields": { - "package": 10455, - "vulnerability": 386, - "is_vulnerable": false + "patched_package": 10442 } }, { @@ -4407,16 +4540,7 @@ "fields": { "package": 10440, "vulnerability": 328, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3093, - "fields": { - "package": 10497, - "vulnerability": 377, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -4425,7 +4549,7 @@ "fields": { "package": 10454, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -4434,7 +4558,7 @@ "fields": { "package": 10485, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -4443,16 +4567,7 @@ "fields": { "package": 10394, "vulnerability": 301, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3097, - "fields": { - "package": 10396, - "vulnerability": 326, - "is_vulnerable": false + "patched_package": 10413 } }, { @@ -4461,7 +4576,7 @@ "fields": { "package": 10401, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -4470,7 +4585,7 @@ "fields": { "package": 10438, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -4479,7 +4594,7 @@ "fields": { "package": 10441, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -4488,7 +4603,7 @@ "fields": { "package": 10428, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -4497,7 +4612,7 @@ "fields": { "package": 10481, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -4506,7 +4621,7 @@ "fields": { "package": 10490, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -4515,7 +4630,7 @@ "fields": { "package": 10487, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -4524,16 +4639,7 @@ "fields": { "package": 10456, "vulnerability": 418, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3106, - "fields": { - "package": 10477, - "vulnerability": 454, - "is_vulnerable": false + "patched_package": 10462 } }, { @@ -4542,7 +4648,7 @@ "fields": { "package": 10457, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -4551,7 +4657,7 @@ "fields": { "package": 10469, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -4560,7 +4666,7 @@ "fields": { "package": 10477, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -4569,7 +4675,7 @@ "fields": { "package": 10492, "vulnerability": 462, - "is_vulnerable": true + "patched_package": 10475 } }, { @@ -4578,16 +4684,7 @@ "fields": { "package": 10467, "vulnerability": 376, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3112, - "fields": { - "package": 10389, - "vulnerability": 313, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -4596,7 +4693,7 @@ "fields": { "package": 10431, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -4605,7 +4702,7 @@ "fields": { "package": 10480, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -4614,7 +4711,7 @@ "fields": { "package": 10493, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -4623,7 +4720,7 @@ "fields": { "package": 10385, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -4632,7 +4729,7 @@ "fields": { "package": 10388, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -4641,7 +4738,7 @@ "fields": { "package": 10392, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -4650,7 +4747,7 @@ "fields": { "package": 10429, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -4659,7 +4756,7 @@ "fields": { "package": 10483, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -4668,16 +4765,7 @@ "fields": { "package": 10441, "vulnerability": 355, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3122, - "fields": { - "package": 10484, - "vulnerability": 373, - "is_vulnerable": false + "patched_package": 10432 } }, { @@ -4686,16 +4774,7 @@ "fields": { "package": 10479, "vulnerability": 428, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3124, - "fields": { - "package": 10430, - "vulnerability": 468, - "is_vulnerable": false + "patched_package": 10449 } }, { @@ -4704,7 +4783,7 @@ "fields": { "package": 10454, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -4713,7 +4792,7 @@ "fields": { "package": 10461, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -4722,7 +4801,7 @@ "fields": { "package": 10478, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -4731,7 +4810,7 @@ "fields": { "package": 10395, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -4740,7 +4819,7 @@ "fields": { "package": 10470, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -4749,7 +4828,7 @@ "fields": { "package": 10469, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -4758,7 +4837,7 @@ "fields": { "package": 10403, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -4767,7 +4846,7 @@ "fields": { "package": 10410, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10411 } }, { @@ -4776,7 +4855,7 @@ "fields": { "package": 10467, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -4785,7 +4864,7 @@ "fields": { "package": 10494, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -4794,7 +4873,7 @@ "fields": { "package": 10462, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -4803,7 +4882,7 @@ "fields": { "package": 10392, "vulnerability": 351, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -4812,7 +4891,7 @@ "fields": { "package": 10518, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -4821,7 +4900,7 @@ "fields": { "package": 10486, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -4830,7 +4909,7 @@ "fields": { "package": 10485, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -4839,7 +4918,7 @@ "fields": { "package": 10493, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -4848,7 +4927,7 @@ "fields": { "package": 10458, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -4857,7 +4936,7 @@ "fields": { "package": 10400, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -4866,7 +4945,7 @@ "fields": { "package": 10467, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -4875,7 +4954,7 @@ "fields": { "package": 10481, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -4884,16 +4963,7 @@ "fields": { "package": 10487, "vulnerability": 365, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3146, - "fields": { - "package": 10382, - "vulnerability": 362, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -4902,7 +4972,7 @@ "fields": { "package": 10454, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -4911,7 +4981,7 @@ "fields": { "package": 10388, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -4920,7 +4990,7 @@ "fields": { "package": 10392, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -4929,7 +4999,7 @@ "fields": { "package": 10441, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -4938,25 +5008,7 @@ "fields": { "package": 10444, "vulnerability": 376, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3152, - "fields": { - "package": 10444, - "vulnerability": 383, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3153, - "fields": { - "package": 10392, - "vulnerability": 354, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -4965,16 +5017,7 @@ "fields": { "package": 10478, "vulnerability": 434, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3155, - "fields": { - "package": 10400, - "vulnerability": 350, - "is_vulnerable": false + "patched_package": 10464 } }, { @@ -4983,25 +5026,7 @@ "fields": { "package": 10470, "vulnerability": 360, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3157, - "fields": { - "package": 10404, - "vulnerability": 310, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3158, - "fields": { - "package": 10496, - "vulnerability": 366, - "is_vulnerable": false + "patched_package": 10469 } }, { @@ -5010,7 +5035,7 @@ "fields": { "package": 10460, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -5019,7 +5044,7 @@ "fields": { "package": 10456, "vulnerability": 428, - "is_vulnerable": true + "patched_package": 10449 } }, { @@ -5028,7 +5053,7 @@ "fields": { "package": 10480, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -5037,7 +5062,7 @@ "fields": { "package": 10431, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -5046,7 +5071,7 @@ "fields": { "package": 10438, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -5055,7 +5080,7 @@ "fields": { "package": 10493, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -5064,7 +5089,7 @@ "fields": { "package": 10434, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -5073,7 +5098,7 @@ "fields": { "package": 10471, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -5082,7 +5107,7 @@ "fields": { "package": 10485, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -5091,7 +5116,7 @@ "fields": { "package": 10527, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -5100,7 +5125,7 @@ "fields": { "package": 10486, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -5109,7 +5134,7 @@ "fields": { "package": 10451, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -5118,7 +5143,7 @@ "fields": { "package": 10400, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -5127,16 +5152,7 @@ "fields": { "package": 10495, "vulnerability": 466, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3173, - "fields": { - "package": 10446, - "vulnerability": 342, - "is_vulnerable": false + "patched_package": 10469 } }, { @@ -5145,7 +5161,7 @@ "fields": { "package": 10392, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -5154,7 +5170,7 @@ "fields": { "package": 10463, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -5163,7 +5179,7 @@ "fields": { "package": 10462, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -5172,7 +5188,7 @@ "fields": { "package": 10470, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -5181,16 +5197,7 @@ "fields": { "package": 10435, "vulnerability": 343, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3179, - "fields": { - "package": 10438, - "vulnerability": 388, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -5199,7 +5206,7 @@ "fields": { "package": 10388, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -5208,7 +5215,7 @@ "fields": { "package": 10430, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -5217,7 +5224,7 @@ "fields": { "package": 10442, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -5226,7 +5233,7 @@ "fields": { "package": 10444, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -5235,7 +5242,7 @@ "fields": { "package": 10439, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -5244,16 +5251,7 @@ "fields": { "package": 10444, "vulnerability": 380, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3186, - "fields": { - "package": 10388, - "vulnerability": 366, - "is_vulnerable": false + "patched_package": 10431 } }, { @@ -5262,7 +5260,7 @@ "fields": { "package": 10384, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -5271,7 +5269,7 @@ "fields": { "package": 10464, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -5280,7 +5278,7 @@ "fields": { "package": 10439, "vulnerability": 464, - "is_vulnerable": true + "patched_package": null } }, { @@ -5289,7 +5287,7 @@ "fields": { "package": 10428, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -5298,16 +5296,7 @@ "fields": { "package": 10383, "vulnerability": 345, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3192, - "fields": { - "package": 10396, - "vulnerability": 318, - "is_vulnerable": false + "patched_package": 10382 } }, { @@ -5316,7 +5305,7 @@ "fields": { "package": 10480, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -5325,7 +5314,7 @@ "fields": { "package": 10469, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -5334,7 +5323,7 @@ "fields": { "package": 10477, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -5343,7 +5332,7 @@ "fields": { "package": 10487, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -5352,7 +5341,7 @@ "fields": { "package": 10440, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -5361,7 +5350,7 @@ "fields": { "package": 10405, "vulnerability": 369, - "is_vulnerable": true + "patched_package": null } }, { @@ -5370,7 +5359,7 @@ "fields": { "package": 10494, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -5379,16 +5368,7 @@ "fields": { "package": 10428, "vulnerability": 330, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3201, - "fields": { - "package": 10431, - "vulnerability": 375, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -5397,7 +5377,7 @@ "fields": { "package": 10395, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -5406,7 +5386,7 @@ "fields": { "package": 10383, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -5415,16 +5395,7 @@ "fields": { "package": 10436, "vulnerability": 326, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3205, - "fields": { - "package": 10436, - "vulnerability": 333, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -5433,7 +5404,7 @@ "fields": { "package": 10443, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -5442,16 +5413,7 @@ "fields": { "package": 10457, "vulnerability": 376, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3208, - "fields": { - "package": 10484, - "vulnerability": 380, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -5460,7 +5422,7 @@ "fields": { "package": 10486, "vulnerability": 433, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -5469,16 +5431,7 @@ "fields": { "package": 10495, "vulnerability": 449, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3211, - "fields": { - "package": 10471, - "vulnerability": 390, - "is_vulnerable": false + "patched_package": 10463 } }, { @@ -5487,7 +5440,7 @@ "fields": { "package": 10470, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -5496,7 +5449,7 @@ "fields": { "package": 10435, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -5505,7 +5458,7 @@ "fields": { "package": 10448, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -5514,7 +5467,7 @@ "fields": { "package": 10431, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -5523,7 +5476,7 @@ "fields": { "package": 10473, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -5532,7 +5485,7 @@ "fields": { "package": 10462, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -5541,7 +5494,7 @@ "fields": { "package": 10511, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10459 } }, { @@ -5550,7 +5503,7 @@ "fields": { "package": 10463, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10499 } }, { @@ -5559,7 +5512,7 @@ "fields": { "package": 10444, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -5568,7 +5521,7 @@ "fields": { "package": 10397, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -5577,7 +5530,7 @@ "fields": { "package": 10426, "vulnerability": 460, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -5586,7 +5539,7 @@ "fields": { "package": 10420, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -5595,7 +5548,7 @@ "fields": { "package": 10495, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -5604,7 +5557,7 @@ "fields": { "package": 10460, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -5613,7 +5566,7 @@ "fields": { "package": 10468, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -5622,7 +5575,7 @@ "fields": { "package": 10393, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -5631,7 +5584,7 @@ "fields": { "package": 10479, "vulnerability": 420, - "is_vulnerable": true + "patched_package": 10486 } }, { @@ -5640,7 +5593,7 @@ "fields": { "package": 10452, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -5649,7 +5602,7 @@ "fields": { "package": 10405, "vulnerability": 352, - "is_vulnerable": true + "patched_package": null } }, { @@ -5658,7 +5611,7 @@ "fields": { "package": 10508, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -5667,7 +5620,7 @@ "fields": { "package": 10504, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10524 } }, { @@ -5676,7 +5629,7 @@ "fields": { "package": 10476, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -5685,7 +5638,7 @@ "fields": { "package": 10395, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -5694,7 +5647,7 @@ "fields": { "package": 10483, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -5703,16 +5656,7 @@ "fields": { "package": 10448, "vulnerability": 343, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3237, - "fields": { - "package": 10446, - "vulnerability": 352, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -5721,7 +5665,7 @@ "fields": { "package": 10457, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -5730,7 +5674,7 @@ "fields": { "package": 10464, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -5739,7 +5683,7 @@ "fields": { "package": 10485, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -5748,16 +5692,7 @@ "fields": { "package": 10435, "vulnerability": 374, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3242, - "fields": { - "package": 10447, - "vulnerability": 328, - "is_vulnerable": false + "patched_package": 10431 } }, { @@ -5766,7 +5701,7 @@ "fields": { "package": 10477, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -5775,7 +5710,7 @@ "fields": { "package": 10444, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -5784,16 +5719,7 @@ "fields": { "package": 10486, "vulnerability": 381, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3246, - "fields": { - "package": 10441, - "vulnerability": 457, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -5802,7 +5728,7 @@ "fields": { "package": 10431, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -5811,7 +5737,7 @@ "fields": { "package": 10470, "vulnerability": 431, - "is_vulnerable": true + "patched_package": null } }, { @@ -5820,7 +5746,7 @@ "fields": { "package": 10459, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10462 } }, { @@ -5829,7 +5755,7 @@ "fields": { "package": 10468, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -5838,7 +5764,7 @@ "fields": { "package": 10495, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -5847,7 +5773,7 @@ "fields": { "package": 10441, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -5856,7 +5782,7 @@ "fields": { "package": 10394, "vulnerability": 303, - "is_vulnerable": true + "patched_package": null } }, { @@ -5865,7 +5791,7 @@ "fields": { "package": 10516, "vulnerability": 403, - "is_vulnerable": true + "patched_package": 10517 } }, { @@ -5874,7 +5800,7 @@ "fields": { "package": 10450, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -5883,7 +5809,7 @@ "fields": { "package": 10428, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -5892,7 +5818,7 @@ "fields": { "package": 10472, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -5901,16 +5827,7 @@ "fields": { "package": 10483, "vulnerability": 384, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3259, - "fields": { - "package": 10406, - "vulnerability": 320, - "is_vulnerable": false + "patched_package": 10455 } }, { @@ -5919,7 +5836,7 @@ "fields": { "package": 10477, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -5928,7 +5845,7 @@ "fields": { "package": 10461, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -5937,7 +5854,7 @@ "fields": { "package": 10478, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -5946,16 +5863,7 @@ "fields": { "package": 10517, "vulnerability": 421, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3264, - "fields": { - "package": 10390, - "vulnerability": 335, - "is_vulnerable": false + "patched_package": 10531 } }, { @@ -5964,7 +5872,7 @@ "fields": { "package": 10400, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -5973,7 +5881,7 @@ "fields": { "package": 10382, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -5982,7 +5890,7 @@ "fields": { "package": 10527, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -5991,7 +5899,7 @@ "fields": { "package": 10452, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -6000,7 +5908,7 @@ "fields": { "package": 10495, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10483 } }, { @@ -6009,7 +5917,7 @@ "fields": { "package": 10453, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -6018,7 +5926,7 @@ "fields": { "package": 10486, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -6027,7 +5935,7 @@ "fields": { "package": 10432, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -6036,7 +5944,7 @@ "fields": { "package": 10429, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -6045,7 +5953,7 @@ "fields": { "package": 10462, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -6054,7 +5962,7 @@ "fields": { "package": 10454, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -6063,7 +5971,7 @@ "fields": { "package": 10496, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -6072,7 +5980,7 @@ "fields": { "package": 10429, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -6081,7 +5989,7 @@ "fields": { "package": 10463, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -6090,16 +5998,7 @@ "fields": { "package": 10517, "vulnerability": 406, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3280, - "fields": { - "package": 10507, - "vulnerability": 399, - "is_vulnerable": false + "patched_package": 10525 } }, { @@ -6108,7 +6007,7 @@ "fields": { "package": 10467, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -6117,7 +6016,7 @@ "fields": { "package": 10393, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -6126,7 +6025,7 @@ "fields": { "package": 10477, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -6135,7 +6034,7 @@ "fields": { "package": 10430, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -6144,7 +6043,7 @@ "fields": { "package": 10472, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -6153,25 +6052,7 @@ "fields": { "package": 10487, "vulnerability": 425, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3287, - "fields": { - "package": 10457, - "vulnerability": 454, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3288, - "fields": { - "package": 10427, - "vulnerability": 353, - "is_vulnerable": false + "patched_package": 10464 } }, { @@ -6180,7 +6061,7 @@ "fields": { "package": 10426, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -6189,7 +6070,7 @@ "fields": { "package": 10433, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -6198,7 +6079,7 @@ "fields": { "package": 10384, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -6207,7 +6088,7 @@ "fields": { "package": 10517, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10522 } }, { @@ -6216,7 +6097,7 @@ "fields": { "package": 10485, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -6225,16 +6106,7 @@ "fields": { "package": 10405, "vulnerability": 361, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3295, - "fields": { - "package": 10507, - "vulnerability": 397, - "is_vulnerable": false + "patched_package": null } }, { @@ -6243,16 +6115,7 @@ "fields": { "package": 10446, "vulnerability": 332, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3297, - "fields": { - "package": 10469, - "vulnerability": 464, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -6261,7 +6124,7 @@ "fields": { "package": 10439, "vulnerability": 398, - "is_vulnerable": true + "patched_package": null } }, { @@ -6270,7 +6133,7 @@ "fields": { "package": 10438, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -6279,7 +6142,7 @@ "fields": { "package": 10452, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -6288,7 +6151,7 @@ "fields": { "package": 10463, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -6297,7 +6160,7 @@ "fields": { "package": 10459, "vulnerability": 428, - "is_vulnerable": true + "patched_package": 10449 } }, { @@ -6306,7 +6169,7 @@ "fields": { "package": 10453, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -6315,7 +6178,7 @@ "fields": { "package": 10388, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -6324,16 +6187,7 @@ "fields": { "package": 10441, "vulnerability": 340, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3306, - "fields": { - "package": 10444, - "vulnerability": 385, - "is_vulnerable": false + "patched_package": 10436 } }, { @@ -6342,7 +6196,7 @@ "fields": { "package": 10410, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10414 } }, { @@ -6351,7 +6205,7 @@ "fields": { "package": 10485, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -6360,7 +6214,7 @@ "fields": { "package": 10462, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -6369,7 +6223,7 @@ "fields": { "package": 10430, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -6378,7 +6232,7 @@ "fields": { "package": 10383, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -6387,7 +6241,7 @@ "fields": { "package": 10503, "vulnerability": 393, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -6396,7 +6250,7 @@ "fields": { "package": 10463, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -6405,7 +6259,7 @@ "fields": { "package": 10478, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -6414,7 +6268,7 @@ "fields": { "package": 10519, "vulnerability": 407, - "is_vulnerable": true + "patched_package": 10518 } }, { @@ -6423,16 +6277,7 @@ "fields": { "package": 10397, "vulnerability": 328, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3317, - "fields": { - "package": 10468, - "vulnerability": 429, - "is_vulnerable": false + "patched_package": 10396 } }, { @@ -6441,7 +6286,7 @@ "fields": { "package": 10491, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -6450,7 +6295,7 @@ "fields": { "package": 10431, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -6459,7 +6304,7 @@ "fields": { "package": 10395, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -6468,7 +6313,7 @@ "fields": { "package": 10486, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -6477,7 +6322,7 @@ "fields": { "package": 10466, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -6486,7 +6331,7 @@ "fields": { "package": 10427, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -6495,7 +6340,7 @@ "fields": { "package": 10438, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -6504,7 +6349,7 @@ "fields": { "package": 10486, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -6513,7 +6358,7 @@ "fields": { "package": 10440, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -6522,7 +6367,7 @@ "fields": { "package": 10454, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -6531,7 +6376,7 @@ "fields": { "package": 10461, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -6540,7 +6385,7 @@ "fields": { "package": 10426, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -6549,7 +6394,7 @@ "fields": { "package": 10395, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -6558,7 +6403,7 @@ "fields": { "package": 10467, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -6567,16 +6412,7 @@ "fields": { "package": 10401, "vulnerability": 308, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3333, - "fields": { - "package": 10446, - "vulnerability": 344, - "is_vulnerable": false + "patched_package": 10402 } }, { @@ -6585,7 +6421,7 @@ "fields": { "package": 10476, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -6594,16 +6430,7 @@ "fields": { "package": 10462, "vulnerability": 449, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3336, - "fields": { - "package": 10438, - "vulnerability": 390, - "is_vulnerable": false + "patched_package": 10463 } }, { @@ -6612,7 +6439,7 @@ "fields": { "package": 10388, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10383 } }, { @@ -6621,7 +6448,7 @@ "fields": { "package": 10479, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -6630,7 +6457,7 @@ "fields": { "package": 10443, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -6639,7 +6466,7 @@ "fields": { "package": 10419, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -6648,7 +6475,7 @@ "fields": { "package": 10384, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -6657,7 +6484,7 @@ "fields": { "package": 10431, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -6666,7 +6493,7 @@ "fields": { "package": 10440, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -6675,7 +6502,7 @@ "fields": { "package": 10439, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -6684,7 +6511,7 @@ "fields": { "package": 10483, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -6693,16 +6520,7 @@ "fields": { "package": 10397, "vulnerability": 311, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3347, - "fields": { - "package": 10454, - "vulnerability": 360, - "is_vulnerable": false + "patched_package": 10407 } }, { @@ -6711,16 +6529,7 @@ "fields": { "package": 10387, "vulnerability": 297, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3349, - "fields": { - "package": 10389, - "vulnerability": 322, - "is_vulnerable": false + "patched_package": 10423 } }, { @@ -6729,7 +6538,7 @@ "fields": { "package": 10462, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -6738,7 +6547,7 @@ "fields": { "package": 10487, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -6747,7 +6556,7 @@ "fields": { "package": 10467, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -6756,7 +6565,7 @@ "fields": { "package": 10451, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -6765,7 +6574,7 @@ "fields": { "package": 10466, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -6774,7 +6583,7 @@ "fields": { "package": 10507, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -6783,16 +6592,7 @@ "fields": { "package": 10468, "vulnerability": 468, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3357, - "fields": { - "package": 10484, - "vulnerability": 382, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -6801,7 +6601,7 @@ "fields": { "package": 10383, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -6810,7 +6610,7 @@ "fields": { "package": 10514, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -6819,7 +6619,7 @@ "fields": { "package": 10486, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -6828,7 +6628,7 @@ "fields": { "package": 10390, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10384 } }, { @@ -6837,7 +6637,7 @@ "fields": { "package": 10517, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -6846,7 +6646,7 @@ "fields": { "package": 10485, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -6855,7 +6655,7 @@ "fields": { "package": 10443, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -6864,7 +6664,7 @@ "fields": { "package": 10476, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -6873,7 +6673,7 @@ "fields": { "package": 10452, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -6882,7 +6682,7 @@ "fields": { "package": 10479, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -6891,7 +6691,7 @@ "fields": { "package": 10444, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -6900,7 +6700,7 @@ "fields": { "package": 10486, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -6909,7 +6709,7 @@ "fields": { "package": 10453, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -6918,16 +6718,7 @@ "fields": { "package": 10507, "vulnerability": 406, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3372, - "fields": { - "package": 10444, - "vulnerability": 394, - "is_vulnerable": false + "patched_package": 10525 } }, { @@ -6936,7 +6727,7 @@ "fields": { "package": 10440, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -6945,7 +6736,7 @@ "fields": { "package": 10478, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -6954,7 +6745,7 @@ "fields": { "package": 10457, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -6963,7 +6754,7 @@ "fields": { "package": 10383, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -6972,7 +6763,7 @@ "fields": { "package": 10467, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -6981,7 +6772,7 @@ "fields": { "package": 10463, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -6990,7 +6781,7 @@ "fields": { "package": 10507, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10521 } }, { @@ -6999,7 +6790,7 @@ "fields": { "package": 10436, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -7008,7 +6799,7 @@ "fields": { "package": 10492, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -7017,7 +6808,7 @@ "fields": { "package": 10426, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -7026,7 +6817,7 @@ "fields": { "package": 10390, "vulnerability": 305, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -7035,7 +6826,7 @@ "fields": { "package": 10429, "vulnerability": 398, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -7044,7 +6835,7 @@ "fields": { "package": 10485, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -7053,7 +6844,7 @@ "fields": { "package": 10431, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -7062,7 +6853,7 @@ "fields": { "package": 10400, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -7071,7 +6862,7 @@ "fields": { "package": 10475, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -7080,7 +6871,7 @@ "fields": { "package": 10453, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -7089,7 +6880,7 @@ "fields": { "package": 10468, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -7098,7 +6889,7 @@ "fields": { "package": 10481, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -7107,7 +6898,7 @@ "fields": { "package": 10496, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -7116,7 +6907,7 @@ "fields": { "package": 10493, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -7125,7 +6916,7 @@ "fields": { "package": 10463, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -7134,7 +6925,7 @@ "fields": { "package": 10430, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -7143,7 +6934,7 @@ "fields": { "package": 10476, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -7152,7 +6943,7 @@ "fields": { "package": 10483, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -7161,7 +6952,7 @@ "fields": { "package": 10530, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -7170,7 +6961,7 @@ "fields": { "package": 10426, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -7179,7 +6970,7 @@ "fields": { "package": 10430, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -7188,7 +6979,7 @@ "fields": { "package": 10486, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -7197,7 +6988,7 @@ "fields": { "package": 10451, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -7206,7 +6997,7 @@ "fields": { "package": 10445, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -7215,7 +7006,7 @@ "fields": { "package": 10391, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -7224,7 +7015,7 @@ "fields": { "package": 10466, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -7233,7 +7024,7 @@ "fields": { "package": 10400, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -7242,7 +7033,7 @@ "fields": { "package": 10485, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -7251,7 +7042,7 @@ "fields": { "package": 10452, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -7260,16 +7051,7 @@ "fields": { "package": 10491, "vulnerability": 402, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3410, - "fields": { - "package": 10397, - "vulnerability": 347, - "is_vulnerable": false + "patched_package": 10455 } }, { @@ -7278,7 +7060,7 @@ "fields": { "package": 10469, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -7287,7 +7069,7 @@ "fields": { "package": 10409, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -7296,7 +7078,7 @@ "fields": { "package": 10430, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -7305,7 +7087,7 @@ "fields": { "package": 10387, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -7314,7 +7096,7 @@ "fields": { "package": 10452, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -7323,7 +7105,7 @@ "fields": { "package": 10439, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -7332,7 +7114,7 @@ "fields": { "package": 10477, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -7341,7 +7123,7 @@ "fields": { "package": 10430, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -7350,7 +7132,7 @@ "fields": { "package": 10441, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -7359,7 +7141,7 @@ "fields": { "package": 10442, "vulnerability": 398, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -7368,7 +7150,7 @@ "fields": { "package": 10492, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -7377,7 +7159,7 @@ "fields": { "package": 10458, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -7386,7 +7168,7 @@ "fields": { "package": 10492, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -7395,7 +7177,7 @@ "fields": { "package": 10473, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -7404,7 +7186,7 @@ "fields": { "package": 10457, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -7413,7 +7195,7 @@ "fields": { "package": 10426, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -7422,7 +7204,7 @@ "fields": { "package": 10486, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -7431,7 +7213,7 @@ "fields": { "package": 10493, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -7440,7 +7222,7 @@ "fields": { "package": 10453, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -7449,16 +7231,7 @@ "fields": { "package": 10506, "vulnerability": 393, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3431, - "fields": { - "package": 10395, - "vulnerability": 356, - "is_vulnerable": false + "patched_package": 10507 } }, { @@ -7467,7 +7240,7 @@ "fields": { "package": 10507, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -7476,7 +7249,7 @@ "fields": { "package": 10405, "vulnerability": 343, - "is_vulnerable": true + "patched_package": null } }, { @@ -7485,7 +7258,7 @@ "fields": { "package": 10466, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -7494,7 +7267,7 @@ "fields": { "package": 10515, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10517 } }, { @@ -7503,7 +7276,7 @@ "fields": { "package": 10440, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -7512,7 +7285,7 @@ "fields": { "package": 10453, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -7521,7 +7294,7 @@ "fields": { "package": 10449, "vulnerability": 437, - "is_vulnerable": true + "patched_package": 10482 } }, { @@ -7530,7 +7303,7 @@ "fields": { "package": 10476, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -7539,7 +7312,7 @@ "fields": { "package": 10443, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -7548,7 +7321,7 @@ "fields": { "package": 10430, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -7557,7 +7330,7 @@ "fields": { "package": 10468, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -7566,7 +7339,7 @@ "fields": { "package": 10482, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10457 } }, { @@ -7575,7 +7348,7 @@ "fields": { "package": 10490, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -7584,7 +7357,7 @@ "fields": { "package": 10489, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -7593,7 +7366,7 @@ "fields": { "package": 10443, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -7602,16 +7375,7 @@ "fields": { "package": 10457, "vulnerability": 389, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3448, - "fields": { - "package": 10421, - "vulnerability": 296, - "is_vulnerable": false + "patched_package": 10460 } }, { @@ -7620,7 +7384,7 @@ "fields": { "package": 10386, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -7629,16 +7393,7 @@ "fields": { "package": 10398, "vulnerability": 330, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3451, - "fields": { - "package": 10488, - "vulnerability": 461, - "is_vulnerable": false + "patched_package": 10396 } }, { @@ -7647,7 +7402,7 @@ "fields": { "package": 10477, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -7656,7 +7411,7 @@ "fields": { "package": 10486, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -7665,7 +7420,7 @@ "fields": { "package": 10426, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -7674,7 +7429,7 @@ "fields": { "package": 10429, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -7683,16 +7438,7 @@ "fields": { "package": 10482, "vulnerability": 375, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3457, - "fields": { - "package": 10469, - "vulnerability": 470, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -7701,7 +7447,7 @@ "fields": { "package": 10468, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -7710,7 +7456,7 @@ "fields": { "package": 10507, "vulnerability": 396, - "is_vulnerable": true + "patched_package": 10508 } }, { @@ -7719,16 +7465,7 @@ "fields": { "package": 10435, "vulnerability": 468, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3461, - "fields": { - "package": 10444, - "vulnerability": 384, - "is_vulnerable": false + "patched_package": 10430 } }, { @@ -7737,7 +7474,7 @@ "fields": { "package": 10516, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10517 } }, { @@ -7746,7 +7483,7 @@ "fields": { "package": 10469, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -7755,7 +7492,7 @@ "fields": { "package": 10401, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -7764,7 +7501,7 @@ "fields": { "package": 10438, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -7773,7 +7510,7 @@ "fields": { "package": 10470, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -7782,7 +7519,7 @@ "fields": { "package": 10452, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -7791,7 +7528,7 @@ "fields": { "package": 10478, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -7800,7 +7537,7 @@ "fields": { "package": 10443, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -7809,7 +7546,7 @@ "fields": { "package": 10490, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -7818,7 +7555,7 @@ "fields": { "package": 10433, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -7827,7 +7564,7 @@ "fields": { "package": 10486, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -7836,7 +7573,7 @@ "fields": { "package": 10483, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -7845,16 +7582,7 @@ "fields": { "package": 10453, "vulnerability": 356, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3475, - "fields": { - "package": 10387, - "vulnerability": 306, - "is_vulnerable": false + "patched_package": 10501 } }, { @@ -7863,7 +7591,7 @@ "fields": { "package": 10466, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -7872,7 +7600,7 @@ "fields": { "package": 10509, "vulnerability": 399, - "is_vulnerable": true + "patched_package": null } }, { @@ -7881,7 +7609,7 @@ "fields": { "package": 10476, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -7890,7 +7618,7 @@ "fields": { "package": 10429, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -7899,7 +7627,7 @@ "fields": { "package": 10441, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -7908,7 +7636,7 @@ "fields": { "package": 10482, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -7917,7 +7645,7 @@ "fields": { "package": 10435, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -7926,7 +7654,7 @@ "fields": { "package": 10381, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -7935,7 +7663,7 @@ "fields": { "package": 10423, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -7944,7 +7672,7 @@ "fields": { "package": 10383, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -7953,7 +7681,7 @@ "fields": { "package": 10468, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -7962,7 +7690,7 @@ "fields": { "package": 10509, "vulnerability": 397, - "is_vulnerable": true + "patched_package": null } }, { @@ -7971,7 +7699,7 @@ "fields": { "package": 10443, "vulnerability": 469, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -7980,7 +7708,7 @@ "fields": { "package": 10481, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -7989,7 +7717,7 @@ "fields": { "package": 10401, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -7998,7 +7726,7 @@ "fields": { "package": 10445, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -8007,7 +7735,7 @@ "fields": { "package": 10459, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -8016,7 +7744,7 @@ "fields": { "package": 10399, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -8025,7 +7753,7 @@ "fields": { "package": 10452, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -8034,7 +7762,7 @@ "fields": { "package": 10491, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -8043,7 +7771,7 @@ "fields": { "package": 10490, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -8052,7 +7780,7 @@ "fields": { "package": 10433, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -8061,7 +7789,7 @@ "fields": { "package": 10433, "vulnerability": 354, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -8070,7 +7798,7 @@ "fields": { "package": 10489, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -8079,16 +7807,7 @@ "fields": { "package": 10442, "vulnerability": 370, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3501, - "fields": { - "package": 10418, - "vulnerability": 311, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -8097,7 +7816,7 @@ "fields": { "package": 10429, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -8106,7 +7825,7 @@ "fields": { "package": 10514, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -8115,7 +7834,7 @@ "fields": { "package": 10467, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -8124,7 +7843,7 @@ "fields": { "package": 10482, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -8133,7 +7852,7 @@ "fields": { "package": 10522, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -8142,7 +7861,7 @@ "fields": { "package": 10448, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -8151,7 +7870,7 @@ "fields": { "package": 10482, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -8160,7 +7879,7 @@ "fields": { "package": 10463, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -8169,7 +7888,7 @@ "fields": { "package": 10476, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -8178,7 +7897,7 @@ "fields": { "package": 10429, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -8187,7 +7906,7 @@ "fields": { "package": 10483, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -8196,7 +7915,7 @@ "fields": { "package": 10443, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -8205,7 +7924,7 @@ "fields": { "package": 10492, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -8214,7 +7933,7 @@ "fields": { "package": 10491, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -8223,7 +7942,7 @@ "fields": { "package": 10505, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -8232,7 +7951,7 @@ "fields": { "package": 10464, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -8241,7 +7960,7 @@ "fields": { "package": 10390, "vulnerability": 307, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -8250,7 +7969,7 @@ "fields": { "package": 10489, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10481 } }, { @@ -8259,7 +7978,7 @@ "fields": { "package": 10397, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -8268,7 +7987,7 @@ "fields": { "package": 10453, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -8277,7 +7996,7 @@ "fields": { "package": 10459, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -8286,7 +8005,7 @@ "fields": { "package": 10393, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -8295,7 +8014,7 @@ "fields": { "package": 10466, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -8304,7 +8023,7 @@ "fields": { "package": 10400, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -8313,7 +8032,7 @@ "fields": { "package": 10426, "vulnerability": 383, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -8322,7 +8041,7 @@ "fields": { "package": 10437, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -8331,7 +8050,7 @@ "fields": { "package": 10452, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -8340,7 +8059,7 @@ "fields": { "package": 10458, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -8349,7 +8068,7 @@ "fields": { "package": 10392, "vulnerability": 345, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -8358,7 +8077,7 @@ "fields": { "package": 10480, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -8367,7 +8086,7 @@ "fields": { "package": 10433, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -8376,7 +8095,7 @@ "fields": { "package": 10489, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -8385,7 +8104,7 @@ "fields": { "package": 10443, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -8394,7 +8113,7 @@ "fields": { "package": 10442, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -8403,7 +8122,7 @@ "fields": { "package": 10489, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -8412,7 +8131,7 @@ "fields": { "package": 10388, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -8421,7 +8140,7 @@ "fields": { "package": 10440, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -8430,7 +8149,7 @@ "fields": { "package": 10489, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -8439,7 +8158,7 @@ "fields": { "package": 10476, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -8448,7 +8167,7 @@ "fields": { "package": 10396, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -8457,16 +8176,7 @@ "fields": { "package": 10445, "vulnerability": 347, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3543, - "fields": { - "package": 10520, - "vulnerability": 408, - "is_vulnerable": false + "patched_package": 10434 } }, { @@ -8475,7 +8185,7 @@ "fields": { "package": 10444, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -8484,7 +8194,7 @@ "fields": { "package": 10459, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -8493,7 +8203,7 @@ "fields": { "package": 10492, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -8502,16 +8212,7 @@ "fields": { "package": 10384, "vulnerability": 312, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3548, - "fields": { - "package": 10388, - "vulnerability": 377, - "is_vulnerable": false + "patched_package": 10408 } }, { @@ -8520,7 +8221,7 @@ "fields": { "package": 10391, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -8529,7 +8230,7 @@ "fields": { "package": 10428, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -8538,7 +8239,7 @@ "fields": { "package": 10440, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -8547,7 +8248,7 @@ "fields": { "package": 10446, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -8556,7 +8257,7 @@ "fields": { "package": 10513, "vulnerability": 410, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -8565,7 +8266,7 @@ "fields": { "package": 10506, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -8574,7 +8275,7 @@ "fields": { "package": 10453, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -8583,16 +8284,7 @@ "fields": { "package": 10460, "vulnerability": 361, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3557, - "fields": { - "package": 10396, - "vulnerability": 329, - "is_vulnerable": false + "patched_package": 10501 } }, { @@ -8601,7 +8293,7 @@ "fields": { "package": 10468, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -8610,7 +8302,7 @@ "fields": { "package": 10469, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -8619,7 +8311,7 @@ "fields": { "package": 10480, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -8628,16 +8320,7 @@ "fields": { "package": 10409, "vulnerability": 298, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3562, - "fields": { - "package": 10501, - "vulnerability": 361, - "is_vulnerable": false + "patched_package": 10411 } }, { @@ -8646,7 +8329,7 @@ "fields": { "package": 10493, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -8655,7 +8338,7 @@ "fields": { "package": 10476, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -8664,16 +8347,7 @@ "fields": { "package": 10473, "vulnerability": 457, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3566, - "fields": { - "package": 10484, - "vulnerability": 391, - "is_vulnerable": false + "patched_package": 10476 } }, { @@ -8682,7 +8356,7 @@ "fields": { "package": 10466, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -8691,7 +8365,7 @@ "fields": { "package": 10443, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -8700,7 +8374,7 @@ "fields": { "package": 10442, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -8709,7 +8383,7 @@ "fields": { "package": 10489, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -8718,7 +8392,7 @@ "fields": { "package": 10456, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -8727,7 +8401,7 @@ "fields": { "package": 10397, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -8736,7 +8410,7 @@ "fields": { "package": 10435, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -8745,7 +8419,7 @@ "fields": { "package": 10449, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10457 } }, { @@ -8754,7 +8428,7 @@ "fields": { "package": 10492, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -8763,7 +8437,7 @@ "fields": { "package": 10456, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -8772,7 +8446,7 @@ "fields": { "package": 10466, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -8781,7 +8455,7 @@ "fields": { "package": 10406, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -8790,7 +8464,7 @@ "fields": { "package": 10444, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -8799,7 +8473,7 @@ "fields": { "package": 10391, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -8808,7 +8482,7 @@ "fields": { "package": 10440, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -8817,7 +8491,7 @@ "fields": { "package": 10493, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -8826,7 +8500,7 @@ "fields": { "package": 10435, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -8835,7 +8509,7 @@ "fields": { "package": 10405, "vulnerability": 345, - "is_vulnerable": true + "patched_package": null } }, { @@ -8844,7 +8518,7 @@ "fields": { "package": 10491, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -8853,7 +8527,7 @@ "fields": { "package": 10383, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -8862,16 +8536,7 @@ "fields": { "package": 10449, "vulnerability": 375, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3588, - "fields": { - "package": 10450, - "vulnerability": 381, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -8880,7 +8545,7 @@ "fields": { "package": 10389, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -8889,7 +8554,7 @@ "fields": { "package": 10481, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -8898,7 +8563,7 @@ "fields": { "package": 10480, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -8907,7 +8572,7 @@ "fields": { "package": 10405, "vulnerability": 342, - "is_vulnerable": true + "patched_package": null } }, { @@ -8916,7 +8581,7 @@ "fields": { "package": 10489, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -8925,7 +8590,7 @@ "fields": { "package": 10388, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -8934,7 +8599,7 @@ "fields": { "package": 10479, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -8943,7 +8608,7 @@ "fields": { "package": 10426, "vulnerability": 392, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -8952,16 +8617,7 @@ "fields": { "package": 10443, "vulnerability": 339, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3598, - "fields": { - "package": 10427, - "vulnerability": 354, - "is_vulnerable": false + "patched_package": 10433 } }, { @@ -8970,7 +8626,7 @@ "fields": { "package": 10492, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -8979,7 +8635,7 @@ "fields": { "package": 10457, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -8988,7 +8644,7 @@ "fields": { "package": 10504, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -8997,7 +8653,7 @@ "fields": { "package": 10426, "vulnerability": 456, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -9006,7 +8662,7 @@ "fields": { "package": 10397, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -9015,7 +8671,7 @@ "fields": { "package": 10472, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -9024,7 +8680,7 @@ "fields": { "package": 10453, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -9033,7 +8689,7 @@ "fields": { "package": 10441, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -9042,7 +8698,7 @@ "fields": { "package": 10495, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -9051,7 +8707,7 @@ "fields": { "package": 10456, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -9060,7 +8716,7 @@ "fields": { "package": 10466, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -9069,7 +8725,7 @@ "fields": { "package": 10473, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -9078,7 +8734,7 @@ "fields": { "package": 10440, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -9087,7 +8743,7 @@ "fields": { "package": 10482, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -9096,7 +8752,7 @@ "fields": { "package": 10481, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -9105,7 +8761,7 @@ "fields": { "package": 10479, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -9114,7 +8770,7 @@ "fields": { "package": 10429, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -9123,7 +8779,7 @@ "fields": { "package": 10394, "vulnerability": 335, - "is_vulnerable": true + "patched_package": null } }, { @@ -9132,7 +8788,7 @@ "fields": { "package": 10443, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -9141,7 +8797,7 @@ "fields": { "package": 10449, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -9150,16 +8806,7 @@ "fields": { "package": 10383, "vulnerability": 301, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3620, - "fields": { - "package": 10425, - "vulnerability": 299, - "is_vulnerable": false + "patched_package": 10421 } }, { @@ -9168,7 +8815,7 @@ "fields": { "package": 10456, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -9177,7 +8824,7 @@ "fields": { "package": 10505, "vulnerability": 401, - "is_vulnerable": true + "patched_package": 10514 } }, { @@ -9186,7 +8833,7 @@ "fields": { "package": 10427, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -9195,7 +8842,7 @@ "fields": { "package": 10530, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -9204,7 +8851,7 @@ "fields": { "package": 10448, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -9213,7 +8860,7 @@ "fields": { "package": 10451, "vulnerability": 440, - "is_vulnerable": true + "patched_package": 10495 } }, { @@ -9222,7 +8869,7 @@ "fields": { "package": 10470, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -9231,7 +8878,7 @@ "fields": { "package": 10426, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -9240,7 +8887,7 @@ "fields": { "package": 10479, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -9249,7 +8896,7 @@ "fields": { "package": 10458, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -9258,7 +8905,7 @@ "fields": { "package": 10479, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -9267,7 +8914,7 @@ "fields": { "package": 10466, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -9276,7 +8923,7 @@ "fields": { "package": 10480, "vulnerability": 442, - "is_vulnerable": true + "patched_package": null } }, { @@ -9285,7 +8932,7 @@ "fields": { "package": 10435, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -9294,7 +8941,7 @@ "fields": { "package": 10404, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -9303,7 +8950,7 @@ "fields": { "package": 10449, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -9312,7 +8959,7 @@ "fields": { "package": 10448, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -9321,16 +8968,7 @@ "fields": { "package": 10482, "vulnerability": 360, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3639, - "fields": { - "package": 10431, - "vulnerability": 382, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -9339,7 +8977,7 @@ "fields": { "package": 10381, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -9348,7 +8986,7 @@ "fields": { "package": 10472, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -9357,7 +8995,7 @@ "fields": { "package": 10430, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -9366,7 +9004,7 @@ "fields": { "package": 10492, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -9375,7 +9013,7 @@ "fields": { "package": 10443, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -9384,7 +9022,7 @@ "fields": { "package": 10450, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -9393,7 +9031,7 @@ "fields": { "package": 10384, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -9402,7 +9040,7 @@ "fields": { "package": 10459, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -9411,7 +9049,7 @@ "fields": { "package": 10458, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -9420,7 +9058,7 @@ "fields": { "package": 10439, "vulnerability": 456, - "is_vulnerable": true + "patched_package": null } }, { @@ -9429,7 +9067,7 @@ "fields": { "package": 10392, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -9438,7 +9076,7 @@ "fields": { "package": 10392, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -9447,7 +9085,7 @@ "fields": { "package": 10399, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10417 } }, { @@ -9456,7 +9094,7 @@ "fields": { "package": 10446, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -9465,7 +9103,7 @@ "fields": { "package": 10483, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -9474,7 +9112,7 @@ "fields": { "package": 10463, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -9483,7 +9121,7 @@ "fields": { "package": 10456, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -9492,16 +9130,7 @@ "fields": { "package": 10426, "vulnerability": 358, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3658, - "fields": { - "package": 10495, - "vulnerability": 441, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -9510,7 +9139,7 @@ "fields": { "package": 10432, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -9519,7 +9148,7 @@ "fields": { "package": 10507, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -9528,7 +9157,7 @@ "fields": { "package": 10475, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -9537,16 +9166,7 @@ "fields": { "package": 10479, "vulnerability": 427, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3663, - "fields": { - "package": 10436, - "vulnerability": 336, - "is_vulnerable": false + "patched_package": 10486 } }, { @@ -9555,7 +9175,7 @@ "fields": { "package": 10482, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -9564,7 +9184,7 @@ "fields": { "package": 10400, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -9573,16 +9193,7 @@ "fields": { "package": 10442, "vulnerability": 328, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3667, - "fields": { - "package": 10498, - "vulnerability": 357, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -9591,7 +9202,7 @@ "fields": { "package": 10456, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -9600,7 +9211,7 @@ "fields": { "package": 10487, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -9609,7 +9220,7 @@ "fields": { "package": 10396, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -9618,16 +9229,7 @@ "fields": { "package": 10435, "vulnerability": 394, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3672, - "fields": { - "package": 10455, - "vulnerability": 389, - "is_vulnerable": false + "patched_package": 10444 } }, { @@ -9636,7 +9238,7 @@ "fields": { "package": 10476, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -9645,7 +9247,7 @@ "fields": { "package": 10456, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -9654,7 +9256,7 @@ "fields": { "package": 10440, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -9663,7 +9265,7 @@ "fields": { "package": 10443, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -9672,7 +9274,7 @@ "fields": { "package": 10381, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -9681,7 +9283,7 @@ "fields": { "package": 10430, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -9690,7 +9292,7 @@ "fields": { "package": 10483, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -9699,7 +9301,7 @@ "fields": { "package": 10395, "vulnerability": 345, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -9708,7 +9310,7 @@ "fields": { "package": 10392, "vulnerability": 348, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -9717,7 +9319,7 @@ "fields": { "package": 10492, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -9726,7 +9328,7 @@ "fields": { "package": 10481, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -9735,7 +9337,7 @@ "fields": { "package": 10489, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -9744,7 +9346,7 @@ "fields": { "package": 10426, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -9753,7 +9355,7 @@ "fields": { "package": 10459, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -9762,7 +9364,7 @@ "fields": { "package": 10440, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -9771,7 +9373,7 @@ "fields": { "package": 10426, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -9780,7 +9382,7 @@ "fields": { "package": 10515, "vulnerability": 403, - "is_vulnerable": true + "patched_package": 10517 } }, { @@ -9789,25 +9391,7 @@ "fields": { "package": 10395, "vulnerability": 342, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3691, - "fields": { - "package": 10464, - "vulnerability": 425, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3692, - "fields": { - "package": 10476, - "vulnerability": 457, - "is_vulnerable": false + "patched_package": 10400 } }, { @@ -9816,7 +9400,7 @@ "fields": { "package": 10469, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -9825,7 +9409,7 @@ "fields": { "package": 10482, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -9834,7 +9418,7 @@ "fields": { "package": 10435, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -9843,16 +9427,7 @@ "fields": { "package": 10462, "vulnerability": 463, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3697, - "fields": { - "package": 10411, - "vulnerability": 298, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -9861,7 +9436,7 @@ "fields": { "package": 10387, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -9870,7 +9445,7 @@ "fields": { "package": 10443, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -9879,7 +9454,7 @@ "fields": { "package": 10485, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -9888,7 +9463,7 @@ "fields": { "package": 10440, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -9897,7 +9472,7 @@ "fields": { "package": 10523, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -9906,16 +9481,7 @@ "fields": { "package": 10456, "vulnerability": 363, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3704, - "fields": { - "package": 10520, - "vulnerability": 410, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -9924,7 +9490,7 @@ "fields": { "package": 10480, "vulnerability": 451, - "is_vulnerable": true + "patched_package": null } }, { @@ -9933,16 +9499,7 @@ "fields": { "package": 10397, "vulnerability": 304, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3707, - "fields": { - "package": 10400, - "vulnerability": 349, - "is_vulnerable": false + "patched_package": 10402 } }, { @@ -9951,7 +9508,7 @@ "fields": { "package": 10472, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -9960,16 +9517,7 @@ "fields": { "package": 10405, "vulnerability": 300, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3710, - "fields": { - "package": 10496, - "vulnerability": 343, - "is_vulnerable": false + "patched_package": 10422 } }, { @@ -9978,25 +9526,7 @@ "fields": { "package": 10412, "vulnerability": 298, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3712, - "fields": { - "package": 10497, - "vulnerability": 363, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3713, - "fields": { - "package": 10458, - "vulnerability": 452, - "is_vulnerable": false + "patched_package": null } }, { @@ -10005,7 +9535,7 @@ "fields": { "package": 10431, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -10014,7 +9544,7 @@ "fields": { "package": 10428, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -10023,7 +9553,7 @@ "fields": { "package": 10439, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -10032,7 +9562,7 @@ "fields": { "package": 10392, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -10041,7 +9571,7 @@ "fields": { "package": 10520, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -10050,7 +9580,7 @@ "fields": { "package": 10488, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -10059,7 +9589,7 @@ "fields": { "package": 10487, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -10068,7 +9598,7 @@ "fields": { "package": 10495, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -10077,7 +9607,7 @@ "fields": { "package": 10460, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -10086,7 +9616,7 @@ "fields": { "package": 10469, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -10095,7 +9625,7 @@ "fields": { "package": 10466, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -10104,7 +9634,7 @@ "fields": { "package": 10483, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -10113,7 +9643,7 @@ "fields": { "package": 10448, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -10122,16 +9652,7 @@ "fields": { "package": 10489, "vulnerability": 365, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3728, - "fields": { - "package": 10438, - "vulnerability": 387, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -10140,7 +9661,7 @@ "fields": { "package": 10443, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -10149,7 +9670,7 @@ "fields": { "package": 10459, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -10158,7 +9679,7 @@ "fields": { "package": 10439, "vulnerability": 463, - "is_vulnerable": true + "patched_package": null } }, { @@ -10167,7 +9688,7 @@ "fields": { "package": 10399, "vulnerability": 305, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -10176,7 +9697,7 @@ "fields": { "package": 10472, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -10185,16 +9706,7 @@ "fields": { "package": 10406, "vulnerability": 303, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3735, - "fields": { - "package": 10497, - "vulnerability": 346, - "is_vulnerable": false + "patched_package": 10404 } }, { @@ -10203,7 +9715,7 @@ "fields": { "package": 10462, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -10212,7 +9724,7 @@ "fields": { "package": 10439, "vulnerability": 385, - "is_vulnerable": true + "patched_package": null } }, { @@ -10221,7 +9733,7 @@ "fields": { "package": 10482, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -10230,7 +9742,7 @@ "fields": { "package": 10440, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -10239,16 +9751,7 @@ "fields": { "package": 10457, "vulnerability": 451, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3741, - "fields": { - "package": 10464, - "vulnerability": 435, - "is_vulnerable": false + "patched_package": 10458 } }, { @@ -10257,7 +9760,7 @@ "fields": { "package": 10449, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -10266,7 +9769,7 @@ "fields": { "package": 10448, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -10275,7 +9778,7 @@ "fields": { "package": 10495, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -10284,7 +9787,7 @@ "fields": { "package": 10382, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -10293,7 +9796,7 @@ "fields": { "package": 10436, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -10302,7 +9805,7 @@ "fields": { "package": 10394, "vulnerability": 334, - "is_vulnerable": true + "patched_package": null } }, { @@ -10311,7 +9814,7 @@ "fields": { "package": 10489, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -10320,7 +9823,7 @@ "fields": { "package": 10473, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -10329,7 +9832,7 @@ "fields": { "package": 10487, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -10338,7 +9841,7 @@ "fields": { "package": 10529, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -10347,16 +9850,7 @@ "fields": { "package": 10402, "vulnerability": 306, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3753, - "fields": { - "package": 10407, - "vulnerability": 293, - "is_vulnerable": false + "patched_package": 10387 } }, { @@ -10365,7 +9859,7 @@ "fields": { "package": 10464, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -10374,7 +9868,7 @@ "fields": { "package": 10472, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -10383,7 +9877,7 @@ "fields": { "package": 10444, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -10392,7 +9886,7 @@ "fields": { "package": 10432, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -10401,7 +9895,7 @@ "fields": { "package": 10435, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -10410,7 +9904,7 @@ "fields": { "package": 10441, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -10419,16 +9913,7 @@ "fields": { "package": 10466, "vulnerability": 365, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3761, - "fields": { - "package": 10450, - "vulnerability": 380, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -10437,7 +9922,7 @@ "fields": { "package": 10441, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -10446,7 +9931,7 @@ "fields": { "package": 10475, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -10455,7 +9940,7 @@ "fields": { "package": 10482, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -10464,7 +9949,7 @@ "fields": { "package": 10479, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -10473,16 +9958,7 @@ "fields": { "package": 10405, "vulnerability": 309, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3767, - "fields": { - "package": 10455, - "vulnerability": 402, - "is_vulnerable": false + "patched_package": 10408 } }, { @@ -10491,7 +9967,7 @@ "fields": { "package": 10489, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -10500,7 +9976,7 @@ "fields": { "package": 10442, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -10509,7 +9985,7 @@ "fields": { "package": 10456, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -10518,7 +9994,7 @@ "fields": { "package": 10449, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -10527,7 +10003,7 @@ "fields": { "package": 10430, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -10536,16 +10012,7 @@ "fields": { "package": 10383, "vulnerability": 303, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3774, - "fields": { - "package": 10432, - "vulnerability": 355, - "is_vulnerable": false + "patched_package": 10387 } }, { @@ -10554,7 +10021,7 @@ "fields": { "package": 10477, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -10563,7 +10030,7 @@ "fields": { "package": 10438, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -10572,7 +10039,7 @@ "fields": { "package": 10445, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -10581,7 +10048,7 @@ "fields": { "package": 10459, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -10590,7 +10057,7 @@ "fields": { "package": 10426, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -10599,7 +10066,7 @@ "fields": { "package": 10472, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -10608,7 +10075,7 @@ "fields": { "package": 10466, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -10617,7 +10084,7 @@ "fields": { "package": 10475, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -10626,7 +10093,7 @@ "fields": { "package": 10506, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -10635,7 +10102,7 @@ "fields": { "package": 10513, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -10644,7 +10111,7 @@ "fields": { "package": 10405, "vulnerability": 371, - "is_vulnerable": true + "patched_package": null } }, { @@ -10653,7 +10120,7 @@ "fields": { "package": 10435, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -10662,7 +10129,7 @@ "fields": { "package": 10470, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -10671,7 +10138,7 @@ "fields": { "package": 10395, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -10680,7 +10147,7 @@ "fields": { "package": 10449, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -10689,7 +10156,7 @@ "fields": { "package": 10475, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -10698,16 +10165,7 @@ "fields": { "package": 10443, "vulnerability": 365, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3792, - "fields": { - "package": 10458, - "vulnerability": 444, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -10716,7 +10174,7 @@ "fields": { "package": 10506, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10524 } }, { @@ -10725,7 +10183,7 @@ "fields": { "package": 10478, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -10734,7 +10192,7 @@ "fields": { "package": 10397, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -10743,7 +10201,7 @@ "fields": { "package": 10485, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -10752,7 +10210,7 @@ "fields": { "package": 10450, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -10761,7 +10219,7 @@ "fields": { "package": 10392, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -10770,7 +10228,7 @@ "fields": { "package": 10459, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -10779,7 +10237,7 @@ "fields": { "package": 10456, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -10788,7 +10246,7 @@ "fields": { "package": 10382, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -10797,7 +10255,7 @@ "fields": { "package": 10466, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -10806,7 +10264,7 @@ "fields": { "package": 10473, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -10815,7 +10273,7 @@ "fields": { "package": 10426, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -10824,7 +10282,7 @@ "fields": { "package": 10487, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -10833,7 +10291,7 @@ "fields": { "package": 10479, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -10842,7 +10300,7 @@ "fields": { "package": 10488, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -10851,7 +10309,7 @@ "fields": { "package": 10435, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -10860,7 +10318,7 @@ "fields": { "package": 10449, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -10869,7 +10327,7 @@ "fields": { "package": 10491, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -10878,7 +10336,7 @@ "fields": { "package": 10429, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -10887,7 +10345,7 @@ "fields": { "package": 10470, "vulnerability": 434, - "is_vulnerable": true + "patched_package": null } }, { @@ -10896,7 +10354,7 @@ "fields": { "package": 10497, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -10905,7 +10363,7 @@ "fields": { "package": 10443, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -10914,7 +10372,7 @@ "fields": { "package": 10396, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -10923,7 +10381,7 @@ "fields": { "package": 10452, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -10932,7 +10390,7 @@ "fields": { "package": 10495, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -10941,7 +10399,7 @@ "fields": { "package": 10430, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -10950,7 +10408,7 @@ "fields": { "package": 10430, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -10959,7 +10417,7 @@ "fields": { "package": 10474, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -10968,7 +10426,7 @@ "fields": { "package": 10439, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10388 } }, { @@ -10977,7 +10435,7 @@ "fields": { "package": 10438, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -10986,7 +10444,7 @@ "fields": { "package": 10426, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -10995,7 +10453,7 @@ "fields": { "package": 10463, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -11004,7 +10462,7 @@ "fields": { "package": 10478, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -11013,7 +10471,7 @@ "fields": { "package": 10519, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -11022,7 +10480,7 @@ "fields": { "package": 10480, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -11031,7 +10489,7 @@ "fields": { "package": 10526, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -11040,7 +10498,7 @@ "fields": { "package": 10392, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -11049,7 +10507,7 @@ "fields": { "package": 10440, "vulnerability": 395, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -11058,7 +10516,7 @@ "fields": { "package": 10529, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -11067,7 +10525,7 @@ "fields": { "package": 10462, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -11076,7 +10534,7 @@ "fields": { "package": 10488, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -11085,7 +10543,7 @@ "fields": { "package": 10434, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -11094,7 +10552,7 @@ "fields": { "package": 10431, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -11103,7 +10561,7 @@ "fields": { "package": 10464, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -11112,7 +10570,7 @@ "fields": { "package": 10456, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -11121,7 +10579,7 @@ "fields": { "package": 10470, "vulnerability": 417, - "is_vulnerable": true + "patched_package": null } }, { @@ -11130,7 +10588,7 @@ "fields": { "package": 10390, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -11139,7 +10597,7 @@ "fields": { "package": 10512, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -11148,7 +10606,7 @@ "fields": { "package": 10392, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -11157,7 +10615,7 @@ "fields": { "package": 10519, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -11166,7 +10624,7 @@ "fields": { "package": 10449, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -11175,7 +10633,7 @@ "fields": { "package": 10395, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -11184,7 +10642,7 @@ "fields": { "package": 10426, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -11193,7 +10651,7 @@ "fields": { "package": 10479, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -11202,7 +10660,7 @@ "fields": { "package": 10474, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -11211,7 +10669,7 @@ "fields": { "package": 10439, "vulnerability": 360, - "is_vulnerable": true + "patched_package": null } }, { @@ -11220,7 +10678,7 @@ "fields": { "package": 10486, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -11229,7 +10687,7 @@ "fields": { "package": 10429, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -11238,7 +10696,7 @@ "fields": { "package": 10428, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -11247,7 +10705,7 @@ "fields": { "package": 10435, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -11256,7 +10714,7 @@ "fields": { "package": 10449, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -11265,25 +10723,7 @@ "fields": { "package": 10386, "vulnerability": 311, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3855, - "fields": { - "package": 10490, - "vulnerability": 387, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3856, - "fields": { - "package": 10496, - "vulnerability": 365, - "is_vulnerable": false + "patched_package": 10418 } }, { @@ -11292,7 +10732,7 @@ "fields": { "package": 10519, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10521 } }, { @@ -11301,7 +10741,7 @@ "fields": { "package": 10485, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -11310,7 +10750,7 @@ "fields": { "package": 10478, "vulnerability": 433, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -11319,7 +10759,7 @@ "fields": { "package": 10462, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -11328,7 +10768,7 @@ "fields": { "package": 10487, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -11337,7 +10777,7 @@ "fields": { "package": 10438, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -11346,7 +10786,7 @@ "fields": { "package": 10441, "vulnerability": 398, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -11355,16 +10795,7 @@ "fields": { "package": 10440, "vulnerability": 378, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3865, - "fields": { - "package": 10431, - "vulnerability": 391, - "is_vulnerable": false + "patched_package": 10431 } }, { @@ -11373,7 +10804,7 @@ "fields": { "package": 10503, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -11382,7 +10813,7 @@ "fields": { "package": 10443, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -11391,7 +10822,7 @@ "fields": { "package": 10412, "vulnerability": 297, - "is_vulnerable": true + "patched_package": null } }, { @@ -11400,7 +10831,7 @@ "fields": { "package": 10487, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -11409,7 +10840,7 @@ "fields": { "package": 10506, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -11418,7 +10849,7 @@ "fields": { "package": 10505, "vulnerability": 393, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -11427,7 +10858,7 @@ "fields": { "package": 10473, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -11436,7 +10867,7 @@ "fields": { "package": 10439, "vulnerability": 465, - "is_vulnerable": true + "patched_package": null } }, { @@ -11445,7 +10876,7 @@ "fields": { "package": 10514, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -11454,25 +10885,7 @@ "fields": { "package": 10493, "vulnerability": 468, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3876, - "fields": { - "package": 10511, - "vulnerability": 400, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3877, - "fields": { - "package": 10398, - "vulnerability": 337, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -11481,7 +10894,7 @@ "fields": { "package": 10397, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -11490,7 +10903,7 @@ "fields": { "package": 10442, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -11499,7 +10912,7 @@ "fields": { "package": 10488, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -11508,7 +10921,7 @@ "fields": { "package": 10495, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -11517,7 +10930,7 @@ "fields": { "package": 10468, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -11526,7 +10939,7 @@ "fields": { "package": 10429, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -11535,7 +10948,7 @@ "fields": { "package": 10382, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -11544,7 +10957,7 @@ "fields": { "package": 10449, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -11553,7 +10966,7 @@ "fields": { "package": 10438, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -11562,7 +10975,7 @@ "fields": { "package": 10442, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -11571,7 +10984,7 @@ "fields": { "package": 10456, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -11580,7 +10993,7 @@ "fields": { "package": 10463, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -11589,7 +11002,7 @@ "fields": { "package": 10397, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -11598,16 +11011,7 @@ "fields": { "package": 10405, "vulnerability": 326, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3892, - "fields": { - "package": 10447, - "vulnerability": 324, - "is_vulnerable": false + "patched_package": null } }, { @@ -11616,7 +11020,7 @@ "fields": { "package": 10478, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -11625,7 +11029,7 @@ "fields": { "package": 10426, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -11634,7 +11038,7 @@ "fields": { "package": 10462, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -11643,7 +11047,7 @@ "fields": { "package": 10464, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -11652,7 +11056,7 @@ "fields": { "package": 10439, "vulnerability": 384, - "is_vulnerable": true + "patched_package": null } }, { @@ -11661,7 +11065,7 @@ "fields": { "package": 10481, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -11670,7 +11074,7 @@ "fields": { "package": 10488, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -11679,7 +11083,7 @@ "fields": { "package": 10433, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -11688,7 +11092,7 @@ "fields": { "package": 10386, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -11697,7 +11101,7 @@ "fields": { "package": 10442, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -11706,16 +11110,7 @@ "fields": { "package": 10441, "vulnerability": 326, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3904, - "fields": { - "package": 10464, - "vulnerability": 434, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -11724,7 +11119,7 @@ "fields": { "package": 10399, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -11733,7 +11128,7 @@ "fields": { "package": 10389, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -11742,7 +11137,7 @@ "fields": { "package": 10464, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -11751,7 +11146,7 @@ "fields": { "package": 10429, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -11760,7 +11155,7 @@ "fields": { "package": 10489, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -11769,7 +11164,7 @@ "fields": { "package": 10453, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -11778,7 +11173,7 @@ "fields": { "package": 10388, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -11787,7 +11182,7 @@ "fields": { "package": 10456, "vulnerability": 416, - "is_vulnerable": true + "patched_package": 10479 } }, { @@ -11796,7 +11191,7 @@ "fields": { "package": 10509, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -11805,7 +11200,7 @@ "fields": { "package": 10394, "vulnerability": 319, - "is_vulnerable": true + "patched_package": null } }, { @@ -11814,7 +11209,7 @@ "fields": { "package": 10382, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -11823,7 +11218,7 @@ "fields": { "package": 10485, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -11832,7 +11227,7 @@ "fields": { "package": 10438, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -11841,7 +11236,7 @@ "fields": { "package": 10468, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -11850,7 +11245,7 @@ "fields": { "package": 10477, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -11859,7 +11254,7 @@ "fields": { "package": 10470, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -11868,7 +11263,7 @@ "fields": { "package": 10430, "vulnerability": 395, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -11877,7 +11272,7 @@ "fields": { "package": 10472, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -11886,7 +11281,7 @@ "fields": { "package": 10519, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -11895,7 +11290,7 @@ "fields": { "package": 10486, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -11904,7 +11299,7 @@ "fields": { "package": 10394, "vulnerability": 316, - "is_vulnerable": true + "patched_package": null } }, { @@ -11913,7 +11308,7 @@ "fields": { "package": 10478, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -11922,7 +11317,7 @@ "fields": { "package": 10412, "vulnerability": 307, - "is_vulnerable": true + "patched_package": null } }, { @@ -11931,7 +11326,7 @@ "fields": { "package": 10426, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -11940,16 +11335,7 @@ "fields": { "package": 10487, "vulnerability": 458, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3930, - "fields": { - "package": 10435, - "vulnerability": 460, - "is_vulnerable": false + "patched_package": 10492 } }, { @@ -11958,7 +11344,7 @@ "fields": { "package": 10452, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -11967,7 +11353,7 @@ "fields": { "package": 10440, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -11976,7 +11362,7 @@ "fields": { "package": 10434, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -11985,7 +11371,7 @@ "fields": { "package": 10488, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -11994,7 +11380,7 @@ "fields": { "package": 10455, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -12003,7 +11389,7 @@ "fields": { "package": 10382, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -12012,7 +11398,7 @@ "fields": { "package": 10509, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -12021,7 +11407,7 @@ "fields": { "package": 10442, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -12030,7 +11416,7 @@ "fields": { "package": 10480, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -12039,7 +11425,7 @@ "fields": { "package": 10385, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -12048,7 +11434,7 @@ "fields": { "package": 10469, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -12057,7 +11443,7 @@ "fields": { "package": 10479, "vulnerability": 425, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -12066,7 +11452,7 @@ "fields": { "package": 10429, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -12075,7 +11461,7 @@ "fields": { "package": 10489, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -12084,7 +11470,7 @@ "fields": { "package": 10468, "vulnerability": 433, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -12093,7 +11479,7 @@ "fields": { "package": 10477, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -12102,7 +11488,7 @@ "fields": { "package": 10397, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -12111,7 +11497,7 @@ "fields": { "package": 10438, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -12120,7 +11506,7 @@ "fields": { "package": 10441, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -12129,7 +11515,7 @@ "fields": { "package": 10405, "vulnerability": 357, - "is_vulnerable": true + "patched_package": null } }, { @@ -12138,7 +11524,7 @@ "fields": { "package": 10494, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -12147,7 +11533,7 @@ "fields": { "package": 10428, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -12156,7 +11542,7 @@ "fields": { "package": 10513, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -12165,7 +11551,7 @@ "fields": { "package": 10480, "vulnerability": 443, - "is_vulnerable": true + "patched_package": null } }, { @@ -12174,7 +11560,7 @@ "fields": { "package": 10430, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -12183,7 +11569,7 @@ "fields": { "package": 10487, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -12192,16 +11578,7 @@ "fields": { "package": 10481, "vulnerability": 385, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3958, - "fields": { - "package": 10469, - "vulnerability": 360, - "is_vulnerable": false + "patched_package": 10455 } }, { @@ -12210,7 +11587,7 @@ "fields": { "package": 10433, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -12219,7 +11596,7 @@ "fields": { "package": 10402, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -12228,7 +11605,7 @@ "fields": { "package": 10477, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -12237,7 +11614,7 @@ "fields": { "package": 10482, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -12246,7 +11623,7 @@ "fields": { "package": 10464, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -12255,7 +11632,7 @@ "fields": { "package": 10503, "vulnerability": 411, - "is_vulnerable": true + "patched_package": 10505 } }, { @@ -12264,7 +11641,7 @@ "fields": { "package": 10429, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -12273,7 +11650,7 @@ "fields": { "package": 10504, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -12282,7 +11659,7 @@ "fields": { "package": 10470, "vulnerability": 436, - "is_vulnerable": true + "patched_package": null } }, { @@ -12291,7 +11668,7 @@ "fields": { "package": 10445, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -12300,7 +11677,7 @@ "fields": { "package": 10498, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -12309,7 +11686,7 @@ "fields": { "package": 10495, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -12318,7 +11695,7 @@ "fields": { "package": 10465, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -12327,7 +11704,7 @@ "fields": { "package": 10478, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -12336,7 +11713,7 @@ "fields": { "package": 10478, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -12345,7 +11722,7 @@ "fields": { "package": 10432, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -12354,7 +11731,7 @@ "fields": { "package": 10488, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -12363,7 +11740,7 @@ "fields": { "package": 10441, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -12372,7 +11749,7 @@ "fields": { "package": 10453, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -12381,7 +11758,7 @@ "fields": { "package": 10456, "vulnerability": 425, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -12390,16 +11767,7 @@ "fields": { "package": 10393, "vulnerability": 308, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3980, - "fields": { - "package": 10384, - "vulnerability": 319, - "is_vulnerable": false + "patched_package": 10386 } }, { @@ -12408,7 +11776,7 @@ "fields": { "package": 10395, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -12417,7 +11785,7 @@ "fields": { "package": 10439, "vulnerability": 455, - "is_vulnerable": true + "patched_package": null } }, { @@ -12426,7 +11794,7 @@ "fields": { "package": 10487, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -12435,7 +11803,7 @@ "fields": { "package": 10452, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -12444,7 +11812,7 @@ "fields": { "package": 10493, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -12453,7 +11821,7 @@ "fields": { "package": 10429, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -12462,7 +11830,7 @@ "fields": { "package": 10471, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -12471,7 +11839,7 @@ "fields": { "package": 10405, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10390 } }, { @@ -12480,7 +11848,7 @@ "fields": { "package": 10477, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -12489,7 +11857,7 @@ "fields": { "package": 10411, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -12498,7 +11866,7 @@ "fields": { "package": 10464, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -12507,7 +11875,7 @@ "fields": { "package": 10505, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -12516,7 +11884,7 @@ "fields": { "package": 10470, "vulnerability": 419, - "is_vulnerable": true + "patched_package": null } }, { @@ -12525,7 +11893,7 @@ "fields": { "package": 10512, "vulnerability": 410, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -12534,7 +11902,7 @@ "fields": { "package": 10389, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -12543,7 +11911,7 @@ "fields": { "package": 10445, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -12552,16 +11920,7 @@ "fields": { "package": 10392, "vulnerability": 349, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 3998, - "fields": { - "package": 10414, - "vulnerability": 297, - "is_vulnerable": false + "patched_package": 10400 } }, { @@ -12570,7 +11929,7 @@ "fields": { "package": 10454, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -12579,7 +11938,7 @@ "fields": { "package": 10388, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -12588,7 +11947,7 @@ "fields": { "package": 10441, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -12597,7 +11956,7 @@ "fields": { "package": 10526, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -12606,7 +11965,7 @@ "fields": { "package": 10479, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -12615,7 +11974,7 @@ "fields": { "package": 10493, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -12624,7 +11983,7 @@ "fields": { "package": 10494, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -12633,7 +11992,7 @@ "fields": { "package": 10401, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -12642,7 +12001,7 @@ "fields": { "package": 10494, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -12651,16 +12010,7 @@ "fields": { "package": 10475, "vulnerability": 355, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4009, - "fields": { - "package": 10484, - "vulnerability": 378, - "is_vulnerable": false + "patched_package": 10502 } }, { @@ -12669,7 +12019,7 @@ "fields": { "package": 10478, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -12678,7 +12028,7 @@ "fields": { "package": 10488, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -12687,7 +12037,7 @@ "fields": { "package": 10441, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -12696,7 +12046,7 @@ "fields": { "package": 10495, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -12705,7 +12055,7 @@ "fields": { "package": 10455, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -12714,7 +12064,7 @@ "fields": { "package": 10509, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -12723,7 +12073,7 @@ "fields": { "package": 10477, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10483 } }, { @@ -12732,7 +12082,7 @@ "fields": { "package": 10435, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -12741,7 +12091,7 @@ "fields": { "package": 10384, "vulnerability": 316, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -12750,7 +12100,7 @@ "fields": { "package": 10405, "vulnerability": 366, - "is_vulnerable": true + "patched_package": null } }, { @@ -12759,7 +12109,7 @@ "fields": { "package": 10430, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -12768,7 +12118,7 @@ "fields": { "package": 10405, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -12777,7 +12127,7 @@ "fields": { "package": 10478, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -12786,7 +12136,7 @@ "fields": { "package": 10432, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -12795,7 +12145,7 @@ "fields": { "package": 10470, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -12804,7 +12154,7 @@ "fields": { "package": 10392, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -12813,7 +12163,7 @@ "fields": { "package": 10492, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -12822,7 +12172,7 @@ "fields": { "package": 10445, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -12831,7 +12181,7 @@ "fields": { "package": 10448, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -12840,7 +12190,7 @@ "fields": { "package": 10455, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -12849,7 +12199,7 @@ "fields": { "package": 10388, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -12858,16 +12208,7 @@ "fields": { "package": 10400, "vulnerability": 330, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4032, - "fields": { - "package": 10445, - "vulnerability": 366, - "is_vulnerable": false + "patched_package": 10396 } }, { @@ -12876,7 +12217,7 @@ "fields": { "package": 10488, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -12885,16 +12226,7 @@ "fields": { "package": 10431, "vulnerability": 370, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4035, - "fields": { - "package": 10407, - "vulnerability": 311, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -12903,7 +12235,7 @@ "fields": { "package": 10503, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -12912,7 +12244,7 @@ "fields": { "package": 10456, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -12921,7 +12253,7 @@ "fields": { "package": 10470, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -12930,7 +12262,7 @@ "fields": { "package": 10511, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -12939,7 +12271,7 @@ "fields": { "package": 10396, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -12948,7 +12280,7 @@ "fields": { "package": 10452, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -12957,7 +12289,7 @@ "fields": { "package": 10440, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -12966,7 +12298,7 @@ "fields": { "package": 10405, "vulnerability": 349, - "is_vulnerable": true + "patched_package": null } }, { @@ -12975,7 +12307,7 @@ "fields": { "package": 10392, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -12984,7 +12316,7 @@ "fields": { "package": 10465, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -12993,7 +12325,7 @@ "fields": { "package": 10401, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -13002,7 +12334,7 @@ "fields": { "package": 10472, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -13011,7 +12343,7 @@ "fields": { "package": 10439, "vulnerability": 386, - "is_vulnerable": true + "patched_package": null } }, { @@ -13020,7 +12352,7 @@ "fields": { "package": 10480, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -13029,7 +12361,7 @@ "fields": { "package": 10492, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -13038,7 +12370,7 @@ "fields": { "package": 10459, "vulnerability": 416, - "is_vulnerable": true + "patched_package": 10479 } }, { @@ -13047,7 +12379,7 @@ "fields": { "package": 10435, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -13056,7 +12388,7 @@ "fields": { "package": 10478, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -13065,7 +12397,7 @@ "fields": { "package": 10388, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -13074,7 +12406,7 @@ "fields": { "package": 10488, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -13083,7 +12415,7 @@ "fields": { "package": 10485, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -13092,7 +12424,7 @@ "fields": { "package": 10448, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -13101,7 +12433,7 @@ "fields": { "package": 10455, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -13110,7 +12442,7 @@ "fields": { "package": 10504, "vulnerability": 401, - "is_vulnerable": true + "patched_package": 10514 } }, { @@ -13119,7 +12451,7 @@ "fields": { "package": 10468, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -13128,7 +12460,7 @@ "fields": { "package": 10468, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -13137,7 +12469,7 @@ "fields": { "package": 10478, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -13146,7 +12478,7 @@ "fields": { "package": 10431, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -13155,7 +12487,7 @@ "fields": { "package": 10437, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -13164,7 +12496,7 @@ "fields": { "package": 10418, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -13173,7 +12505,7 @@ "fields": { "package": 10429, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -13182,7 +12514,7 @@ "fields": { "package": 10470, "vulnerability": 426, - "is_vulnerable": true + "patched_package": null } }, { @@ -13191,7 +12523,7 @@ "fields": { "package": 10392, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -13200,7 +12532,7 @@ "fields": { "package": 10478, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -13209,7 +12541,7 @@ "fields": { "package": 10385, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -13218,7 +12550,7 @@ "fields": { "package": 10403, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -13227,7 +12559,7 @@ "fields": { "package": 10405, "vulnerability": 332, - "is_vulnerable": true + "patched_package": null } }, { @@ -13236,7 +12568,7 @@ "fields": { "package": 10461, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -13245,7 +12577,7 @@ "fields": { "package": 10395, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -13254,16 +12586,7 @@ "fields": { "package": 10401, "vulnerability": 296, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4076, - "fields": { - "package": 10408, - "vulnerability": 312, - "is_vulnerable": false + "patched_package": 10421 } }, { @@ -13272,7 +12595,7 @@ "fields": { "package": 10493, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -13281,7 +12604,7 @@ "fields": { "package": 10448, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -13290,7 +12613,7 @@ "fields": { "package": 10382, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -13299,7 +12622,7 @@ "fields": { "package": 10435, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -13308,7 +12631,7 @@ "fields": { "package": 10400, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -13317,7 +12640,7 @@ "fields": { "package": 10491, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -13326,16 +12649,7 @@ "fields": { "package": 10444, "vulnerability": 370, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4084, - "fields": { - "package": 10505, - "vulnerability": 411, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -13344,7 +12658,7 @@ "fields": { "package": 10516, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -13353,16 +12667,7 @@ "fields": { "package": 10469, "vulnerability": 391, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4087, - "fields": { - "package": 10500, - "vulnerability": 355, - "is_vulnerable": false + "patched_package": 10484 } }, { @@ -13371,7 +12676,7 @@ "fields": { "package": 10465, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -13380,7 +12685,7 @@ "fields": { "package": 10462, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -13389,16 +12694,7 @@ "fields": { "package": 10468, "vulnerability": 435, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4091, - "fields": { - "package": 10454, - "vulnerability": 468, - "is_vulnerable": false + "patched_package": 10464 } }, { @@ -13407,7 +12703,7 @@ "fields": { "package": 10478, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -13416,7 +12712,7 @@ "fields": { "package": 10431, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -13425,7 +12721,7 @@ "fields": { "package": 10485, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -13434,7 +12730,7 @@ "fields": { "package": 10467, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -13443,7 +12739,7 @@ "fields": { "package": 10494, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -13452,7 +12748,7 @@ "fields": { "package": 10493, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -13461,7 +12757,7 @@ "fields": { "package": 10507, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -13470,7 +12766,7 @@ "fields": { "package": 10491, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10481 } }, { @@ -13479,7 +12775,7 @@ "fields": { "package": 10486, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -13488,7 +12784,7 @@ "fields": { "package": 10441, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -13497,25 +12793,7 @@ "fields": { "package": 10455, "vulnerability": 380, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4103, - "fields": { - "package": 10518, - "vulnerability": 407, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4104, - "fields": { - "package": 10396, - "vulnerability": 328, - "is_vulnerable": false + "patched_package": 10484 } }, { @@ -13524,7 +12802,7 @@ "fields": { "package": 10395, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -13533,7 +12811,7 @@ "fields": { "package": 10468, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -13542,7 +12820,7 @@ "fields": { "package": 10402, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -13551,7 +12829,7 @@ "fields": { "package": 10435, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -13560,7 +12838,7 @@ "fields": { "package": 10439, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -13569,7 +12847,7 @@ "fields": { "package": 10382, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -13578,7 +12856,7 @@ "fields": { "package": 10482, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -13587,7 +12865,7 @@ "fields": { "package": 10438, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -13596,7 +12874,7 @@ "fields": { "package": 10491, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -13605,7 +12883,7 @@ "fields": { "package": 10480, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -13614,16 +12892,7 @@ "fields": { "package": 10444, "vulnerability": 353, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4116, - "fields": { - "package": 10413, - "vulnerability": 296, - "is_vulnerable": false + "patched_package": 10427 } }, { @@ -13632,16 +12901,7 @@ "fields": { "package": 10459, "vulnerability": 425, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4118, - "fields": { - "package": 10453, - "vulnerability": 433, - "is_vulnerable": false + "patched_package": 10464 } }, { @@ -13650,7 +12910,7 @@ "fields": { "package": 10469, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -13659,7 +12919,7 @@ "fields": { "package": 10478, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -13668,7 +12928,7 @@ "fields": { "package": 10532, "vulnerability": 415, - "is_vulnerable": true + "patched_package": null } }, { @@ -13677,7 +12937,7 @@ "fields": { "package": 10398, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -13686,7 +12946,7 @@ "fields": { "package": 10461, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -13695,7 +12955,7 @@ "fields": { "package": 10426, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -13704,7 +12964,7 @@ "fields": { "package": 10494, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -13713,7 +12973,7 @@ "fields": { "package": 10386, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -13722,7 +12982,7 @@ "fields": { "package": 10461, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -13731,7 +12991,7 @@ "fields": { "package": 10393, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -13740,7 +13000,7 @@ "fields": { "package": 10430, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -13749,7 +13009,7 @@ "fields": { "package": 10442, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -13758,7 +13018,7 @@ "fields": { "package": 10515, "vulnerability": 410, - "is_vulnerable": true + "patched_package": 10516 } }, { @@ -13767,7 +13027,7 @@ "fields": { "package": 10508, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -13776,7 +13036,7 @@ "fields": { "package": 10455, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -13785,7 +13045,7 @@ "fields": { "package": 10462, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -13794,7 +13054,7 @@ "fields": { "package": 10479, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -13803,7 +13063,7 @@ "fields": { "package": 10396, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -13812,7 +13072,7 @@ "fields": { "package": 10471, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -13821,7 +13081,7 @@ "fields": { "package": 10470, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -13830,7 +13090,7 @@ "fields": { "package": 10435, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -13839,7 +13099,7 @@ "fields": { "package": 10429, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -13848,7 +13108,7 @@ "fields": { "package": 10485, "vulnerability": 429, - "is_vulnerable": true + "patched_package": 10468 } }, { @@ -13857,7 +13117,7 @@ "fields": { "package": 10468, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -13866,7 +13126,7 @@ "fields": { "package": 10495, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -13875,7 +13135,7 @@ "fields": { "package": 10475, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -13884,7 +13144,7 @@ "fields": { "package": 10438, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -13893,7 +13153,7 @@ "fields": { "package": 10445, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -13902,7 +13162,7 @@ "fields": { "package": 10444, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -13911,7 +13171,7 @@ "fields": { "package": 10519, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -13920,7 +13180,7 @@ "fields": { "package": 10486, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -13929,7 +13189,7 @@ "fields": { "package": 10451, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10477 } }, { @@ -13938,7 +13198,7 @@ "fields": { "package": 10494, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -13947,7 +13207,7 @@ "fields": { "package": 10459, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -13956,7 +13216,7 @@ "fields": { "package": 10468, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -13965,7 +13225,7 @@ "fields": { "package": 10408, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -13974,7 +13234,7 @@ "fields": { "package": 10488, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -13983,7 +13243,7 @@ "fields": { "package": 10468, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -13992,16 +13252,7 @@ "fields": { "package": 10455, "vulnerability": 390, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4158, - "fields": { - "package": 10451, - "vulnerability": 439, - "is_vulnerable": false + "patched_package": 10490 } }, { @@ -14010,7 +13261,7 @@ "fields": { "package": 10435, "vulnerability": 469, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -14019,7 +13270,7 @@ "fields": { "package": 10393, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -14028,7 +13279,7 @@ "fields": { "package": 10442, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -14037,7 +13288,7 @@ "fields": { "package": 10395, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -14046,7 +13297,7 @@ "fields": { "package": 10437, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -14055,7 +13306,7 @@ "fields": { "package": 10495, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -14064,16 +13315,7 @@ "fields": { "package": 10451, "vulnerability": 375, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4166, - "fields": { - "package": 10388, - "vulnerability": 363, - "is_vulnerable": false + "patched_package": 10484 } }, { @@ -14082,16 +13324,7 @@ "fields": { "package": 10470, "vulnerability": 418, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4168, - "fields": { - "package": 10395, - "vulnerability": 361, - "is_vulnerable": false + "patched_package": null } }, { @@ -14100,7 +13333,7 @@ "fields": { "package": 10391, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -14109,7 +13342,7 @@ "fields": { "package": 10479, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -14118,7 +13351,7 @@ "fields": { "package": 10483, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -14127,16 +13360,7 @@ "fields": { "package": 10486, "vulnerability": 432, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4173, - "fields": { - "package": 10488, - "vulnerability": 457, - "is_vulnerable": false + "patched_package": 10478 } }, { @@ -14145,7 +13369,7 @@ "fields": { "package": 10491, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -14154,7 +13378,7 @@ "fields": { "package": 10481, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -14163,7 +13387,7 @@ "fields": { "package": 10439, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -14172,7 +13396,7 @@ "fields": { "package": 10445, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -14181,7 +13405,7 @@ "fields": { "package": 10494, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -14190,7 +13414,7 @@ "fields": { "package": 10459, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -14199,7 +13423,7 @@ "fields": { "package": 10462, "vulnerability": 429, - "is_vulnerable": true + "patched_package": 10468 } }, { @@ -14208,16 +13432,7 @@ "fields": { "package": 10435, "vulnerability": 325, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4182, - "fields": { - "package": 10395, - "vulnerability": 359, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -14226,16 +13441,7 @@ "fields": { "package": 10399, "vulnerability": 312, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4184, - "fields": { - "package": 10452, - "vulnerability": 422, - "is_vulnerable": false + "patched_package": 10408 } }, { @@ -14244,7 +13450,7 @@ "fields": { "package": 10455, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -14253,7 +13459,7 @@ "fields": { "package": 10443, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -14262,7 +13468,7 @@ "fields": { "package": 10486, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -14271,7 +13477,7 @@ "fields": { "package": 10452, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -14280,7 +13486,7 @@ "fields": { "package": 10468, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -14289,7 +13495,7 @@ "fields": { "package": 10475, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -14298,7 +13504,7 @@ "fields": { "package": 10435, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -14307,7 +13513,7 @@ "fields": { "package": 10484, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -14316,7 +13522,7 @@ "fields": { "package": 10483, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -14325,7 +13531,7 @@ "fields": { "package": 10417, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -14334,7 +13540,7 @@ "fields": { "package": 10438, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -14343,7 +13549,7 @@ "fields": { "package": 10443, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -14352,7 +13558,7 @@ "fields": { "package": 10431, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -14361,7 +13567,7 @@ "fields": { "package": 10451, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -14370,16 +13576,7 @@ "fields": { "package": 10385, "vulnerability": 301, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4200, - "fields": { - "package": 10388, - "vulnerability": 346, - "is_vulnerable": false + "patched_package": 10421 } }, { @@ -14388,16 +13585,7 @@ "fields": { "package": 10392, "vulnerability": 299, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4202, - "fields": { - "package": 10444, - "vulnerability": 389, - "is_vulnerable": false + "patched_package": 10425 } }, { @@ -14406,7 +13594,7 @@ "fields": { "package": 10507, "vulnerability": 401, - "is_vulnerable": true + "patched_package": 10514 } }, { @@ -14415,7 +13603,7 @@ "fields": { "package": 10429, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -14424,16 +13612,7 @@ "fields": { "package": 10472, "vulnerability": 343, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4206, - "fields": { - "package": 10478, - "vulnerability": 426, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -14442,7 +13621,7 @@ "fields": { "package": 10481, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -14451,7 +13630,7 @@ "fields": { "package": 10435, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -14460,7 +13639,7 @@ "fields": { "package": 10478, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -14469,7 +13648,7 @@ "fields": { "package": 10495, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -14478,7 +13657,7 @@ "fields": { "package": 10468, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -14487,7 +13666,7 @@ "fields": { "package": 10388, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -14496,7 +13675,7 @@ "fields": { "package": 10437, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -14505,7 +13684,7 @@ "fields": { "package": 10458, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -14514,16 +13693,7 @@ "fields": { "package": 10451, "vulnerability": 463, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4216, - "fields": { - "package": 10447, - "vulnerability": 325, - "is_vulnerable": false + "patched_package": 10469 } }, { @@ -14532,7 +13702,7 @@ "fields": { "package": 10451, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -14541,7 +13711,7 @@ "fields": { "package": 10383, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -14550,7 +13720,7 @@ "fields": { "package": 10474, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -14559,7 +13729,7 @@ "fields": { "package": 10470, "vulnerability": 428, - "is_vulnerable": true + "patched_package": null } }, { @@ -14568,7 +13738,7 @@ "fields": { "package": 10438, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -14577,7 +13747,7 @@ "fields": { "package": 10429, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -14586,7 +13756,7 @@ "fields": { "package": 10494, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -14595,7 +13765,7 @@ "fields": { "package": 10452, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -14604,7 +13774,7 @@ "fields": { "package": 10461, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -14613,7 +13783,7 @@ "fields": { "package": 10460, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -14622,7 +13792,7 @@ "fields": { "package": 10441, "vulnerability": 456, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -14631,7 +13801,7 @@ "fields": { "package": 10394, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -14640,7 +13810,7 @@ "fields": { "package": 10458, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -14649,7 +13819,7 @@ "fields": { "package": 10485, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -14658,16 +13828,7 @@ "fields": { "package": 10428, "vulnerability": 358, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4232, - "fields": { - "package": 10531, - "vulnerability": 414, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -14676,7 +13837,7 @@ "fields": { "package": 10435, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -14685,7 +13846,7 @@ "fields": { "package": 10383, "vulnerability": 351, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -14694,7 +13855,7 @@ "fields": { "package": 10509, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -14703,7 +13864,7 @@ "fields": { "package": 10477, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -14712,7 +13873,7 @@ "fields": { "package": 10449, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -14721,7 +13882,7 @@ "fields": { "package": 10444, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -14730,7 +13891,7 @@ "fields": { "package": 10458, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -14739,7 +13900,7 @@ "fields": { "package": 10458, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -14748,7 +13909,7 @@ "fields": { "package": 10398, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -14757,7 +13918,7 @@ "fields": { "package": 10486, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -14766,7 +13927,7 @@ "fields": { "package": 10451, "vulnerability": 446, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -14775,7 +13936,7 @@ "fields": { "package": 10478, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -14784,7 +13945,7 @@ "fields": { "package": 10442, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -14793,7 +13954,7 @@ "fields": { "package": 10487, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -14802,7 +13963,7 @@ "fields": { "package": 10383, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -14811,7 +13972,7 @@ "fields": { "package": 10432, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -14820,7 +13981,7 @@ "fields": { "package": 10427, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -14829,7 +13990,7 @@ "fields": { "package": 10494, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -14838,7 +13999,7 @@ "fields": { "package": 10483, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -14847,7 +14008,7 @@ "fields": { "package": 10491, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -14856,7 +14017,7 @@ "fields": { "package": 10461, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -14865,7 +14026,7 @@ "fields": { "package": 10442, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -14874,7 +14035,7 @@ "fields": { "package": 10489, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -14883,7 +14044,7 @@ "fields": { "package": 10397, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -14892,7 +14053,7 @@ "fields": { "package": 10471, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -14901,7 +14062,7 @@ "fields": { "package": 10429, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -14910,7 +14071,7 @@ "fields": { "package": 10435, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -14919,7 +14080,7 @@ "fields": { "package": 10438, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -14928,7 +14089,7 @@ "fields": { "package": 10452, "vulnerability": 429, - "is_vulnerable": true + "patched_package": 10468 } }, { @@ -14937,7 +14098,7 @@ "fields": { "package": 10392, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -14946,7 +14107,7 @@ "fields": { "package": 10462, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -14955,7 +14116,7 @@ "fields": { "package": 10477, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10499 } }, { @@ -14964,7 +14125,7 @@ "fields": { "package": 10487, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -14973,7 +14134,7 @@ "fields": { "package": 10518, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -14982,7 +14143,7 @@ "fields": { "package": 10525, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -14991,7 +14152,7 @@ "fields": { "package": 10391, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -15000,7 +14161,7 @@ "fields": { "package": 10405, "vulnerability": 358, - "is_vulnerable": true + "patched_package": null } }, { @@ -15009,7 +14170,7 @@ "fields": { "package": 10458, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -15018,7 +14179,7 @@ "fields": { "package": 10482, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -15027,7 +14188,7 @@ "fields": { "package": 10399, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -15036,7 +14197,7 @@ "fields": { "package": 10401, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -15045,7 +14206,7 @@ "fields": { "package": 10474, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -15054,7 +14215,7 @@ "fields": { "package": 10407, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -15063,7 +14224,7 @@ "fields": { "package": 10453, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -15072,7 +14233,7 @@ "fields": { "package": 10461, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -15081,7 +14242,7 @@ "fields": { "package": 10426, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -15090,7 +14251,7 @@ "fields": { "package": 10487, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -15099,7 +14260,7 @@ "fields": { "package": 10433, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -15108,7 +14269,7 @@ "fields": { "package": 10435, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -15117,7 +14278,7 @@ "fields": { "package": 10388, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10392 } }, { @@ -15126,16 +14287,7 @@ "fields": { "package": 10430, "vulnerability": 344, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4284, - "fields": { - "package": 10442, - "vulnerability": 364, - "is_vulnerable": false + "patched_package": 10446 } }, { @@ -15144,7 +14296,7 @@ "fields": { "package": 10382, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -15153,7 +14305,7 @@ "fields": { "package": 10522, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -15162,7 +14314,7 @@ "fields": { "package": 10518, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -15171,7 +14323,7 @@ "fields": { "package": 10462, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -15180,7 +14332,7 @@ "fields": { "package": 10471, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -15189,7 +14341,7 @@ "fields": { "package": 10468, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -15198,16 +14350,7 @@ "fields": { "package": 10394, "vulnerability": 309, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4292, - "fields": { - "package": 10444, - "vulnerability": 402, - "is_vulnerable": false + "patched_package": null } }, { @@ -15216,7 +14359,7 @@ "fields": { "package": 10478, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -15225,7 +14368,7 @@ "fields": { "package": 10485, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -15234,7 +14377,7 @@ "fields": { "package": 10491, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -15243,7 +14386,7 @@ "fields": { "package": 10458, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -15252,7 +14395,7 @@ "fields": { "package": 10390, "vulnerability": 315, - "is_vulnerable": true + "patched_package": 10384 } }, { @@ -15261,7 +14404,7 @@ "fields": { "package": 10392, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -15270,7 +14413,7 @@ "fields": { "package": 10434, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -15279,7 +14422,7 @@ "fields": { "package": 10427, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -15288,7 +14431,7 @@ "fields": { "package": 10448, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -15297,16 +14440,7 @@ "fields": { "package": 10518, "vulnerability": 404, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4303, - "fields": { - "package": 10419, - "vulnerability": 302, - "is_vulnerable": false + "patched_package": 10521 } }, { @@ -15315,7 +14449,7 @@ "fields": { "package": 10461, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -15324,7 +14458,7 @@ "fields": { "package": 10426, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -15333,7 +14467,7 @@ "fields": { "package": 10441, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -15342,7 +14476,7 @@ "fields": { "package": 10441, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -15351,7 +14485,7 @@ "fields": { "package": 10464, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -15360,7 +14494,7 @@ "fields": { "package": 10461, "vulnerability": 448, - "is_vulnerable": true + "patched_package": 10491 } }, { @@ -15369,7 +14503,7 @@ "fields": { "package": 10435, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -15378,7 +14512,7 @@ "fields": { "package": 10388, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -15387,7 +14521,7 @@ "fields": { "package": 10442, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -15396,7 +14530,7 @@ "fields": { "package": 10442, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -15405,7 +14539,7 @@ "fields": { "package": 10486, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -15414,7 +14548,7 @@ "fields": { "package": 10451, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -15423,7 +14557,7 @@ "fields": { "package": 10450, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -15432,7 +14566,7 @@ "fields": { "package": 10459, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -15441,7 +14575,7 @@ "fields": { "package": 10384, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -15450,7 +14584,7 @@ "fields": { "package": 10438, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -15459,7 +14593,7 @@ "fields": { "package": 10405, "vulnerability": 350, - "is_vulnerable": true + "patched_package": null } }, { @@ -15468,7 +14602,7 @@ "fields": { "package": 10475, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -15477,7 +14611,7 @@ "fields": { "package": 10448, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -15486,7 +14620,7 @@ "fields": { "package": 10398, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -15495,7 +14629,7 @@ "fields": { "package": 10492, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -15504,7 +14638,7 @@ "fields": { "package": 10491, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -15513,7 +14647,7 @@ "fields": { "package": 10467, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -15522,7 +14656,7 @@ "fields": { "package": 10439, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10388 } }, { @@ -15531,7 +14665,7 @@ "fields": { "package": 10446, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -15540,7 +14674,7 @@ "fields": { "package": 10434, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -15549,7 +14683,7 @@ "fields": { "package": 10448, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -15558,7 +14692,7 @@ "fields": { "package": 10443, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -15567,7 +14701,7 @@ "fields": { "package": 10462, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -15576,7 +14710,7 @@ "fields": { "package": 10426, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -15585,7 +14719,7 @@ "fields": { "package": 10468, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -15594,7 +14728,7 @@ "fields": { "package": 10443, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -15603,7 +14737,7 @@ "fields": { "package": 10435, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -15612,25 +14746,7 @@ "fields": { "package": 10477, "vulnerability": 381, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4338, - "fields": { - "package": 10458, - "vulnerability": 358, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4339, - "fields": { - "package": 10514, - "vulnerability": 401, - "is_vulnerable": false + "patched_package": 10484 } }, { @@ -15639,7 +14755,7 @@ "fields": { "package": 10481, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -15648,7 +14764,7 @@ "fields": { "package": 10491, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -15657,7 +14773,7 @@ "fields": { "package": 10444, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -15666,7 +14782,7 @@ "fields": { "package": 10459, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -15675,7 +14791,7 @@ "fields": { "package": 10451, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -15684,16 +14800,7 @@ "fields": { "package": 10432, "vulnerability": 330, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4346, - "fields": { - "package": 10385, - "vulnerability": 310, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -15702,7 +14809,7 @@ "fields": { "package": 10441, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -15711,7 +14818,7 @@ "fields": { "package": 10440, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -15720,7 +14827,7 @@ "fields": { "package": 10405, "vulnerability": 333, - "is_vulnerable": true + "patched_package": null } }, { @@ -15729,7 +14836,7 @@ "fields": { "package": 10461, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -15738,16 +14845,7 @@ "fields": { "package": 10398, "vulnerability": 311, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4352, - "fields": { - "package": 10489, - "vulnerability": 442, - "is_vulnerable": false + "patched_package": 10407 } }, { @@ -15756,7 +14854,7 @@ "fields": { "package": 10428, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -15765,7 +14863,7 @@ "fields": { "package": 10382, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -15774,7 +14872,7 @@ "fields": { "package": 10452, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -15783,7 +14881,7 @@ "fields": { "package": 10477, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -15792,7 +14890,7 @@ "fields": { "package": 10508, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -15801,7 +14899,7 @@ "fields": { "package": 10515, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -15810,7 +14908,7 @@ "fields": { "package": 10437, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -15819,7 +14917,7 @@ "fields": { "package": 10389, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -15828,7 +14926,7 @@ "fields": { "package": 10429, "vulnerability": 395, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -15837,7 +14935,7 @@ "fields": { "package": 10397, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -15846,7 +14944,7 @@ "fields": { "package": 10485, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -15855,7 +14953,7 @@ "fields": { "package": 10451, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -15864,7 +14962,7 @@ "fields": { "package": 10477, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -15873,7 +14971,7 @@ "fields": { "package": 10456, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -15882,7 +14980,7 @@ "fields": { "package": 10453, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -15891,7 +14989,7 @@ "fields": { "package": 10459, "vulnerability": 417, - "is_vulnerable": true + "patched_package": 10479 } }, { @@ -15900,7 +14998,7 @@ "fields": { "package": 10508, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -15909,7 +15007,7 @@ "fields": { "package": 10480, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -15918,7 +15016,7 @@ "fields": { "package": 10441, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -15927,7 +15025,7 @@ "fields": { "package": 10461, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -15936,7 +15034,7 @@ "fields": { "package": 10450, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -15945,7 +15043,7 @@ "fields": { "package": 10384, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -15954,7 +15052,7 @@ "fields": { "package": 10458, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -15963,7 +15061,7 @@ "fields": { "package": 10468, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -15972,16 +15070,7 @@ "fields": { "package": 10475, "vulnerability": 387, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4378, - "fields": { - "package": 10478, - "vulnerability": 432, - "is_vulnerable": false + "patched_package": 10471 } }, { @@ -15990,7 +15079,7 @@ "fields": { "package": 10489, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10451 } }, { @@ -15999,7 +15088,7 @@ "fields": { "package": 10481, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -16008,7 +15097,7 @@ "fields": { "package": 10490, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -16017,7 +15106,7 @@ "fields": { "package": 10382, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -16026,7 +15115,7 @@ "fields": { "package": 10438, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -16035,16 +15124,7 @@ "fields": { "package": 10508, "vulnerability": 404, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4385, - "fields": { - "package": 10402, - "vulnerability": 304, - "is_vulnerable": false + "patched_package": 10521 } }, { @@ -16053,7 +15133,7 @@ "fields": { "package": 10437, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -16062,7 +15142,7 @@ "fields": { "package": 10405, "vulnerability": 377, - "is_vulnerable": true + "patched_package": null } }, { @@ -16071,16 +15151,7 @@ "fields": { "package": 10493, "vulnerability": 375, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4389, - "fields": { - "package": 10388, - "vulnerability": 372, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -16089,7 +15160,7 @@ "fields": { "package": 10451, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -16098,7 +15169,7 @@ "fields": { "package": 10392, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -16107,7 +15178,7 @@ "fields": { "package": 10499, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -16116,7 +15187,7 @@ "fields": { "package": 10445, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -16125,16 +15196,7 @@ "fields": { "package": 10398, "vulnerability": 303, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4395, - "fields": { - "package": 10436, - "vulnerability": 341, - "is_vulnerable": false + "patched_package": 10387 } }, { @@ -16143,16 +15205,7 @@ "fields": { "package": 10454, "vulnerability": 346, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4397, - "fields": { - "package": 10437, - "vulnerability": 361, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -16161,16 +15214,7 @@ "fields": { "package": 10429, "vulnerability": 378, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4399, - "fields": { - "package": 10443, - "vulnerability": 459, - "is_vulnerable": false + "patched_package": 10431 } }, { @@ -16179,7 +15223,7 @@ "fields": { "package": 10432, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -16188,7 +15232,7 @@ "fields": { "package": 10401, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -16197,7 +15241,7 @@ "fields": { "package": 10476, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -16206,7 +15250,7 @@ "fields": { "package": 10441, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -16215,7 +15259,7 @@ "fields": { "package": 10449, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -16224,7 +15268,7 @@ "fields": { "package": 10381, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10417 } }, { @@ -16233,7 +15277,7 @@ "fields": { "package": 10481, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -16242,7 +15286,7 @@ "fields": { "package": 10480, "vulnerability": 450, - "is_vulnerable": true + "patched_package": null } }, { @@ -16251,7 +15295,7 @@ "fields": { "package": 10400, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -16260,16 +15304,7 @@ "fields": { "package": 10388, "vulnerability": 328, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4410, - "fields": { - "package": 10437, - "vulnerability": 359, - "is_vulnerable": false + "patched_package": 10396 } }, { @@ -16278,7 +15313,7 @@ "fields": { "package": 10406, "vulnerability": 319, - "is_vulnerable": true + "patched_package": 10384 } }, { @@ -16287,7 +15322,7 @@ "fields": { "package": 10397, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -16296,16 +15331,7 @@ "fields": { "package": 10497, "vulnerability": 355, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4414, - "fields": { - "package": 10445, - "vulnerability": 377, - "is_vulnerable": false + "patched_package": 10500 } }, { @@ -16314,7 +15340,7 @@ "fields": { "package": 10521, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -16323,7 +15349,7 @@ "fields": { "package": 10489, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -16332,7 +15358,7 @@ "fields": { "package": 10482, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -16341,7 +15367,7 @@ "fields": { "package": 10477, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -16350,7 +15376,7 @@ "fields": { "package": 10442, "vulnerability": 395, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -16359,7 +15385,7 @@ "fields": { "package": 10456, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -16368,7 +15394,7 @@ "fields": { "package": 10464, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -16377,7 +15403,7 @@ "fields": { "package": 10457, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -16386,7 +15412,7 @@ "fields": { "package": 10406, "vulnerability": 316, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -16395,7 +15421,7 @@ "fields": { "package": 10429, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -16404,7 +15430,7 @@ "fields": { "package": 10438, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -16413,7 +15439,7 @@ "fields": { "package": 10433, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -16422,7 +15448,7 @@ "fields": { "package": 10452, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -16431,7 +15457,7 @@ "fields": { "package": 10493, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -16440,7 +15466,7 @@ "fields": { "package": 10458, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -16449,7 +15475,7 @@ "fields": { "package": 10473, "vulnerability": 437, - "is_vulnerable": true + "patched_package": 10482 } }, { @@ -16458,7 +15484,7 @@ "fields": { "package": 10392, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -16467,7 +15493,7 @@ "fields": { "package": 10467, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -16476,7 +15502,7 @@ "fields": { "package": 10521, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -16485,7 +15511,7 @@ "fields": { "package": 10514, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -16494,7 +15520,7 @@ "fields": { "package": 10492, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -16503,7 +15529,7 @@ "fields": { "package": 10397, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -16512,7 +15538,7 @@ "fields": { "package": 10481, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -16521,7 +15547,7 @@ "fields": { "package": 10477, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -16530,7 +15556,7 @@ "fields": { "package": 10449, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -16539,7 +15565,7 @@ "fields": { "package": 10441, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -16548,7 +15574,7 @@ "fields": { "package": 10431, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -16557,7 +15583,7 @@ "fields": { "package": 10430, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -16566,16 +15592,7 @@ "fields": { "package": 10437, "vulnerability": 324, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4444, - "fields": { - "package": 10452, - "vulnerability": 414, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -16584,7 +15601,7 @@ "fields": { "package": 10388, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -16593,7 +15610,7 @@ "fields": { "package": 10489, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -16602,16 +15619,7 @@ "fields": { "package": 10453, "vulnerability": 370, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4448, - "fields": { - "package": 10434, - "vulnerability": 347, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -16620,7 +15628,7 @@ "fields": { "package": 10440, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -16629,7 +15637,7 @@ "fields": { "package": 10405, "vulnerability": 325, - "is_vulnerable": true + "patched_package": null } }, { @@ -16638,7 +15646,7 @@ "fields": { "package": 10525, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -16647,7 +15655,7 @@ "fields": { "package": 10443, "vulnerability": 398, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -16656,7 +15664,7 @@ "fields": { "package": 10442, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -16665,7 +15673,7 @@ "fields": { "package": 10456, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -16674,7 +15682,7 @@ "fields": { "package": 10457, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -16683,7 +15691,7 @@ "fields": { "package": 10459, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -16692,7 +15700,7 @@ "fields": { "package": 10493, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -16701,7 +15709,7 @@ "fields": { "package": 10505, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -16710,7 +15718,7 @@ "fields": { "package": 10458, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -16719,7 +15727,7 @@ "fields": { "package": 10427, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -16728,7 +15736,7 @@ "fields": { "package": 10445, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -16737,16 +15745,7 @@ "fields": { "package": 10489, "vulnerability": 370, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4463, - "fields": { - "package": 10469, - "vulnerability": 467, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -16755,7 +15754,7 @@ "fields": { "package": 10508, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -16764,16 +15763,7 @@ "fields": { "package": 10461, "vulnerability": 386, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4466, - "fields": { - "package": 10464, - "vulnerability": 431, - "is_vulnerable": false + "patched_package": 10455 } }, { @@ -16782,7 +15772,7 @@ "fields": { "package": 10441, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -16791,7 +15781,7 @@ "fields": { "package": 10467, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -16800,7 +15790,7 @@ "fields": { "package": 10516, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10517 } }, { @@ -16809,7 +15799,7 @@ "fields": { "package": 10495, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -16818,7 +15808,7 @@ "fields": { "package": 10435, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -16827,7 +15817,7 @@ "fields": { "package": 10477, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -16836,7 +15826,7 @@ "fields": { "package": 10444, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -16845,7 +15835,7 @@ "fields": { "package": 10431, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -16854,7 +15844,7 @@ "fields": { "package": 10448, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -16863,7 +15853,7 @@ "fields": { "package": 10444, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -16872,7 +15862,7 @@ "fields": { "package": 10458, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -16881,16 +15871,7 @@ "fields": { "package": 10468, "vulnerability": 425, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4479, - "fields": { - "package": 10387, - "vulnerability": 303, - "is_vulnerable": false + "patched_package": 10464 } }, { @@ -16899,7 +15880,7 @@ "fields": { "package": 10405, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -16908,7 +15889,7 @@ "fields": { "package": 10480, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -16917,7 +15898,7 @@ "fields": { "package": 10451, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -16926,7 +15907,7 @@ "fields": { "package": 10428, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -16935,16 +15916,7 @@ "fields": { "package": 10427, "vulnerability": 332, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4485, - "fields": { - "package": 10484, - "vulnerability": 381, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -16953,7 +15925,7 @@ "fields": { "package": 10483, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -16962,7 +15934,7 @@ "fields": { "package": 10441, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -16971,7 +15943,7 @@ "fields": { "package": 10490, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -16980,7 +15952,7 @@ "fields": { "package": 10382, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -16989,7 +15961,7 @@ "fields": { "package": 10381, "vulnerability": 305, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -16998,7 +15970,7 @@ "fields": { "package": 10489, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -17007,16 +15979,7 @@ "fields": { "package": 10388, "vulnerability": 303, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4493, - "fields": { - "package": 10433, - "vulnerability": 339, - "is_vulnerable": false + "patched_package": 10387 } }, { @@ -17025,7 +15988,7 @@ "fields": { "package": 10444, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -17034,7 +15997,7 @@ "fields": { "package": 10443, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -17043,7 +16006,7 @@ "fields": { "package": 10435, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -17052,7 +16015,7 @@ "fields": { "package": 10401, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -17061,7 +16024,7 @@ "fields": { "package": 10391, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -17070,7 +16033,7 @@ "fields": { "package": 10466, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -17079,7 +16042,7 @@ "fields": { "package": 10400, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -17088,7 +16051,7 @@ "fields": { "package": 10491, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -17097,7 +16060,7 @@ "fields": { "package": 10459, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -17106,7 +16069,7 @@ "fields": { "package": 10472, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -17115,7 +16078,7 @@ "fields": { "package": 10487, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -17124,7 +16087,7 @@ "fields": { "package": 10467, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -17133,7 +16096,7 @@ "fields": { "package": 10521, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -17142,7 +16105,7 @@ "fields": { "package": 10489, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10483 } }, { @@ -17151,7 +16114,7 @@ "fields": { "package": 10480, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -17160,7 +16123,7 @@ "fields": { "package": 10428, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -17169,7 +16132,7 @@ "fields": { "package": 10435, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -17178,7 +16141,7 @@ "fields": { "package": 10388, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -17187,7 +16150,7 @@ "fields": { "package": 10442, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -17196,7 +16159,7 @@ "fields": { "package": 10456, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -17205,7 +16168,7 @@ "fields": { "package": 10436, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -17214,7 +16177,7 @@ "fields": { "package": 10490, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -17223,7 +16186,7 @@ "fields": { "package": 10382, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -17232,7 +16195,7 @@ "fields": { "package": 10424, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -17241,7 +16204,7 @@ "fields": { "package": 10448, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -17250,7 +16213,7 @@ "fields": { "package": 10457, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -17259,7 +16222,7 @@ "fields": { "package": 10405, "vulnerability": 376, - "is_vulnerable": true + "patched_package": null } }, { @@ -17268,7 +16231,7 @@ "fields": { "package": 10444, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -17277,7 +16240,7 @@ "fields": { "package": 10504, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -17286,7 +16249,7 @@ "fields": { "package": 10482, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -17295,7 +16258,7 @@ "fields": { "package": 10460, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -17304,7 +16267,7 @@ "fields": { "package": 10400, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -17313,7 +16276,7 @@ "fields": { "package": 10492, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -17322,7 +16285,7 @@ "fields": { "package": 10491, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -17331,7 +16294,7 @@ "fields": { "package": 10479, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -17340,7 +16303,7 @@ "fields": { "package": 10440, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -17349,7 +16312,7 @@ "fields": { "package": 10443, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -17358,7 +16321,7 @@ "fields": { "package": 10430, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -17367,7 +16330,7 @@ "fields": { "package": 10515, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -17376,7 +16339,7 @@ "fields": { "package": 10468, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -17385,7 +16348,7 @@ "fields": { "package": 10482, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -17394,7 +16357,7 @@ "fields": { "package": 10483, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -17403,7 +16366,7 @@ "fields": { "package": 10523, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -17412,7 +16375,7 @@ "fields": { "package": 10489, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10495 } }, { @@ -17421,7 +16384,7 @@ "fields": { "package": 10449, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -17430,7 +16393,7 @@ "fields": { "package": 10483, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -17439,7 +16402,7 @@ "fields": { "package": 10464, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -17448,7 +16411,7 @@ "fields": { "package": 10448, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -17457,7 +16420,7 @@ "fields": { "package": 10435, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -17466,7 +16429,7 @@ "fields": { "package": 10484, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -17475,7 +16438,7 @@ "fields": { "package": 10444, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -17484,7 +16447,7 @@ "fields": { "package": 10451, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -17493,7 +16456,7 @@ "fields": { "package": 10456, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -17502,7 +16465,7 @@ "fields": { "package": 10492, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -17511,7 +16474,7 @@ "fields": { "package": 10457, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -17520,7 +16483,7 @@ "fields": { "package": 10506, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -17529,7 +16492,7 @@ "fields": { "package": 10466, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -17538,7 +16501,7 @@ "fields": { "package": 10405, "vulnerability": 359, - "is_vulnerable": true + "patched_package": null } }, { @@ -17547,7 +16510,7 @@ "fields": { "package": 10467, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -17556,7 +16519,7 @@ "fields": { "package": 10480, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -17565,7 +16528,7 @@ "fields": { "package": 10459, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -17574,7 +16537,7 @@ "fields": { "package": 10473, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10457 } }, { @@ -17583,7 +16546,7 @@ "fields": { "package": 10480, "vulnerability": 452, - "is_vulnerable": true + "patched_package": null } }, { @@ -17592,7 +16555,7 @@ "fields": { "package": 10434, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -17601,7 +16564,7 @@ "fields": { "package": 10448, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -17610,7 +16573,7 @@ "fields": { "package": 10444, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -17619,7 +16582,7 @@ "fields": { "package": 10443, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -17628,7 +16591,7 @@ "fields": { "package": 10490, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -17637,7 +16600,7 @@ "fields": { "package": 10395, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -17646,7 +16609,7 @@ "fields": { "package": 10397, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -17655,7 +16618,7 @@ "fields": { "package": 10441, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -17664,7 +16627,7 @@ "fields": { "package": 10397, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -17673,16 +16636,7 @@ "fields": { "package": 10495, "vulnerability": 402, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4567, - "fields": { - "package": 10479, - "vulnerability": 417, - "is_vulnerable": false + "patched_package": 10455 } }, { @@ -17691,7 +16645,7 @@ "fields": { "package": 10456, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -17700,7 +16654,7 @@ "fields": { "package": 10473, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -17709,7 +16663,7 @@ "fields": { "package": 10480, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -17718,7 +16672,7 @@ "fields": { "package": 10459, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -17727,7 +16681,7 @@ "fields": { "package": 10426, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -17736,7 +16690,7 @@ "fields": { "package": 10507, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -17745,25 +16699,7 @@ "fields": { "package": 10514, "vulnerability": 410, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4575, - "fields": { - "package": 10450, - "vulnerability": 378, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4576, - "fields": { - "package": 10464, - "vulnerability": 430, - "is_vulnerable": false + "patched_package": 10520 } }, { @@ -17772,7 +16708,7 @@ "fields": { "package": 10456, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -17781,7 +16717,7 @@ "fields": { "package": 10390, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -17790,7 +16726,7 @@ "fields": { "package": 10528, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -17799,7 +16735,7 @@ "fields": { "package": 10481, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -17808,7 +16744,7 @@ "fields": { "package": 10449, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -17817,7 +16753,7 @@ "fields": { "package": 10495, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -17826,7 +16762,7 @@ "fields": { "package": 10430, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -17835,7 +16771,7 @@ "fields": { "package": 10462, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -17844,7 +16780,7 @@ "fields": { "package": 10477, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -17853,7 +16789,7 @@ "fields": { "package": 10444, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -17862,7 +16798,7 @@ "fields": { "package": 10443, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -17871,7 +16807,7 @@ "fields": { "package": 10497, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -17880,7 +16816,7 @@ "fields": { "package": 10490, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -17889,7 +16825,7 @@ "fields": { "package": 10457, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -17898,7 +16834,7 @@ "fields": { "package": 10511, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -17907,7 +16843,7 @@ "fields": { "package": 10398, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -17916,7 +16852,7 @@ "fields": { "package": 10478, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -17925,7 +16861,7 @@ "fields": { "package": 10479, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -17934,16 +16870,7 @@ "fields": { "package": 10404, "vulnerability": 307, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4596, - "fields": { - "package": 10496, - "vulnerability": 370, - "is_vulnerable": false + "patched_package": 10418 } }, { @@ -17952,7 +16879,7 @@ "fields": { "package": 10457, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -17961,7 +16888,7 @@ "fields": { "package": 10467, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -17970,7 +16897,7 @@ "fields": { "package": 10473, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -17979,7 +16906,7 @@ "fields": { "package": 10426, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -17988,7 +16915,7 @@ "fields": { "package": 10407, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -17997,7 +16924,7 @@ "fields": { "package": 10480, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -18006,7 +16933,7 @@ "fields": { "package": 10440, "vulnerability": 383, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -18015,7 +16942,7 @@ "fields": { "package": 10459, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -18024,7 +16951,7 @@ "fields": { "package": 10472, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -18033,7 +16960,7 @@ "fields": { "package": 10486, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10457 } }, { @@ -18042,7 +16969,7 @@ "fields": { "package": 10494, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -18051,7 +16978,7 @@ "fields": { "package": 10436, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -18060,7 +16987,7 @@ "fields": { "package": 10390, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -18069,7 +16996,7 @@ "fields": { "package": 10482, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -18078,7 +17005,7 @@ "fields": { "package": 10481, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -18087,7 +17014,7 @@ "fields": { "package": 10444, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -18096,7 +17023,7 @@ "fields": { "package": 10458, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -18105,7 +17032,7 @@ "fields": { "package": 10505, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -18114,7 +17041,7 @@ "fields": { "package": 10473, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -18123,7 +17050,7 @@ "fields": { "package": 10479, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -18132,7 +17059,7 @@ "fields": { "package": 10439, "vulnerability": 468, - "is_vulnerable": true + "patched_package": null } }, { @@ -18141,7 +17068,7 @@ "fields": { "package": 10398, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -18150,7 +17077,7 @@ "fields": { "package": 10520, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -18159,7 +17086,7 @@ "fields": { "package": 10454, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -18168,7 +17095,7 @@ "fields": { "package": 10442, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -18177,7 +17104,7 @@ "fields": { "package": 10467, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -18186,7 +17113,7 @@ "fields": { "package": 10474, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -18195,7 +17122,7 @@ "fields": { "package": 10441, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -18204,7 +17131,7 @@ "fields": { "package": 10483, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -18213,7 +17140,7 @@ "fields": { "package": 10482, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -18222,7 +17149,7 @@ "fields": { "package": 10462, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -18231,7 +17158,7 @@ "fields": { "package": 10456, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -18240,7 +17167,7 @@ "fields": { "package": 10381, "vulnerability": 307, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -18249,7 +17176,7 @@ "fields": { "package": 10437, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -18258,7 +17185,7 @@ "fields": { "package": 10480, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10443 } }, { @@ -18267,7 +17194,7 @@ "fields": { "package": 10487, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -18276,7 +17203,7 @@ "fields": { "package": 10457, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -18285,7 +17212,7 @@ "fields": { "package": 10506, "vulnerability": 401, - "is_vulnerable": true + "patched_package": 10514 } }, { @@ -18294,7 +17221,7 @@ "fields": { "package": 10391, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -18303,7 +17230,7 @@ "fields": { "package": 10405, "vulnerability": 351, - "is_vulnerable": true + "patched_package": null } }, { @@ -18312,7 +17239,7 @@ "fields": { "package": 10449, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -18321,7 +17248,7 @@ "fields": { "package": 10471, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -18330,7 +17257,7 @@ "fields": { "package": 10470, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -18339,7 +17266,7 @@ "fields": { "package": 10480, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -18348,7 +17275,7 @@ "fields": { "package": 10433, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -18357,7 +17284,7 @@ "fields": { "package": 10439, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -18366,7 +17293,7 @@ "fields": { "package": 10420, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -18375,7 +17302,7 @@ "fields": { "package": 10480, "vulnerability": 444, - "is_vulnerable": true + "patched_package": null } }, { @@ -18384,7 +17311,7 @@ "fields": { "package": 10467, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -18393,7 +17320,7 @@ "fields": { "package": 10479, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -18402,7 +17329,7 @@ "fields": { "package": 10387, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -18411,16 +17338,7 @@ "fields": { "package": 10405, "vulnerability": 293, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4649, - "fields": { - "package": 10472, - "vulnerability": 455, - "is_vulnerable": false + "patched_package": 10408 } }, { @@ -18429,7 +17347,7 @@ "fields": { "package": 10463, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -18438,7 +17356,7 @@ "fields": { "package": 10397, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -18447,7 +17365,7 @@ "fields": { "package": 10403, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -18456,7 +17374,7 @@ "fields": { "package": 10449, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -18465,7 +17383,7 @@ "fields": { "package": 10456, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -18474,7 +17392,7 @@ "fields": { "package": 10483, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -18483,7 +17401,7 @@ "fields": { "package": 10495, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -18492,7 +17410,7 @@ "fields": { "package": 10382, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -18501,7 +17419,7 @@ "fields": { "package": 10504, "vulnerability": 410, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -18510,7 +17428,7 @@ "fields": { "package": 10437, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -18519,7 +17437,7 @@ "fields": { "package": 10440, "vulnerability": 392, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -18528,7 +17446,7 @@ "fields": { "package": 10493, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -18537,7 +17455,7 @@ "fields": { "package": 10451, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -18546,7 +17464,7 @@ "fields": { "package": 10518, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -18555,7 +17473,7 @@ "fields": { "package": 10459, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -18564,7 +17482,7 @@ "fields": { "package": 10471, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -18573,16 +17491,7 @@ "fields": { "package": 10440, "vulnerability": 456, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4667, - "fields": { - "package": 10447, - "vulnerability": 332, - "is_vulnerable": false + "patched_package": 10435 } }, { @@ -18591,7 +17500,7 @@ "fields": { "package": 10526, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -18600,7 +17509,7 @@ "fields": { "package": 10457, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -18609,7 +17518,7 @@ "fields": { "package": 10486, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -18618,7 +17527,7 @@ "fields": { "package": 10467, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -18627,7 +17536,7 @@ "fields": { "package": 10464, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -18636,7 +17545,7 @@ "fields": { "package": 10470, "vulnerability": 435, - "is_vulnerable": true + "patched_package": null } }, { @@ -18645,7 +17554,7 @@ "fields": { "package": 10480, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -18654,7 +17563,7 @@ "fields": { "package": 10433, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -18663,7 +17572,7 @@ "fields": { "package": 10487, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -18672,7 +17581,7 @@ "fields": { "package": 10382, "vulnerability": 351, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -18681,7 +17590,7 @@ "fields": { "package": 10388, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -18690,7 +17599,7 @@ "fields": { "package": 10495, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -18699,7 +17608,7 @@ "fields": { "package": 10426, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -18708,7 +17617,7 @@ "fields": { "package": 10394, "vulnerability": 307, - "is_vulnerable": true + "patched_package": 10410 } }, { @@ -18717,7 +17626,7 @@ "fields": { "package": 10493, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -18726,7 +17635,7 @@ "fields": { "package": 10443, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -18735,7 +17644,7 @@ "fields": { "package": 10457, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -18744,7 +17653,7 @@ "fields": { "package": 10397, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -18753,7 +17662,7 @@ "fields": { "package": 10430, "vulnerability": 383, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -18762,7 +17671,7 @@ "fields": { "package": 10449, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -18771,7 +17680,7 @@ "fields": { "package": 10457, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -18780,7 +17689,7 @@ "fields": { "package": 10441, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -18789,7 +17698,7 @@ "fields": { "package": 10456, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -18798,7 +17707,7 @@ "fields": { "package": 10462, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -18807,7 +17716,7 @@ "fields": { "package": 10382, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -18816,7 +17725,7 @@ "fields": { "package": 10484, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -18825,7 +17734,7 @@ "fields": { "package": 10426, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -18834,7 +17743,7 @@ "fields": { "package": 10440, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -18843,7 +17752,7 @@ "fields": { "package": 10493, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -18852,7 +17761,7 @@ "fields": { "package": 10472, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -18861,7 +17770,7 @@ "fields": { "package": 10488, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -18870,7 +17779,7 @@ "fields": { "package": 10480, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -18879,7 +17788,7 @@ "fields": { "package": 10400, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -18888,16 +17797,7 @@ "fields": { "package": 10470, "vulnerability": 376, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4702, - "fields": { - "package": 10463, - "vulnerability": 449, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -18906,7 +17806,7 @@ "fields": { "package": 10448, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -18915,7 +17815,7 @@ "fields": { "package": 10490, "vulnerability": 382, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -18924,7 +17824,7 @@ "fields": { "package": 10462, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -18933,7 +17833,7 @@ "fields": { "package": 10463, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -18942,7 +17842,7 @@ "fields": { "package": 10429, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -18951,7 +17851,7 @@ "fields": { "package": 10388, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -18960,7 +17860,7 @@ "fields": { "package": 10463, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -18969,7 +17869,7 @@ "fields": { "package": 10395, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -18978,7 +17878,7 @@ "fields": { "package": 10432, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -18987,7 +17887,7 @@ "fields": { "package": 10486, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -18996,7 +17896,7 @@ "fields": { "package": 10444, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -19005,7 +17905,7 @@ "fields": { "package": 10457, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -19014,7 +17914,7 @@ "fields": { "package": 10464, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -19023,7 +17923,7 @@ "fields": { "package": 10439, "vulnerability": 460, - "is_vulnerable": true + "patched_package": null } }, { @@ -19032,7 +17932,7 @@ "fields": { "package": 10398, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -19041,7 +17941,7 @@ "fields": { "package": 10473, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -19050,7 +17950,7 @@ "fields": { "package": 10472, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -19059,7 +17959,7 @@ "fields": { "package": 10487, "vulnerability": 429, - "is_vulnerable": true + "patched_package": 10468 } }, { @@ -19068,16 +17968,7 @@ "fields": { "package": 10406, "vulnerability": 300, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4722, - "fields": { - "package": 10497, - "vulnerability": 343, - "is_vulnerable": false + "patched_package": 10422 } }, { @@ -19086,7 +17977,7 @@ "fields": { "package": 10427, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -19095,7 +17986,7 @@ "fields": { "package": 10470, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10481 } }, { @@ -19104,7 +17995,7 @@ "fields": { "package": 10477, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -19113,16 +18004,7 @@ "fields": { "package": 10440, "vulnerability": 358, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4727, - "fields": { - "package": 10469, - "vulnerability": 468, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -19131,7 +18013,7 @@ "fields": { "package": 10503, "vulnerability": 399, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -19140,7 +18022,7 @@ "fields": { "package": 10395, "vulnerability": 351, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -19149,7 +18031,7 @@ "fields": { "package": 10521, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -19158,7 +18040,7 @@ "fields": { "package": 10489, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -19167,7 +18049,7 @@ "fields": { "package": 10439, "vulnerability": 402, - "is_vulnerable": true + "patched_package": null } }, { @@ -19176,7 +18058,7 @@ "fields": { "package": 10453, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10457 } }, { @@ -19185,7 +18067,7 @@ "fields": { "package": 10495, "vulnerability": 445, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -19194,7 +18076,7 @@ "fields": { "package": 10461, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -19203,7 +18085,7 @@ "fields": { "package": 10470, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -19212,16 +18094,7 @@ "fields": { "package": 10470, "vulnerability": 380, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4738, - "fields": { - "package": 10393, - "vulnerability": 316, - "is_vulnerable": false + "patched_package": 10484 } }, { @@ -19230,7 +18103,7 @@ "fields": { "package": 10410, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -19239,7 +18112,7 @@ "fields": { "package": 10463, "vulnerability": 446, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -19248,7 +18121,7 @@ "fields": { "package": 10490, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -19257,7 +18130,7 @@ "fields": { "package": 10462, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -19266,7 +18139,7 @@ "fields": { "package": 10457, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -19275,7 +18148,7 @@ "fields": { "package": 10503, "vulnerability": 397, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -19284,7 +18157,7 @@ "fields": { "package": 10426, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -19293,7 +18166,7 @@ "fields": { "package": 10470, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -19302,7 +18175,7 @@ "fields": { "package": 10395, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -19311,7 +18184,7 @@ "fields": { "package": 10444, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -19320,7 +18193,7 @@ "fields": { "package": 10439, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -19329,7 +18202,7 @@ "fields": { "package": 10495, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -19338,7 +18211,7 @@ "fields": { "package": 10440, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -19347,7 +18220,7 @@ "fields": { "package": 10473, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -19356,7 +18229,7 @@ "fields": { "package": 10440, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -19365,7 +18238,7 @@ "fields": { "package": 10427, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -19374,7 +18247,7 @@ "fields": { "package": 10430, "vulnerability": 392, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -19383,7 +18256,7 @@ "fields": { "package": 10483, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -19392,7 +18265,7 @@ "fields": { "package": 10441, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -19401,7 +18274,7 @@ "fields": { "package": 10450, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -19410,7 +18283,7 @@ "fields": { "package": 10449, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -19419,7 +18292,7 @@ "fields": { "package": 10383, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -19428,7 +18301,7 @@ "fields": { "package": 10390, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10417 } }, { @@ -19437,7 +18310,7 @@ "fields": { "package": 10437, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -19446,7 +18319,7 @@ "fields": { "package": 10489, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10499 } }, { @@ -19455,7 +18328,7 @@ "fields": { "package": 10457, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -19464,7 +18337,7 @@ "fields": { "package": 10530, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -19473,16 +18346,7 @@ "fields": { "package": 10470, "vulnerability": 363, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4767, - "fields": { - "package": 10441, - "vulnerability": 453, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -19491,16 +18355,7 @@ "fields": { "package": 10486, "vulnerability": 377, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4769, - "fields": { - "package": 10408, - "vulnerability": 293, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -19509,7 +18364,7 @@ "fields": { "package": 10419, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -19518,7 +18373,7 @@ "fields": { "package": 10473, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -19527,7 +18382,7 @@ "fields": { "package": 10445, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -19536,7 +18391,7 @@ "fields": { "package": 10433, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -19545,16 +18400,7 @@ "fields": { "package": 10478, "vulnerability": 423, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4775, - "fields": { - "package": 10454, - "vulnerability": 364, - "is_vulnerable": false + "patched_package": 10464 } }, { @@ -19563,16 +18409,7 @@ "fields": { "package": 10442, "vulnerability": 344, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4777, - "fields": { - "package": 10422, - "vulnerability": 301, - "is_vulnerable": false + "patched_package": 10446 } }, { @@ -19581,7 +18418,7 @@ "fields": { "package": 10387, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -19590,7 +18427,7 @@ "fields": { "package": 10396, "vulnerability": 317, - "is_vulnerable": true + "patched_package": 10401 } }, { @@ -19599,7 +18436,7 @@ "fields": { "package": 10431, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -19608,16 +18445,7 @@ "fields": { "package": 10474, "vulnerability": 343, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4782, - "fields": { - "package": 10431, - "vulnerability": 381, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -19626,7 +18454,7 @@ "fields": { "package": 10430, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -19635,7 +18463,7 @@ "fields": { "package": 10383, "vulnerability": 348, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -19644,7 +18472,7 @@ "fields": { "package": 10483, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -19653,7 +18481,7 @@ "fields": { "package": 10406, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -19662,7 +18490,7 @@ "fields": { "package": 10472, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -19671,7 +18499,7 @@ "fields": { "package": 10480, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -19680,7 +18508,7 @@ "fields": { "package": 10439, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -19689,7 +18517,7 @@ "fields": { "package": 10446, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -19698,7 +18526,7 @@ "fields": { "package": 10460, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -19707,7 +18535,7 @@ "fields": { "package": 10473, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -19716,7 +18544,7 @@ "fields": { "package": 10426, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -19725,16 +18553,7 @@ "fields": { "package": 10438, "vulnerability": 391, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4795, - "fields": { - "package": 10495, - "vulnerability": 440, - "is_vulnerable": false + "patched_package": 10431 } }, { @@ -19743,7 +18562,7 @@ "fields": { "package": 10452, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -19752,7 +18571,7 @@ "fields": { "package": 10486, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -19761,7 +18580,7 @@ "fields": { "package": 10453, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -19770,7 +18589,7 @@ "fields": { "package": 10453, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -19779,16 +18598,7 @@ "fields": { "package": 10476, "vulnerability": 346, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4801, - "fields": { - "package": 10444, - "vulnerability": 398, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -19797,7 +18607,7 @@ "fields": { "package": 10400, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -19806,7 +18616,7 @@ "fields": { "package": 10454, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -19815,7 +18625,7 @@ "fields": { "package": 10429, "vulnerability": 460, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -19824,7 +18634,7 @@ "fields": { "package": 10388, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -19833,7 +18643,7 @@ "fields": { "package": 10463, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -19842,7 +18652,7 @@ "fields": { "package": 10462, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -19851,7 +18661,7 @@ "fields": { "package": 10396, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -19860,7 +18670,7 @@ "fields": { "package": 10487, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -19869,7 +18679,7 @@ "fields": { "package": 10430, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -19878,7 +18688,7 @@ "fields": { "package": 10383, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -19887,7 +18697,7 @@ "fields": { "package": 10511, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -19896,7 +18706,7 @@ "fields": { "package": 10479, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -19905,7 +18715,7 @@ "fields": { "package": 10429, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -19914,7 +18724,7 @@ "fields": { "package": 10478, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -19923,7 +18733,7 @@ "fields": { "package": 10486, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -19932,7 +18742,7 @@ "fields": { "package": 10451, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -19941,7 +18751,7 @@ "fields": { "package": 10446, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -19950,7 +18760,7 @@ "fields": { "package": 10460, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -19959,7 +18769,7 @@ "fields": { "package": 10439, "vulnerability": 394, - "is_vulnerable": true + "patched_package": null } }, { @@ -19968,7 +18778,7 @@ "fields": { "package": 10438, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -19977,7 +18787,7 @@ "fields": { "package": 10480, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -19986,7 +18796,7 @@ "fields": { "package": 10452, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -19995,7 +18805,7 @@ "fields": { "package": 10489, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -20004,7 +18814,7 @@ "fields": { "package": 10385, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -20013,7 +18823,7 @@ "fields": { "package": 10434, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -20022,7 +18832,7 @@ "fields": { "package": 10473, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -20031,7 +18841,7 @@ "fields": { "package": 10493, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -20040,7 +18850,7 @@ "fields": { "package": 10430, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -20049,7 +18859,7 @@ "fields": { "package": 10498, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -20058,7 +18868,7 @@ "fields": { "package": 10463, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -20067,7 +18877,7 @@ "fields": { "package": 10444, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -20076,7 +18886,7 @@ "fields": { "package": 10397, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -20085,7 +18895,7 @@ "fields": { "package": 10430, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -20094,7 +18904,7 @@ "fields": { "package": 10453, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -20103,7 +18913,7 @@ "fields": { "package": 10470, "vulnerability": 414, - "is_vulnerable": true + "patched_package": null } }, { @@ -20112,7 +18922,7 @@ "fields": { "package": 10473, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -20121,7 +18931,7 @@ "fields": { "package": 10431, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -20130,7 +18940,7 @@ "fields": { "package": 10448, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -20139,7 +18949,7 @@ "fields": { "package": 10437, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -20148,7 +18958,7 @@ "fields": { "package": 10439, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -20157,16 +18967,7 @@ "fields": { "package": 10440, "vulnerability": 377, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4843, - "fields": { - "package": 10388, - "vulnerability": 379, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -20175,7 +18976,7 @@ "fields": { "package": 10427, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -20184,7 +18985,7 @@ "fields": { "package": 10486, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -20193,7 +18994,7 @@ "fields": { "package": 10480, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -20202,7 +19003,7 @@ "fields": { "package": 10464, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -20211,7 +19012,7 @@ "fields": { "package": 10478, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -20220,7 +19021,7 @@ "fields": { "package": 10489, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -20229,7 +19030,7 @@ "fields": { "package": 10520, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -20238,7 +19039,7 @@ "fields": { "package": 10485, "vulnerability": 428, - "is_vulnerable": true + "patched_package": 10449 } }, { @@ -20247,7 +19048,7 @@ "fields": { "package": 10479, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -20256,25 +19057,7 @@ "fields": { "package": 10488, "vulnerability": 466, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4854, - "fields": { - "package": 10517, - "vulnerability": 412, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4855, - "fields": { - "package": 10397, - "vulnerability": 351, - "is_vulnerable": false + "patched_package": 10469 } }, { @@ -20283,7 +19066,7 @@ "fields": { "package": 10401, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -20292,7 +19075,7 @@ "fields": { "package": 10441, "vulnerability": 395, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -20301,7 +19084,7 @@ "fields": { "package": 10409, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -20310,7 +19093,7 @@ "fields": { "package": 10463, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -20319,7 +19102,7 @@ "fields": { "package": 10456, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -20328,7 +19111,7 @@ "fields": { "package": 10428, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -20337,7 +19120,7 @@ "fields": { "package": 10489, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -20346,7 +19129,7 @@ "fields": { "package": 10435, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -20355,7 +19138,7 @@ "fields": { "package": 10468, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -20364,7 +19147,7 @@ "fields": { "package": 10432, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -20373,7 +19156,7 @@ "fields": { "package": 10457, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -20382,7 +19165,7 @@ "fields": { "package": 10513, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -20391,16 +19174,7 @@ "fields": { "package": 10520, "vulnerability": 406, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4869, - "fields": { - "package": 10446, - "vulnerability": 338, - "is_vulnerable": false + "patched_package": 10525 } }, { @@ -20409,7 +19183,7 @@ "fields": { "package": 10492, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -20418,7 +19192,7 @@ "fields": { "package": 10473, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -20427,7 +19201,7 @@ "fields": { "package": 10470, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -20436,7 +19210,7 @@ "fields": { "package": 10396, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -20445,7 +19219,7 @@ "fields": { "package": 10472, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -20454,7 +19228,7 @@ "fields": { "package": 10480, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -20463,7 +19237,7 @@ "fields": { "package": 10433, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -20472,7 +19246,7 @@ "fields": { "package": 10487, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -20481,16 +19255,7 @@ "fields": { "package": 10440, "vulnerability": 360, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4879, - "fields": { - "package": 10442, - "vulnerability": 463, - "is_vulnerable": false + "patched_package": 10442 } }, { @@ -20499,7 +19264,7 @@ "fields": { "package": 10493, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -20508,16 +19273,7 @@ "fields": { "package": 10388, "vulnerability": 355, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4882, - "fields": { - "package": 10431, - "vulnerability": 373, - "is_vulnerable": false + "patched_package": 10382 } }, { @@ -20526,7 +19282,7 @@ "fields": { "package": 10429, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -20535,7 +19291,7 @@ "fields": { "package": 10429, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -20544,7 +19300,7 @@ "fields": { "package": 10436, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -20553,7 +19309,7 @@ "fields": { "package": 10450, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -20562,7 +19318,7 @@ "fields": { "package": 10460, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -20571,16 +19327,7 @@ "fields": { "package": 10520, "vulnerability": 404, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4889, - "fields": { - "package": 10497, - "vulnerability": 365, - "is_vulnerable": false + "patched_package": 10521 } }, { @@ -20589,7 +19336,7 @@ "fields": { "package": 10486, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -20598,7 +19345,7 @@ "fields": { "package": 10479, "vulnerability": 433, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -20607,7 +19354,7 @@ "fields": { "package": 10463, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -20616,7 +19363,7 @@ "fields": { "package": 10443, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -20625,7 +19372,7 @@ "fields": { "package": 10456, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -20634,7 +19381,7 @@ "fields": { "package": 10466, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -20643,7 +19390,7 @@ "fields": { "package": 10462, "vulnerability": 428, - "is_vulnerable": true + "patched_package": 10449 } }, { @@ -20652,16 +19399,7 @@ "fields": { "package": 10504, "vulnerability": 419, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4898, - "fields": { - "package": 10452, - "vulnerability": 421, - "is_vulnerable": false + "patched_package": 10529 } }, { @@ -20670,16 +19408,7 @@ "fields": { "package": 10444, "vulnerability": 340, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4900, - "fields": { - "package": 10459, - "vulnerability": 419, - "is_vulnerable": false + "patched_package": 10436 } }, { @@ -20688,7 +19417,7 @@ "fields": { "package": 10413, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10414 } }, { @@ -20697,7 +19426,7 @@ "fields": { "package": 10488, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -20706,16 +19435,7 @@ "fields": { "package": 10453, "vulnerability": 377, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4904, - "fields": { - "package": 10421, - "vulnerability": 300, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -20724,7 +19444,7 @@ "fields": { "package": 10386, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -20733,7 +19453,7 @@ "fields": { "package": 10393, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10417 } }, { @@ -20742,7 +19462,7 @@ "fields": { "package": 10493, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -20751,7 +19471,7 @@ "fields": { "package": 10477, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -20760,7 +19480,7 @@ "fields": { "package": 10494, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -20769,7 +19489,7 @@ "fields": { "package": 10400, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -20778,7 +19498,7 @@ "fields": { "package": 10489, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -20787,7 +19507,7 @@ "fields": { "package": 10468, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -20796,7 +19516,7 @@ "fields": { "package": 10388, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -20805,7 +19525,7 @@ "fields": { "package": 10476, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -20814,7 +19534,7 @@ "fields": { "package": 10441, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -20823,7 +19543,7 @@ "fields": { "package": 10383, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -20832,16 +19552,7 @@ "fields": { "package": 10450, "vulnerability": 359, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4918, - "fields": { - "package": 10408, - "vulnerability": 309, - "is_vulnerable": false + "patched_package": 10501 } }, { @@ -20850,7 +19561,7 @@ "fields": { "package": 10439, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10388 } }, { @@ -20859,7 +19570,7 @@ "fields": { "package": 10445, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -20868,7 +19579,7 @@ "fields": { "package": 10464, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -20877,7 +19588,7 @@ "fields": { "package": 10429, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -20886,7 +19597,7 @@ "fields": { "package": 10478, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -20895,7 +19606,7 @@ "fields": { "package": 10470, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -20904,7 +19615,7 @@ "fields": { "package": 10479, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -20913,7 +19624,7 @@ "fields": { "package": 10483, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -20922,7 +19633,7 @@ "fields": { "package": 10440, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -20931,7 +19642,7 @@ "fields": { "package": 10493, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -20940,7 +19651,7 @@ "fields": { "package": 10489, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -20949,7 +19660,7 @@ "fields": { "package": 10488, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -20958,7 +19669,7 @@ "fields": { "package": 10453, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -20967,7 +19678,7 @@ "fields": { "package": 10434, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -20976,7 +19687,7 @@ "fields": { "package": 10468, "vulnerability": 432, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -20985,7 +19696,7 @@ "fields": { "package": 10443, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -20994,7 +19705,7 @@ "fields": { "package": 10442, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -21003,7 +19714,7 @@ "fields": { "package": 10463, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -21012,7 +19723,7 @@ "fields": { "package": 10400, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -21021,7 +19732,7 @@ "fields": { "package": 10465, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -21030,7 +19741,7 @@ "fields": { "package": 10430, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -21039,7 +19750,7 @@ "fields": { "package": 10429, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -21048,7 +19759,7 @@ "fields": { "package": 10476, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -21057,7 +19768,7 @@ "fields": { "package": 10454, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -21066,7 +19777,7 @@ "fields": { "package": 10468, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -21075,7 +19786,7 @@ "fields": { "package": 10517, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -21084,7 +19795,7 @@ "fields": { "package": 10383, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -21093,16 +19804,7 @@ "fields": { "package": 10439, "vulnerability": 349, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4947, - "fields": { - "package": 10460, - "vulnerability": 385, - "is_vulnerable": false + "patched_package": 10400 } }, { @@ -21111,16 +19813,7 @@ "fields": { "package": 10520, "vulnerability": 413, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4949, - "fields": { - "package": 10400, - "vulnerability": 338, - "is_vulnerable": false + "patched_package": 10531 } }, { @@ -21129,7 +19822,7 @@ "fields": { "package": 10487, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -21138,7 +19831,7 @@ "fields": { "package": 10453, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -21147,16 +19840,7 @@ "fields": { "package": 10479, "vulnerability": 364, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4953, - "fields": { - "package": 10447, - "vulnerability": 330, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -21165,16 +19849,7 @@ "fields": { "package": 10489, "vulnerability": 356, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4955, - "fields": { - "package": 10431, - "vulnerability": 380, - "is_vulnerable": false + "patched_package": 10498 } }, { @@ -21183,7 +19858,7 @@ "fields": { "package": 10456, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -21192,16 +19867,7 @@ "fields": { "package": 10383, "vulnerability": 347, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4958, - "fields": { - "package": 10437, - "vulnerability": 358, - "is_vulnerable": false + "patched_package": 10397 } }, { @@ -21210,7 +19876,7 @@ "fields": { "package": 10503, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -21219,16 +19885,7 @@ "fields": { "package": 10443, "vulnerability": 329, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4961, - "fields": { - "package": 10461, - "vulnerability": 446, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -21237,7 +19894,7 @@ "fields": { "package": 10495, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10477 } }, { @@ -21246,7 +19903,7 @@ "fields": { "package": 10463, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -21255,7 +19912,7 @@ "fields": { "package": 10386, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -21264,7 +19921,7 @@ "fields": { "package": 10470, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -21273,7 +19930,7 @@ "fields": { "package": 10477, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -21282,7 +19939,7 @@ "fields": { "package": 10430, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -21291,7 +19948,7 @@ "fields": { "package": 10463, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -21300,7 +19957,7 @@ "fields": { "package": 10492, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -21309,7 +19966,7 @@ "fields": { "package": 10426, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -21318,7 +19975,7 @@ "fields": { "package": 10440, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -21327,7 +19984,7 @@ "fields": { "package": 10478, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -21336,7 +19993,7 @@ "fields": { "package": 10439, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -21345,7 +20002,7 @@ "fields": { "package": 10453, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -21354,7 +20011,7 @@ "fields": { "package": 10495, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -21363,7 +20020,7 @@ "fields": { "package": 10393, "vulnerability": 305, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -21372,7 +20029,7 @@ "fields": { "package": 10400, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -21381,7 +20038,7 @@ "fields": { "package": 10456, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -21390,7 +20047,7 @@ "fields": { "package": 10452, "vulnerability": 428, - "is_vulnerable": true + "patched_package": 10449 } }, { @@ -21399,7 +20056,7 @@ "fields": { "package": 10434, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -21408,7 +20065,7 @@ "fields": { "package": 10403, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -21417,7 +20074,7 @@ "fields": { "package": 10478, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -21426,7 +20083,7 @@ "fields": { "package": 10451, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -21435,7 +20092,7 @@ "fields": { "package": 10504, "vulnerability": 411, - "is_vulnerable": true + "patched_package": 10505 } }, { @@ -21444,7 +20101,7 @@ "fields": { "package": 10430, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -21453,16 +20110,7 @@ "fields": { "package": 10456, "vulnerability": 364, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 4987, - "fields": { - "package": 10452, - "vulnerability": 413, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -21471,7 +20119,7 @@ "fields": { "package": 10470, "vulnerability": 416, - "is_vulnerable": true + "patched_package": null } }, { @@ -21480,7 +20128,7 @@ "fields": { "package": 10523, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -21489,7 +20137,7 @@ "fields": { "package": 10491, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -21498,7 +20146,7 @@ "fields": { "package": 10483, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -21507,7 +20155,7 @@ "fields": { "package": 10396, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -21516,7 +20164,7 @@ "fields": { "package": 10499, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -21525,7 +20173,7 @@ "fields": { "package": 10388, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -21534,7 +20182,7 @@ "fields": { "package": 10479, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -21543,7 +20191,7 @@ "fields": { "package": 10459, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -21552,7 +20200,7 @@ "fields": { "package": 10466, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -21561,7 +20209,7 @@ "fields": { "package": 10431, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -21570,7 +20218,7 @@ "fields": { "package": 10492, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -21579,7 +20227,7 @@ "fields": { "package": 10440, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -21588,7 +20236,7 @@ "fields": { "package": 10429, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -21597,7 +20245,7 @@ "fields": { "package": 10479, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -21606,7 +20254,7 @@ "fields": { "package": 10454, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -21615,7 +20263,7 @@ "fields": { "package": 10468, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -21624,7 +20272,7 @@ "fields": { "package": 10495, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -21633,7 +20281,7 @@ "fields": { "package": 10460, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -21642,7 +20290,7 @@ "fields": { "package": 10435, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -21651,7 +20299,7 @@ "fields": { "package": 10394, "vulnerability": 308, - "is_vulnerable": true + "patched_package": null } }, { @@ -21660,16 +20308,7 @@ "fields": { "package": 10469, "vulnerability": 381, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5010, - "fields": { - "package": 10460, - "vulnerability": 394, - "is_vulnerable": false + "patched_package": 10484 } }, { @@ -21678,7 +20317,7 @@ "fields": { "package": 10494, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -21687,7 +20326,7 @@ "fields": { "package": 10430, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -21696,7 +20335,7 @@ "fields": { "package": 10472, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -21705,7 +20344,7 @@ "fields": { "package": 10412, "vulnerability": 296, - "is_vulnerable": true + "patched_package": null } }, { @@ -21714,7 +20353,7 @@ "fields": { "package": 10432, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -21723,7 +20362,7 @@ "fields": { "package": 10439, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -21732,7 +20371,7 @@ "fields": { "package": 10390, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -21741,7 +20380,7 @@ "fields": { "package": 10455, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -21750,16 +20389,7 @@ "fields": { "package": 10442, "vulnerability": 318, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5020, - "fields": { - "package": 10445, - "vulnerability": 363, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -21768,16 +20398,7 @@ "fields": { "package": 10495, "vulnerability": 463, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5022, - "fields": { - "package": 10442, - "vulnerability": 465, - "is_vulnerable": false + "patched_package": 10469 } }, { @@ -21786,7 +20407,7 @@ "fields": { "package": 10444, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -21795,7 +20416,7 @@ "fields": { "package": 10459, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -21804,7 +20425,7 @@ "fields": { "package": 10461, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -21813,7 +20434,7 @@ "fields": { "package": 10495, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -21822,7 +20443,7 @@ "fields": { "package": 10507, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -21831,7 +20452,7 @@ "fields": { "package": 10429, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -21840,7 +20461,7 @@ "fields": { "package": 10479, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -21849,7 +20470,7 @@ "fields": { "package": 10383, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -21858,7 +20479,7 @@ "fields": { "package": 10496, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -21867,7 +20488,7 @@ "fields": { "package": 10463, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -21876,7 +20497,7 @@ "fields": { "package": 10478, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -21885,16 +20506,7 @@ "fields": { "package": 10443, "vulnerability": 465, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5035, - "fields": { - "package": 10499, - "vulnerability": 450, - "is_vulnerable": false + "patched_package": 10442 } }, { @@ -21903,7 +20515,7 @@ "fields": { "package": 10479, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -21912,7 +20524,7 @@ "fields": { "package": 10439, "vulnerability": 383, - "is_vulnerable": true + "patched_package": null } }, { @@ -21921,7 +20533,7 @@ "fields": { "package": 10492, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -21930,7 +20542,7 @@ "fields": { "package": 10433, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -21939,7 +20551,7 @@ "fields": { "package": 10446, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -21948,7 +20560,7 @@ "fields": { "package": 10455, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -21957,7 +20569,7 @@ "fields": { "package": 10467, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -21966,16 +20578,7 @@ "fields": { "package": 10470, "vulnerability": 425, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5044, - "fields": { - "package": 10445, - "vulnerability": 346, - "is_vulnerable": false + "patched_package": null } }, { @@ -21984,7 +20587,7 @@ "fields": { "package": 10495, "vulnerability": 446, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -21993,16 +20596,7 @@ "fields": { "package": 10430, "vulnerability": 376, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5047, - "fields": { - "package": 10471, - "vulnerability": 387, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -22011,7 +20605,7 @@ "fields": { "package": 10468, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -22020,7 +20614,7 @@ "fields": { "package": 10388, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -22029,7 +20623,7 @@ "fields": { "package": 10429, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -22038,7 +20632,7 @@ "fields": { "package": 10443, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -22047,7 +20641,7 @@ "fields": { "package": 10485, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -22056,7 +20650,7 @@ "fields": { "package": 10478, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -22065,7 +20659,7 @@ "fields": { "package": 10468, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -22074,7 +20668,7 @@ "fields": { "package": 10493, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -22083,7 +20677,7 @@ "fields": { "package": 10392, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -22092,7 +20686,7 @@ "fields": { "package": 10489, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -22101,7 +20695,7 @@ "fields": { "package": 10486, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -22110,7 +20704,7 @@ "fields": { "package": 10469, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -22119,16 +20713,7 @@ "fields": { "package": 10523, "vulnerability": 413, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5061, - "fields": { - "package": 10446, - "vulnerability": 349, - "is_vulnerable": false + "patched_package": 10531 } }, { @@ -22137,7 +20722,7 @@ "fields": { "package": 10491, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10483 } }, { @@ -22146,7 +20731,7 @@ "fields": { "package": 10449, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -22155,7 +20740,7 @@ "fields": { "package": 10430, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -22164,7 +20749,7 @@ "fields": { "package": 10479, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -22173,7 +20758,7 @@ "fields": { "package": 10444, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -22182,7 +20767,7 @@ "fields": { "package": 10485, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -22191,7 +20776,7 @@ "fields": { "package": 10438, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -22200,7 +20785,7 @@ "fields": { "package": 10419, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -22209,7 +20794,7 @@ "fields": { "package": 10384, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -22218,7 +20803,7 @@ "fields": { "package": 10492, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -22227,7 +20812,7 @@ "fields": { "package": 10459, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -22236,16 +20821,7 @@ "fields": { "package": 10462, "vulnerability": 375, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5074, - "fields": { - "package": 10396, - "vulnerability": 325, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -22254,7 +20830,7 @@ "fields": { "package": 10469, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -22263,7 +20839,7 @@ "fields": { "package": 10402, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -22272,7 +20848,7 @@ "fields": { "package": 10409, "vulnerability": 294, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -22281,16 +20857,7 @@ "fields": { "package": 10494, "vulnerability": 394, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5079, - "fields": { - "package": 10388, - "vulnerability": 371, - "is_vulnerable": false + "patched_package": 10460 } }, { @@ -22299,7 +20866,7 @@ "fields": { "package": 10503, "vulnerability": 410, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -22308,16 +20875,7 @@ "fields": { "package": 10383, "vulnerability": 349, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5082, - "fields": { - "package": 10436, - "vulnerability": 340, - "is_vulnerable": false + "patched_package": 10400 } }, { @@ -22326,7 +20884,7 @@ "fields": { "package": 10439, "vulnerability": 392, - "is_vulnerable": true + "patched_package": null } }, { @@ -22335,7 +20893,7 @@ "fields": { "package": 10432, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -22344,7 +20902,7 @@ "fields": { "package": 10517, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -22353,7 +20911,7 @@ "fields": { "package": 10470, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -22362,7 +20920,7 @@ "fields": { "package": 10435, "vulnerability": 398, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -22371,7 +20929,7 @@ "fields": { "package": 10449, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -22380,16 +20938,7 @@ "fields": { "package": 10525, "vulnerability": 414, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5090, - "fields": { - "package": 10460, - "vulnerability": 384, - "is_vulnerable": false + "patched_package": 10531 } }, { @@ -22398,7 +20947,7 @@ "fields": { "package": 10485, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -22407,7 +20956,7 @@ "fields": { "package": 10451, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -22416,16 +20965,7 @@ "fields": { "package": 10466, "vulnerability": 355, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5094, - "fields": { - "package": 10522, - "vulnerability": 405, - "is_vulnerable": false + "patched_package": 10502 } }, { @@ -22434,7 +20974,7 @@ "fields": { "package": 10479, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -22443,7 +20983,7 @@ "fields": { "package": 10486, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -22452,7 +20992,7 @@ "fields": { "package": 10426, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -22461,7 +21001,7 @@ "fields": { "package": 10468, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -22470,7 +21010,7 @@ "fields": { "package": 10495, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -22479,7 +21019,7 @@ "fields": { "package": 10494, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -22488,7 +21028,7 @@ "fields": { "package": 10459, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -22497,7 +21037,7 @@ "fields": { "package": 10508, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -22506,16 +21046,7 @@ "fields": { "package": 10393, "vulnerability": 307, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5104, - "fields": { - "package": 10458, - "vulnerability": 451, - "is_vulnerable": false + "patched_package": 10418 } }, { @@ -22524,7 +21055,7 @@ "fields": { "package": 10492, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -22533,7 +21064,7 @@ "fields": { "package": 10462, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -22542,7 +21073,7 @@ "fields": { "package": 10469, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -22551,7 +21082,7 @@ "fields": { "package": 10429, "vulnerability": 383, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -22560,7 +21091,7 @@ "fields": { "package": 10403, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -22569,7 +21100,7 @@ "fields": { "package": 10482, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -22578,7 +21109,7 @@ "fields": { "package": 10461, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -22587,7 +21118,7 @@ "fields": { "package": 10383, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -22596,7 +21127,7 @@ "fields": { "package": 10482, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -22605,7 +21136,7 @@ "fields": { "package": 10439, "vulnerability": 375, - "is_vulnerable": true + "patched_package": null } }, { @@ -22614,7 +21145,7 @@ "fields": { "package": 10492, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -22623,7 +21154,7 @@ "fields": { "package": 10445, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -22632,7 +21163,7 @@ "fields": { "package": 10443, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -22641,16 +21172,7 @@ "fields": { "package": 10449, "vulnerability": 433, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5119, - "fields": { - "package": 10442, - "vulnerability": 464, - "is_vulnerable": false + "patched_package": 10453 } }, { @@ -22659,7 +21181,7 @@ "fields": { "package": 10475, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -22668,7 +21190,7 @@ "fields": { "package": 10468, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -22677,7 +21199,7 @@ "fields": { "package": 10495, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -22686,7 +21208,7 @@ "fields": { "package": 10509, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10517 } }, { @@ -22695,7 +21217,7 @@ "fields": { "package": 10435, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -22704,7 +21226,7 @@ "fields": { "package": 10394, "vulnerability": 310, - "is_vulnerable": true + "patched_package": null } }, { @@ -22713,7 +21235,7 @@ "fields": { "package": 10431, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -22722,7 +21244,7 @@ "fields": { "package": 10383, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -22731,7 +21253,7 @@ "fields": { "package": 10458, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -22740,7 +21262,7 @@ "fields": { "package": 10392, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -22749,7 +21271,7 @@ "fields": { "package": 10463, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -22758,7 +21280,7 @@ "fields": { "package": 10430, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -22767,7 +21289,7 @@ "fields": { "package": 10530, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -22776,7 +21298,7 @@ "fields": { "package": 10471, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -22785,7 +21307,7 @@ "fields": { "package": 10483, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -22794,7 +21316,7 @@ "fields": { "package": 10486, "vulnerability": 429, - "is_vulnerable": true + "patched_package": 10468 } }, { @@ -22803,7 +21325,7 @@ "fields": { "package": 10405, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -22812,7 +21334,7 @@ "fields": { "package": 10382, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -22821,7 +21343,7 @@ "fields": { "package": 10426, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -22830,7 +21352,7 @@ "fields": { "package": 10479, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -22839,7 +21361,7 @@ "fields": { "package": 10492, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -22848,7 +21370,7 @@ "fields": { "package": 10445, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -22857,7 +21379,7 @@ "fields": { "package": 10459, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -22866,7 +21388,7 @@ "fields": { "package": 10400, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -22875,7 +21397,7 @@ "fields": { "package": 10406, "vulnerability": 307, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -22884,7 +21406,7 @@ "fields": { "package": 10459, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -22893,7 +21415,7 @@ "fields": { "package": 10469, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -22902,7 +21424,7 @@ "fields": { "package": 10428, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -22911,7 +21433,7 @@ "fields": { "package": 10409, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -22920,7 +21442,7 @@ "fields": { "package": 10442, "vulnerability": 383, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -22929,7 +21451,7 @@ "fields": { "package": 10383, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -22938,7 +21460,7 @@ "fields": { "package": 10468, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -22947,7 +21469,7 @@ "fields": { "package": 10394, "vulnerability": 293, - "is_vulnerable": true + "patched_package": null } }, { @@ -22956,7 +21478,7 @@ "fields": { "package": 10438, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -22965,7 +21487,7 @@ "fields": { "package": 10452, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -22974,16 +21496,7 @@ "fields": { "package": 10405, "vulnerability": 348, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5156, - "fields": { - "package": 10388, - "vulnerability": 343, - "is_vulnerable": false + "patched_package": null } }, { @@ -22992,7 +21505,7 @@ "fields": { "package": 10473, "vulnerability": 425, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -23001,7 +21514,7 @@ "fields": { "package": 10392, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -23010,7 +21523,7 @@ "fields": { "package": 10483, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -23019,7 +21532,7 @@ "fields": { "package": 10492, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -23028,7 +21541,7 @@ "fields": { "package": 10426, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -23037,7 +21550,7 @@ "fields": { "package": 10429, "vulnerability": 392, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -23046,7 +21559,7 @@ "fields": { "package": 10435, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -23055,7 +21568,7 @@ "fields": { "package": 10507, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -23064,7 +21577,7 @@ "fields": { "package": 10460, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -23073,7 +21586,7 @@ "fields": { "package": 10429, "vulnerability": 456, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -23082,7 +21595,7 @@ "fields": { "package": 10475, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -23091,7 +21604,7 @@ "fields": { "package": 10382, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -23100,7 +21613,7 @@ "fields": { "package": 10515, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -23109,7 +21622,7 @@ "fields": { "package": 10400, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -23118,7 +21631,7 @@ "fields": { "package": 10475, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -23127,7 +21640,7 @@ "fields": { "package": 10456, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -23136,7 +21649,7 @@ "fields": { "package": 10444, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -23145,7 +21658,7 @@ "fields": { "package": 10453, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -23154,7 +21667,7 @@ "fields": { "package": 10459, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -23163,7 +21676,7 @@ "fields": { "package": 10441, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -23172,16 +21685,7 @@ "fields": { "package": 10469, "vulnerability": 363, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5178, - "fields": { - "package": 10449, - "vulnerability": 428, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -23190,7 +21694,7 @@ "fields": { "package": 10476, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -23199,7 +21703,7 @@ "fields": { "package": 10493, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -23208,7 +21712,7 @@ "fields": { "package": 10443, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -23217,7 +21721,7 @@ "fields": { "package": 10485, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -23226,7 +21730,7 @@ "fields": { "package": 10484, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -23235,7 +21739,7 @@ "fields": { "package": 10458, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -23244,16 +21748,7 @@ "fields": { "package": 10418, "vulnerability": 300, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5186, - "fields": { - "package": 10418, - "vulnerability": 307, - "is_vulnerable": false + "patched_package": 10422 } }, { @@ -23262,7 +21757,7 @@ "fields": { "package": 10439, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -23271,7 +21766,7 @@ "fields": { "package": 10482, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -23280,7 +21775,7 @@ "fields": { "package": 10489, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -23289,16 +21784,7 @@ "fields": { "package": 10452, "vulnerability": 358, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5191, - "fields": { - "package": 10421, - "vulnerability": 301, - "is_vulnerable": false + "patched_package": 10458 } }, { @@ -23307,7 +21793,7 @@ "fields": { "package": 10386, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -23316,7 +21802,7 @@ "fields": { "package": 10405, "vulnerability": 331, - "is_vulnerable": true + "patched_package": null } }, { @@ -23325,7 +21811,7 @@ "fields": { "package": 10459, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -23334,7 +21820,7 @@ "fields": { "package": 10426, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -23343,7 +21829,7 @@ "fields": { "package": 10508, "vulnerability": 401, - "is_vulnerable": true + "patched_package": 10514 } }, { @@ -23352,7 +21838,7 @@ "fields": { "package": 10430, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -23361,7 +21847,7 @@ "fields": { "package": 10451, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -23370,7 +21856,7 @@ "fields": { "package": 10473, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -23379,7 +21865,7 @@ "fields": { "package": 10426, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -23388,7 +21874,7 @@ "fields": { "package": 10429, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -23397,7 +21883,7 @@ "fields": { "package": 10482, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -23406,7 +21892,7 @@ "fields": { "package": 10435, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -23415,7 +21901,7 @@ "fields": { "package": 10461, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -23424,7 +21910,7 @@ "fields": { "package": 10440, "vulnerability": 453, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -23433,7 +21919,7 @@ "fields": { "package": 10482, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -23442,7 +21928,7 @@ "fields": { "package": 10469, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -23451,7 +21937,7 @@ "fields": { "package": 10389, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -23460,7 +21946,7 @@ "fields": { "package": 10438, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -23469,7 +21955,7 @@ "fields": { "package": 10405, "vulnerability": 372, - "is_vulnerable": true + "patched_package": null } }, { @@ -23478,16 +21964,7 @@ "fields": { "package": 10448, "vulnerability": 449, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5212, - "fields": { - "package": 10521, - "vulnerability": 404, - "is_vulnerable": false + "patched_package": 10463 } }, { @@ -23496,7 +21973,7 @@ "fields": { "package": 10452, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -23505,7 +21982,7 @@ "fields": { "package": 10451, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -23514,7 +21991,7 @@ "fields": { "package": 10485, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -23523,7 +22000,7 @@ "fields": { "package": 10384, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -23532,7 +22009,7 @@ "fields": { "package": 10433, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -23541,7 +22018,7 @@ "fields": { "package": 10506, "vulnerability": 410, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -23550,7 +22027,7 @@ "fields": { "package": 10439, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -23559,7 +22036,7 @@ "fields": { "package": 10442, "vulnerability": 392, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -23568,7 +22045,7 @@ "fields": { "package": 10495, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -23577,7 +22054,7 @@ "fields": { "package": 10382, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -23586,7 +22063,7 @@ "fields": { "package": 10453, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -23595,7 +22072,7 @@ "fields": { "package": 10462, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -23604,7 +22081,7 @@ "fields": { "package": 10461, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -23613,7 +22090,7 @@ "fields": { "package": 10426, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -23622,7 +22099,7 @@ "fields": { "package": 10473, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -23631,7 +22108,7 @@ "fields": { "package": 10395, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -23640,7 +22117,7 @@ "fields": { "package": 10488, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -23649,7 +22126,7 @@ "fields": { "package": 10459, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -23658,7 +22135,7 @@ "fields": { "package": 10486, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -23667,16 +22144,7 @@ "fields": { "package": 10469, "vulnerability": 355, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5233, - "fields": { - "package": 10507, - "vulnerability": 393, - "is_vulnerable": false + "patched_package": 10500 } }, { @@ -23685,7 +22153,7 @@ "fields": { "package": 10466, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -23694,7 +22162,7 @@ "fields": { "package": 10429, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -23703,7 +22171,7 @@ "fields": { "package": 10382, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -23712,7 +22180,7 @@ "fields": { "package": 10482, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -23721,7 +22189,7 @@ "fields": { "package": 10435, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -23730,7 +22198,7 @@ "fields": { "package": 10449, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -23739,7 +22207,7 @@ "fields": { "package": 10449, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -23748,16 +22216,7 @@ "fields": { "package": 10445, "vulnerability": 328, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5242, - "fields": { - "package": 10501, - "vulnerability": 357, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -23766,7 +22225,7 @@ "fields": { "package": 10459, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -23775,7 +22234,7 @@ "fields": { "package": 10399, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -23784,7 +22243,7 @@ "fields": { "package": 10459, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -23793,7 +22252,7 @@ "fields": { "package": 10443, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -23802,7 +22261,7 @@ "fields": { "package": 10414, "vulnerability": 295, - "is_vulnerable": true + "patched_package": 10416 } }, { @@ -23811,7 +22270,7 @@ "fields": { "package": 10426, "vulnerability": 469, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -23820,7 +22279,7 @@ "fields": { "package": 10384, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -23829,7 +22288,7 @@ "fields": { "package": 10433, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -23838,7 +22297,7 @@ "fields": { "package": 10486, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -23847,7 +22306,7 @@ "fields": { "package": 10428, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -23856,7 +22315,7 @@ "fields": { "package": 10442, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -23865,7 +22324,7 @@ "fields": { "package": 10395, "vulnerability": 348, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -23874,7 +22333,7 @@ "fields": { "package": 10495, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -23883,7 +22342,7 @@ "fields": { "package": 10484, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -23892,7 +22351,7 @@ "fields": { "package": 10492, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -23901,7 +22360,7 @@ "fields": { "package": 10382, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -23910,7 +22369,7 @@ "fields": { "package": 10462, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -23919,7 +22378,7 @@ "fields": { "package": 10429, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -23928,7 +22387,7 @@ "fields": { "package": 10482, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -23937,16 +22396,7 @@ "fields": { "package": 10402, "vulnerability": 302, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5263, - "fields": { - "package": 10508, - "vulnerability": 396, - "is_vulnerable": false + "patched_package": 10419 } }, { @@ -23955,7 +22405,7 @@ "fields": { "package": 10472, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -23964,7 +22414,7 @@ "fields": { "package": 10485, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -23973,7 +22423,7 @@ "fields": { "package": 10464, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -23982,7 +22432,7 @@ "fields": { "package": 10390, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -23991,7 +22441,7 @@ "fields": { "package": 10397, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -24000,7 +22450,7 @@ "fields": { "package": 10434, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -24009,7 +22459,7 @@ "fields": { "package": 10488, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -24018,7 +22468,7 @@ "fields": { "package": 10449, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -24027,7 +22477,7 @@ "fields": { "package": 10443, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -24036,16 +22486,7 @@ "fields": { "package": 10459, "vulnerability": 363, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5274, - "fields": { - "package": 10442, - "vulnerability": 466, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -24054,7 +22495,7 @@ "fields": { "package": 10466, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -24063,7 +22504,7 @@ "fields": { "package": 10426, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -24072,7 +22513,7 @@ "fields": { "package": 10400, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -24081,7 +22522,7 @@ "fields": { "package": 10475, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24090,7 +22531,7 @@ "fields": { "package": 10474, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -24099,7 +22540,7 @@ "fields": { "package": 10448, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -24108,7 +22549,7 @@ "fields": { "package": 10408, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -24117,16 +22558,7 @@ "fields": { "package": 10441, "vulnerability": 460, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5283, - "fields": { - "package": 10461, - "vulnerability": 452, - "is_vulnerable": false + "patched_package": 10435 } }, { @@ -24135,7 +22567,7 @@ "fields": { "package": 10429, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -24144,7 +22576,7 @@ "fields": { "package": 10442, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -24153,7 +22585,7 @@ "fields": { "package": 10395, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -24162,7 +22594,7 @@ "fields": { "package": 10449, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -24171,7 +22603,7 @@ "fields": { "package": 10383, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -24180,7 +22612,7 @@ "fields": { "package": 10505, "vulnerability": 399, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -24189,7 +22621,7 @@ "fields": { "package": 10523, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -24198,7 +22630,7 @@ "fields": { "package": 10491, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -24207,7 +22639,7 @@ "fields": { "package": 10441, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -24216,7 +22648,7 @@ "fields": { "package": 10463, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -24225,7 +22657,7 @@ "fields": { "package": 10405, "vulnerability": 323, - "is_vulnerable": true + "patched_package": null } }, { @@ -24234,7 +22666,7 @@ "fields": { "package": 10472, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -24243,7 +22675,7 @@ "fields": { "package": 10461, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -24252,7 +22684,7 @@ "fields": { "package": 10426, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -24261,7 +22693,7 @@ "fields": { "package": 10451, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -24270,7 +22702,7 @@ "fields": { "package": 10492, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24279,7 +22711,7 @@ "fields": { "package": 10505, "vulnerability": 397, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -24288,7 +22720,7 @@ "fields": { "package": 10439, "vulnerability": 469, - "is_vulnerable": true + "patched_package": null } }, { @@ -24297,7 +22729,7 @@ "fields": { "package": 10428, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -24306,7 +22738,7 @@ "fields": { "package": 10480, "vulnerability": 440, - "is_vulnerable": true + "patched_package": null } }, { @@ -24315,7 +22747,7 @@ "fields": { "package": 10397, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -24324,7 +22756,7 @@ "fields": { "package": 10448, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -24333,7 +22765,7 @@ "fields": { "package": 10475, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -24342,7 +22774,7 @@ "fields": { "package": 10442, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -24351,7 +22783,7 @@ "fields": { "package": 10465, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24360,7 +22792,7 @@ "fields": { "package": 10429, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -24369,7 +22801,7 @@ "fields": { "package": 10485, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24378,7 +22810,7 @@ "fields": { "package": 10443, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -24387,7 +22819,7 @@ "fields": { "package": 10452, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24396,7 +22828,7 @@ "fields": { "package": 10451, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -24405,7 +22837,7 @@ "fields": { "package": 10385, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -24414,7 +22846,7 @@ "fields": { "package": 10439, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -24423,7 +22855,7 @@ "fields": { "package": 10449, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -24432,7 +22864,7 @@ "fields": { "package": 10476, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -24441,7 +22873,7 @@ "fields": { "package": 10491, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10499 } }, { @@ -24450,7 +22882,7 @@ "fields": { "package": 10456, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -24459,16 +22891,7 @@ "fields": { "package": 10492, "vulnerability": 470, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5321, - "fields": { - "package": 10389, - "vulnerability": 321, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -24477,16 +22900,7 @@ "fields": { "package": 10426, "vulnerability": 356, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5323, - "fields": { - "package": 10388, - "vulnerability": 365, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -24495,7 +22909,7 @@ "fields": { "package": 10475, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -24504,7 +22918,7 @@ "fields": { "package": 10440, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -24513,7 +22927,7 @@ "fields": { "package": 10435, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -24522,7 +22936,7 @@ "fields": { "package": 10449, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -24531,7 +22945,7 @@ "fields": { "package": 10444, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -24540,7 +22954,7 @@ "fields": { "package": 10389, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -24549,7 +22963,7 @@ "fields": { "package": 10469, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -24558,7 +22972,7 @@ "fields": { "package": 10449, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -24567,7 +22981,7 @@ "fields": { "package": 10433, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -24576,16 +22990,7 @@ "fields": { "package": 10405, "vulnerability": 347, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5334, - "fields": { - "package": 10515, - "vulnerability": 401, - "is_vulnerable": false + "patched_package": null } }, { @@ -24594,7 +22999,7 @@ "fields": { "package": 10388, "vulnerability": 345, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -24603,7 +23008,7 @@ "fields": { "package": 10476, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24612,7 +23017,7 @@ "fields": { "package": 10485, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -24621,7 +23026,7 @@ "fields": { "package": 10474, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -24630,16 +23035,7 @@ "fields": { "package": 10482, "vulnerability": 461, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5340, - "fields": { - "package": 10454, - "vulnerability": 463, - "is_vulnerable": false + "patched_package": 10476 } }, { @@ -24648,7 +23044,7 @@ "fields": { "package": 10492, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -24657,7 +23053,7 @@ "fields": { "package": 10445, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -24666,7 +23062,7 @@ "fields": { "package": 10459, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -24675,7 +23071,7 @@ "fields": { "package": 10452, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -24684,7 +23080,7 @@ "fields": { "package": 10480, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -24693,7 +23089,7 @@ "fields": { "package": 10388, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -24702,7 +23098,7 @@ "fields": { "package": 10472, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -24711,16 +23107,7 @@ "fields": { "package": 10441, "vulnerability": 347, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5349, - "fields": { - "package": 10497, - "vulnerability": 376, - "is_vulnerable": false + "patched_package": 10434 } }, { @@ -24729,7 +23116,7 @@ "fields": { "package": 10462, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24738,7 +23125,7 @@ "fields": { "package": 10426, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -24747,7 +23134,7 @@ "fields": { "package": 10428, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -24756,7 +23143,7 @@ "fields": { "package": 10475, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -24765,7 +23152,7 @@ "fields": { "package": 10440, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -24774,7 +23161,7 @@ "fields": { "package": 10383, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -24783,7 +23170,7 @@ "fields": { "package": 10478, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24792,16 +23179,7 @@ "fields": { "package": 10516, "vulnerability": 419, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5358, - "fields": { - "package": 10458, - "vulnerability": 443, - "is_vulnerable": false + "patched_package": 10529 } }, { @@ -24810,7 +23188,7 @@ "fields": { "package": 10449, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24819,7 +23197,7 @@ "fields": { "package": 10473, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -24828,7 +23206,7 @@ "fields": { "package": 10390, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -24837,7 +23215,7 @@ "fields": { "package": 10392, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -24846,7 +23224,7 @@ "fields": { "package": 10464, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -24855,7 +23233,7 @@ "fields": { "package": 10465, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24864,7 +23242,7 @@ "fields": { "package": 10398, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -24873,7 +23251,7 @@ "fields": { "package": 10451, "vulnerability": 445, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -24882,7 +23260,7 @@ "fields": { "package": 10489, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -24891,25 +23269,7 @@ "fields": { "package": 10426, "vulnerability": 380, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5369, - "fields": { - "package": 10461, - "vulnerability": 444, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5370, - "fields": { - "package": 10416, - "vulnerability": 295, - "is_vulnerable": false + "patched_package": 10431 } }, { @@ -24918,7 +23278,7 @@ "fields": { "package": 10513, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -24927,7 +23287,7 @@ "fields": { "package": 10481, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -24936,7 +23296,7 @@ "fields": { "package": 10488, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -24945,7 +23305,7 @@ "fields": { "package": 10453, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -24954,7 +23314,7 @@ "fields": { "package": 10395, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -24963,7 +23323,7 @@ "fields": { "package": 10462, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -24972,7 +23332,7 @@ "fields": { "package": 10451, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -24981,7 +23341,7 @@ "fields": { "package": 10459, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -24990,7 +23350,7 @@ "fields": { "package": 10476, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -24999,7 +23359,7 @@ "fields": { "package": 10441, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -25008,7 +23368,7 @@ "fields": { "package": 10440, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -25017,7 +23377,7 @@ "fields": { "package": 10482, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -25026,7 +23386,7 @@ "fields": { "package": 10449, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -25035,7 +23395,7 @@ "fields": { "package": 10491, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -25044,7 +23404,7 @@ "fields": { "package": 10383, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -25053,7 +23413,7 @@ "fields": { "package": 10439, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10388 } }, { @@ -25062,7 +23422,7 @@ "fields": { "package": 10495, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -25071,7 +23431,7 @@ "fields": { "package": 10452, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -25080,7 +23440,7 @@ "fields": { "package": 10473, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -25089,7 +23449,7 @@ "fields": { "package": 10446, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -25098,7 +23458,7 @@ "fields": { "package": 10399, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -25107,7 +23467,7 @@ "fields": { "package": 10455, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -25116,7 +23476,7 @@ "fields": { "package": 10475, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -25125,7 +23485,7 @@ "fields": { "package": 10412, "vulnerability": 311, - "is_vulnerable": true + "patched_package": null } }, { @@ -25134,7 +23494,7 @@ "fields": { "package": 10426, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -25143,7 +23503,7 @@ "fields": { "package": 10440, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -25152,7 +23512,7 @@ "fields": { "package": 10442, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -25161,7 +23521,7 @@ "fields": { "package": 10441, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -25170,7 +23530,7 @@ "fields": { "package": 10488, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -25179,16 +23539,7 @@ "fields": { "package": 10456, "vulnerability": 429, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5401, - "fields": { - "package": 10417, - "vulnerability": 298, - "is_vulnerable": false + "patched_package": 10468 } }, { @@ -25197,7 +23548,7 @@ "fields": { "package": 10429, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -25206,7 +23557,7 @@ "fields": { "package": 10439, "vulnerability": 459, - "is_vulnerable": true + "patched_package": null } }, { @@ -25215,7 +23566,7 @@ "fields": { "package": 10466, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -25224,7 +23575,7 @@ "fields": { "package": 10483, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -25233,7 +23584,7 @@ "fields": { "package": 10522, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -25242,7 +23593,7 @@ "fields": { "package": 10487, "vulnerability": 428, - "is_vulnerable": true + "patched_package": 10449 } }, { @@ -25251,7 +23602,7 @@ "fields": { "package": 10482, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -25260,16 +23611,7 @@ "fields": { "package": 10395, "vulnerability": 306, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5410, - "fields": { - "package": 10519, - "vulnerability": 412, - "is_vulnerable": false + "patched_package": 10387 } }, { @@ -25278,7 +23620,7 @@ "fields": { "package": 10405, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10384 } }, { @@ -25287,7 +23629,7 @@ "fields": { "package": 10443, "vulnerability": 395, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -25296,7 +23638,7 @@ "fields": { "package": 10457, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -25305,7 +23647,7 @@ "fields": { "package": 10458, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -25314,7 +23656,7 @@ "fields": { "package": 10430, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -25323,7 +23665,7 @@ "fields": { "package": 10491, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -25332,7 +23674,7 @@ "fields": { "package": 10437, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -25341,7 +23683,7 @@ "fields": { "package": 10390, "vulnerability": 314, - "is_vulnerable": true + "patched_package": 10381 } }, { @@ -25350,7 +23692,7 @@ "fields": { "package": 10439, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -25359,7 +23701,7 @@ "fields": { "package": 10428, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -25368,16 +23710,7 @@ "fields": { "package": 10434, "vulnerability": 344, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5422, - "fields": { - "package": 10531, - "vulnerability": 422, - "is_vulnerable": false + "patched_package": 10446 } }, { @@ -25386,7 +23719,7 @@ "fields": { "package": 10459, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -25395,7 +23728,7 @@ "fields": { "package": 10426, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -25404,7 +23737,7 @@ "fields": { "package": 10468, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -25413,7 +23746,7 @@ "fields": { "package": 10395, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -25422,7 +23755,7 @@ "fields": { "package": 10522, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -25431,7 +23764,7 @@ "fields": { "package": 10515, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10516 } }, { @@ -25440,7 +23773,7 @@ "fields": { "package": 10494, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -25449,7 +23782,7 @@ "fields": { "package": 10475, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -25458,7 +23791,7 @@ "fields": { "package": 10398, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -25467,7 +23800,7 @@ "fields": { "package": 10482, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -25476,16 +23809,7 @@ "fields": { "package": 10435, "vulnerability": 362, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5434, - "fields": { - "package": 10404, - "vulnerability": 305, - "is_vulnerable": false + "patched_package": 10432 } }, { @@ -25494,7 +23818,7 @@ "fields": { "package": 10489, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -25503,7 +23827,7 @@ "fields": { "package": 10431, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -25512,7 +23836,7 @@ "fields": { "package": 10438, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -25521,7 +23845,7 @@ "fields": { "package": 10452, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -25530,7 +23854,7 @@ "fields": { "package": 10443, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -25539,7 +23863,7 @@ "fields": { "package": 10458, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -25548,7 +23872,7 @@ "fields": { "package": 10468, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -25557,7 +23881,7 @@ "fields": { "package": 10506, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -25566,7 +23890,7 @@ "fields": { "package": 10428, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -25575,7 +23899,7 @@ "fields": { "package": 10392, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -25584,7 +23908,7 @@ "fields": { "package": 10446, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -25593,7 +23917,7 @@ "fields": { "package": 10463, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -25602,7 +23926,7 @@ "fields": { "package": 10490, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -25611,7 +23935,7 @@ "fields": { "package": 10382, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -25620,7 +23944,7 @@ "fields": { "package": 10455, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -25629,7 +23953,7 @@ "fields": { "package": 10388, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -25638,7 +23962,7 @@ "fields": { "package": 10468, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -25647,7 +23971,7 @@ "fields": { "package": 10479, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -25656,7 +23980,7 @@ "fields": { "package": 10495, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -25665,7 +23989,7 @@ "fields": { "package": 10491, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -25674,7 +23998,7 @@ "fields": { "package": 10503, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -25683,7 +24007,7 @@ "fields": { "package": 10470, "vulnerability": 447, - "is_vulnerable": true + "patched_package": null } }, { @@ -25692,7 +24016,7 @@ "fields": { "package": 10478, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -25701,7 +24025,7 @@ "fields": { "package": 10443, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -25710,7 +24034,7 @@ "fields": { "package": 10452, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -25719,7 +24043,7 @@ "fields": { "package": 10441, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -25728,7 +24052,7 @@ "fields": { "package": 10449, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -25737,7 +24061,7 @@ "fields": { "package": 10459, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -25746,7 +24070,7 @@ "fields": { "package": 10466, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -25755,7 +24079,7 @@ "fields": { "package": 10480, "vulnerability": 439, - "is_vulnerable": true + "patched_package": null } }, { @@ -25764,7 +24088,7 @@ "fields": { "package": 10472, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -25773,7 +24097,7 @@ "fields": { "package": 10406, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -25782,7 +24106,7 @@ "fields": { "package": 10481, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -25791,7 +24115,7 @@ "fields": { "package": 10439, "vulnerability": 390, - "is_vulnerable": true + "patched_package": null } }, { @@ -25800,7 +24124,7 @@ "fields": { "package": 10429, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -25809,7 +24133,7 @@ "fields": { "package": 10428, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -25818,7 +24142,7 @@ "fields": { "package": 10442, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -25827,7 +24151,7 @@ "fields": { "package": 10495, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -25836,7 +24160,7 @@ "fields": { "package": 10491, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -25845,7 +24169,7 @@ "fields": { "package": 10383, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -25854,7 +24178,7 @@ "fields": { "package": 10490, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -25863,7 +24187,7 @@ "fields": { "package": 10436, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -25872,7 +24196,7 @@ "fields": { "package": 10389, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -25881,7 +24205,7 @@ "fields": { "package": 10511, "vulnerability": 403, - "is_vulnerable": true + "patched_package": null } }, { @@ -25890,7 +24214,7 @@ "fields": { "package": 10462, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -25899,7 +24223,7 @@ "fields": { "package": 10444, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -25908,7 +24232,7 @@ "fields": { "package": 10488, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -25917,7 +24241,7 @@ "fields": { "package": 10402, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -25926,7 +24250,7 @@ "fields": { "package": 10467, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -25935,16 +24259,7 @@ "fields": { "package": 10431, "vulnerability": 357, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5485, - "fields": { - "package": 10454, - "vulnerability": 465, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -25953,7 +24268,7 @@ "fields": { "package": 10429, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10443 } }, { @@ -25962,7 +24277,7 @@ "fields": { "package": 10456, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -25971,7 +24286,7 @@ "fields": { "package": 10470, "vulnerability": 430, - "is_vulnerable": true + "patched_package": null } }, { @@ -25980,7 +24295,7 @@ "fields": { "package": 10512, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -25989,7 +24304,7 @@ "fields": { "package": 10480, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -25998,16 +24313,7 @@ "fields": { "package": 10519, "vulnerability": 419, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5492, - "fields": { - "package": 10461, - "vulnerability": 443, - "is_vulnerable": false + "patched_package": 10529 } }, { @@ -26016,7 +24322,7 @@ "fields": { "package": 10473, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -26025,7 +24331,7 @@ "fields": { "package": 10441, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -26034,16 +24340,7 @@ "fields": { "package": 10472, "vulnerability": 470, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5496, - "fields": { - "package": 10384, - "vulnerability": 315, - "is_vulnerable": false + "patched_package": 10469 } }, { @@ -26052,7 +24349,7 @@ "fields": { "package": 10395, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -26061,7 +24358,7 @@ "fields": { "package": 10522, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -26070,7 +24367,7 @@ "fields": { "package": 10487, "vulnerability": 420, - "is_vulnerable": true + "patched_package": 10486 } }, { @@ -26079,7 +24376,7 @@ "fields": { "package": 10448, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -26088,7 +24385,7 @@ "fields": { "package": 10481, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -26097,7 +24394,7 @@ "fields": { "package": 10427, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -26106,7 +24403,7 @@ "fields": { "package": 10429, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -26115,16 +24412,7 @@ "fields": { "package": 10443, "vulnerability": 387, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5505, - "fields": { - "package": 10464, - "vulnerability": 423, - "is_vulnerable": false + "patched_package": 10438 } }, { @@ -26133,7 +24421,7 @@ "fields": { "package": 10449, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -26142,7 +24430,7 @@ "fields": { "package": 10491, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -26151,7 +24439,7 @@ "fields": { "package": 10383, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -26160,7 +24448,7 @@ "fields": { "package": 10458, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -26169,7 +24457,7 @@ "fields": { "package": 10512, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -26178,7 +24466,7 @@ "fields": { "package": 10505, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -26187,7 +24475,7 @@ "fields": { "package": 10464, "vulnerability": 437, - "is_vulnerable": true + "patched_package": 10482 } }, { @@ -26196,7 +24484,7 @@ "fields": { "package": 10445, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -26205,7 +24493,7 @@ "fields": { "package": 10483, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -26214,7 +24502,7 @@ "fields": { "package": 10462, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -26223,7 +24511,7 @@ "fields": { "package": 10388, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -26232,7 +24520,7 @@ "fields": { "package": 10472, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -26241,7 +24529,7 @@ "fields": { "package": 10479, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -26250,7 +24538,7 @@ "fields": { "package": 10428, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -26259,7 +24547,7 @@ "fields": { "package": 10442, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -26268,7 +24556,7 @@ "fields": { "package": 10512, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10521 } }, { @@ -26277,7 +24565,7 @@ "fields": { "package": 10478, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -26286,7 +24574,7 @@ "fields": { "package": 10480, "vulnerability": 449, - "is_vulnerable": true + "patched_package": null } }, { @@ -26295,7 +24583,7 @@ "fields": { "package": 10441, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -26304,7 +24592,7 @@ "fields": { "package": 10431, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -26313,7 +24601,7 @@ "fields": { "package": 10448, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -26322,7 +24610,7 @@ "fields": { "package": 10458, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -26331,7 +24619,7 @@ "fields": { "package": 10405, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10414 } }, { @@ -26340,7 +24628,7 @@ "fields": { "package": 10480, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -26349,7 +24637,7 @@ "fields": { "package": 10506, "vulnerability": 411, - "is_vulnerable": true + "patched_package": 10505 } }, { @@ -26358,7 +24646,7 @@ "fields": { "package": 10458, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -26367,7 +24655,7 @@ "fields": { "package": 10473, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -26376,7 +24664,7 @@ "fields": { "package": 10486, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -26385,7 +24673,7 @@ "fields": { "package": 10392, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -26394,7 +24682,7 @@ "fields": { "package": 10501, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -26403,7 +24691,7 @@ "fields": { "package": 10426, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -26412,16 +24700,7 @@ "fields": { "package": 10481, "vulnerability": 388, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5538, - "fields": { - "package": 10524, - "vulnerability": 406, - "is_vulnerable": false + "patched_package": 10490 } }, { @@ -26430,7 +24709,7 @@ "fields": { "package": 10488, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -26439,7 +24718,7 @@ "fields": { "package": 10461, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -26448,7 +24727,7 @@ "fields": { "package": 10442, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -26457,7 +24736,7 @@ "fields": { "package": 10431, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -26466,7 +24745,7 @@ "fields": { "package": 10439, "vulnerability": 461, - "is_vulnerable": true + "patched_package": null } }, { @@ -26475,7 +24754,7 @@ "fields": { "package": 10435, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -26484,7 +24763,7 @@ "fields": { "package": 10449, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -26493,7 +24772,7 @@ "fields": { "package": 10491, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -26502,7 +24781,7 @@ "fields": { "package": 10456, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -26511,7 +24790,7 @@ "fields": { "package": 10470, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10451 } }, { @@ -26520,7 +24799,7 @@ "fields": { "package": 10396, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -26529,16 +24808,7 @@ "fields": { "package": 10398, "vulnerability": 326, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5551, - "fields": { - "package": 10398, - "vulnerability": 333, - "is_vulnerable": false + "patched_package": 10396 } }, { @@ -26547,7 +24817,7 @@ "fields": { "package": 10405, "vulnerability": 324, - "is_vulnerable": true + "patched_package": null } }, { @@ -26556,7 +24826,7 @@ "fields": { "package": 10471, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -26565,7 +24835,7 @@ "fields": { "package": 10457, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -26574,7 +24844,7 @@ "fields": { "package": 10438, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -26583,7 +24853,7 @@ "fields": { "package": 10480, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -26592,7 +24862,7 @@ "fields": { "package": 10481, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -26601,16 +24871,7 @@ "fields": { "package": 10426, "vulnerability": 330, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5559, - "fields": { - "package": 10382, - "vulnerability": 348, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -26619,7 +24880,7 @@ "fields": { "package": 10435, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -26628,7 +24889,7 @@ "fields": { "package": 10434, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -26637,7 +24898,7 @@ "fields": { "package": 10392, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -26646,7 +24907,7 @@ "fields": { "package": 10395, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -26655,7 +24916,7 @@ "fields": { "package": 10493, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -26664,16 +24925,7 @@ "fields": { "package": 10382, "vulnerability": 297, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5566, - "fields": { - "package": 10384, - "vulnerability": 322, - "is_vulnerable": false + "patched_package": 10423 } }, { @@ -26682,7 +24934,7 @@ "fields": { "package": 10457, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -26691,7 +24943,7 @@ "fields": { "package": 10444, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -26700,7 +24952,7 @@ "fields": { "package": 10529, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -26709,7 +24961,7 @@ "fields": { "package": 10482, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -26718,7 +24970,7 @@ "fields": { "package": 10461, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10499 } }, { @@ -26727,7 +24979,7 @@ "fields": { "package": 10463, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -26736,7 +24988,7 @@ "fields": { "package": 10478, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -26745,7 +24997,7 @@ "fields": { "package": 10431, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -26754,7 +25006,7 @@ "fields": { "package": 10491, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -26763,7 +25015,7 @@ "fields": { "package": 10458, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -26772,7 +25024,7 @@ "fields": { "package": 10512, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -26781,7 +25033,7 @@ "fields": { "package": 10470, "vulnerability": 422, - "is_vulnerable": true + "patched_package": null } }, { @@ -26790,7 +25042,7 @@ "fields": { "package": 10479, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -26799,7 +25051,7 @@ "fields": { "package": 10480, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10429 } }, { @@ -26808,7 +25060,7 @@ "fields": { "package": 10520, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -26817,16 +25069,7 @@ "fields": { "package": 10486, "vulnerability": 436, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5583, - "fields": { - "package": 10497, - "vulnerability": 370, - "is_vulnerable": false + "patched_package": 10464 } }, { @@ -26835,7 +25078,7 @@ "fields": { "package": 10426, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -26844,7 +25087,7 @@ "fields": { "package": 10427, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -26853,7 +25096,7 @@ "fields": { "package": 10481, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -26862,7 +25105,7 @@ "fields": { "package": 10439, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10388 } }, { @@ -26871,7 +25114,7 @@ "fields": { "package": 10448, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -26880,7 +25123,7 @@ "fields": { "package": 10441, "vulnerability": 383, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -26889,7 +25132,7 @@ "fields": { "package": 10382, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -26898,7 +25141,7 @@ "fields": { "package": 10494, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -26907,7 +25150,7 @@ "fields": { "package": 10435, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -26916,7 +25159,7 @@ "fields": { "package": 10473, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -26925,16 +25168,7 @@ "fields": { "package": 10462, "vulnerability": 389, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5595, - "fields": { - "package": 10462, - "vulnerability": 418, - "is_vulnerable": false + "patched_package": 10460 } }, { @@ -26943,7 +25177,7 @@ "fields": { "package": 10470, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -26952,7 +25186,7 @@ "fields": { "package": 10431, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -26961,16 +25195,7 @@ "fields": { "package": 10487, "vulnerability": 375, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5599, - "fields": { - "package": 10410, - "vulnerability": 311, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -26979,7 +25204,7 @@ "fields": { "package": 10506, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -26988,7 +25213,7 @@ "fields": { "package": 10473, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -26997,7 +25222,7 @@ "fields": { "package": 10439, "vulnerability": 470, - "is_vulnerable": true + "patched_package": null } }, { @@ -27006,7 +25231,7 @@ "fields": { "package": 10480, "vulnerability": 441, - "is_vulnerable": true + "patched_package": null } }, { @@ -27015,7 +25240,7 @@ "fields": { "package": 10440, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -27024,7 +25249,7 @@ "fields": { "package": 10406, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -27033,7 +25258,7 @@ "fields": { "package": 10426, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -27042,16 +25267,7 @@ "fields": { "package": 10395, "vulnerability": 297, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5608, - "fields": { - "package": 10386, - "vulnerability": 308, - "is_vulnerable": false + "patched_package": 10423 } }, { @@ -27060,16 +25276,7 @@ "fields": { "package": 10470, "vulnerability": 370, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5610, - "fields": { - "package": 10492, - "vulnerability": 458, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -27078,7 +25285,7 @@ "fields": { "package": 10442, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -27087,7 +25294,7 @@ "fields": { "package": 10456, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -27096,7 +25303,7 @@ "fields": { "package": 10495, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -27105,7 +25312,7 @@ "fields": { "package": 10448, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -27114,7 +25321,7 @@ "fields": { "package": 10462, "vulnerability": 416, - "is_vulnerable": true + "patched_package": 10479 } }, { @@ -27123,7 +25330,7 @@ "fields": { "package": 10457, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -27132,7 +25339,7 @@ "fields": { "package": 10382, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -27141,7 +25348,7 @@ "fields": { "package": 10476, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -27150,7 +25357,7 @@ "fields": { "package": 10491, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -27159,7 +25366,7 @@ "fields": { "package": 10458, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -27168,16 +25375,7 @@ "fields": { "package": 10493, "vulnerability": 458, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5622, - "fields": { - "package": 10447, - "vulnerability": 329, - "is_vulnerable": false + "patched_package": 10492 } }, { @@ -27186,7 +25384,7 @@ "fields": { "package": 10454, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -27195,7 +25393,7 @@ "fields": { "package": 10464, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10457 } }, { @@ -27204,7 +25402,7 @@ "fields": { "package": 10429, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -27213,7 +25411,7 @@ "fields": { "package": 10439, "vulnerability": 389, - "is_vulnerable": true + "patched_package": null } }, { @@ -27222,7 +25420,7 @@ "fields": { "package": 10392, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -27231,7 +25429,7 @@ "fields": { "package": 10481, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -27240,7 +25438,7 @@ "fields": { "package": 10449, "vulnerability": 425, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -27249,7 +25447,7 @@ "fields": { "package": 10487, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -27258,16 +25456,7 @@ "fields": { "package": 10440, "vulnerability": 331, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5632, - "fields": { - "package": 10382, - "vulnerability": 355, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -27276,7 +25465,7 @@ "fields": { "package": 10494, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -27285,7 +25474,7 @@ "fields": { "package": 10388, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -27294,7 +25483,7 @@ "fields": { "package": 10461, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -27303,7 +25492,7 @@ "fields": { "package": 10395, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -27312,7 +25501,7 @@ "fields": { "package": 10439, "vulnerability": 453, - "is_vulnerable": true + "patched_package": null } }, { @@ -27321,7 +25510,7 @@ "fields": { "package": 10486, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -27330,16 +25519,7 @@ "fields": { "package": 10406, "vulnerability": 293, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5640, - "fields": { - "package": 10498, - "vulnerability": 356, - "is_vulnerable": false + "patched_package": 10408 } }, { @@ -27348,7 +25528,7 @@ "fields": { "package": 10489, "vulnerability": 440, - "is_vulnerable": true + "patched_package": 10495 } }, { @@ -27357,7 +25537,7 @@ "fields": { "package": 10464, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -27366,7 +25546,7 @@ "fields": { "package": 10398, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -27375,7 +25555,7 @@ "fields": { "package": 10485, "vulnerability": 425, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -27384,7 +25564,7 @@ "fields": { "package": 10404, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -27393,7 +25573,7 @@ "fields": { "package": 10411, "vulnerability": 294, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -27402,7 +25582,7 @@ "fields": { "package": 10456, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -27411,16 +25591,7 @@ "fields": { "package": 10495, "vulnerability": 374, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5649, - "fields": { - "package": 10432, - "vulnerability": 362, - "is_vulnerable": false + "patched_package": 10484 } }, { @@ -27429,7 +25600,7 @@ "fields": { "package": 10505, "vulnerability": 410, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -27438,7 +25609,7 @@ "fields": { "package": 10382, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -27447,7 +25618,7 @@ "fields": { "package": 10441, "vulnerability": 392, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -27456,7 +25627,7 @@ "fields": { "package": 10405, "vulnerability": 379, - "is_vulnerable": true + "patched_package": null } }, { @@ -27465,7 +25636,7 @@ "fields": { "package": 10434, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -27474,7 +25645,7 @@ "fields": { "package": 10519, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -27483,7 +25654,7 @@ "fields": { "package": 10472, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -27492,7 +25663,7 @@ "fields": { "package": 10486, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -27501,7 +25672,7 @@ "fields": { "package": 10487, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -27510,7 +25681,7 @@ "fields": { "package": 10394, "vulnerability": 321, - "is_vulnerable": true + "patched_package": null } }, { @@ -27519,7 +25690,7 @@ "fields": { "package": 10527, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -27528,7 +25699,7 @@ "fields": { "package": 10453, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -27537,7 +25708,7 @@ "fields": { "package": 10468, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -27546,7 +25717,7 @@ "fields": { "package": 10481, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -27555,7 +25726,7 @@ "fields": { "package": 10434, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -27564,7 +25735,7 @@ "fields": { "package": 10488, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -27573,7 +25744,7 @@ "fields": { "package": 10448, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -27582,7 +25753,7 @@ "fields": { "package": 10470, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10483 } }, { @@ -27591,7 +25762,7 @@ "fields": { "package": 10509, "vulnerability": 411, - "is_vulnerable": true + "patched_package": null } }, { @@ -27600,7 +25771,7 @@ "fields": { "package": 10496, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -27609,7 +25780,7 @@ "fields": { "package": 10461, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -27618,16 +25789,7 @@ "fields": { "package": 10448, "vulnerability": 452, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5672, - "fields": { - "package": 10479, - "vulnerability": 416, - "is_vulnerable": false + "patched_package": 10458 } }, { @@ -27636,7 +25798,7 @@ "fields": { "package": 10464, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -27645,7 +25807,7 @@ "fields": { "package": 10429, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -27654,7 +25816,7 @@ "fields": { "package": 10471, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -27663,7 +25825,7 @@ "fields": { "package": 10405, "vulnerability": 299, - "is_vulnerable": true + "patched_package": null } }, { @@ -27672,7 +25834,7 @@ "fields": { "package": 10438, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -27681,7 +25843,7 @@ "fields": { "package": 10413, "vulnerability": 295, - "is_vulnerable": true + "patched_package": 10416 } }, { @@ -27690,7 +25852,7 @@ "fields": { "package": 10463, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -27699,7 +25861,7 @@ "fields": { "package": 10485, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -27708,7 +25870,7 @@ "fields": { "package": 10438, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -27717,7 +25879,7 @@ "fields": { "package": 10441, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -27726,7 +25888,7 @@ "fields": { "package": 10405, "vulnerability": 362, - "is_vulnerable": true + "patched_package": null } }, { @@ -27735,7 +25897,7 @@ "fields": { "package": 10494, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -27744,7 +25906,7 @@ "fields": { "package": 10462, "vulnerability": 425, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -27753,7 +25915,7 @@ "fields": { "package": 10381, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -27762,7 +25924,7 @@ "fields": { "package": 10472, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -27771,7 +25933,7 @@ "fields": { "package": 10486, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -27780,7 +25942,7 @@ "fields": { "package": 10481, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -27789,16 +25951,7 @@ "fields": { "package": 10401, "vulnerability": 302, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5691, - "fields": { - "package": 10393, - "vulnerability": 313, - "is_vulnerable": false + "patched_package": 10419 } }, { @@ -27807,7 +25960,7 @@ "fields": { "package": 10477, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -27816,7 +25969,7 @@ "fields": { "package": 10449, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -27825,7 +25978,7 @@ "fields": { "package": 10417, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -27834,7 +25987,7 @@ "fields": { "package": 10463, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -27843,7 +25996,7 @@ "fields": { "package": 10470, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10495 } }, { @@ -27852,7 +26005,7 @@ "fields": { "package": 10464, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -27861,7 +26014,7 @@ "fields": { "package": 10389, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -27870,7 +26023,7 @@ "fields": { "package": 10464, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -27879,7 +26032,7 @@ "fields": { "package": 10396, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -27888,7 +26041,7 @@ "fields": { "package": 10433, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -27897,7 +26050,7 @@ "fields": { "package": 10445, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -27906,7 +26059,7 @@ "fields": { "package": 10511, "vulnerability": 412, - "is_vulnerable": true + "patched_package": null } }, { @@ -27915,7 +26068,7 @@ "fields": { "package": 10385, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -27924,7 +26077,7 @@ "fields": { "package": 10394, "vulnerability": 313, - "is_vulnerable": true + "patched_package": null } }, { @@ -27933,7 +26086,7 @@ "fields": { "package": 10465, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -27942,7 +26095,7 @@ "fields": { "package": 10440, "vulnerability": 460, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -27951,7 +26104,7 @@ "fields": { "package": 10473, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -27960,7 +26113,7 @@ "fields": { "package": 10485, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -27969,7 +26122,7 @@ "fields": { "package": 10452, "vulnerability": 416, - "is_vulnerable": true + "patched_package": 10479 } }, { @@ -27978,7 +26131,7 @@ "fields": { "package": 10428, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -27987,7 +26140,7 @@ "fields": { "package": 10481, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -27996,7 +26149,7 @@ "fields": { "package": 10478, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -28005,7 +26158,7 @@ "fields": { "package": 10441, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -28014,7 +26167,7 @@ "fields": { "package": 10448, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -28023,7 +26176,7 @@ "fields": { "package": 10494, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -28032,7 +26185,7 @@ "fields": { "package": 10461, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -28041,7 +26194,7 @@ "fields": { "package": 10504, "vulnerability": 399, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -28050,7 +26203,7 @@ "fields": { "package": 10476, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -28059,7 +26212,7 @@ "fields": { "package": 10390, "vulnerability": 316, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -28068,7 +26221,7 @@ "fields": { "package": 10440, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -28077,7 +26230,7 @@ "fields": { "package": 10429, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -28086,7 +26239,7 @@ "fields": { "package": 10471, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -28095,7 +26248,7 @@ "fields": { "package": 10477, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -28104,7 +26257,7 @@ "fields": { "package": 10430, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -28113,7 +26266,7 @@ "fields": { "package": 10411, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -28122,7 +26275,7 @@ "fields": { "package": 10429, "vulnerability": 453, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -28131,7 +26284,7 @@ "fields": { "package": 10504, "vulnerability": 397, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -28140,7 +26293,7 @@ "fields": { "package": 10470, "vulnerability": 424, - "is_vulnerable": true + "patched_package": null } }, { @@ -28149,7 +26302,7 @@ "fields": { "package": 10476, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -28158,7 +26311,7 @@ "fields": { "package": 10396, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -28167,7 +26320,7 @@ "fields": { "package": 10445, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -28176,7 +26329,7 @@ "fields": { "package": 10398, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -28185,7 +26338,7 @@ "fields": { "package": 10440, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -28194,7 +26347,7 @@ "fields": { "package": 10454, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -28203,7 +26356,7 @@ "fields": { "package": 10388, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -28212,7 +26365,7 @@ "fields": { "package": 10461, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -28221,7 +26374,7 @@ "fields": { "package": 10394, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -28230,7 +26383,7 @@ "fields": { "package": 10494, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -28239,16 +26392,7 @@ "fields": { "package": 10428, "vulnerability": 333, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5741, - "fields": { - "package": 10431, - "vulnerability": 378, - "is_vulnerable": false + "patched_package": 10436 } }, { @@ -28257,7 +26401,7 @@ "fields": { "package": 10484, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -28266,7 +26410,7 @@ "fields": { "package": 10456, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -28275,7 +26419,7 @@ "fields": { "package": 10509, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -28284,7 +26428,7 @@ "fields": { "package": 10462, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -28293,7 +26437,7 @@ "fields": { "package": 10477, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -28302,7 +26446,7 @@ "fields": { "package": 10384, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -28311,7 +26455,7 @@ "fields": { "package": 10517, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -28320,7 +26464,7 @@ "fields": { "package": 10402, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -28329,7 +26473,7 @@ "fields": { "package": 10477, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -28338,7 +26482,7 @@ "fields": { "package": 10458, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -28347,7 +26491,7 @@ "fields": { "package": 10443, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -28356,7 +26500,7 @@ "fields": { "package": 10471, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -28365,7 +26509,7 @@ "fields": { "package": 10478, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -28374,7 +26518,7 @@ "fields": { "package": 10495, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -28383,7 +26527,7 @@ "fields": { "package": 10487, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -28392,7 +26536,7 @@ "fields": { "package": 10486, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -28401,7 +26545,7 @@ "fields": { "package": 10420, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -28410,7 +26554,7 @@ "fields": { "package": 10441, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -28419,7 +26563,7 @@ "fields": { "package": 10392, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -28428,7 +26572,7 @@ "fields": { "package": 10479, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -28437,7 +26581,7 @@ "fields": { "package": 10448, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -28446,7 +26590,7 @@ "fields": { "package": 10491, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -28455,7 +26599,7 @@ "fields": { "package": 10388, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -28464,7 +26608,7 @@ "fields": { "package": 10461, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -28473,7 +26617,7 @@ "fields": { "package": 10395, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -28482,7 +26626,7 @@ "fields": { "package": 10448, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -28491,7 +26635,7 @@ "fields": { "package": 10432, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -28500,7 +26644,7 @@ "fields": { "package": 10453, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -28509,7 +26653,7 @@ "fields": { "package": 10475, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -28518,7 +26662,7 @@ "fields": { "package": 10484, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -28527,7 +26671,7 @@ "fields": { "package": 10438, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -28536,7 +26680,7 @@ "fields": { "package": 10437, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -28545,16 +26689,7 @@ "fields": { "package": 10452, "vulnerability": 425, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5775, - "fields": { - "package": 10413, - "vulnerability": 294, - "is_vulnerable": false + "patched_package": 10464 } }, { @@ -28563,7 +26698,7 @@ "fields": { "package": 10463, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -28572,7 +26707,7 @@ "fields": { "package": 10477, "vulnerability": 446, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -28581,16 +26716,7 @@ "fields": { "package": 10391, "vulnerability": 302, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5779, - "fields": { - "package": 10447, - "vulnerability": 331, - "is_vulnerable": false + "patched_package": 10419 } }, { @@ -28599,25 +26725,7 @@ "fields": { "package": 10440, "vulnerability": 347, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5781, - "fields": { - "package": 10501, - "vulnerability": 356, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5782, - "fields": { - "package": 10496, - "vulnerability": 376, - "is_vulnerable": false + "patched_package": 10434 } }, { @@ -28626,7 +26734,7 @@ "fields": { "package": 10439, "vulnerability": 391, - "is_vulnerable": true + "patched_package": null } }, { @@ -28635,7 +26743,7 @@ "fields": { "package": 10453, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -28644,7 +26752,7 @@ "fields": { "package": 10487, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -28653,7 +26761,7 @@ "fields": { "package": 10459, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -28662,7 +26770,7 @@ "fields": { "package": 10454, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -28671,7 +26779,7 @@ "fields": { "package": 10386, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -28680,7 +26788,7 @@ "fields": { "package": 10435, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -28689,7 +26797,7 @@ "fields": { "package": 10388, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -28698,7 +26806,7 @@ "fields": { "package": 10441, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -28707,7 +26815,7 @@ "fields": { "package": 10444, "vulnerability": 392, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -28716,16 +26824,7 @@ "fields": { "package": 10508, "vulnerability": 410, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5794, - "fields": { - "package": 10527, - "vulnerability": 418, - "is_vulnerable": false + "patched_package": 10520 } }, { @@ -28734,7 +26833,7 @@ "fields": { "package": 10448, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -28743,7 +26842,7 @@ "fields": { "package": 10384, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -28752,7 +26851,7 @@ "fields": { "package": 10455, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -28761,7 +26860,7 @@ "fields": { "package": 10464, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -28770,7 +26869,7 @@ "fields": { "package": 10463, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -28779,7 +26878,7 @@ "fields": { "package": 10397, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -28788,7 +26887,7 @@ "fields": { "package": 10404, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10417 } }, { @@ -28797,7 +26896,7 @@ "fields": { "package": 10461, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10481 } }, { @@ -28806,7 +26905,7 @@ "fields": { "package": 10488, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -28815,16 +26914,7 @@ "fields": { "package": 10468, "vulnerability": 457, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5805, - "fields": { - "package": 10396, - "vulnerability": 330, - "is_vulnerable": false + "patched_package": 10476 } }, { @@ -28833,7 +26923,7 @@ "fields": { "package": 10431, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -28842,7 +26932,7 @@ "fields": { "package": 10438, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -28851,16 +26941,7 @@ "fields": { "package": 10437, "vulnerability": 336, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5809, - "fields": { - "package": 10388, - "vulnerability": 376, - "is_vulnerable": false + "patched_package": 10436 } }, { @@ -28869,7 +26950,7 @@ "fields": { "package": 10392, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -28878,7 +26959,7 @@ "fields": { "package": 10512, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -28887,7 +26968,7 @@ "fields": { "package": 10430, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -28896,7 +26977,7 @@ "fields": { "package": 10479, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -28905,7 +26986,7 @@ "fields": { "package": 10487, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -28914,7 +26995,7 @@ "fields": { "package": 10452, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -28923,7 +27004,7 @@ "fields": { "package": 10451, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -28932,7 +27013,7 @@ "fields": { "package": 10405, "vulnerability": 337, - "is_vulnerable": true + "patched_package": null } }, { @@ -28941,16 +27022,7 @@ "fields": { "package": 10461, "vulnerability": 380, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5819, - "fields": { - "package": 10517, - "vulnerability": 409, - "is_vulnerable": false + "patched_package": 10484 } }, { @@ -28959,7 +27031,7 @@ "fields": { "package": 10401, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -28968,7 +27040,7 @@ "fields": { "package": 10440, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -28977,16 +27049,7 @@ "fields": { "package": 10439, "vulnerability": 374, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5823, - "fields": { - "package": 10460, - "vulnerability": 389, - "is_vulnerable": false + "patched_package": null } }, { @@ -28995,7 +27058,7 @@ "fields": { "package": 10445, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -29004,7 +27067,7 @@ "fields": { "package": 10448, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -29013,7 +27076,7 @@ "fields": { "package": 10386, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -29022,7 +27085,7 @@ "fields": { "package": 10435, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -29031,7 +27094,7 @@ "fields": { "package": 10388, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -29040,7 +27103,7 @@ "fields": { "package": 10430, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -29049,7 +27112,7 @@ "fields": { "package": 10488, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -29058,7 +27121,7 @@ "fields": { "package": 10497, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -29067,7 +27130,7 @@ "fields": { "package": 10444, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -29076,7 +27139,7 @@ "fields": { "package": 10494, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -29085,7 +27148,7 @@ "fields": { "package": 10384, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -29094,7 +27157,7 @@ "fields": { "package": 10464, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -29103,7 +27166,7 @@ "fields": { "package": 10476, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -29112,7 +27175,7 @@ "fields": { "package": 10383, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -29121,7 +27184,7 @@ "fields": { "package": 10474, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -29130,7 +27193,7 @@ "fields": { "package": 10438, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -29139,7 +27202,7 @@ "fields": { "package": 10440, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -29148,7 +27211,7 @@ "fields": { "package": 10487, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -29157,7 +27220,7 @@ "fields": { "package": 10452, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -29166,7 +27229,7 @@ "fields": { "package": 10428, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -29175,7 +27238,7 @@ "fields": { "package": 10467, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -29184,7 +27247,7 @@ "fields": { "package": 10392, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -29193,7 +27256,7 @@ "fields": { "package": 10395, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -29202,7 +27265,7 @@ "fields": { "package": 10448, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -29211,25 +27274,7 @@ "fields": { "package": 10490, "vulnerability": 346, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5849, - "fields": { - "package": 10395, - "vulnerability": 357, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5850, - "fields": { - "package": 10484, - "vulnerability": 375, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -29238,7 +27283,7 @@ "fields": { "package": 10486, "vulnerability": 428, - "is_vulnerable": true + "patched_package": 10449 } }, { @@ -29247,7 +27292,7 @@ "fields": { "package": 10479, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -29256,7 +27301,7 @@ "fields": { "package": 10461, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -29265,7 +27310,7 @@ "fields": { "package": 10468, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -29274,7 +27319,7 @@ "fields": { "package": 10485, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -29283,7 +27328,7 @@ "fields": { "package": 10435, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -29292,7 +27337,7 @@ "fields": { "package": 10477, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -29301,7 +27346,7 @@ "fields": { "package": 10476, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -29310,7 +27355,7 @@ "fields": { "package": 10443, "vulnerability": 460, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -29319,7 +27364,7 @@ "fields": { "package": 10410, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -29328,7 +27373,7 @@ "fields": { "package": 10431, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -29337,16 +27382,7 @@ "fields": { "package": 10382, "vulnerability": 337, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5863, - "fields": { - "package": 10453, - "vulnerability": 438, - "is_vulnerable": false + "patched_package": 10398 } }, { @@ -29355,7 +27391,7 @@ "fields": { "package": 10438, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -29364,16 +27400,7 @@ "fields": { "package": 10444, "vulnerability": 358, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5866, - "fields": { - "package": 10413, - "vulnerability": 301, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -29382,7 +27409,7 @@ "fields": { "package": 10397, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -29391,16 +27418,7 @@ "fields": { "package": 10385, "vulnerability": 299, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5869, - "fields": { - "package": 10475, - "vulnerability": 462, - "is_vulnerable": false + "patched_package": 10425 } }, { @@ -29409,7 +27427,7 @@ "fields": { "package": 10525, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -29418,7 +27436,7 @@ "fields": { "package": 10493, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -29427,7 +27445,7 @@ "fields": { "package": 10443, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -29436,25 +27454,7 @@ "fields": { "package": 10465, "vulnerability": 343, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5874, - "fields": { - "package": 10478, - "vulnerability": 424, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5875, - "fields": { - "package": 10390, - "vulnerability": 318, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -29463,7 +27463,7 @@ "fields": { "package": 10474, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -29472,7 +27472,7 @@ "fields": { "package": 10463, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -29481,7 +27481,7 @@ "fields": { "package": 10488, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -29490,7 +27490,7 @@ "fields": { "package": 10494, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -29499,7 +27499,7 @@ "fields": { "package": 10461, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -29508,7 +27508,7 @@ "fields": { "package": 10395, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -29517,7 +27517,7 @@ "fields": { "package": 10430, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -29526,7 +27526,7 @@ "fields": { "package": 10451, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -29535,7 +27535,7 @@ "fields": { "package": 10487, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -29544,7 +27544,7 @@ "fields": { "package": 10464, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -29553,7 +27553,7 @@ "fields": { "package": 10429, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -29562,7 +27562,7 @@ "fields": { "package": 10471, "vulnerability": 382, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -29571,16 +27571,7 @@ "fields": { "package": 10485, "vulnerability": 434, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5889, - "fields": { - "package": 10447, - "vulnerability": 323, - "is_vulnerable": false + "patched_package": 10464 } }, { @@ -29589,7 +27580,7 @@ "fields": { "package": 10477, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -29598,7 +27589,7 @@ "fields": { "package": 10467, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -29607,7 +27598,7 @@ "fields": { "package": 10431, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -29616,7 +27607,7 @@ "fields": { "package": 10487, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -29625,7 +27616,7 @@ "fields": { "package": 10438, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -29634,7 +27625,7 @@ "fields": { "package": 10445, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -29643,7 +27634,7 @@ "fields": { "package": 10459, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -29652,7 +27643,7 @@ "fields": { "package": 10462, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -29661,7 +27652,7 @@ "fields": { "package": 10454, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -29670,16 +27661,7 @@ "fields": { "package": 10453, "vulnerability": 357, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5900, - "fields": { - "package": 10422, - "vulnerability": 300, - "is_vulnerable": false + "patched_package": 10501 } }, { @@ -29688,7 +27670,7 @@ "fields": { "package": 10387, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -29697,7 +27679,7 @@ "fields": { "package": 10441, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -29706,16 +27688,7 @@ "fields": { "package": 10394, "vulnerability": 298, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5904, - "fields": { - "package": 10438, - "vulnerability": 392, - "is_vulnerable": false + "patched_package": 10411 } }, { @@ -29724,7 +27697,7 @@ "fields": { "package": 10478, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -29733,7 +27706,7 @@ "fields": { "package": 10493, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -29742,7 +27715,7 @@ "fields": { "package": 10458, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -29751,7 +27724,7 @@ "fields": { "package": 10451, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10481 } }, { @@ -29760,7 +27733,7 @@ "fields": { "package": 10494, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -29769,7 +27742,7 @@ "fields": { "package": 10428, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -29778,7 +27751,7 @@ "fields": { "package": 10470, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -29787,7 +27760,7 @@ "fields": { "package": 10477, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -29796,7 +27769,7 @@ "fields": { "package": 10442, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -29805,7 +27778,7 @@ "fields": { "package": 10395, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -29814,7 +27787,7 @@ "fields": { "package": 10437, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -29823,7 +27796,7 @@ "fields": { "package": 10451, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -29832,16 +27805,7 @@ "fields": { "package": 10440, "vulnerability": 366, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5918, - "fields": { - "package": 10388, - "vulnerability": 368, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -29850,7 +27814,7 @@ "fields": { "package": 10451, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -29859,16 +27823,7 @@ "fields": { "package": 10391, "vulnerability": 301, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5921, - "fields": { - "package": 10436, - "vulnerability": 337, - "is_vulnerable": false + "patched_package": 10421 } }, { @@ -29877,7 +27832,7 @@ "fields": { "package": 10429, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -29886,7 +27841,7 @@ "fields": { "package": 10471, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -29895,7 +27850,7 @@ "fields": { "package": 10430, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -29904,7 +27859,7 @@ "fields": { "package": 10435, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -29913,7 +27868,7 @@ "fields": { "package": 10485, "vulnerability": 417, - "is_vulnerable": true + "patched_package": 10479 } }, { @@ -29922,7 +27877,7 @@ "fields": { "package": 10486, "vulnerability": 437, - "is_vulnerable": true + "patched_package": 10482 } }, { @@ -29931,7 +27886,7 @@ "fields": { "package": 10479, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -29940,7 +27895,7 @@ "fields": { "package": 10451, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -29949,16 +27904,7 @@ "fields": { "package": 10487, "vulnerability": 359, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5931, - "fields": { - "package": 10460, - "vulnerability": 402, - "is_vulnerable": false + "patched_package": 10501 } }, { @@ -29967,7 +27913,7 @@ "fields": { "package": 10494, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -29976,7 +27922,7 @@ "fields": { "package": 10462, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -29985,7 +27931,7 @@ "fields": { "package": 10435, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -29994,7 +27940,7 @@ "fields": { "package": 10443, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -30003,7 +27949,7 @@ "fields": { "package": 10464, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -30012,7 +27958,7 @@ "fields": { "package": 10428, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -30021,7 +27967,7 @@ "fields": { "package": 10430, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -30030,7 +27976,7 @@ "fields": { "package": 10431, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -30039,7 +27985,7 @@ "fields": { "package": 10477, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -30048,7 +27994,7 @@ "fields": { "package": 10455, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -30057,7 +28003,7 @@ "fields": { "package": 10438, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -30066,7 +28012,7 @@ "fields": { "package": 10480, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -30075,7 +28021,7 @@ "fields": { "package": 10511, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -30084,7 +28030,7 @@ "fields": { "package": 10518, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -30093,7 +28039,7 @@ "fields": { "package": 10470, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10499 } }, { @@ -30102,7 +28048,7 @@ "fields": { "package": 10440, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -30111,7 +28057,7 @@ "fields": { "package": 10405, "vulnerability": 356, - "is_vulnerable": true + "patched_package": null } }, { @@ -30120,7 +28066,7 @@ "fields": { "package": 10451, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -30129,7 +28075,7 @@ "fields": { "package": 10392, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -30138,7 +28084,7 @@ "fields": { "package": 10394, "vulnerability": 322, - "is_vulnerable": true + "patched_package": null } }, { @@ -30147,7 +28093,7 @@ "fields": { "package": 10467, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -30156,7 +28102,7 @@ "fields": { "package": 10400, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -30165,7 +28111,7 @@ "fields": { "package": 10491, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -30174,7 +28120,7 @@ "fields": { "package": 10426, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -30183,7 +28129,7 @@ "fields": { "package": 10459, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -30192,16 +28138,7 @@ "fields": { "package": 10462, "vulnerability": 417, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 5958, - "fields": { - "package": 10430, - "vulnerability": 469, - "is_vulnerable": false + "patched_package": 10479 } }, { @@ -30210,7 +28147,7 @@ "fields": { "package": 10515, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -30219,7 +28156,7 @@ "fields": { "package": 10511, "vulnerability": 406, - "is_vulnerable": true + "patched_package": null } }, { @@ -30228,7 +28165,7 @@ "fields": { "package": 10482, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -30237,7 +28174,7 @@ "fields": { "package": 10483, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -30246,7 +28183,7 @@ "fields": { "package": 10455, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -30255,7 +28192,7 @@ "fields": { "package": 10397, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -30264,7 +28201,7 @@ "fields": { "package": 10464, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -30273,7 +28210,7 @@ "fields": { "package": 10461, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -30282,7 +28219,7 @@ "fields": { "package": 10387, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -30291,7 +28228,7 @@ "fields": { "package": 10478, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -30300,7 +28237,7 @@ "fields": { "package": 10443, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -30309,7 +28246,7 @@ "fields": { "package": 10484, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -30318,7 +28255,7 @@ "fields": { "package": 10451, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -30327,7 +28264,7 @@ "fields": { "package": 10493, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -30336,7 +28273,7 @@ "fields": { "package": 10427, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -30345,7 +28282,7 @@ "fields": { "package": 10438, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -30354,7 +28291,7 @@ "fields": { "package": 10441, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -30363,7 +28300,7 @@ "fields": { "package": 10511, "vulnerability": 404, - "is_vulnerable": true + "patched_package": null } }, { @@ -30372,7 +28309,7 @@ "fields": { "package": 10405, "vulnerability": 339, - "is_vulnerable": true + "patched_package": null } }, { @@ -30381,7 +28318,7 @@ "fields": { "package": 10454, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -30390,7 +28327,7 @@ "fields": { "package": 10395, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -30399,7 +28336,7 @@ "fields": { "package": 10394, "vulnerability": 305, - "is_vulnerable": true + "patched_package": null } }, { @@ -30408,7 +28345,7 @@ "fields": { "package": 10467, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -30417,7 +28354,7 @@ "fields": { "package": 10401, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -30426,7 +28363,7 @@ "fields": { "package": 10516, "vulnerability": 405, - "is_vulnerable": true + "patched_package": 10522 } }, { @@ -30435,7 +28372,7 @@ "fields": { "package": 10457, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -30444,7 +28381,7 @@ "fields": { "package": 10428, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -30453,7 +28390,7 @@ "fields": { "package": 10435, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -30462,7 +28399,7 @@ "fields": { "package": 10452, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -30471,7 +28408,7 @@ "fields": { "package": 10479, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -30480,7 +28417,7 @@ "fields": { "package": 10444, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -30489,7 +28426,7 @@ "fields": { "package": 10443, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -30498,7 +28435,7 @@ "fields": { "package": 10431, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -30507,7 +28444,7 @@ "fields": { "package": 10384, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10417 } }, { @@ -30516,7 +28453,7 @@ "fields": { "package": 10468, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -30525,7 +28462,7 @@ "fields": { "package": 10485, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -30534,7 +28471,7 @@ "fields": { "package": 10397, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -30543,7 +28480,7 @@ "fields": { "package": 10459, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -30552,7 +28489,7 @@ "fields": { "package": 10467, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -30561,7 +28498,7 @@ "fields": { "package": 10493, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -30570,7 +28507,7 @@ "fields": { "package": 10439, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -30579,7 +28516,7 @@ "fields": { "package": 10427, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -30588,7 +28525,7 @@ "fields": { "package": 10441, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -30597,7 +28534,7 @@ "fields": { "package": 10430, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -30606,7 +28543,7 @@ "fields": { "package": 10455, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -30615,7 +28552,7 @@ "fields": { "package": 10461, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -30624,7 +28561,7 @@ "fields": { "package": 10470, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -30633,7 +28570,7 @@ "fields": { "package": 10400, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -30642,7 +28579,7 @@ "fields": { "package": 10438, "vulnerability": 382, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -30651,7 +28588,7 @@ "fields": { "package": 10437, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -30660,7 +28597,7 @@ "fields": { "package": 10491, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -30669,7 +28606,7 @@ "fields": { "package": 10452, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -30678,16 +28615,7 @@ "fields": { "package": 10392, "vulnerability": 355, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6012, - "fields": { - "package": 10466, - "vulnerability": 448, - "is_vulnerable": false + "patched_package": 10382 } }, { @@ -30696,7 +28624,7 @@ "fields": { "package": 10433, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -30705,7 +28633,7 @@ "fields": { "package": 10477, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -30714,7 +28642,7 @@ "fields": { "package": 10440, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -30723,7 +28651,7 @@ "fields": { "package": 10454, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -30732,7 +28660,7 @@ "fields": { "package": 10391, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -30741,16 +28669,7 @@ "fields": { "package": 10405, "vulnerability": 363, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6019, - "fields": { - "package": 10429, - "vulnerability": 458, - "is_vulnerable": false + "patched_package": null } }, { @@ -30759,7 +28678,7 @@ "fields": { "package": 10467, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -30768,16 +28687,7 @@ "fields": { "package": 10443, "vulnerability": 318, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6022, - "fields": { - "package": 10445, - "vulnerability": 343, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -30786,7 +28696,7 @@ "fields": { "package": 10461, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -30795,7 +28705,7 @@ "fields": { "package": 10459, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -30804,7 +28714,7 @@ "fields": { "package": 10470, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -30813,7 +28723,7 @@ "fields": { "package": 10508, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -30822,7 +28732,7 @@ "fields": { "package": 10388, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -30831,7 +28741,7 @@ "fields": { "package": 10430, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -30840,7 +28750,7 @@ "fields": { "package": 10382, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -30849,7 +28759,7 @@ "fields": { "package": 10492, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -30858,16 +28768,7 @@ "fields": { "package": 10390, "vulnerability": 300, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6032, - "fields": { - "package": 10398, - "vulnerability": 336, - "is_vulnerable": false + "patched_package": 10422 } }, { @@ -30876,7 +28777,7 @@ "fields": { "package": 10470, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -30885,7 +28786,7 @@ "fields": { "package": 10485, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -30894,7 +28795,7 @@ "fields": { "package": 10449, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -30903,7 +28804,7 @@ "fields": { "package": 10438, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -30912,7 +28813,7 @@ "fields": { "package": 10452, "vulnerability": 417, - "is_vulnerable": true + "patched_package": 10479 } }, { @@ -30921,7 +28822,7 @@ "fields": { "package": 10453, "vulnerability": 437, - "is_vulnerable": true + "patched_package": 10482 } }, { @@ -30930,7 +28831,7 @@ "fields": { "package": 10493, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -30939,7 +28840,7 @@ "fields": { "package": 10473, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -30948,7 +28849,7 @@ "fields": { "package": 10392, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -30957,7 +28858,7 @@ "fields": { "package": 10434, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -30966,7 +28867,7 @@ "fields": { "package": 10454, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -30975,7 +28876,7 @@ "fields": { "package": 10443, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -30984,7 +28885,7 @@ "fields": { "package": 10493, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -30993,7 +28894,7 @@ "fields": { "package": 10451, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -31002,7 +28903,7 @@ "fields": { "package": 10461, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -31011,7 +28912,7 @@ "fields": { "package": 10468, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -31020,7 +28921,7 @@ "fields": { "package": 10482, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -31029,7 +28930,7 @@ "fields": { "package": 10474, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -31038,7 +28939,7 @@ "fields": { "package": 10483, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -31047,7 +28948,7 @@ "fields": { "package": 10431, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -31056,7 +28957,7 @@ "fields": { "package": 10430, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -31065,7 +28966,7 @@ "fields": { "package": 10395, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10383 } }, { @@ -31074,16 +28975,7 @@ "fields": { "package": 10486, "vulnerability": 375, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6056, - "fields": { - "package": 10388, - "vulnerability": 370, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -31092,7 +28984,7 @@ "fields": { "package": 10384, "vulnerability": 305, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -31101,7 +28993,7 @@ "fields": { "package": 10438, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -31110,7 +29002,7 @@ "fields": { "package": 10391, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -31119,7 +29011,7 @@ "fields": { "package": 10405, "vulnerability": 355, - "is_vulnerable": true + "patched_package": null } }, { @@ -31128,7 +29020,7 @@ "fields": { "package": 10446, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -31137,16 +29029,7 @@ "fields": { "package": 10404, "vulnerability": 311, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6063, - "fields": { - "package": 10517, - "vulnerability": 403, - "is_vulnerable": false + "patched_package": 10418 } }, { @@ -31155,7 +29038,7 @@ "fields": { "package": 10469, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -31164,7 +29047,7 @@ "fields": { "package": 10494, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -31173,16 +29056,7 @@ "fields": { "package": 10458, "vulnerability": 378, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6067, - "fields": { - "package": 10381, - "vulnerability": 314, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -31191,16 +29065,7 @@ "fields": { "package": 10514, "vulnerability": 421, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6069, - "fields": { - "package": 10437, - "vulnerability": 357, - "is_vulnerable": false + "patched_package": 10531 } }, { @@ -31209,7 +29074,7 @@ "fields": { "package": 10521, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -31218,7 +29083,7 @@ "fields": { "package": 10490, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -31227,7 +29092,7 @@ "fields": { "package": 10473, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -31236,7 +29101,7 @@ "fields": { "package": 10443, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -31245,7 +29110,7 @@ "fields": { "package": 10475, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -31254,7 +29119,7 @@ "fields": { "package": 10397, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -31263,7 +29128,7 @@ "fields": { "package": 10470, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -31272,7 +29137,7 @@ "fields": { "package": 10435, "vulnerability": 395, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -31281,7 +29146,7 @@ "fields": { "package": 10477, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -31290,7 +29155,7 @@ "fields": { "package": 10449, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -31299,7 +29164,7 @@ "fields": { "package": 10457, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -31308,7 +29173,7 @@ "fields": { "package": 10483, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -31317,7 +29182,7 @@ "fields": { "package": 10429, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -31326,7 +29191,7 @@ "fields": { "package": 10431, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -31335,7 +29200,7 @@ "fields": { "package": 10426, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -31344,7 +29209,7 @@ "fields": { "package": 10459, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -31353,7 +29218,7 @@ "fields": { "package": 10486, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -31362,7 +29227,7 @@ "fields": { "package": 10451, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -31371,7 +29236,7 @@ "fields": { "package": 10493, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -31380,7 +29245,7 @@ "fields": { "package": 10507, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -31389,7 +29254,7 @@ "fields": { "package": 10460, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -31398,7 +29263,7 @@ "fields": { "package": 10514, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -31407,7 +29272,7 @@ "fields": { "package": 10426, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -31416,7 +29281,7 @@ "fields": { "package": 10405, "vulnerability": 338, - "is_vulnerable": true + "patched_package": null } }, { @@ -31425,7 +29290,7 @@ "fields": { "package": 10485, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -31434,7 +29299,7 @@ "fields": { "package": 10464, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -31443,7 +29308,7 @@ "fields": { "package": 10390, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -31452,7 +29317,7 @@ "fields": { "package": 10427, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -31461,7 +29326,7 @@ "fields": { "package": 10469, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -31470,7 +29335,7 @@ "fields": { "package": 10449, "vulnerability": 432, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -31479,7 +29344,7 @@ "fields": { "package": 10410, "vulnerability": 294, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -31488,7 +29353,7 @@ "fields": { "package": 10430, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -31497,7 +29362,7 @@ "fields": { "package": 10473, "vulnerability": 433, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -31506,7 +29371,7 @@ "fields": { "package": 10381, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -31515,7 +29380,7 @@ "fields": { "package": 10514, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10521 } }, { @@ -31524,7 +29389,7 @@ "fields": { "package": 10437, "vulnerability": 354, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -31533,7 +29398,7 @@ "fields": { "package": 10482, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -31542,7 +29407,7 @@ "fields": { "package": 10443, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -31551,7 +29416,7 @@ "fields": { "package": 10457, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -31560,7 +29425,7 @@ "fields": { "package": 10433, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -31569,7 +29434,7 @@ "fields": { "package": 10398, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -31578,7 +29443,7 @@ "fields": { "package": 10485, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -31587,7 +29452,7 @@ "fields": { "package": 10435, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -31596,7 +29461,7 @@ "fields": { "package": 10449, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -31605,7 +29470,7 @@ "fields": { "package": 10452, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -31614,16 +29479,7 @@ "fields": { "package": 10451, "vulnerability": 470, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6116, - "fields": { - "package": 10502, - "vulnerability": 355, - "is_vulnerable": false + "patched_package": 10469 } }, { @@ -31632,7 +29488,7 @@ "fields": { "package": 10438, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -31641,7 +29497,7 @@ "fields": { "package": 10407, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -31650,7 +29506,7 @@ "fields": { "package": 10482, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -31659,16 +29515,7 @@ "fields": { "package": 10459, "vulnerability": 422, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6121, - "fields": { - "package": 10469, - "vulnerability": 465, - "is_vulnerable": false + "patched_package": 10452 } }, { @@ -31677,7 +29524,7 @@ "fields": { "package": 10468, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -31686,7 +29533,7 @@ "fields": { "package": 10509, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10517 } }, { @@ -31695,7 +29542,7 @@ "fields": { "package": 10488, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -31704,7 +29551,7 @@ "fields": { "package": 10428, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -31713,16 +29560,7 @@ "fields": { "package": 10470, "vulnerability": 356, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6127, - "fields": { - "package": 10531, - "vulnerability": 421, - "is_vulnerable": false + "patched_package": 10498 } }, { @@ -31731,7 +29569,7 @@ "fields": { "package": 10483, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -31740,7 +29578,7 @@ "fields": { "package": 10382, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -31749,7 +29587,7 @@ "fields": { "package": 10437, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -31758,7 +29596,7 @@ "fields": { "package": 10451, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -31767,7 +29605,7 @@ "fields": { "package": 10493, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -31776,7 +29614,7 @@ "fields": { "package": 10458, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -31785,7 +29623,7 @@ "fields": { "package": 10392, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -31794,7 +29632,7 @@ "fields": { "package": 10398, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -31803,7 +29641,7 @@ "fields": { "package": 10400, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -31812,7 +29650,7 @@ "fields": { "package": 10473, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -31821,7 +29659,7 @@ "fields": { "package": 10485, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -31830,7 +29668,7 @@ "fields": { "package": 10493, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -31839,7 +29677,7 @@ "fields": { "package": 10459, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -31848,7 +29686,7 @@ "fields": { "package": 10476, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -31857,7 +29695,7 @@ "fields": { "package": 10483, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -31866,7 +29704,7 @@ "fields": { "package": 10381, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -31875,7 +29713,7 @@ "fields": { "package": 10480, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -31884,7 +29722,7 @@ "fields": { "package": 10394, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10410 } }, { @@ -31893,7 +29731,7 @@ "fields": { "package": 10397, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -31902,7 +29740,7 @@ "fields": { "package": 10459, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -31911,7 +29749,7 @@ "fields": { "package": 10446, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -31920,7 +29758,7 @@ "fields": { "package": 10452, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -31929,7 +29767,7 @@ "fields": { "package": 10406, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -31938,7 +29776,7 @@ "fields": { "package": 10383, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -31947,7 +29785,7 @@ "fields": { "package": 10504, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -31956,7 +29794,7 @@ "fields": { "package": 10472, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -31965,7 +29803,7 @@ "fields": { "package": 10480, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -31974,16 +29812,7 @@ "fields": { "package": 10433, "vulnerability": 349, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6156, - "fields": { - "package": 10467, - "vulnerability": 450, - "is_vulnerable": false + "patched_package": 10446 } }, { @@ -31992,7 +29821,7 @@ "fields": { "package": 10405, "vulnerability": 365, - "is_vulnerable": true + "patched_package": null } }, { @@ -32001,7 +29830,7 @@ "fields": { "package": 10493, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -32010,7 +29839,7 @@ "fields": { "package": 10446, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -32019,16 +29848,7 @@ "fields": { "package": 10460, "vulnerability": 388, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6161, - "fields": { - "package": 10395, - "vulnerability": 358, - "is_vulnerable": false + "patched_package": 10471 } }, { @@ -32037,7 +29857,7 @@ "fields": { "package": 10514, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -32046,7 +29866,7 @@ "fields": { "package": 10482, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -32055,7 +29875,7 @@ "fields": { "package": 10440, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -32064,7 +29884,7 @@ "fields": { "package": 10473, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -32073,7 +29893,7 @@ "fields": { "package": 10435, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -32082,7 +29902,7 @@ "fields": { "package": 10449, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -32091,7 +29911,7 @@ "fields": { "package": 10429, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -32100,7 +29920,7 @@ "fields": { "package": 10483, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -32109,7 +29929,7 @@ "fields": { "package": 10441, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -32118,7 +29938,7 @@ "fields": { "package": 10443, "vulnerability": 383, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -32127,16 +29947,7 @@ "fields": { "package": 10437, "vulnerability": 329, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6173, - "fields": { - "package": 10445, - "vulnerability": 365, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -32145,7 +29956,7 @@ "fields": { "package": 10475, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -32154,7 +29965,7 @@ "fields": { "package": 10489, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10477 } }, { @@ -32163,7 +29974,7 @@ "fields": { "package": 10397, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -32172,7 +29983,7 @@ "fields": { "package": 10453, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -32181,7 +29992,7 @@ "fields": { "package": 10393, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -32190,7 +30001,7 @@ "fields": { "package": 10405, "vulnerability": 330, - "is_vulnerable": true + "patched_package": null } }, { @@ -32199,7 +30010,7 @@ "fields": { "package": 10493, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -32208,7 +30019,7 @@ "fields": { "package": 10504, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10521 } }, { @@ -32217,7 +30028,7 @@ "fields": { "package": 10392, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -32226,7 +30037,7 @@ "fields": { "package": 10433, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -32235,7 +30046,7 @@ "fields": { "package": 10489, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -32244,7 +30055,7 @@ "fields": { "package": 10388, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -32253,7 +30064,7 @@ "fields": { "package": 10461, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -32262,7 +30073,7 @@ "fields": { "package": 10426, "vulnerability": 398, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -32271,7 +30082,7 @@ "fields": { "package": 10508, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -32280,7 +30091,7 @@ "fields": { "package": 10516, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -32289,7 +30100,7 @@ "fields": { "package": 10482, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -32298,7 +30109,7 @@ "fields": { "package": 10401, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -32307,7 +30118,7 @@ "fields": { "package": 10476, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -32316,7 +30127,7 @@ "fields": { "package": 10476, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -32325,7 +30136,7 @@ "fields": { "package": 10445, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -32334,7 +30145,7 @@ "fields": { "package": 10441, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -32343,7 +30154,7 @@ "fields": { "package": 10428, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -32352,16 +30163,7 @@ "fields": { "package": 10397, "vulnerability": 297, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6198, - "fields": { - "package": 10400, - "vulnerability": 342, - "is_vulnerable": false + "patched_package": 10423 } }, { @@ -32370,7 +30172,7 @@ "fields": { "package": 10406, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -32379,7 +30181,7 @@ "fields": { "package": 10477, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -32388,7 +30190,7 @@ "fields": { "package": 10459, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -32397,7 +30199,7 @@ "fields": { "package": 10485, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -32406,7 +30208,7 @@ "fields": { "package": 10384, "vulnerability": 307, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -32415,7 +30217,7 @@ "fields": { "package": 10440, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -32424,7 +30226,7 @@ "fields": { "package": 10483, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10481 } }, { @@ -32433,7 +30235,7 @@ "fields": { "package": 10493, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -32442,7 +30244,7 @@ "fields": { "package": 10453, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -32451,7 +30253,7 @@ "fields": { "package": 10460, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -32460,7 +30262,7 @@ "fields": { "package": 10509, "vulnerability": 401, - "is_vulnerable": true + "patched_package": 10515 } }, { @@ -32469,16 +30271,7 @@ "fields": { "package": 10473, "vulnerability": 388, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6211, - "fields": { - "package": 10396, - "vulnerability": 324, - "is_vulnerable": false + "patched_package": 10471 } }, { @@ -32487,7 +30280,7 @@ "fields": { "package": 10480, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -32496,7 +30289,7 @@ "fields": { "package": 10452, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -32505,16 +30298,7 @@ "fields": { "package": 10473, "vulnerability": 452, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6215, - "fields": { - "package": 10531, - "vulnerability": 413, - "is_vulnerable": false + "patched_package": 10458 } }, { @@ -32523,7 +30307,7 @@ "fields": { "package": 10427, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -32532,7 +30316,7 @@ "fields": { "package": 10441, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -32541,7 +30325,7 @@ "fields": { "package": 10483, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -32550,16 +30334,7 @@ "fields": { "package": 10448, "vulnerability": 387, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6220, - "fields": { - "package": 10463, - "vulnerability": 445, - "is_vulnerable": false + "patched_package": 10471 } }, { @@ -32568,7 +30343,7 @@ "fields": { "package": 10382, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -32577,7 +30352,7 @@ "fields": { "package": 10442, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -32586,7 +30361,7 @@ "fields": { "package": 10489, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -32595,7 +30370,7 @@ "fields": { "package": 10388, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -32604,7 +30379,7 @@ "fields": { "package": 10461, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -32613,7 +30388,7 @@ "fields": { "package": 10397, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -32622,7 +30397,7 @@ "fields": { "package": 10449, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -32631,7 +30406,7 @@ "fields": { "package": 10488, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -32640,16 +30415,7 @@ "fields": { "package": 10466, "vulnerability": 375, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6230, - "fields": { - "package": 10522, - "vulnerability": 404, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -32658,7 +30424,7 @@ "fields": { "package": 10400, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -32667,7 +30433,7 @@ "fields": { "package": 10406, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -32676,7 +30442,7 @@ "fields": { "package": 10459, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -32685,7 +30451,7 @@ "fields": { "package": 10426, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -32694,7 +30460,7 @@ "fields": { "package": 10507, "vulnerability": 410, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -32703,7 +30469,7 @@ "fields": { "package": 10440, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -32712,7 +30478,7 @@ "fields": { "package": 10405, "vulnerability": 340, - "is_vulnerable": true + "patched_package": null } }, { @@ -32721,7 +30487,7 @@ "fields": { "package": 10443, "vulnerability": 392, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -32730,7 +30496,7 @@ "fields": { "package": 10449, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -32739,7 +30505,7 @@ "fields": { "package": 10383, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -32748,7 +30514,7 @@ "fields": { "package": 10436, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -32757,7 +30523,7 @@ "fields": { "package": 10521, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -32766,7 +30532,7 @@ "fields": { "package": 10443, "vulnerability": 456, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -32775,7 +30541,7 @@ "fields": { "package": 10489, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -32784,7 +30550,7 @@ "fields": { "package": 10396, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -32793,7 +30559,7 @@ "fields": { "package": 10529, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -32802,7 +30568,7 @@ "fields": { "package": 10489, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -32811,7 +30577,7 @@ "fields": { "package": 10470, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -32820,7 +30586,7 @@ "fields": { "package": 10467, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -32829,7 +30595,7 @@ "fields": { "package": 10473, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -32838,7 +30604,7 @@ "fields": { "package": 10483, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -32847,7 +30613,7 @@ "fields": { "package": 10490, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -32856,7 +30622,7 @@ "fields": { "package": 10504, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -32865,16 +30631,7 @@ "fields": { "package": 10512, "vulnerability": 409, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6255, - "fields": { - "package": 10400, - "vulnerability": 352, - "is_vulnerable": false + "patched_package": 10519 } }, { @@ -32883,7 +30640,7 @@ "fields": { "package": 10460, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -32892,7 +30649,7 @@ "fields": { "package": 10400, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -32901,7 +30658,7 @@ "fields": { "package": 10473, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -32910,7 +30667,7 @@ "fields": { "package": 10407, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -32919,7 +30676,7 @@ "fields": { "package": 10440, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -32928,7 +30685,7 @@ "fields": { "package": 10444, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -32937,7 +30694,7 @@ "fields": { "package": 10415, "vulnerability": 295, - "is_vulnerable": true + "patched_package": 10416 } }, { @@ -32946,7 +30703,7 @@ "fields": { "package": 10459, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -32955,7 +30712,7 @@ "fields": { "package": 10487, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -32964,7 +30721,7 @@ "fields": { "package": 10429, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -32973,7 +30730,7 @@ "fields": { "package": 10443, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -32982,16 +30739,7 @@ "fields": { "package": 10496, "vulnerability": 359, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6268, - "fields": { - "package": 10490, - "vulnerability": 388, - "is_vulnerable": false + "patched_package": 10501 } }, { @@ -33000,7 +30748,7 @@ "fields": { "package": 10383, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -33009,7 +30757,7 @@ "fields": { "package": 10475, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -33018,7 +30766,7 @@ "fields": { "package": 10489, "vulnerability": 446, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -33027,7 +30775,7 @@ "fields": { "package": 10491, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -33036,7 +30784,7 @@ "fields": { "package": 10483, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -33045,7 +30793,7 @@ "fields": { "package": 10403, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -33054,7 +30802,7 @@ "fields": { "package": 10382, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -33063,7 +30811,7 @@ "fields": { "package": 10426, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -33072,7 +30820,7 @@ "fields": { "package": 10451, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -33081,7 +30829,7 @@ "fields": { "package": 10466, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -33090,7 +30838,7 @@ "fields": { "package": 10391, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -33099,7 +30847,7 @@ "fields": { "package": 10466, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -33108,7 +30856,7 @@ "fields": { "package": 10398, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -33117,7 +30865,7 @@ "fields": { "package": 10435, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -33126,7 +30874,7 @@ "fields": { "package": 10513, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -33135,7 +30883,7 @@ "fields": { "package": 10439, "vulnerability": 466, - "is_vulnerable": true + "patched_package": null } }, { @@ -33144,7 +30892,7 @@ "fields": { "package": 10460, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -33153,7 +30901,7 @@ "fields": { "package": 10396, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -33162,7 +30910,7 @@ "fields": { "package": 10467, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -33171,7 +30919,7 @@ "fields": { "package": 10449, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -33180,7 +30928,7 @@ "fields": { "package": 10476, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -33189,7 +30937,7 @@ "fields": { "package": 10475, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -33198,16 +30946,7 @@ "fields": { "package": 10440, "vulnerability": 364, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6292, - "fields": { - "package": 10442, - "vulnerability": 467, - "is_vulnerable": false + "patched_package": 10442 } }, { @@ -33216,7 +30955,7 @@ "fields": { "package": 10388, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -33225,7 +30964,7 @@ "fields": { "package": 10430, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -33234,7 +30973,7 @@ "fields": { "package": 10473, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -33243,7 +30982,7 @@ "fields": { "package": 10483, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -33252,7 +30991,7 @@ "fields": { "package": 10480, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -33261,7 +31000,7 @@ "fields": { "package": 10443, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -33270,7 +31009,7 @@ "fields": { "package": 10450, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -33279,7 +31018,7 @@ "fields": { "package": 10463, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -33288,7 +31027,7 @@ "fields": { "package": 10506, "vulnerability": 399, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -33297,7 +31036,7 @@ "fields": { "package": 10442, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -33306,7 +31045,7 @@ "fields": { "package": 10464, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -33315,7 +31054,7 @@ "fields": { "package": 10463, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -33324,7 +31063,7 @@ "fields": { "package": 10473, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -33333,7 +31072,7 @@ "fields": { "package": 10426, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -33342,7 +31081,7 @@ "fields": { "package": 10432, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -33351,7 +31090,7 @@ "fields": { "package": 10420, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -33360,7 +31099,7 @@ "fields": { "package": 10451, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -33369,7 +31108,7 @@ "fields": { "package": 10473, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -33378,7 +31117,7 @@ "fields": { "package": 10506, "vulnerability": 397, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -33387,7 +31126,7 @@ "fields": { "package": 10440, "vulnerability": 469, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -33396,7 +31135,7 @@ "fields": { "package": 10398, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -33405,7 +31144,7 @@ "fields": { "package": 10400, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -33414,7 +31153,7 @@ "fields": { "package": 10442, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -33423,7 +31162,7 @@ "fields": { "package": 10456, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -33432,7 +31171,7 @@ "fields": { "package": 10396, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -33441,16 +31180,7 @@ "fields": { "package": 10449, "vulnerability": 441, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6319, - "fields": { - "package": 10403, - "vulnerability": 312, - "is_vulnerable": false + "patched_package": 10493 } }, { @@ -33459,7 +31189,7 @@ "fields": { "package": 10476, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -33468,7 +31198,7 @@ "fields": { "package": 10443, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -33477,7 +31207,7 @@ "fields": { "package": 10488, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -33486,7 +31216,7 @@ "fields": { "package": 10430, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -33495,7 +31225,7 @@ "fields": { "package": 10395, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -33504,7 +31234,7 @@ "fields": { "package": 10486, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -33513,7 +31243,7 @@ "fields": { "package": 10439, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10388 } }, { @@ -33522,7 +31252,7 @@ "fields": { "package": 10444, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -33531,7 +31261,7 @@ "fields": { "package": 10511, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10462 } }, { @@ -33540,7 +31270,7 @@ "fields": { "package": 10452, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -33549,7 +31279,7 @@ "fields": { "package": 10464, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -33558,7 +31288,7 @@ "fields": { "package": 10478, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -33567,7 +31297,7 @@ "fields": { "package": 10440, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -33576,7 +31306,7 @@ "fields": { "package": 10479, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -33585,7 +31315,7 @@ "fields": { "package": 10404, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -33594,7 +31324,7 @@ "fields": { "package": 10460, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -33603,7 +31333,7 @@ "fields": { "package": 10457, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -33612,7 +31342,7 @@ "fields": { "package": 10473, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -33621,7 +31351,7 @@ "fields": { "package": 10426, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -33630,7 +31360,7 @@ "fields": { "package": 10480, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -33639,7 +31369,7 @@ "fields": { "package": 10440, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -33648,7 +31378,7 @@ "fields": { "package": 10462, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -33657,7 +31387,7 @@ "fields": { "package": 10489, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -33666,7 +31396,7 @@ "fields": { "package": 10488, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -33675,7 +31405,7 @@ "fields": { "package": 10443, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -33684,7 +31414,7 @@ "fields": { "package": 10486, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -33693,7 +31423,7 @@ "fields": { "package": 10436, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -33702,7 +31432,7 @@ "fields": { "package": 10456, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -33711,7 +31441,7 @@ "fields": { "package": 10390, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -33720,7 +31450,7 @@ "fields": { "package": 10512, "vulnerability": 401, - "is_vulnerable": true + "patched_package": 10514 } }, { @@ -33729,16 +31459,7 @@ "fields": { "package": 10397, "vulnerability": 299, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6351, - "fields": { - "package": 10400, - "vulnerability": 344, - "is_vulnerable": false + "patched_package": 10425 } }, { @@ -33747,7 +31468,7 @@ "fields": { "package": 10434, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -33756,7 +31477,7 @@ "fields": { "package": 10449, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -33765,7 +31486,7 @@ "fields": { "package": 10477, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -33774,7 +31495,7 @@ "fields": { "package": 10486, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -33783,7 +31504,7 @@ "fields": { "package": 10440, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -33792,16 +31513,7 @@ "fields": { "package": 10439, "vulnerability": 353, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6358, - "fields": { - "package": 10383, - "vulnerability": 339, - "is_vulnerable": false + "patched_package": 10392 } }, { @@ -33810,7 +31522,7 @@ "fields": { "package": 10481, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -33819,7 +31531,7 @@ "fields": { "package": 10486, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -33828,7 +31540,7 @@ "fields": { "package": 10473, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -33837,7 +31549,7 @@ "fields": { "package": 10442, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -33846,16 +31558,7 @@ "fields": { "package": 10441, "vulnerability": 391, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6364, - "fields": { - "package": 10486, - "vulnerability": 427, - "is_vulnerable": false + "patched_package": 10431 } }, { @@ -33864,7 +31567,7 @@ "fields": { "package": 10456, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -33873,7 +31576,7 @@ "fields": { "package": 10462, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -33882,7 +31585,7 @@ "fields": { "package": 10489, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -33891,7 +31594,7 @@ "fields": { "package": 10381, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -33900,7 +31603,7 @@ "fields": { "package": 10503, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -33909,7 +31612,7 @@ "fields": { "package": 10437, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -33918,7 +31621,7 @@ "fields": { "package": 10479, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -33927,7 +31630,7 @@ "fields": { "package": 10429, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -33936,7 +31639,7 @@ "fields": { "package": 10443, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -33945,7 +31648,7 @@ "fields": { "package": 10450, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -33954,7 +31657,7 @@ "fields": { "package": 10457, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -33963,7 +31666,7 @@ "fields": { "package": 10391, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -33972,7 +31675,7 @@ "fields": { "package": 10466, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -33981,7 +31684,7 @@ "fields": { "package": 10465, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -33990,7 +31693,7 @@ "fields": { "package": 10439, "vulnerability": 458, - "is_vulnerable": true + "patched_package": null } }, { @@ -33999,7 +31702,7 @@ "fields": { "package": 10399, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -34008,16 +31711,7 @@ "fields": { "package": 10406, "vulnerability": 298, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6382, - "fields": { - "package": 10498, - "vulnerability": 361, - "is_vulnerable": false + "patched_package": 10417 } }, { @@ -34026,7 +31720,7 @@ "fields": { "package": 10490, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -34035,7 +31729,7 @@ "fields": { "package": 10470, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -34044,7 +31738,7 @@ "fields": { "package": 10463, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10481 } }, { @@ -34053,7 +31747,7 @@ "fields": { "package": 10440, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -34062,16 +31756,7 @@ "fields": { "package": 10439, "vulnerability": 336, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6388, - "fields": { - "package": 10469, - "vulnerability": 466, - "is_vulnerable": false + "patched_package": 10398 } }, { @@ -34080,7 +31765,7 @@ "fields": { "package": 10388, "vulnerability": 351, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -34089,7 +31774,7 @@ "fields": { "package": 10514, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -34098,7 +31783,7 @@ "fields": { "package": 10482, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -34107,7 +31792,7 @@ "fields": { "package": 10489, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -34116,7 +31801,7 @@ "fields": { "package": 10429, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -34125,16 +31810,7 @@ "fields": { "package": 10454, "vulnerability": 343, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6395, - "fields": { - "package": 10498, - "vulnerability": 359, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -34143,16 +31819,7 @@ "fields": { "package": 10463, "vulnerability": 380, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6397, - "fields": { - "package": 10519, - "vulnerability": 409, - "is_vulnerable": false + "patched_package": 10484 } }, { @@ -34161,7 +31828,7 @@ "fields": { "package": 10403, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -34170,7 +31837,7 @@ "fields": { "package": 10442, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -34179,7 +31846,7 @@ "fields": { "package": 10441, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -34188,7 +31855,7 @@ "fields": { "package": 10483, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -34197,7 +31864,7 @@ "fields": { "package": 10463, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -34206,7 +31873,7 @@ "fields": { "package": 10462, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -34215,7 +31882,7 @@ "fields": { "package": 10388, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -34224,7 +31891,7 @@ "fields": { "package": 10437, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -34233,7 +31900,7 @@ "fields": { "package": 10432, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -34242,7 +31909,7 @@ "fields": { "package": 10488, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -34251,16 +31918,7 @@ "fields": { "package": 10466, "vulnerability": 360, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6409, - "fields": { - "package": 10450, - "vulnerability": 375, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -34269,7 +31927,7 @@ "fields": { "package": 10515, "vulnerability": 405, - "is_vulnerable": true + "patched_package": 10522 } }, { @@ -34278,16 +31936,7 @@ "fields": { "package": 10476, "vulnerability": 376, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6412, - "fields": { - "package": 10490, - "vulnerability": 390, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -34296,7 +31945,7 @@ "fields": { "package": 10440, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -34305,7 +31954,7 @@ "fields": { "package": 10442, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -34314,7 +31963,7 @@ "fields": { "package": 10443, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -34323,7 +31972,7 @@ "fields": { "package": 10489, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -34332,7 +31981,7 @@ "fields": { "package": 10430, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -34341,7 +31990,7 @@ "fields": { "package": 10454, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -34350,7 +31999,7 @@ "fields": { "package": 10394, "vulnerability": 312, - "is_vulnerable": true + "patched_package": null } }, { @@ -34359,7 +32008,7 @@ "fields": { "package": 10397, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -34368,7 +32017,7 @@ "fields": { "package": 10450, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -34377,7 +32026,7 @@ "fields": { "package": 10492, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -34386,7 +32035,7 @@ "fields": { "package": 10467, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -34395,7 +32044,7 @@ "fields": { "package": 10482, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -34404,16 +32053,7 @@ "fields": { "package": 10440, "vulnerability": 459, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6426, - "fields": { - "package": 10481, - "vulnerability": 459, - "is_vulnerable": false + "patched_package": 10443 } }, { @@ -34422,7 +32062,7 @@ "fields": { "package": 10463, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -34431,7 +32071,7 @@ "fields": { "package": 10430, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -34440,7 +32080,7 @@ "fields": { "package": 10487, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -34449,7 +32089,7 @@ "fields": { "package": 10406, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10384 } }, { @@ -34458,7 +32098,7 @@ "fields": { "package": 10479, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -34467,7 +32107,7 @@ "fields": { "package": 10412, "vulnerability": 300, - "is_vulnerable": true + "patched_package": null } }, { @@ -34476,7 +32116,7 @@ "fields": { "package": 10438, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -34485,7 +32125,7 @@ "fields": { "package": 10426, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -34494,7 +32134,7 @@ "fields": { "package": 10440, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -34503,7 +32143,7 @@ "fields": { "package": 10435, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -34512,7 +32152,7 @@ "fields": { "package": 10387, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -34521,7 +32161,7 @@ "fields": { "package": 10527, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -34530,7 +32170,7 @@ "fields": { "package": 10523, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -34539,7 +32179,7 @@ "fields": { "package": 10495, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -34548,7 +32188,7 @@ "fields": { "package": 10467, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -34557,7 +32197,7 @@ "fields": { "package": 10476, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -34566,7 +32206,7 @@ "fields": { "package": 10465, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -34575,7 +32215,7 @@ "fields": { "package": 10399, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -34584,7 +32224,7 @@ "fields": { "package": 10430, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -34593,7 +32233,7 @@ "fields": { "package": 10483, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -34602,7 +32242,7 @@ "fields": { "package": 10473, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -34611,7 +32251,7 @@ "fields": { "package": 10443, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -34620,7 +32260,7 @@ "fields": { "package": 10463, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -34629,7 +32269,7 @@ "fields": { "package": 10383, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -34638,7 +32278,7 @@ "fields": { "package": 10397, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -34647,7 +32287,7 @@ "fields": { "package": 10432, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -34656,7 +32296,7 @@ "fields": { "package": 10453, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -34665,16 +32305,7 @@ "fields": { "package": 10466, "vulnerability": 384, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6455, - "fields": { - "package": 10435, - "vulnerability": 456, - "is_vulnerable": false + "patched_package": 10460 } }, { @@ -34683,7 +32314,7 @@ "fields": { "package": 10487, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -34692,7 +32323,7 @@ "fields": { "package": 10406, "vulnerability": 305, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -34701,7 +32332,7 @@ "fields": { "package": 10479, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -34710,7 +32341,7 @@ "fields": { "package": 10427, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -34719,7 +32350,7 @@ "fields": { "package": 10469, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -34728,7 +32359,7 @@ "fields": { "package": 10440, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -34737,7 +32368,7 @@ "fields": { "package": 10464, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -34746,7 +32377,7 @@ "fields": { "package": 10381, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -34755,7 +32386,7 @@ "fields": { "package": 10491, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -34764,7 +32395,7 @@ "fields": { "package": 10455, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -34773,7 +32404,7 @@ "fields": { "package": 10390, "vulnerability": 320, - "is_vulnerable": true + "patched_package": 10406 } }, { @@ -34782,7 +32413,7 @@ "fields": { "package": 10389, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -34791,16 +32422,7 @@ "fields": { "package": 10443, "vulnerability": 325, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6469, - "fields": { - "package": 10390, - "vulnerability": 327, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -34809,7 +32431,7 @@ "fields": { "package": 10456, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -34818,7 +32440,7 @@ "fields": { "package": 10480, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -34827,7 +32449,7 @@ "fields": { "package": 10503, "vulnerability": 401, - "is_vulnerable": true + "patched_package": 10514 } }, { @@ -34836,7 +32458,7 @@ "fields": { "package": 10470, "vulnerability": 429, - "is_vulnerable": true + "patched_package": null } }, { @@ -34845,7 +32467,7 @@ "fields": { "package": 10495, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10499 } }, { @@ -34854,25 +32476,7 @@ "fields": { "package": 10453, "vulnerability": 459, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6476, - "fields": { - "package": 10393, - "vulnerability": 321, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6477, - "fields": { - "package": 10494, - "vulnerability": 459, - "is_vulnerable": false + "patched_package": 10494 } }, { @@ -34881,16 +32485,7 @@ "fields": { "package": 10430, "vulnerability": 356, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6479, - "fields": { - "package": 10401, - "vulnerability": 317, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -34899,7 +32494,7 @@ "fields": { "package": 10504, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -34908,7 +32503,7 @@ "fields": { "package": 10472, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -34917,7 +32512,7 @@ "fields": { "package": 10510, "vulnerability": 400, - "is_vulnerable": true + "patched_package": 10511 } }, { @@ -34926,7 +32521,7 @@ "fields": { "package": 10479, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -34935,7 +32530,7 @@ "fields": { "package": 10444, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -34944,7 +32539,7 @@ "fields": { "package": 10439, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -34953,7 +32548,7 @@ "fields": { "package": 10453, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -34962,16 +32557,7 @@ "fields": { "package": 10442, "vulnerability": 366, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6488, - "fields": { - "package": 10496, - "vulnerability": 377, - "is_vulnerable": false + "patched_package": 10445 } }, { @@ -34980,7 +32566,7 @@ "fields": { "package": 10473, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -34989,7 +32575,7 @@ "fields": { "package": 10453, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -34998,7 +32584,7 @@ "fields": { "package": 10440, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -35007,16 +32593,7 @@ "fields": { "package": 10482, "vulnerability": 381, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6493, - "fields": { - "package": 10463, - "vulnerability": 358, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -35025,7 +32602,7 @@ "fields": { "package": 10427, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -35034,7 +32611,7 @@ "fields": { "package": 10486, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -35043,7 +32620,7 @@ "fields": { "package": 10491, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -35052,7 +32629,7 @@ "fields": { "package": 10456, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -35061,7 +32638,7 @@ "fields": { "package": 10437, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35070,7 +32647,7 @@ "fields": { "package": 10390, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -35079,7 +32656,7 @@ "fields": { "package": 10392, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -35088,7 +32665,7 @@ "fields": { "package": 10445, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35097,7 +32674,7 @@ "fields": { "package": 10489, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -35106,7 +32683,7 @@ "fields": { "package": 10466, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -35115,7 +32692,7 @@ "fields": { "package": 10403, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -35124,7 +32701,7 @@ "fields": { "package": 10430, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -35133,7 +32710,7 @@ "fields": { "package": 10479, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -35142,7 +32719,7 @@ "fields": { "package": 10457, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -35151,7 +32728,7 @@ "fields": { "package": 10482, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -35160,7 +32737,7 @@ "fields": { "package": 10513, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -35169,7 +32746,7 @@ "fields": { "package": 10520, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -35178,7 +32755,7 @@ "fields": { "package": 10481, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -35187,7 +32764,7 @@ "fields": { "package": 10442, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -35196,7 +32773,7 @@ "fields": { "package": 10477, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -35205,7 +32782,7 @@ "fields": { "package": 10394, "vulnerability": 304, - "is_vulnerable": true + "patched_package": null } }, { @@ -35214,7 +32791,7 @@ "fields": { "package": 10396, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -35223,7 +32800,7 @@ "fields": { "package": 10402, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -35232,7 +32809,7 @@ "fields": { "package": 10448, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -35241,7 +32818,7 @@ "fields": { "package": 10456, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -35250,7 +32827,7 @@ "fields": { "package": 10482, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -35259,7 +32836,7 @@ "fields": { "package": 10428, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -35268,7 +32845,7 @@ "fields": { "package": 10430, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -35277,7 +32854,7 @@ "fields": { "package": 10383, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10392 } }, { @@ -35286,7 +32863,7 @@ "fields": { "package": 10450, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -35295,7 +32872,7 @@ "fields": { "package": 10506, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -35304,7 +32881,7 @@ "fields": { "package": 10517, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -35313,7 +32890,7 @@ "fields": { "package": 10513, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -35322,7 +32899,7 @@ "fields": { "package": 10485, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -35331,7 +32908,7 @@ "fields": { "package": 10446, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35340,16 +32917,7 @@ "fields": { "package": 10457, "vulnerability": 343, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6530, - "fields": { - "package": 10501, - "vulnerability": 359, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -35358,7 +32926,7 @@ "fields": { "package": 10466, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -35367,7 +32935,7 @@ "fields": { "package": 10455, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -35376,7 +32944,7 @@ "fields": { "package": 10389, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -35385,7 +32953,7 @@ "fields": { "package": 10463, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -35394,7 +32962,7 @@ "fields": { "package": 10473, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -35403,7 +32971,7 @@ "fields": { "package": 10426, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -35412,7 +32980,7 @@ "fields": { "package": 10480, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -35421,7 +32989,7 @@ "fields": { "package": 10486, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -35430,7 +32998,7 @@ "fields": { "package": 10461, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -35439,7 +33007,7 @@ "fields": { "package": 10453, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -35448,7 +33016,7 @@ "fields": { "package": 10495, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -35457,7 +33025,7 @@ "fields": { "package": 10429, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35466,7 +33034,7 @@ "fields": { "package": 10443, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -35475,7 +33043,7 @@ "fields": { "package": 10513, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10521 } }, { @@ -35484,7 +33052,7 @@ "fields": { "package": 10479, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -35493,7 +33061,7 @@ "fields": { "package": 10442, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35502,16 +33070,7 @@ "fields": { "package": 10456, "vulnerability": 384, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6548, - "fields": { - "package": 10390, - "vulnerability": 334, - "is_vulnerable": false + "patched_package": 10460 } }, { @@ -35520,16 +33079,7 @@ "fields": { "package": 10397, "vulnerability": 325, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6550, - "fields": { - "package": 10491, - "vulnerability": 448, - "is_vulnerable": false + "patched_package": 10396 } }, { @@ -35538,7 +33088,7 @@ "fields": { "package": 10459, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -35547,7 +33097,7 @@ "fields": { "package": 10430, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -35556,7 +33106,7 @@ "fields": { "package": 10383, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -35565,7 +33115,7 @@ "fields": { "package": 10437, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -35574,7 +33124,7 @@ "fields": { "package": 10481, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -35583,16 +33133,7 @@ "fields": { "package": 10445, "vulnerability": 357, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6557, - "fields": { - "package": 10382, - "vulnerability": 345, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -35601,7 +33142,7 @@ "fields": { "package": 10433, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35610,7 +33151,7 @@ "fields": { "package": 10386, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10417 } }, { @@ -35619,7 +33160,7 @@ "fields": { "package": 10470, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -35628,7 +33169,7 @@ "fields": { "package": 10405, "vulnerability": 341, - "is_vulnerable": true + "patched_package": null } }, { @@ -35637,7 +33178,7 @@ "fields": { "package": 10526, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -35646,7 +33187,7 @@ "fields": { "package": 10485, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -35655,16 +33196,7 @@ "fields": { "package": 10487, "vulnerability": 468, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6565, - "fields": { - "package": 10525, - "vulnerability": 406, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -35673,7 +33205,7 @@ "fields": { "package": 10462, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -35682,7 +33214,7 @@ "fields": { "package": 10489, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -35691,7 +33223,7 @@ "fields": { "package": 10495, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -35700,7 +33232,7 @@ "fields": { "package": 10441, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -35709,7 +33241,7 @@ "fields": { "package": 10394, "vulnerability": 314, - "is_vulnerable": true + "patched_package": null } }, { @@ -35718,16 +33250,7 @@ "fields": { "package": 10443, "vulnerability": 359, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6572, - "fields": { - "package": 10444, - "vulnerability": 386, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -35736,7 +33259,7 @@ "fields": { "package": 10438, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -35745,7 +33268,7 @@ "fields": { "package": 10440, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -35754,7 +33277,7 @@ "fields": { "package": 10457, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -35763,7 +33286,7 @@ "fields": { "package": 10463, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -35772,7 +33295,7 @@ "fields": { "package": 10478, "vulnerability": 437, - "is_vulnerable": true + "patched_package": 10482 } }, { @@ -35781,7 +33304,7 @@ "fields": { "package": 10397, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -35790,7 +33313,7 @@ "fields": { "package": 10472, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -35799,16 +33322,7 @@ "fields": { "package": 10430, "vulnerability": 390, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6581, - "fields": { - "package": 10435, - "vulnerability": 455, - "is_vulnerable": false + "patched_package": 10438 } }, { @@ -35817,7 +33331,7 @@ "fields": { "package": 10456, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -35826,7 +33340,7 @@ "fields": { "package": 10402, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -35835,7 +33349,7 @@ "fields": { "package": 10486, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -35844,7 +33358,7 @@ "fields": { "package": 10439, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -35853,7 +33367,7 @@ "fields": { "package": 10481, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -35862,7 +33376,7 @@ "fields": { "package": 10493, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -35871,7 +33385,7 @@ "fields": { "package": 10427, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35880,7 +33394,7 @@ "fields": { "package": 10382, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -35889,7 +33403,7 @@ "fields": { "package": 10435, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35898,7 +33412,7 @@ "fields": { "package": 10400, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -35907,7 +33421,7 @@ "fields": { "package": 10442, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35916,7 +33430,7 @@ "fields": { "package": 10456, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -35925,7 +33439,7 @@ "fields": { "package": 10393, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -35934,7 +33448,7 @@ "fields": { "package": 10469, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -35943,7 +33457,7 @@ "fields": { "package": 10445, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -35952,7 +33466,7 @@ "fields": { "package": 10463, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -35961,7 +33475,7 @@ "fields": { "package": 10462, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -35970,7 +33484,7 @@ "fields": { "package": 10464, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -35979,7 +33493,7 @@ "fields": { "package": 10503, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -35988,7 +33502,7 @@ "fields": { "package": 10432, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -35997,7 +33511,7 @@ "fields": { "package": 10419, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -36006,7 +33520,7 @@ "fields": { "package": 10494, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -36015,7 +33529,7 @@ "fields": { "package": 10513, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -36024,7 +33538,7 @@ "fields": { "package": 10439, "vulnerability": 467, - "is_vulnerable": true + "patched_package": null } }, { @@ -36033,7 +33547,7 @@ "fields": { "package": 10472, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -36042,7 +33556,7 @@ "fields": { "package": 10487, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -36051,7 +33565,7 @@ "fields": { "package": 10440, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -36060,7 +33574,7 @@ "fields": { "package": 10482, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -36069,7 +33583,7 @@ "fields": { "package": 10449, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -36078,7 +33592,7 @@ "fields": { "package": 10495, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -36087,16 +33601,7 @@ "fields": { "package": 10503, "vulnerability": 406, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6613, - "fields": { - "package": 10437, - "vulnerability": 356, - "is_vulnerable": false + "patched_package": 10524 } }, { @@ -36105,7 +33610,7 @@ "fields": { "package": 10436, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -36114,7 +33619,7 @@ "fields": { "package": 10456, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -36123,7 +33628,7 @@ "fields": { "package": 10495, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -36132,7 +33637,7 @@ "fields": { "package": 10453, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -36141,7 +33646,7 @@ "fields": { "package": 10463, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -36150,7 +33655,7 @@ "fields": { "package": 10470, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -36159,16 +33664,7 @@ "fields": { "package": 10451, "vulnerability": 464, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6621, - "fields": { - "package": 10447, - "vulnerability": 326, - "is_vulnerable": false + "patched_package": 10469 } }, { @@ -36177,7 +33673,7 @@ "fields": { "package": 10485, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -36186,7 +33682,7 @@ "fields": { "package": 10432, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -36195,7 +33691,7 @@ "fields": { "package": 10488, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -36204,7 +33700,7 @@ "fields": { "package": 10495, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -36213,7 +33709,7 @@ "fields": { "package": 10386, "vulnerability": 305, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -36222,7 +33718,7 @@ "fields": { "package": 10393, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -36231,7 +33727,7 @@ "fields": { "package": 10449, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -36240,7 +33736,7 @@ "fields": { "package": 10406, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -36249,7 +33745,7 @@ "fields": { "package": 10427, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -36258,7 +33754,7 @@ "fields": { "package": 10396, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -36267,7 +33763,7 @@ "fields": { "package": 10471, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -36276,7 +33772,7 @@ "fields": { "package": 10405, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10393 } }, { @@ -36285,7 +33781,7 @@ "fields": { "package": 10449, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -36294,7 +33790,7 @@ "fields": { "package": 10460, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -36303,7 +33799,7 @@ "fields": { "package": 10395, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -36312,7 +33808,7 @@ "fields": { "package": 10383, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -36321,7 +33817,7 @@ "fields": { "package": 10516, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -36330,7 +33826,7 @@ "fields": { "package": 10477, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -36339,7 +33835,7 @@ "fields": { "package": 10389, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -36348,7 +33844,7 @@ "fields": { "package": 10392, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -36357,7 +33853,7 @@ "fields": { "package": 10445, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -36366,7 +33862,7 @@ "fields": { "package": 10492, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -36375,7 +33871,7 @@ "fields": { "package": 10472, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -36384,7 +33880,7 @@ "fields": { "package": 10526, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -36393,7 +33889,7 @@ "fields": { "package": 10452, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -36402,7 +33898,7 @@ "fields": { "package": 10459, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -36411,7 +33907,7 @@ "fields": { "package": 10485, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -36420,7 +33916,7 @@ "fields": { "package": 10384, "vulnerability": 314, - "is_vulnerable": true + "patched_package": 10381 } }, { @@ -36429,7 +33925,7 @@ "fields": { "package": 10440, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -36438,7 +33934,7 @@ "fields": { "package": 10441, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -36447,7 +33943,7 @@ "fields": { "package": 10495, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -36456,7 +33952,7 @@ "fields": { "package": 10453, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -36465,7 +33961,7 @@ "fields": { "package": 10462, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -36474,25 +33970,7 @@ "fields": { "package": 10516, "vulnerability": 406, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6656, - "fields": { - "package": 10396, - "vulnerability": 331, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6657, - "fields": { - "package": 10445, - "vulnerability": 376, - "is_vulnerable": false + "patched_package": 10525 } }, { @@ -36501,7 +33979,7 @@ "fields": { "package": 10509, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10516 } }, { @@ -36510,7 +33988,7 @@ "fields": { "package": 10468, "vulnerability": 437, - "is_vulnerable": true + "patched_package": 10482 } }, { @@ -36519,7 +33997,7 @@ "fields": { "package": 10487, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -36528,7 +34006,7 @@ "fields": { "package": 10392, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -36537,7 +34015,7 @@ "fields": { "package": 10476, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -36546,7 +34024,7 @@ "fields": { "package": 10429, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -36555,7 +34033,7 @@ "fields": { "package": 10472, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -36564,7 +34042,7 @@ "fields": { "package": 10486, "vulnerability": 425, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -36573,7 +34051,7 @@ "fields": { "package": 10405, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -36582,7 +34060,7 @@ "fields": { "package": 10412, "vulnerability": 294, - "is_vulnerable": true + "patched_package": null } }, { @@ -36591,7 +34069,7 @@ "fields": { "package": 10426, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -36600,7 +34078,7 @@ "fields": { "package": 10432, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -36609,7 +34087,7 @@ "fields": { "package": 10383, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -36618,7 +34096,7 @@ "fields": { "package": 10516, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10522 } }, { @@ -36627,7 +34105,7 @@ "fields": { "package": 10445, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -36636,7 +34114,7 @@ "fields": { "package": 10448, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -36645,7 +34123,7 @@ "fields": { "package": 10435, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -36654,7 +34132,7 @@ "fields": { "package": 10400, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -36663,7 +34141,7 @@ "fields": { "package": 10520, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -36672,7 +34150,7 @@ "fields": { "package": 10487, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -36681,7 +34159,7 @@ "fields": { "package": 10452, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -36690,7 +34168,7 @@ "fields": { "package": 10528, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -36699,7 +34177,7 @@ "fields": { "package": 10461, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -36708,7 +34186,7 @@ "fields": { "package": 10488, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -36717,7 +34195,7 @@ "fields": { "package": 10440, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -36726,7 +34204,7 @@ "fields": { "package": 10409, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10414 } }, { @@ -36735,7 +34213,7 @@ "fields": { "package": 10484, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -36744,7 +34222,7 @@ "fields": { "package": 10489, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -36753,7 +34231,7 @@ "fields": { "package": 10503, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -36762,7 +34240,7 @@ "fields": { "package": 10429, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -36771,7 +34249,7 @@ "fields": { "package": 10470, "vulnerability": 438, - "is_vulnerable": true + "patched_package": null } }, { @@ -36780,7 +34258,7 @@ "fields": { "package": 10497, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -36789,7 +34267,7 @@ "fields": { "package": 10462, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -36798,16 +34276,7 @@ "fields": { "package": 10511, "vulnerability": 409, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6692, - "fields": { - "package": 10461, - "vulnerability": 451, - "is_vulnerable": false + "patched_package": null } }, { @@ -36816,7 +34285,7 @@ "fields": { "package": 10495, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10481 } }, { @@ -36825,7 +34294,7 @@ "fields": { "package": 10405, "vulnerability": 344, - "is_vulnerable": true + "patched_package": null } }, { @@ -36834,7 +34303,7 @@ "fields": { "package": 10430, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -36843,7 +34312,7 @@ "fields": { "package": 10472, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -36852,7 +34321,7 @@ "fields": { "package": 10439, "vulnerability": 381, - "is_vulnerable": true + "patched_package": null } }, { @@ -36861,7 +34330,7 @@ "fields": { "package": 10485, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -36870,7 +34339,7 @@ "fields": { "package": 10426, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -36879,7 +34348,7 @@ "fields": { "package": 10464, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -36888,7 +34357,7 @@ "fields": { "package": 10478, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10457 } }, { @@ -36897,7 +34366,7 @@ "fields": { "package": 10443, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -36906,7 +34375,7 @@ "fields": { "package": 10485, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -36915,7 +34384,7 @@ "fields": { "package": 10439, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -36924,7 +34393,7 @@ "fields": { "package": 10453, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -36933,7 +34402,7 @@ "fields": { "package": 10495, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -36942,7 +34411,7 @@ "fields": { "package": 10460, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -36951,7 +34420,7 @@ "fields": { "package": 10400, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10402 } }, { @@ -36960,7 +34429,7 @@ "fields": { "package": 10487, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -36969,7 +34438,7 @@ "fields": { "package": 10495, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -36978,7 +34447,7 @@ "fields": { "package": 10459, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -36987,16 +34456,7 @@ "fields": { "package": 10478, "vulnerability": 375, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6713, - "fields": { - "package": 10447, - "vulnerability": 318, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -37005,7 +34465,7 @@ "fields": { "package": 10484, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -37014,7 +34474,7 @@ "fields": { "package": 10418, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -37023,7 +34483,7 @@ "fields": { "package": 10430, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -37032,7 +34492,7 @@ "fields": { "package": 10439, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10388 } }, { @@ -37041,7 +34501,7 @@ "fields": { "package": 10512, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -37050,7 +34510,7 @@ "fields": { "package": 10470, "vulnerability": 421, - "is_vulnerable": true + "patched_package": null } }, { @@ -37059,7 +34519,7 @@ "fields": { "package": 10396, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -37068,7 +34528,7 @@ "fields": { "package": 10461, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -37077,16 +34537,7 @@ "fields": { "package": 10395, "vulnerability": 313, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6723, - "fields": { - "package": 10483, - "vulnerability": 458, - "is_vulnerable": false + "patched_package": 10389 } }, { @@ -37095,7 +34546,7 @@ "fields": { "package": 10486, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -37104,7 +34555,7 @@ "fields": { "package": 10439, "vulnerability": 364, - "is_vulnerable": true + "patched_package": null } }, { @@ -37113,16 +34564,7 @@ "fields": { "package": 10467, "vulnerability": 468, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6727, - "fields": { - "package": 10486, - "vulnerability": 420, - "is_vulnerable": false + "patched_package": 10454 } }, { @@ -37131,7 +34573,7 @@ "fields": { "package": 10382, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -37140,7 +34582,7 @@ "fields": { "package": 10482, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -37149,7 +34591,7 @@ "fields": { "package": 10479, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -37158,7 +34600,7 @@ "fields": { "package": 10485, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -37167,7 +34609,7 @@ "fields": { "package": 10495, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -37176,7 +34618,7 @@ "fields": { "package": 10462, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -37185,7 +34627,7 @@ "fields": { "package": 10516, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -37194,7 +34636,7 @@ "fields": { "package": 10469, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -37203,7 +34645,7 @@ "fields": { "package": 10405, "vulnerability": 368, - "is_vulnerable": true + "patched_package": null } }, { @@ -37212,7 +34654,7 @@ "fields": { "package": 10462, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -37221,7 +34663,7 @@ "fields": { "package": 10430, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -37230,7 +34672,7 @@ "fields": { "package": 10383, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -37239,7 +34681,7 @@ "fields": { "package": 10472, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -37248,7 +34690,7 @@ "fields": { "package": 10478, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -37257,7 +34699,7 @@ "fields": { "package": 10431, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -37266,7 +34708,7 @@ "fields": { "package": 10412, "vulnerability": 301, - "is_vulnerable": true + "patched_package": null } }, { @@ -37275,7 +34717,7 @@ "fields": { "package": 10485, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -37284,7 +34726,7 @@ "fields": { "package": 10419, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -37293,7 +34735,7 @@ "fields": { "package": 10452, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -37302,7 +34744,7 @@ "fields": { "package": 10439, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -37311,7 +34753,7 @@ "fields": { "package": 10477, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -37320,7 +34762,7 @@ "fields": { "package": 10441, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -37329,7 +34771,7 @@ "fields": { "package": 10455, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -37338,16 +34780,7 @@ "fields": { "package": 10461, "vulnerability": 353, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6752, - "fields": { - "package": 10396, - "vulnerability": 323, - "is_vulnerable": false + "patched_package": 10500 } }, { @@ -37356,34 +34789,7 @@ "fields": { "package": 10395, "vulnerability": 296, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6754, - "fields": { - "package": 10398, - "vulnerability": 341, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6755, - "fields": { - "package": 10442, - "vulnerability": 470, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6756, - "fields": { - "package": 10388, - "vulnerability": 369, - "is_vulnerable": false + "patched_package": 10421 } }, { @@ -37392,7 +34798,7 @@ "fields": { "package": 10495, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -37401,7 +34807,7 @@ "fields": { "package": 10438, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -37410,7 +34816,7 @@ "fields": { "package": 10463, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -37419,7 +34825,7 @@ "fields": { "package": 10477, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -37428,7 +34834,7 @@ "fields": { "package": 10478, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -37437,7 +34843,7 @@ "fields": { "package": 10443, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -37446,7 +34852,7 @@ "fields": { "package": 10451, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -37455,7 +34861,7 @@ "fields": { "package": 10459, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -37464,7 +34870,7 @@ "fields": { "package": 10462, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -37473,7 +34879,7 @@ "fields": { "package": 10472, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -37482,7 +34888,7 @@ "fields": { "package": 10479, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -37491,7 +34897,7 @@ "fields": { "package": 10439, "vulnerability": 388, - "is_vulnerable": true + "patched_package": null } }, { @@ -37500,7 +34906,7 @@ "fields": { "package": 10461, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10483 } }, { @@ -37509,7 +34915,7 @@ "fields": { "package": 10488, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -37518,7 +34924,7 @@ "fields": { "package": 10487, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -37527,7 +34933,7 @@ "fields": { "package": 10452, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -37536,7 +34942,7 @@ "fields": { "package": 10426, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -37545,16 +34951,7 @@ "fields": { "package": 10386, "vulnerability": 307, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6775, - "fields": { - "package": 10454, - "vulnerability": 467, - "is_vulnerable": false + "patched_package": 10418 } }, { @@ -37563,7 +34960,7 @@ "fields": { "package": 10442, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -37572,7 +34969,7 @@ "fields": { "package": 10485, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -37581,7 +34978,7 @@ "fields": { "package": 10395, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -37590,7 +34987,7 @@ "fields": { "package": 10495, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -37599,7 +34996,7 @@ "fields": { "package": 10492, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -37608,7 +35005,7 @@ "fields": { "package": 10462, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -37617,7 +35014,7 @@ "fields": { "package": 10511, "vulnerability": 401, - "is_vulnerable": true + "patched_package": null } }, { @@ -37626,7 +35023,7 @@ "fields": { "package": 10396, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -37635,7 +35032,7 @@ "fields": { "package": 10429, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -37644,7 +35041,7 @@ "fields": { "package": 10475, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -37653,7 +35050,7 @@ "fields": { "package": 10454, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -37662,16 +35059,7 @@ "fields": { "package": 10468, "vulnerability": 454, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6788, - "fields": { - "package": 10444, - "vulnerability": 395, - "is_vulnerable": false + "patched_package": 10457 } }, { @@ -37680,7 +35068,7 @@ "fields": { "package": 10429, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -37689,7 +35077,7 @@ "fields": { "package": 10443, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -37698,7 +35086,7 @@ "fields": { "package": 10439, "vulnerability": 373, - "is_vulnerable": true + "patched_package": null } }, { @@ -37707,7 +35095,7 @@ "fields": { "package": 10438, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -37716,16 +35104,7 @@ "fields": { "package": 10485, "vulnerability": 380, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6794, - "fields": { - "package": 10458, - "vulnerability": 447, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -37734,7 +35113,7 @@ "fields": { "package": 10444, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -37743,7 +35122,7 @@ "fields": { "package": 10392, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -37752,7 +35131,7 @@ "fields": { "package": 10463, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -37761,7 +35140,7 @@ "fields": { "package": 10485, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -37770,7 +35149,7 @@ "fields": { "package": 10443, "vulnerability": 453, - "is_vulnerable": true + "patched_package": 10441 } }, { @@ -37779,7 +35158,7 @@ "fields": { "package": 10392, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -37788,16 +35167,7 @@ "fields": { "package": 10451, "vulnerability": 449, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6802, - "fields": { - "package": 10516, - "vulnerability": 408, - "is_vulnerable": false + "patched_package": 10463 } }, { @@ -37806,7 +35176,7 @@ "fields": { "package": 10468, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -37815,7 +35185,7 @@ "fields": { "package": 10408, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -37824,7 +35194,7 @@ "fields": { "package": 10488, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -37833,7 +35203,7 @@ "fields": { "package": 10387, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -37842,7 +35212,7 @@ "fields": { "package": 10509, "vulnerability": 410, - "is_vulnerable": true + "patched_package": 10516 } }, { @@ -37851,7 +35221,7 @@ "fields": { "package": 10442, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -37860,7 +35230,7 @@ "fields": { "package": 10451, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -37869,7 +35239,7 @@ "fields": { "package": 10456, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -37878,7 +35248,7 @@ "fields": { "package": 10470, "vulnerability": 413, - "is_vulnerable": true + "patched_package": null } }, { @@ -37887,7 +35257,7 @@ "fields": { "package": 10523, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -37896,7 +35266,7 @@ "fields": { "package": 10476, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -37905,7 +35275,7 @@ "fields": { "package": 10429, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -37914,7 +35284,7 @@ "fields": { "package": 10479, "vulnerability": 429, - "is_vulnerable": true + "patched_package": 10468 } }, { @@ -37923,7 +35293,7 @@ "fields": { "package": 10398, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -37932,7 +35302,7 @@ "fields": { "package": 10491, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -37941,7 +35311,7 @@ "fields": { "package": 10462, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -37950,7 +35320,7 @@ "fields": { "package": 10491, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -37959,7 +35329,7 @@ "fields": { "package": 10472, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -37968,7 +35338,7 @@ "fields": { "package": 10457, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -37977,7 +35347,7 @@ "fields": { "package": 10439, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -37986,7 +35356,7 @@ "fields": { "package": 10438, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -37995,7 +35365,7 @@ "fields": { "package": 10492, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -38004,7 +35374,7 @@ "fields": { "package": 10485, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -38013,7 +35383,7 @@ "fields": { "package": 10452, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -38022,7 +35392,7 @@ "fields": { "package": 10399, "vulnerability": 307, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -38031,7 +35401,7 @@ "fields": { "package": 10452, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -38040,16 +35410,7 @@ "fields": { "package": 10462, "vulnerability": 380, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6830, - "fields": { - "package": 10469, - "vulnerability": 364, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -38058,7 +35419,7 @@ "fields": { "package": 10468, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -38067,7 +35428,7 @@ "fields": { "package": 10402, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -38076,7 +35437,7 @@ "fields": { "package": 10475, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -38085,7 +35446,7 @@ "fields": { "package": 10435, "vulnerability": 383, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -38094,7 +35455,7 @@ "fields": { "package": 10462, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -38103,7 +35464,7 @@ "fields": { "package": 10429, "vulnerability": 469, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -38112,7 +35473,7 @@ "fields": { "package": 10383, "vulnerability": 354, - "is_vulnerable": true + "patched_package": 10392 } }, { @@ -38121,7 +35482,7 @@ "fields": { "package": 10387, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -38130,7 +35491,7 @@ "fields": { "package": 10467, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -38139,7 +35500,7 @@ "fields": { "package": 10489, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -38148,7 +35509,7 @@ "fields": { "package": 10431, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -38157,7 +35518,7 @@ "fields": { "package": 10451, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -38166,7 +35527,7 @@ "fields": { "package": 10385, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -38175,7 +35536,7 @@ "fields": { "package": 10477, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -38184,7 +35545,7 @@ "fields": { "package": 10405, "vulnerability": 302, - "is_vulnerable": true + "patched_package": null } }, { @@ -38193,7 +35554,7 @@ "fields": { "package": 10428, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -38202,7 +35563,7 @@ "fields": { "package": 10439, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10383 } }, { @@ -38211,7 +35572,7 @@ "fields": { "package": 10453, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -38220,7 +35581,7 @@ "fields": { "package": 10468, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -38229,16 +35590,7 @@ "fields": { "package": 10393, "vulnerability": 312, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6851, - "fields": { - "package": 10450, - "vulnerability": 382, - "is_vulnerable": false + "patched_package": 10408 } }, { @@ -38247,7 +35599,7 @@ "fields": { "package": 10400, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -38256,7 +35608,7 @@ "fields": { "package": 10437, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -38265,7 +35617,7 @@ "fields": { "package": 10491, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -38274,7 +35626,7 @@ "fields": { "package": 10449, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -38283,7 +35635,7 @@ "fields": { "package": 10515, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10517 } }, { @@ -38292,7 +35644,7 @@ "fields": { "package": 10452, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -38301,7 +35653,7 @@ "fields": { "package": 10441, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -38310,7 +35662,7 @@ "fields": { "package": 10462, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -38319,7 +35671,7 @@ "fields": { "package": 10398, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -38328,7 +35680,7 @@ "fields": { "package": 10469, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -38337,7 +35689,7 @@ "fields": { "package": 10429, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -38346,7 +35698,7 @@ "fields": { "package": 10478, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -38355,7 +35707,7 @@ "fields": { "package": 10477, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -38364,7 +35716,7 @@ "fields": { "package": 10486, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -38373,7 +35725,7 @@ "fields": { "package": 10411, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -38382,7 +35734,7 @@ "fields": { "package": 10451, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10483 } }, { @@ -38391,7 +35743,7 @@ "fields": { "package": 10418, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10417 } }, { @@ -38400,7 +35752,7 @@ "fields": { "package": 10432, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -38409,7 +35761,7 @@ "fields": { "package": 10475, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -38418,7 +35770,7 @@ "fields": { "package": 10383, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -38427,7 +35779,7 @@ "fields": { "package": 10470, "vulnerability": 423, - "is_vulnerable": true + "patched_package": null } }, { @@ -38436,7 +35788,7 @@ "fields": { "package": 10439, "vulnerability": 380, - "is_vulnerable": true + "patched_package": null } }, { @@ -38445,7 +35797,7 @@ "fields": { "package": 10482, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -38454,7 +35806,7 @@ "fields": { "package": 10445, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -38463,7 +35815,7 @@ "fields": { "package": 10398, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -38472,7 +35824,7 @@ "fields": { "package": 10452, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -38481,7 +35833,7 @@ "fields": { "package": 10526, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -38490,7 +35842,7 @@ "fields": { "package": 10493, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -38499,7 +35851,7 @@ "fields": { "package": 10466, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -38508,7 +35860,7 @@ "fields": { "package": 10429, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -38517,7 +35869,7 @@ "fields": { "package": 10428, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -38526,7 +35878,7 @@ "fields": { "package": 10475, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -38535,7 +35887,7 @@ "fields": { "package": 10454, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -38544,7 +35896,7 @@ "fields": { "package": 10382, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -38553,7 +35905,7 @@ "fields": { "package": 10495, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -38562,7 +35914,7 @@ "fields": { "package": 10426, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10435 } }, { @@ -38571,7 +35923,7 @@ "fields": { "package": 10394, "vulnerability": 315, - "is_vulnerable": true + "patched_package": null } }, { @@ -38580,7 +35932,7 @@ "fields": { "package": 10382, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -38589,7 +35941,7 @@ "fields": { "package": 10431, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -38598,7 +35950,7 @@ "fields": { "package": 10400, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -38607,7 +35959,7 @@ "fields": { "package": 10405, "vulnerability": 370, - "is_vulnerable": true + "patched_package": null } }, { @@ -38616,7 +35968,7 @@ "fields": { "package": 10444, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -38625,7 +35977,7 @@ "fields": { "package": 10458, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -38634,7 +35986,7 @@ "fields": { "package": 10392, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -38643,7 +35995,7 @@ "fields": { "package": 10430, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -38652,7 +36004,7 @@ "fields": { "package": 10398, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -38661,7 +36013,7 @@ "fields": { "package": 10486, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -38670,7 +36022,7 @@ "fields": { "package": 10451, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10495 } }, { @@ -38679,7 +36031,7 @@ "fields": { "package": 10478, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -38688,7 +36040,7 @@ "fields": { "package": 10426, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -38697,7 +36049,7 @@ "fields": { "package": 10432, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -38706,7 +36058,7 @@ "fields": { "package": 10435, "vulnerability": 392, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -38715,7 +36067,7 @@ "fields": { "package": 10488, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -38724,7 +36076,7 @@ "fields": { "package": 10439, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10388 } }, { @@ -38733,7 +36085,7 @@ "fields": { "package": 10454, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -38742,7 +36094,7 @@ "fields": { "package": 10466, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -38751,7 +36103,7 @@ "fields": { "package": 10481, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -38760,7 +36112,7 @@ "fields": { "package": 10388, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -38769,7 +36121,7 @@ "fields": { "package": 10442, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -38778,16 +36130,7 @@ "fields": { "package": 10406, "vulnerability": 312, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6912, - "fields": { - "package": 10445, - "vulnerability": 370, - "is_vulnerable": false + "patched_package": 10408 } }, { @@ -38796,7 +36139,7 @@ "fields": { "package": 10462, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -38805,7 +36148,7 @@ "fields": { "package": 10459, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -38814,7 +36157,7 @@ "fields": { "package": 10452, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -38823,7 +36166,7 @@ "fields": { "package": 10429, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -38832,7 +36175,7 @@ "fields": { "package": 10428, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -38841,7 +36184,7 @@ "fields": { "package": 10475, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -38850,7 +36193,7 @@ "fields": { "package": 10442, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -38859,7 +36202,7 @@ "fields": { "package": 10491, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -38868,7 +36211,7 @@ "fields": { "package": 10383, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -38877,7 +36220,7 @@ "fields": { "package": 10490, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -38886,7 +36229,7 @@ "fields": { "package": 10477, "vulnerability": 445, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -38895,7 +36238,7 @@ "fields": { "package": 10438, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -38904,7 +36247,7 @@ "fields": { "package": 10452, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -38913,16 +36256,7 @@ "fields": { "package": 10405, "vulnerability": 353, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6927, - "fields": { - "package": 10441, - "vulnerability": 461, - "is_vulnerable": false + "patched_package": null } }, { @@ -38931,7 +36265,7 @@ "fields": { "package": 10392, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -38940,7 +36274,7 @@ "fields": { "package": 10430, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -38949,7 +36283,7 @@ "fields": { "package": 10452, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -38958,7 +36292,7 @@ "fields": { "package": 10457, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -38967,7 +36301,7 @@ "fields": { "package": 10426, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -38976,7 +36310,7 @@ "fields": { "package": 10479, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -38985,7 +36319,7 @@ "fields": { "package": 10435, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -38994,7 +36328,7 @@ "fields": { "package": 10388, "vulnerability": 348, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -39003,7 +36337,7 @@ "fields": { "package": 10488, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -39012,7 +36346,7 @@ "fields": { "package": 10477, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -39021,7 +36355,7 @@ "fields": { "package": 10442, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -39030,7 +36364,7 @@ "fields": { "package": 10485, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -39039,7 +36373,7 @@ "fields": { "package": 10467, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -39048,7 +36382,7 @@ "fields": { "package": 10483, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -39057,7 +36391,7 @@ "fields": { "package": 10475, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -39066,7 +36400,7 @@ "fields": { "package": 10395, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -39075,7 +36409,7 @@ "fields": { "package": 10444, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -39084,16 +36418,7 @@ "fields": { "package": 10465, "vulnerability": 376, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6946, - "fields": { - "package": 10533, - "vulnerability": 415, - "is_vulnerable": false + "patched_package": 10496 } }, { @@ -39102,7 +36427,7 @@ "fields": { "package": 10429, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -39111,7 +36436,7 @@ "fields": { "package": 10478, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -39120,7 +36445,7 @@ "fields": { "package": 10443, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -39129,7 +36454,7 @@ "fields": { "package": 10457, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -39138,7 +36463,7 @@ "fields": { "package": 10458, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -39147,7 +36472,7 @@ "fields": { "package": 10491, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -39156,7 +36481,7 @@ "fields": { "package": 10383, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -39165,7 +36490,7 @@ "fields": { "package": 10458, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -39174,7 +36499,7 @@ "fields": { "package": 10390, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -39183,7 +36508,7 @@ "fields": { "package": 10427, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -39192,7 +36517,7 @@ "fields": { "package": 10481, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -39201,7 +36526,7 @@ "fields": { "package": 10439, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -39210,7 +36535,7 @@ "fields": { "package": 10452, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -39219,7 +36544,7 @@ "fields": { "package": 10405, "vulnerability": 336, - "is_vulnerable": true + "patched_package": null } }, { @@ -39228,16 +36553,7 @@ "fields": { "package": 10459, "vulnerability": 361, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6962, - "fields": { - "package": 10516, - "vulnerability": 410, - "is_vulnerable": false + "patched_package": 10501 } }, { @@ -39246,7 +36562,7 @@ "fields": { "package": 10393, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -39255,7 +36571,7 @@ "fields": { "package": 10468, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -39264,7 +36580,7 @@ "fields": { "package": 10467, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -39273,7 +36589,7 @@ "fields": { "package": 10426, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -39282,7 +36598,7 @@ "fields": { "package": 10401, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -39291,7 +36607,7 @@ "fields": { "package": 10408, "vulnerability": 298, - "is_vulnerable": true + "patched_package": 10417 } }, { @@ -39300,7 +36616,7 @@ "fields": { "package": 10492, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -39309,7 +36625,7 @@ "fields": { "package": 10429, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -39318,7 +36634,7 @@ "fields": { "package": 10435, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -39327,7 +36643,7 @@ "fields": { "package": 10388, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -39336,7 +36652,7 @@ "fields": { "package": 10442, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -39345,7 +36661,7 @@ "fields": { "package": 10516, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -39354,7 +36670,7 @@ "fields": { "package": 10448, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10457 } }, { @@ -39363,7 +36679,7 @@ "fields": { "package": 10491, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -39372,7 +36688,7 @@ "fields": { "package": 10456, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -39381,7 +36697,7 @@ "fields": { "package": 10398, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -39390,7 +36706,7 @@ "fields": { "package": 10465, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -39399,7 +36715,7 @@ "fields": { "package": 10443, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -39408,7 +36724,7 @@ "fields": { "package": 10485, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -39417,16 +36733,7 @@ "fields": { "package": 10494, "vulnerability": 381, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6983, - "fields": { - "package": 10448, - "vulnerability": 439, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -39435,7 +36742,7 @@ "fields": { "package": 10390, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -39444,16 +36751,7 @@ "fields": { "package": 10439, "vulnerability": 338, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6986, - "fields": { - "package": 10484, - "vulnerability": 374, - "is_vulnerable": false + "patched_package": 10400 } }, { @@ -39462,7 +36760,7 @@ "fields": { "package": 10434, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -39471,7 +36769,7 @@ "fields": { "package": 10490, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -39480,7 +36778,7 @@ "fields": { "package": 10382, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -39489,16 +36787,7 @@ "fields": { "package": 10435, "vulnerability": 463, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 6991, - "fields": { - "package": 10396, - "vulnerability": 332, - "is_vulnerable": false + "patched_package": 10442 } }, { @@ -39507,7 +36796,7 @@ "fields": { "package": 10468, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -39516,7 +36805,7 @@ "fields": { "package": 10517, "vulnerability": 405, - "is_vulnerable": true + "patched_package": 10522 } }, { @@ -39525,7 +36814,7 @@ "fields": { "package": 10402, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -39534,7 +36823,7 @@ "fields": { "package": 10435, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -39543,7 +36832,7 @@ "fields": { "package": 10478, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -39552,7 +36841,7 @@ "fields": { "package": 10429, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -39561,7 +36850,7 @@ "fields": { "package": 10382, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -39570,7 +36859,7 @@ "fields": { "package": 10453, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -39579,7 +36868,7 @@ "fields": { "package": 10442, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -39588,16 +36877,7 @@ "fields": { "package": 10444, "vulnerability": 357, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7002, - "fields": { - "package": 10413, - "vulnerability": 300, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -39606,7 +36886,7 @@ "fields": { "package": 10491, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -39615,7 +36895,7 @@ "fields": { "package": 10432, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -39624,7 +36904,7 @@ "fields": { "package": 10459, "vulnerability": 429, - "is_vulnerable": true + "patched_package": 10468 } }, { @@ -39633,7 +36913,7 @@ "fields": { "package": 10469, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -39642,7 +36922,7 @@ "fields": { "package": 10449, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -39651,7 +36931,7 @@ "fields": { "package": 10494, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -39660,7 +36940,7 @@ "fields": { "package": 10525, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -39669,7 +36949,7 @@ "fields": { "package": 10398, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -39678,7 +36958,7 @@ "fields": { "package": 10489, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -39687,7 +36967,7 @@ "fields": { "package": 10406, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -39696,7 +36976,7 @@ "fields": { "package": 10481, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -39705,7 +36985,7 @@ "fields": { "package": 10468, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -39714,7 +36994,7 @@ "fields": { "package": 10494, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -39723,7 +37003,7 @@ "fields": { "package": 10440, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -39732,7 +37012,7 @@ "fields": { "package": 10393, "vulnerability": 314, - "is_vulnerable": true + "patched_package": 10381 } }, { @@ -39741,7 +37021,7 @@ "fields": { "package": 10428, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -39750,7 +37030,7 @@ "fields": { "package": 10395, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10392 } }, { @@ -39759,7 +37039,7 @@ "fields": { "package": 10437, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -39768,7 +37048,7 @@ "fields": { "package": 10442, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -39777,7 +37057,7 @@ "fields": { "package": 10473, "vulnerability": 423, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -39786,16 +37066,7 @@ "fields": { "package": 10382, "vulnerability": 301, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7024, - "fields": { - "package": 10464, - "vulnerability": 436, - "is_vulnerable": false + "patched_package": 10421 } }, { @@ -39804,7 +37075,7 @@ "fields": { "package": 10389, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -39813,7 +37084,7 @@ "fields": { "package": 10462, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -39822,7 +37093,7 @@ "fields": { "package": 10426, "vulnerability": 352, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -39831,7 +37102,7 @@ "fields": { "package": 10429, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -39840,7 +37111,7 @@ "fields": { "package": 10529, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -39849,7 +37120,7 @@ "fields": { "package": 10469, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -39858,7 +37129,7 @@ "fields": { "package": 10478, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -39867,7 +37138,7 @@ "fields": { "package": 10475, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -39876,7 +37147,7 @@ "fields": { "package": 10401, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -39885,7 +37156,7 @@ "fields": { "package": 10485, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -39894,7 +37165,7 @@ "fields": { "package": 10492, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -39903,7 +37174,7 @@ "fields": { "package": 10457, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -39912,7 +37183,7 @@ "fields": { "package": 10441, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -39921,7 +37192,7 @@ "fields": { "package": 10455, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -39930,7 +37201,7 @@ "fields": { "package": 10468, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -39939,7 +37210,7 @@ "fields": { "package": 10448, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -39948,7 +37219,7 @@ "fields": { "package": 10481, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -39957,7 +37228,7 @@ "fields": { "package": 10429, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -39966,7 +37237,7 @@ "fields": { "package": 10471, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -39975,7 +37246,7 @@ "fields": { "package": 10509, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -39984,7 +37255,7 @@ "fields": { "package": 10442, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -39993,7 +37264,7 @@ "fields": { "package": 10395, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -40002,7 +37273,7 @@ "fields": { "package": 10449, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -40011,16 +37282,7 @@ "fields": { "package": 10383, "vulnerability": 304, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7049, - "fields": { - "package": 10388, - "vulnerability": 367, - "is_vulnerable": false + "patched_package": 10402 } }, { @@ -40029,7 +37291,7 @@ "fields": { "package": 10457, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -40038,7 +37300,7 @@ "fields": { "package": 10493, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -40047,7 +37309,7 @@ "fields": { "package": 10391, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -40056,7 +37318,7 @@ "fields": { "package": 10445, "vulnerability": 325, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -40065,7 +37327,7 @@ "fields": { "package": 10458, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -40074,7 +37336,7 @@ "fields": { "package": 10482, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -40083,7 +37345,7 @@ "fields": { "package": 10485, "vulnerability": 416, - "is_vulnerable": true + "patched_package": 10479 } }, { @@ -40092,16 +37354,7 @@ "fields": { "package": 10405, "vulnerability": 328, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7058, - "fields": { - "package": 10489, - "vulnerability": 437, - "is_vulnerable": false + "patched_package": null } }, { @@ -40110,7 +37363,7 @@ "fields": { "package": 10506, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -40119,7 +37372,7 @@ "fields": { "package": 10473, "vulnerability": 447, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -40128,7 +37381,7 @@ "fields": { "package": 10481, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -40137,7 +37390,7 @@ "fields": { "package": 10480, "vulnerability": 445, - "is_vulnerable": true + "patched_package": null } }, { @@ -40146,7 +37399,7 @@ "fields": { "package": 10388, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -40155,7 +37408,7 @@ "fields": { "package": 10406, "vulnerability": 314, - "is_vulnerable": true + "patched_package": 10381 } }, { @@ -40164,7 +37417,7 @@ "fields": { "package": 10455, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -40173,7 +37426,7 @@ "fields": { "package": 10444, "vulnerability": 366, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -40182,7 +37435,7 @@ "fields": { "package": 10452, "vulnerability": 461, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -40191,7 +37444,7 @@ "fields": { "package": 10469, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -40200,7 +37453,7 @@ "fields": { "package": 10475, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -40209,7 +37462,7 @@ "fields": { "package": 10442, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -40218,7 +37471,7 @@ "fields": { "package": 10429, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -40227,7 +37480,7 @@ "fields": { "package": 10468, "vulnerability": 431, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -40236,7 +37489,7 @@ "fields": { "package": 10458, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -40245,7 +37498,7 @@ "fields": { "package": 10439, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -40254,7 +37507,7 @@ "fields": { "package": 10392, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -40263,7 +37516,7 @@ "fields": { "package": 10448, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -40272,7 +37525,7 @@ "fields": { "package": 10491, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -40281,7 +37534,7 @@ "fields": { "package": 10468, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -40290,7 +37543,7 @@ "fields": { "package": 10405, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -40299,7 +37552,7 @@ "fields": { "package": 10426, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -40308,7 +37561,7 @@ "fields": { "package": 10435, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -40317,7 +37570,7 @@ "fields": { "package": 10481, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -40326,7 +37579,7 @@ "fields": { "package": 10449, "vulnerability": 429, - "is_vulnerable": true + "patched_package": 10468 } }, { @@ -40335,7 +37588,7 @@ "fields": { "package": 10475, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -40344,7 +37597,7 @@ "fields": { "package": 10459, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -40353,7 +37606,7 @@ "fields": { "package": 10473, "vulnerability": 430, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -40362,16 +37615,7 @@ "fields": { "package": 10484, "vulnerability": 346, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7088, - "fields": { - "package": 10450, - "vulnerability": 391, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -40380,7 +37624,7 @@ "fields": { "package": 10522, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -40389,7 +37633,7 @@ "fields": { "package": 10515, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -40398,7 +37642,7 @@ "fields": { "package": 10439, "vulnerability": 457, - "is_vulnerable": true + "patched_package": null } }, { @@ -40407,7 +37651,7 @@ "fields": { "package": 10444, "vulnerability": 349, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -40416,7 +37660,7 @@ "fields": { "package": 10483, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -40425,7 +37669,7 @@ "fields": { "package": 10398, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -40434,7 +37678,7 @@ "fields": { "package": 10525, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -40443,16 +37687,7 @@ "fields": { "package": 10404, "vulnerability": 300, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7097, - "fields": { - "package": 10496, - "vulnerability": 363, - "is_vulnerable": false + "patched_package": 10422 } }, { @@ -40461,7 +37696,7 @@ "fields": { "package": 10458, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -40470,7 +37705,7 @@ "fields": { "package": 10451, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -40479,7 +37714,7 @@ "fields": { "package": 10430, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -40488,7 +37723,7 @@ "fields": { "package": 10427, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -40497,7 +37732,7 @@ "fields": { "package": 10452, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -40506,7 +37741,7 @@ "fields": { "package": 10508, "vulnerability": 408, - "is_vulnerable": true + "patched_package": 10520 } }, { @@ -40515,7 +37750,7 @@ "fields": { "package": 10388, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10397 } }, { @@ -40524,7 +37759,7 @@ "fields": { "package": 10515, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -40533,7 +37768,7 @@ "fields": { "package": 10487, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -40542,7 +37777,7 @@ "fields": { "package": 10468, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -40551,7 +37786,7 @@ "fields": { "package": 10391, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -40560,7 +37795,7 @@ "fields": { "package": 10475, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -40569,7 +37804,7 @@ "fields": { "package": 10428, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -40578,7 +37813,7 @@ "fields": { "package": 10482, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -40587,16 +37822,7 @@ "fields": { "package": 10435, "vulnerability": 360, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7113, - "fields": { - "package": 10404, - "vulnerability": 303, - "is_vulnerable": false + "patched_package": 10442 } }, { @@ -40605,7 +37831,7 @@ "fields": { "package": 10463, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -40614,7 +37840,7 @@ "fields": { "package": 10383, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -40623,7 +37849,7 @@ "fields": { "package": 10431, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -40632,7 +37858,7 @@ "fields": { "package": 10515, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10522 } }, { @@ -40641,7 +37867,7 @@ "fields": { "package": 10444, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -40650,7 +37876,7 @@ "fields": { "package": 10458, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -40659,16 +37885,7 @@ "fields": { "package": 10405, "vulnerability": 303, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7121, - "fields": { - "package": 10496, - "vulnerability": 346, - "is_vulnerable": false + "patched_package": 10404 } }, { @@ -40677,16 +37894,7 @@ "fields": { "package": 10461, "vulnerability": 346, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7123, - "fields": { - "package": 10497, - "vulnerability": 366, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -40695,7 +37903,7 @@ "fields": { "package": 10458, "vulnerability": 448, - "is_vulnerable": true + "patched_package": 10466 } }, { @@ -40704,7 +37912,7 @@ "fields": { "package": 10451, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10499 } }, { @@ -40713,7 +37921,7 @@ "fields": { "package": 10439, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -40722,7 +37930,7 @@ "fields": { "package": 10456, "vulnerability": 451, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -40731,7 +37939,7 @@ "fields": { "package": 10483, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -40740,7 +37948,7 @@ "fields": { "package": 10448, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -40749,7 +37957,7 @@ "fields": { "package": 10381, "vulnerability": 300, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -40758,7 +37966,7 @@ "fields": { "package": 10435, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -40767,7 +37975,7 @@ "fields": { "package": 10488, "vulnerability": 470, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -40776,7 +37984,7 @@ "fields": { "package": 10472, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -40785,7 +37993,7 @@ "fields": { "package": 10487, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -40794,7 +38002,7 @@ "fields": { "package": 10395, "vulnerability": 328, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -40803,7 +38011,7 @@ "fields": { "package": 10528, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -40812,7 +38020,7 @@ "fields": { "package": 10489, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -40821,7 +38029,7 @@ "fields": { "package": 10401, "vulnerability": 306, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -40830,7 +38038,7 @@ "fields": { "package": 10464, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -40839,7 +38047,7 @@ "fields": { "package": 10491, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -40848,7 +38056,7 @@ "fields": { "package": 10383, "vulnerability": 338, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -40857,16 +38065,7 @@ "fields": { "package": 10445, "vulnerability": 359, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7143, - "fields": { - "package": 10403, - "vulnerability": 309, - "is_vulnerable": false + "patched_package": 10437 } }, { @@ -40875,7 +38074,7 @@ "fields": { "package": 10440, "vulnerability": 344, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -40884,7 +38083,7 @@ "fields": { "package": 10452, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -40893,7 +38092,7 @@ "fields": { "package": 10459, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -40902,7 +38101,7 @@ "fields": { "package": 10473, "vulnerability": 439, - "is_vulnerable": true + "patched_package": 10448 } }, { @@ -40911,7 +38110,7 @@ "fields": { "package": 10465, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -40920,7 +38119,7 @@ "fields": { "package": 10480, "vulnerability": 437, - "is_vulnerable": true + "patched_package": null } }, { @@ -40929,7 +38128,7 @@ "fields": { "package": 10399, "vulnerability": 308, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -40938,16 +38137,7 @@ "fields": { "package": 10440, "vulnerability": 464, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7152, - "fields": { - "package": 10386, - "vulnerability": 304, - "is_vulnerable": false + "patched_package": 10442 } }, { @@ -40956,7 +38146,7 @@ "fields": { "package": 10404, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -40965,7 +38155,7 @@ "fields": { "package": 10388, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10395 } }, { @@ -40974,7 +38164,7 @@ "fields": { "package": 10435, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -40983,7 +38173,7 @@ "fields": { "package": 10441, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10432 } }, { @@ -40992,7 +38182,7 @@ "fields": { "package": 10483, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -41001,7 +38191,7 @@ "fields": { "package": 10448, "vulnerability": 360, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -41010,7 +38200,7 @@ "fields": { "package": 10429, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -41019,7 +38209,7 @@ "fields": { "package": 10382, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -41028,7 +38218,7 @@ "fields": { "package": 10488, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -41037,7 +38227,7 @@ "fields": { "package": 10438, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -41046,7 +38236,7 @@ "fields": { "package": 10437, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -41055,7 +38245,7 @@ "fields": { "package": 10456, "vulnerability": 434, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -41064,7 +38254,7 @@ "fields": { "package": 10444, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -41073,7 +38263,7 @@ "fields": { "package": 10487, "vulnerability": 433, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -41082,7 +38272,7 @@ "fields": { "package": 10395, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -41091,7 +38281,7 @@ "fields": { "package": 10481, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -41100,7 +38290,7 @@ "fields": { "package": 10460, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -41109,7 +38299,7 @@ "fields": { "package": 10449, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -41118,7 +38308,7 @@ "fields": { "package": 10464, "vulnerability": 450, - "is_vulnerable": true + "patched_package": 10467 } }, { @@ -41127,7 +38317,7 @@ "fields": { "package": 10505, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -41136,7 +38326,7 @@ "fields": { "package": 10466, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -41145,7 +38335,7 @@ "fields": { "package": 10390, "vulnerability": 319, - "is_vulnerable": true + "patched_package": 10384 } }, { @@ -41154,7 +38344,7 @@ "fields": { "package": 10512, "vulnerability": 419, - "is_vulnerable": true + "patched_package": 10529 } }, { @@ -41163,16 +38353,7 @@ "fields": { "package": 10434, "vulnerability": 349, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7177, - "fields": { - "package": 10455, - "vulnerability": 385, - "is_vulnerable": false + "patched_package": 10446 } }, { @@ -41181,7 +38362,7 @@ "fields": { "package": 10421, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -41190,7 +38371,7 @@ "fields": { "package": 10388, "vulnerability": 322, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -41199,7 +38380,7 @@ "fields": { "package": 10426, "vulnerability": 395, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -41208,7 +38389,7 @@ "fields": { "package": 10515, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -41217,7 +38398,7 @@ "fields": { "package": 10448, "vulnerability": 465, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -41226,7 +38407,7 @@ "fields": { "package": 10441, "vulnerability": 467, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -41235,7 +38416,7 @@ "fields": { "package": 10408, "vulnerability": 307, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -41244,7 +38425,7 @@ "fields": { "package": 10442, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -41253,7 +38434,7 @@ "fields": { "package": 10484, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -41262,7 +38443,7 @@ "fields": { "package": 10456, "vulnerability": 417, - "is_vulnerable": true + "patched_package": 10479 } }, { @@ -41271,7 +38452,7 @@ "fields": { "package": 10451, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -41280,7 +38461,7 @@ "fields": { "package": 10505, "vulnerability": 406, - "is_vulnerable": true + "patched_package": 10525 } }, { @@ -41289,7 +38470,7 @@ "fields": { "package": 10438, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -41298,7 +38479,7 @@ "fields": { "package": 10381, "vulnerability": 309, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -41307,7 +38488,7 @@ "fields": { "package": 10472, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -41316,7 +38497,7 @@ "fields": { "package": 10464, "vulnerability": 433, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -41325,7 +38506,7 @@ "fields": { "package": 10435, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -41334,7 +38515,7 @@ "fields": { "package": 10505, "vulnerability": 404, - "is_vulnerable": true + "patched_package": 10521 } }, { @@ -41343,7 +38524,7 @@ "fields": { "package": 10473, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -41352,7 +38533,7 @@ "fields": { "package": 10434, "vulnerability": 332, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -41361,7 +38542,7 @@ "fields": { "package": 10448, "vulnerability": 384, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -41370,7 +38551,7 @@ "fields": { "package": 10490, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -41379,7 +38560,7 @@ "fields": { "package": 10395, "vulnerability": 303, - "is_vulnerable": true + "patched_package": 10387 } }, { @@ -41388,7 +38569,7 @@ "fields": { "package": 10426, "vulnerability": 378, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -41397,16 +38578,7 @@ "fields": { "package": 10451, "vulnerability": 346, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7203, - "fields": { - "package": 10500, - "vulnerability": 353, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -41415,7 +38587,7 @@ "fields": { "package": 10408, "vulnerability": 311, - "is_vulnerable": true + "patched_package": 10418 } }, { @@ -41424,7 +38596,7 @@ "fields": { "package": 10429, "vulnerability": 340, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -41433,7 +38605,7 @@ "fields": { "package": 10398, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -41442,7 +38614,7 @@ "fields": { "package": 10473, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -41451,7 +38623,7 @@ "fields": { "package": 10459, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -41460,7 +38632,7 @@ "fields": { "package": 10451, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -41469,7 +38641,7 @@ "fields": { "package": 10397, "vulnerability": 341, - "is_vulnerable": true + "patched_package": 10398 } }, { @@ -41478,7 +38650,7 @@ "fields": { "package": 10479, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -41487,7 +38659,7 @@ "fields": { "package": 10494, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -41496,16 +38668,7 @@ "fields": { "package": 10383, "vulnerability": 352, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7214, - "fields": { - "package": 10529, - "vulnerability": 419, - "is_vulnerable": false + "patched_package": 10400 } }, { @@ -41514,7 +38677,7 @@ "fields": { "package": 10439, "vulnerability": 395, - "is_vulnerable": true + "patched_package": null } }, { @@ -41523,7 +38686,7 @@ "fields": { "package": 10481, "vulnerability": 386, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -41532,7 +38695,7 @@ "fields": { "package": 10528, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -41541,7 +38704,7 @@ "fields": { "package": 10435, "vulnerability": 359, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -41550,7 +38713,7 @@ "fields": { "package": 10428, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -41559,7 +38722,7 @@ "fields": { "package": 10442, "vulnerability": 389, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -41568,7 +38731,7 @@ "fields": { "package": 10395, "vulnerability": 362, - "is_vulnerable": true + "patched_package": 10382 } }, { @@ -41577,7 +38740,7 @@ "fields": { "package": 10449, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -41586,7 +38749,7 @@ "fields": { "package": 10383, "vulnerability": 330, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -41595,7 +38758,7 @@ "fields": { "package": 10443, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -41604,7 +38767,7 @@ "fields": { "package": 10497, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -41613,16 +38776,7 @@ "fields": { "package": 10389, "vulnerability": 308, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7227, - "fields": { - "package": 10392, - "vulnerability": 353, - "is_vulnerable": false + "patched_package": 10402 } }, { @@ -41631,7 +38785,7 @@ "fields": { "package": 10455, "vulnerability": 365, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -41640,7 +38794,7 @@ "fields": { "package": 10398, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -41649,16 +38803,7 @@ "fields": { "package": 10464, "vulnerability": 381, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7231, - "fields": { - "package": 10455, - "vulnerability": 394, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -41667,7 +38812,7 @@ "fields": { "package": 10511, "vulnerability": 408, - "is_vulnerable": true + "patched_package": null } }, { @@ -41676,7 +38821,7 @@ "fields": { "package": 10489, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -41685,7 +38830,7 @@ "fields": { "package": 10467, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -41694,16 +38839,7 @@ "fields": { "package": 10431, "vulnerability": 362, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7236, - "fields": { - "package": 10454, - "vulnerability": 470, - "is_vulnerable": false + "patched_package": 10432 } }, { @@ -41712,7 +38848,7 @@ "fields": { "package": 10407, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -41721,7 +38857,7 @@ "fields": { "package": 10428, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -41730,7 +38866,7 @@ "fields": { "package": 10427, "vulnerability": 326, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -41739,16 +38875,7 @@ "fields": { "package": 10385, "vulnerability": 311, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7241, - "fields": { - "package": 10442, - "vulnerability": 360, - "is_vulnerable": false + "patched_package": 10407 } }, { @@ -41757,7 +38884,7 @@ "fields": { "package": 10486, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -41766,7 +38893,7 @@ "fields": { "package": 10394, "vulnerability": 327, - "is_vulnerable": true + "patched_package": null } }, { @@ -41775,7 +38902,7 @@ "fields": { "package": 10450, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -41784,7 +38911,7 @@ "fields": { "package": 10437, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -41793,7 +38920,7 @@ "fields": { "package": 10522, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -41802,7 +38929,7 @@ "fields": { "package": 10475, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -41811,7 +38938,7 @@ "fields": { "package": 10440, "vulnerability": 398, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -41820,7 +38947,7 @@ "fields": { "package": 10439, "vulnerability": 378, - "is_vulnerable": true + "patched_package": null } }, { @@ -41829,7 +38956,7 @@ "fields": { "package": 10530, "vulnerability": 414, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -41838,7 +38965,7 @@ "fields": { "package": 10489, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -41847,7 +38974,7 @@ "fields": { "package": 10463, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -41856,7 +38983,7 @@ "fields": { "package": 10456, "vulnerability": 468, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -41865,7 +38992,7 @@ "fields": { "package": 10471, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10502 } }, { @@ -41874,16 +39001,7 @@ "fields": { "package": 10411, "vulnerability": 297, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7256, - "fields": { - "package": 10402, - "vulnerability": 308, - "is_vulnerable": false + "patched_package": 10414 } }, { @@ -41892,7 +39010,7 @@ "fields": { "package": 10484, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -41901,7 +39019,7 @@ "fields": { "package": 10491, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -41910,7 +39028,7 @@ "fields": { "package": 10451, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10490 } }, { @@ -41919,7 +39037,7 @@ "fields": { "package": 10504, "vulnerability": 393, - "is_vulnerable": true + "patched_package": 10507 } }, { @@ -41928,7 +39046,7 @@ "fields": { "package": 10505, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -41937,7 +39055,7 @@ "fields": { "package": 10473, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -41946,7 +39064,7 @@ "fields": { "package": 10464, "vulnerability": 364, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -41955,7 +39073,7 @@ "fields": { "package": 10513, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -41964,7 +39082,7 @@ "fields": { "package": 10479, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -41973,16 +39091,7 @@ "fields": { "package": 10426, "vulnerability": 387, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7267, - "fields": { - "package": 10482, - "vulnerability": 437, - "is_vulnerable": false + "patched_package": 10438 } }, { @@ -41991,7 +39100,7 @@ "fields": { "package": 10474, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -42000,7 +39109,7 @@ "fields": { "package": 10441, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -42009,7 +39118,7 @@ "fields": { "package": 10487, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -42018,16 +39127,7 @@ "fields": { "package": 10428, "vulnerability": 329, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7272, - "fields": { - "package": 10431, - "vulnerability": 374, - "is_vulnerable": false + "patched_package": 10447 } }, { @@ -42036,7 +39136,7 @@ "fields": { "package": 10466, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -42045,7 +39145,7 @@ "fields": { "package": 10480, "vulnerability": 454, - "is_vulnerable": true + "patched_package": null } }, { @@ -42054,7 +39154,7 @@ "fields": { "package": 10487, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -42063,7 +39163,7 @@ "fields": { "package": 10441, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -42072,7 +39172,7 @@ "fields": { "package": 10451, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -42081,7 +39181,7 @@ "fields": { "package": 10405, "vulnerability": 346, - "is_vulnerable": true + "patched_package": null } }, { @@ -42090,7 +39190,7 @@ "fields": { "package": 10480, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -42099,7 +39199,7 @@ "fields": { "package": 10420, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -42108,7 +39208,7 @@ "fields": { "package": 10473, "vulnerability": 441, - "is_vulnerable": true + "patched_package": 10493 } }, { @@ -42117,7 +39217,7 @@ "fields": { "package": 10514, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -42126,7 +39226,7 @@ "fields": { "package": 10467, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -42135,7 +39235,7 @@ "fields": { "package": 10399, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10404 } }, { @@ -42144,16 +39244,7 @@ "fields": { "package": 10440, "vulnerability": 466, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7286, - "fields": { - "package": 10423, - "vulnerability": 297, - "is_vulnerable": false + "patched_package": 10442 } }, { @@ -42162,7 +39253,7 @@ "fields": { "package": 10388, "vulnerability": 297, - "is_vulnerable": true + "patched_package": 10423 } }, { @@ -42171,7 +39262,7 @@ "fields": { "package": 10463, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -42180,7 +39271,7 @@ "fields": { "package": 10397, "vulnerability": 313, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -42189,7 +39280,7 @@ "fields": { "package": 10449, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -42198,7 +39289,7 @@ "fields": { "package": 10488, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -42207,16 +39298,7 @@ "fields": { "package": 10441, "vulnerability": 364, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7293, - "fields": { - "package": 10410, - "vulnerability": 307, - "is_vulnerable": false + "patched_package": 10442 } }, { @@ -42225,7 +39307,7 @@ "fields": { "package": 10456, "vulnerability": 436, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -42234,7 +39316,7 @@ "fields": { "package": 10484, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -42243,7 +39325,7 @@ "fields": { "package": 10481, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10488 } }, { @@ -42252,7 +39334,7 @@ "fields": { "package": 10487, "vulnerability": 435, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -42261,7 +39343,7 @@ "fields": { "package": 10451, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -42270,7 +39352,7 @@ "fields": { "package": 10464, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -42279,7 +39361,7 @@ "fields": { "package": 10518, "vulnerability": 413, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -42288,7 +39370,7 @@ "fields": { "package": 10486, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -42297,7 +39379,7 @@ "fields": { "package": 10405, "vulnerability": 329, - "is_vulnerable": true + "patched_package": null } }, { @@ -42306,7 +39388,7 @@ "fields": { "package": 10464, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -42315,7 +39397,7 @@ "fields": { "package": 10439, "vulnerability": 387, - "is_vulnerable": true + "patched_package": null } }, { @@ -42324,7 +39406,7 @@ "fields": { "package": 10480, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -42333,7 +39415,7 @@ "fields": { "package": 10433, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -42342,7 +39424,7 @@ "fields": { "package": 10487, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -42351,7 +39433,7 @@ "fields": { "package": 10421, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -42360,7 +39442,7 @@ "fields": { "package": 10454, "vulnerability": 381, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -42369,7 +39451,7 @@ "fields": { "package": 10388, "vulnerability": 324, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -42378,7 +39460,7 @@ "fields": { "package": 10441, "vulnerability": 469, - "is_vulnerable": true + "patched_package": 10430 } }, { @@ -42387,7 +39469,7 @@ "fields": { "package": 10395, "vulnerability": 354, - "is_vulnerable": true + "patched_package": 10392 } }, { @@ -42396,7 +39478,7 @@ "fields": { "package": 10399, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -42405,7 +39487,7 @@ "fields": { "package": 10479, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -42414,7 +39496,7 @@ "fields": { "package": 10493, "vulnerability": 454, - "is_vulnerable": true + "patched_package": 10457 } }, { @@ -42423,7 +39505,7 @@ "fields": { "package": 10443, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -42432,7 +39514,7 @@ "fields": { "package": 10457, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -42441,7 +39523,7 @@ "fields": { "package": 10463, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -42450,7 +39532,7 @@ "fields": { "package": 10478, "vulnerability": 425, - "is_vulnerable": true + "patched_package": 10464 } }, { @@ -42459,7 +39541,7 @@ "fields": { "package": 10397, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -42468,7 +39550,7 @@ "fields": { "package": 10489, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -42477,7 +39559,7 @@ "fields": { "package": 10488, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -42486,7 +39568,7 @@ "fields": { "package": 10461, "vulnerability": 455, - "is_vulnerable": true + "patched_package": 10472 } }, { @@ -42495,7 +39577,7 @@ "fields": { "package": 10440, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -42504,7 +39586,7 @@ "fields": { "package": 10427, "vulnerability": 318, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -42513,7 +39595,7 @@ "fields": { "package": 10512, "vulnerability": 418, - "is_vulnerable": true + "patched_package": 10527 } }, { @@ -42522,7 +39604,7 @@ "fields": { "package": 10480, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -42531,7 +39613,7 @@ "fields": { "package": 10430, "vulnerability": 398, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -42540,7 +39622,7 @@ "fields": { "package": 10479, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -42549,16 +39631,7 @@ "fields": { "package": 10486, "vulnerability": 441, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7331, - "fields": { - "package": 10455, - "vulnerability": 384, - "is_vulnerable": false + "patched_package": 10493 } }, { @@ -42567,7 +39640,7 @@ "fields": { "package": 10405, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10408 } }, { @@ -42576,7 +39649,7 @@ "fields": { "package": 10480, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10444 } }, { @@ -42585,7 +39658,7 @@ "fields": { "package": 10461, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -42594,7 +39667,7 @@ "fields": { "package": 10474, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -42603,7 +39676,7 @@ "fields": { "package": 10427, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -42612,7 +39685,7 @@ "fields": { "package": 10481, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -42621,7 +39694,7 @@ "fields": { "package": 10441, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -42630,7 +39703,7 @@ "fields": { "package": 10463, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10483 } }, { @@ -42639,7 +39712,7 @@ "fields": { "package": 10490, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -42648,7 +39721,7 @@ "fields": { "package": 10382, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -42657,7 +39730,7 @@ "fields": { "package": 10489, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10498 } }, { @@ -42666,7 +39739,7 @@ "fields": { "package": 10503, "vulnerability": 409, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -42675,7 +39748,7 @@ "fields": { "package": 10462, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -42684,7 +39757,7 @@ "fields": { "package": 10444, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -42693,7 +39766,7 @@ "fields": { "package": 10487, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -42702,7 +39775,7 @@ "fields": { "package": 10494, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -42711,7 +39784,7 @@ "fields": { "package": 10457, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -42720,7 +39793,7 @@ "fields": { "package": 10464, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -42729,7 +39802,7 @@ "fields": { "package": 10513, "vulnerability": 401, - "is_vulnerable": true + "patched_package": 10514 } }, { @@ -42738,7 +39811,7 @@ "fields": { "package": 10398, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -42747,7 +39820,7 @@ "fields": { "package": 10456, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -42756,7 +39829,7 @@ "fields": { "package": 10478, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -42765,7 +39838,7 @@ "fields": { "package": 10477, "vulnerability": 452, - "is_vulnerable": true + "patched_package": 10461 } }, { @@ -42774,7 +39847,7 @@ "fields": { "package": 10431, "vulnerability": 337, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -42783,7 +39856,7 @@ "fields": { "package": 10441, "vulnerability": 373, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -42792,7 +39865,7 @@ "fields": { "package": 10440, "vulnerability": 353, - "is_vulnerable": true + "patched_package": 10427 } }, { @@ -42801,16 +39874,7 @@ "fields": { "package": 10487, "vulnerability": 380, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7359, - "fields": { - "package": 10476, - "vulnerability": 461, - "is_vulnerable": false + "patched_package": 10450 } }, { @@ -42819,7 +39883,7 @@ "fields": { "package": 10446, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -42828,7 +39892,7 @@ "fields": { "package": 10466, "vulnerability": 394, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -42837,7 +39901,7 @@ "fields": { "package": 10480, "vulnerability": 446, - "is_vulnerable": true + "patched_package": null } }, { @@ -42846,7 +39910,7 @@ "fields": { "package": 10479, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -42855,7 +39919,7 @@ "fields": { "package": 10487, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -42864,7 +39928,7 @@ "fields": { "package": 10486, "vulnerability": 424, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -42873,7 +39937,7 @@ "fields": { "package": 10406, "vulnerability": 315, - "is_vulnerable": true + "patched_package": 10384 } }, { @@ -42882,7 +39946,7 @@ "fields": { "package": 10443, "vulnerability": 347, - "is_vulnerable": true + "patched_package": 10434 } }, { @@ -42891,7 +39955,7 @@ "fields": { "package": 10453, "vulnerability": 449, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -42900,7 +39964,7 @@ "fields": { "package": 10470, "vulnerability": 375, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -42909,7 +39973,7 @@ "fields": { "package": 10442, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -42918,7 +39982,7 @@ "fields": { "package": 10410, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10413 } }, { @@ -42927,7 +39991,7 @@ "fields": { "package": 10456, "vulnerability": 443, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -42936,7 +40000,7 @@ "fields": { "package": 10457, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -42945,7 +40009,7 @@ "fields": { "package": 10462, "vulnerability": 421, - "is_vulnerable": true + "patched_package": 10452 } }, { @@ -42954,7 +40018,7 @@ "fields": { "package": 10382, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -42963,7 +40027,7 @@ "fields": { "package": 10457, "vulnerability": 385, - "is_vulnerable": true + "patched_package": 10460 } }, { @@ -42972,7 +40036,7 @@ "fields": { "package": 10389, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -42981,7 +40045,7 @@ "fields": { "package": 10426, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -42990,7 +40054,7 @@ "fields": { "package": 10511, "vulnerability": 410, - "is_vulnerable": true + "patched_package": null } }, { @@ -42999,7 +40063,7 @@ "fields": { "package": 10444, "vulnerability": 333, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -43008,7 +40072,7 @@ "fields": { "package": 10504, "vulnerability": 412, - "is_vulnerable": true + "patched_package": 10519 } }, { @@ -43017,7 +40081,7 @@ "fields": { "package": 10430, "vulnerability": 466, - "is_vulnerable": true + "patched_package": 10442 } }, { @@ -43026,7 +40090,7 @@ "fields": { "package": 10458, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -43035,7 +40099,7 @@ "fields": { "package": 10466, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -43044,7 +40108,7 @@ "fields": { "package": 10478, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -43053,7 +40117,7 @@ "fields": { "package": 10493, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10454 } }, { @@ -43062,7 +40126,7 @@ "fields": { "package": 10400, "vulnerability": 321, - "is_vulnerable": true + "patched_package": 10389 } }, { @@ -43071,7 +40135,7 @@ "fields": { "package": 10464, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10494 } }, { @@ -43080,7 +40144,7 @@ "fields": { "package": 10474, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -43089,7 +40153,7 @@ "fields": { "package": 10441, "vulnerability": 356, - "is_vulnerable": true + "patched_package": 10437 } }, { @@ -43098,7 +40162,7 @@ "fields": { "package": 10440, "vulnerability": 336, - "is_vulnerable": true + "patched_package": 10436 } }, { @@ -43107,7 +40171,7 @@ "fields": { "package": 10494, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -43116,7 +40180,7 @@ "fields": { "package": 10487, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -43125,7 +40189,7 @@ "fields": { "package": 10454, "vulnerability": 388, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -43134,7 +40198,7 @@ "fields": { "package": 10395, "vulnerability": 329, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -43143,7 +40207,7 @@ "fields": { "package": 10487, "vulnerability": 427, - "is_vulnerable": true + "patched_package": 10486 } }, { @@ -43152,7 +40216,7 @@ "fields": { "package": 10489, "vulnerability": 445, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -43161,7 +40225,7 @@ "fields": { "package": 10464, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10450 } }, { @@ -43170,7 +40234,7 @@ "fields": { "package": 10429, "vulnerability": 387, - "is_vulnerable": true + "patched_package": 10438 } }, { @@ -43179,7 +40243,7 @@ "fields": { "package": 10470, "vulnerability": 358, - "is_vulnerable": true + "patched_package": 10463 } }, { @@ -43188,7 +40252,7 @@ "fields": { "package": 10404, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -43197,7 +40261,7 @@ "fields": { "package": 10442, "vulnerability": 374, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -43206,7 +40270,7 @@ "fields": { "package": 10456, "vulnerability": 426, - "is_vulnerable": true + "patched_package": 10478 } }, { @@ -43215,7 +40279,7 @@ "fields": { "package": 10464, "vulnerability": 444, - "is_vulnerable": true + "patched_package": 10458 } }, { @@ -43224,7 +40288,7 @@ "fields": { "package": 10469, "vulnerability": 402, - "is_vulnerable": true + "patched_package": 10455 } }, { @@ -43233,7 +40297,7 @@ "fields": { "package": 10389, "vulnerability": 293, - "is_vulnerable": true + "patched_package": 10407 } }, { @@ -43242,7 +40306,7 @@ "fields": { "package": 10491, "vulnerability": 343, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -43251,7 +40315,7 @@ "fields": { "package": 10433, "vulnerability": 323, - "is_vulnerable": true + "patched_package": 10447 } }, { @@ -43260,25 +40324,7 @@ "fields": { "package": 10489, "vulnerability": 366, - "is_vulnerable": true - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7410, - "fields": { - "package": 10469, - "vulnerability": 463, - "is_vulnerable": false - } - }, - { - "model": "vulnerabilities.packagerelatedvulnerability", - "pk": 7411, - "fields": { - "package": 10422, - "vulnerability": 296, - "is_vulnerable": false + "patched_package": 10497 } }, { @@ -43287,7 +40333,7 @@ "fields": { "package": 10387, "vulnerability": 296, - "is_vulnerable": true + "patched_package": 10421 } }, { @@ -43296,7 +40342,7 @@ "fields": { "package": 10495, "vulnerability": 464, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -43305,7 +40351,7 @@ "fields": { "package": 10487, "vulnerability": 390, - "is_vulnerable": true + "patched_package": 10471 } }, { @@ -43314,7 +40360,7 @@ "fields": { "package": 10407, "vulnerability": 302, - "is_vulnerable": true + "patched_package": 10419 } }, { @@ -43323,7 +40369,7 @@ "fields": { "package": 10477, "vulnerability": 376, - "is_vulnerable": true + "patched_package": 10497 } }, { @@ -43332,7 +40378,7 @@ "fields": { "package": 10430, "vulnerability": 370, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -43341,7 +40387,7 @@ "fields": { "package": 10441, "vulnerability": 339, - "is_vulnerable": true + "patched_package": 10433 } }, { @@ -43350,7 +40396,7 @@ "fields": { "package": 10455, "vulnerability": 391, - "is_vulnerable": true + "patched_package": 10484 } }, { @@ -43359,7 +40405,7 @@ "fields": { "package": 10470, "vulnerability": 463, - "is_vulnerable": true + "patched_package": 10469 } }, { @@ -43368,7 +40414,7 @@ "fields": { "package": 10395, "vulnerability": 312, - "is_vulnerable": true + "patched_package": 10403 } }, { @@ -43377,7 +40423,7 @@ "fields": { "package": 10402, "vulnerability": 310, - "is_vulnerable": true + "patched_package": 10385 } }, { @@ -43386,7 +40432,7 @@ "fields": { "package": 10439, "vulnerability": 342, - "is_vulnerable": true + "patched_package": 10400 } }, { @@ -43395,7 +40441,7 @@ "fields": { "package": 10493, "vulnerability": 346, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -43404,7 +40450,7 @@ "fields": { "package": 10451, "vulnerability": 355, - "is_vulnerable": true + "patched_package": 10500 } }, { @@ -43413,7 +40459,7 @@ "fields": { "package": 10448, "vulnerability": 457, - "is_vulnerable": true + "patched_package": 10476 } }, { @@ -43422,7 +40468,7 @@ "fields": { "package": 10464, "vulnerability": 363, - "is_vulnerable": true + "patched_package": 10496 } }, { @@ -43431,7 +40477,7 @@ "fields": { "package": 10471, "vulnerability": 361, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -43440,7 +40486,7 @@ "fields": { "package": 10405, "vulnerability": 304, - "is_vulnerable": true + "patched_package": 10386 } }, { @@ -43449,7 +40495,7 @@ "fields": { "package": 10480, "vulnerability": 377, - "is_vulnerable": true + "patched_package": 10445 } }, { @@ -43458,7 +40504,7 @@ "fields": { "package": 10479, "vulnerability": 357, - "is_vulnerable": true + "patched_package": 10501 } }, { @@ -43467,7 +40513,7 @@ "fields": { "package": 10452, "vulnerability": 438, - "is_vulnerable": true + "patched_package": 10453 } }, { @@ -43476,7 +40522,7 @@ "fields": { "package": 10453, "vulnerability": 458, - "is_vulnerable": true + "patched_package": 10492 } }, { @@ -43485,7 +40531,7 @@ "fields": { "package": 10434, "vulnerability": 350, - "is_vulnerable": true + "patched_package": 10446 } }, { @@ -43494,7 +40540,7 @@ "fields": { "package": 10477, "vulnerability": 459, - "is_vulnerable": true + "patched_package": 10481 } }, { @@ -43503,7 +40549,7 @@ "fields": { "package": 10441, "vulnerability": 380, - "is_vulnerable": true + "patched_package": 10431 } }, { @@ -43512,7 +40558,7 @@ "fields": { "package": 10405, "vulnerability": 367, - "is_vulnerable": true + "patched_package": null } }, { @@ -43521,7 +40567,7 @@ "fields": { "package": 10400, "vulnerability": 331, - "is_vulnerable": true + "patched_package": 10396 } }, { @@ -43530,7 +40576,7 @@ "fields": { "package": 10381, "vulnerability": 301, - "is_vulnerable": true + "patched_package": 10422 } }, { @@ -43539,7 +40585,7 @@ "fields": { "package": 10388, "vulnerability": 299, - "is_vulnerable": true + "patched_package": 10425 } }, { @@ -43548,7 +40594,7 @@ "fields": { "package": 10528, "vulnerability": 422, - "is_vulnerable": true + "patched_package": 10531 } }, { @@ -43798,437 +40844,5 @@ ] } } - }, - { - "model": "auth.permission", - "pk": 1, - "fields": { - "name": "Can add log entry", - "content_type": 1, - "codename": "add_logentry" - } - }, - { - "model": "auth.permission", - "pk": 2, - "fields": { - "name": "Can change log entry", - "content_type": 1, - "codename": "change_logentry" - } - }, - { - "model": "auth.permission", - "pk": 3, - "fields": { - "name": "Can delete log entry", - "content_type": 1, - "codename": "delete_logentry" - } - }, - { - "model": "auth.permission", - "pk": 4, - "fields": { - "name": "Can view log entry", - "content_type": 1, - "codename": "view_logentry" - } - }, - { - "model": "auth.permission", - "pk": 5, - "fields": { - "name": "Can add permission", - "content_type": 2, - "codename": "add_permission" - } - }, - { - "model": "auth.permission", - "pk": 6, - "fields": { - "name": "Can change permission", - "content_type": 2, - "codename": "change_permission" - } - }, - { - "model": "auth.permission", - "pk": 7, - "fields": { - "name": "Can delete permission", - "content_type": 2, - "codename": "delete_permission" - } - }, - { - "model": "auth.permission", - "pk": 8, - "fields": { - "name": "Can view permission", - "content_type": 2, - "codename": "view_permission" - } - }, - { - "model": "auth.permission", - "pk": 9, - "fields": { - "name": "Can add group", - "content_type": 3, - "codename": "add_group" - } - }, - { - "model": "auth.permission", - "pk": 10, - "fields": { - "name": "Can change group", - "content_type": 3, - "codename": "change_group" - } - }, - { - "model": "auth.permission", - "pk": 11, - "fields": { - "name": "Can delete group", - "content_type": 3, - "codename": "delete_group" - } - }, - { - "model": "auth.permission", - "pk": 12, - "fields": { - "name": "Can view group", - "content_type": 3, - "codename": "view_group" - } - }, - { - "model": "auth.permission", - "pk": 13, - "fields": { - "name": "Can add user", - "content_type": 4, - "codename": "add_user" - } - }, - { - "model": "auth.permission", - "pk": 14, - "fields": { - "name": "Can change user", - "content_type": 4, - "codename": "change_user" - } - }, - { - "model": "auth.permission", - "pk": 15, - "fields": { - "name": "Can delete user", - "content_type": 4, - "codename": "delete_user" - } - }, - { - "model": "auth.permission", - "pk": 16, - "fields": { - "name": "Can view user", - "content_type": 4, - "codename": "view_user" - } - }, - { - "model": "auth.permission", - "pk": 17, - "fields": { - "name": "Can add content type", - "content_type": 5, - "codename": "add_contenttype" - } - }, - { - "model": "auth.permission", - "pk": 18, - "fields": { - "name": "Can change content type", - "content_type": 5, - "codename": "change_contenttype" - } - }, - { - "model": "auth.permission", - "pk": 19, - "fields": { - "name": "Can delete content type", - "content_type": 5, - "codename": "delete_contenttype" - } - }, - { - "model": "auth.permission", - "pk": 20, - "fields": { - "name": "Can view content type", - "content_type": 5, - "codename": "view_contenttype" - } - }, - { - "model": "auth.permission", - "pk": 21, - "fields": { - "name": "Can add session", - "content_type": 6, - "codename": "add_session" - } - }, - { - "model": "auth.permission", - "pk": 22, - "fields": { - "name": "Can change session", - "content_type": 6, - "codename": "change_session" - } - }, - { - "model": "auth.permission", - "pk": 23, - "fields": { - "name": "Can delete session", - "content_type": 6, - "codename": "delete_session" - } - }, - { - "model": "auth.permission", - "pk": 24, - "fields": { - "name": "Can view session", - "content_type": 6, - "codename": "view_session" - } - }, - { - "model": "auth.permission", - "pk": 25, - "fields": { - "name": "Can add importer", - "content_type": 7, - "codename": "add_importer" - } - }, - { - "model": "auth.permission", - "pk": 26, - "fields": { - "name": "Can change importer", - "content_type": 7, - "codename": "change_importer" - } - }, - { - "model": "auth.permission", - "pk": 27, - "fields": { - "name": "Can delete importer", - "content_type": 7, - "codename": "delete_importer" - } - }, - { - "model": "auth.permission", - "pk": 28, - "fields": { - "name": "Can view importer", - "content_type": 7, - "codename": "view_importer" - } - }, - { - "model": "auth.permission", - "pk": 29, - "fields": { - "name": "Can add import problem", - "content_type": 8, - "codename": "add_importproblem" - } - }, - { - "model": "auth.permission", - "pk": 30, - "fields": { - "name": "Can change import problem", - "content_type": 8, - "codename": "change_importproblem" - } - }, - { - "model": "auth.permission", - "pk": 31, - "fields": { - "name": "Can delete import problem", - "content_type": 8, - "codename": "delete_importproblem" - } - }, - { - "model": "auth.permission", - "pk": 32, - "fields": { - "name": "Can view import problem", - "content_type": 8, - "codename": "view_importproblem" - } - }, - { - "model": "auth.permission", - "pk": 33, - "fields": { - "name": "Can add package", - "content_type": 9, - "codename": "add_package" - } - }, - { - "model": "auth.permission", - "pk": 34, - "fields": { - "name": "Can change package", - "content_type": 9, - "codename": "change_package" - } - }, - { - "model": "auth.permission", - "pk": 35, - "fields": { - "name": "Can delete package", - "content_type": 9, - "codename": "delete_package" - } - }, - { - "model": "auth.permission", - "pk": 36, - "fields": { - "name": "Can view package", - "content_type": 9, - "codename": "view_package" - } - }, - { - "model": "auth.permission", - "pk": 37, - "fields": { - "name": "Can add vulnerability", - "content_type": 10, - "codename": "add_vulnerability" - } - }, - { - "model": "auth.permission", - "pk": 38, - "fields": { - "name": "Can change vulnerability", - "content_type": 10, - "codename": "change_vulnerability" - } - }, - { - "model": "auth.permission", - "pk": 39, - "fields": { - "name": "Can delete vulnerability", - "content_type": 10, - "codename": "delete_vulnerability" - } - }, - { - "model": "auth.permission", - "pk": 40, - "fields": { - "name": "Can view vulnerability", - "content_type": 10, - "codename": "view_vulnerability" - } - }, - { - "model": "auth.permission", - "pk": 41, - "fields": { - "name": "Can add package related vulnerability", - "content_type": 11, - "codename": "add_packagerelatedvulnerability" - } - }, - { - "model": "auth.permission", - "pk": 42, - "fields": { - "name": "Can change package related vulnerability", - "content_type": 11, - "codename": "change_packagerelatedvulnerability" - } - }, - { - "model": "auth.permission", - "pk": 43, - "fields": { - "name": "Can delete package related vulnerability", - "content_type": 11, - "codename": "delete_packagerelatedvulnerability" - } - }, - { - "model": "auth.permission", - "pk": 44, - "fields": { - "name": "Can view package related vulnerability", - "content_type": 11, - "codename": "view_packagerelatedvulnerability" - } - }, - { - "model": "auth.permission", - "pk": 45, - "fields": { - "name": "Can add vulnerability reference", - "content_type": 12, - "codename": "add_vulnerabilityreference" - } - }, - { - "model": "auth.permission", - "pk": 46, - "fields": { - "name": "Can change vulnerability reference", - "content_type": 12, - "codename": "change_vulnerabilityreference" - } - }, - { - "model": "auth.permission", - "pk": 47, - "fields": { - "name": "Can delete vulnerability reference", - "content_type": 12, - "codename": "delete_vulnerabilityreference" - } - }, - { - "model": "auth.permission", - "pk": 48, - "fields": { - "name": "Can view vulnerability reference", - "content_type": 12, - "codename": "view_vulnerabilityreference" - } } ] \ No newline at end of file diff --git a/vulnerabilities/helpers.py b/vulnerabilities/helpers.py index 1b2700628..9d325cf75 100644 --- a/vulnerabilities/helpers.py +++ b/vulnerabilities/helpers.py @@ -20,16 +20,32 @@ # VulnerableCode is a free software from nexB Inc. and others. # Visit https://github.com/nexB/vulnerablecode/ for support and download. +import bisect +import dataclasses import json import re +from typing import Optional +from typing import List import requests import toml import urllib3 import yaml +from packageurl import PackageURL +from univers.versions import version_class_by_package_type # TODO add logging here +cve_regex = re.compile(r"CVE-\d{4}-\d{4,7}", re.IGNORECASE) +is_cve = cve_regex.match +find_all_cve = cve_regex.findall + + +@dataclasses.dataclass(order=True, frozen=True) +class AffectedPackage: + vulnerable_package: PackageURL + patched_package: Optional[PackageURL] = None + def load_yaml(path): with open(path) as f: @@ -79,9 +95,12 @@ def create_etag(data_src, url, etag_key): return True -cve_regex = re.compile(r"CVE-\d{4}-\d{4,7}", re.IGNORECASE) -is_cve = cve_regex.match -find_all_cve = cve_regex.findall +def contains_alpha(string): + """ + Return True if the input 'string' contains any alphabet + """ + + return any([c.isalpha() for c in string]) def requests_with_5xx_retry(max_retries=5, backoff_factor=0.5): @@ -102,9 +121,52 @@ def requests_with_5xx_retry(max_retries=5, backoff_factor=0.5): return session -def contains_alpha(string): +def nearest_patched_package( + vulnerable_packages: List[PackageURL], resolved_packages: List[PackageURL] +) -> List[AffectedPackage]: """ - Return True if the input 'string' contains any alphabet + Parameters: + :vulnerable_packages(list) + :resolved_packages(list) """ - return any([c.isalpha() for c in string]) + class PackageURLWithVersionComparator: + """ + This class is used to get around bisect module's lack of supplying custom + compartor. Get rid of this once we use python 3.10 which supports this. + See https://github.com/python/cpython/pull/20556 + """ + + def __init__(self, package): + self.package = package + self.version_object = version_class_by_package_type[package.type](package.version) + + def __eq__(self, other): + return self.version_object == other.version_object + + def __lt__(self, other): + return self.version_object < other.version_object + + vulnerable_packages = sorted( + [PackageURLWithVersionComparator(package) for package in vulnerable_packages] + ) + resolved_packages = sorted( + [PackageURLWithVersionComparator(package) for package in resolved_packages] + ) + + resolved_package_count = len(resolved_packages) + affected_package_with_patched_package_objects = [] + + for vulnerable_package in vulnerable_packages: + patched_package_index = bisect.bisect_right(resolved_packages, vulnerable_package) + patched_package = None + if patched_package_index < resolved_package_count: + patched_package = resolved_packages[patched_package_index].package + + affected_package_with_patched_package_objects.append( + AffectedPackage( + vulnerable_package=vulnerable_package.package, patched_package=patched_package + ) + ) + + return affected_package_with_patched_package_objects diff --git a/vulnerabilities/import_runner.py b/vulnerabilities/import_runner.py index 400b16777..be54d4a61 100644 --- a/vulnerabilities/import_runner.py +++ b/vulnerabilities/import_runner.py @@ -29,10 +29,7 @@ import traceback from typing import Set from typing import Tuple -from typing import Optional -import packageurl -from django.db import DataError from django.core import serializers from vulnerabilities import models @@ -136,39 +133,24 @@ def process_advisories(data_source: DataSource) -> None: defaults={"value": str(score.value)}, ) - for purl in chain(advisory.impacted_package_urls, advisory.resolved_package_urls): - pkg, pkg_created = _get_or_create_package(purl) - is_vulnerable = purl in advisory.impacted_package_urls - pkg_vuln_ref = PackageRelatedVulnerabilityInserter( - vulnerability=vuln, is_vulnerable=is_vulnerable, package=pkg + for aff_pkg_with_patched_pkg in advisory.affected_packages: + vulnerable_package, _ = _get_or_create_package( + aff_pkg_with_patched_pkg.vulnerable_package + ) + patched_package = None + if aff_pkg_with_patched_pkg.patched_package: + patched_package, _ = _get_or_create_package( + aff_pkg_with_patched_pkg.patched_package + ) + + prv, _ = models.PackageRelatedVulnerability.objects.get_or_create( + vulnerability=vuln, + package=vulnerable_package, ) - if vuln_created or pkg_created: - bulk_create_vuln_pkg_refs.add(pkg_vuln_ref) - # A vulnerability-package relationship does not exist already if either the - # vulnerability or the package is just created. - - else: - # insert only if it there is no existing vulnerability-package relationship. - existing_ref = get_vuln_pkg_refs(vuln, pkg) - if not existing_ref: - bulk_create_vuln_pkg_refs.add(pkg_vuln_ref) - # A vulnerability-package relationship does not exist already - # if either the vulnerability or the package is just created. - - else: - # insert only if it there is no existing vulnerability-package relationship. # nopep8 - existing_ref = get_vuln_pkg_refs(vuln, pkg) - if not existing_ref: - bulk_create_vuln_pkg_refs.add(pkg_vuln_ref) - - else: - # This handles conflicts between existing data and obtained data - if existing_ref[0].is_vulnerable != pkg_vuln_ref.is_vulnerable: - handle_conflicts( - [existing_ref[0], pkg_vuln_ref.to_model_object()] - ) - existing_ref.delete() + if patched_package: + prv.patched_package = patched_package + prv.save() except Exception: # TODO: store error but continue @@ -176,59 +158,10 @@ def process_advisories(data_source: DataSource) -> None: f"Failed to process advisory: {advisory!r}:\n" + traceback.format_exc() ) - # find_conflicting_relations handles in-memory conflicts - conflicts = find_conflicting_relations(bulk_create_vuln_pkg_refs) - models.PackageRelatedVulnerability.objects.bulk_create( - [i.to_model_object() for i in bulk_create_vuln_pkg_refs if i not in conflicts] + [i.to_model_object() for i in bulk_create_vuln_pkg_refs] ) - handle_conflicts([i.to_model_object() for i in conflicts]) - - -def find_conflicting_relations( - relations: Set[Set[PackageRelatedVulnerabilityInserter]], -) -> Set[PackageRelatedVulnerabilityInserter]: - - # Chop off `is_vulnerable` flag from PackageRelatedVulnerabilityInserter and create a list of - # tuples of format (rel.package, rel.vulnerability) - - relation_tuples = [(rel.package, rel.vulnerability) for rel in relations] - relation_counter = Counter(relation_tuples).most_common() - - # If a (rel.package, rel.vulnerability) occurs twice then that means the - # PackageRelatedVulnerabilityInserter objects - # (rel.package, rel.vulnerability, is_vulnerable=True) and - # (rel.package, rel.vulnerability, is_vulnerable=False) both existed which is conflicting data. - # We detect and return these conflicts. - - conflicts = set() - for rel, count in relation_counter: - if count < 2: - # All the subsequent entries from here on would have count == 1 which is of no interest - # since conflicts exist in pairs with `is_vulnerable=True` and `is_vulnerable=False`. - break - - # `rel` is of format (pkg, vuln) - conflicts.add( - PackageRelatedVulnerabilityInserter( - vulnerability=rel[1], package=rel[0], is_vulnerable=True - ) - ) - - conflicts.add( - PackageRelatedVulnerabilityInserter( - vulnerability=rel[1], package=rel[0], is_vulnerable=False - ) - ) - - return conflicts - - -def handle_conflicts(conflicts): - conflicts = serializers.serialize("json", [i for i in conflicts]) - models.ImportProblem.objects.create(conflicting_model=conflicts) - def _get_or_create_vulnerability( advisory: Advisory, diff --git a/vulnerabilities/importer_yielder.py b/vulnerabilities/importer_yielder.py index ebcd51079..1a524a114 100644 --- a/vulnerabilities/importer_yielder.py +++ b/vulnerabilities/importer_yielder.py @@ -97,13 +97,13 @@ "data_source": "RetireDotnetDataSource", "data_source_cfg": {"repository_url": "https://github.com/RetireNet/Packages.git"}, }, - { - "name": "suse_backports", - "license": "", - "last_run": None, - "data_source": "SUSEBackportsDataSource", - "data_source_cfg": {"url": "http://ftp.suse.com/pub/projects/security/yaml/", "etags": {}}, - }, + # { + # "name": "suse_backports", + # "license": "", + # "last_run": None, + # "data_source": "SUSEBackportsDataSource", + # "data_source_cfg": {"url": "http://ftp.suse.com/pub/projects/security/yaml/", "etags": {}}, + # }, { "name": "suse_scores", "license": "", diff --git a/vulnerabilities/importers/__init__.py b/vulnerabilities/importers/__init__.py index fdf12025a..f7387df61 100644 --- a/vulnerabilities/importers/__init__.py +++ b/vulnerabilities/importers/__init__.py @@ -43,8 +43,9 @@ from vulnerabilities.importers.ruby import RubyDataSource from vulnerabilities.importers.rust import RustDataSource from vulnerabilities.importers.safety_db import SafetyDbDataSource -from vulnerabilities.importers.suse_backports import SUSEBackportsDataSource from vulnerabilities.importers.suse_scores import SUSESeverityScoreDataSource from vulnerabilities.importers.ubuntu import UbuntuDataSource from vulnerabilities.importers.ubuntu_usn import UbuntuUSNDataSource from vulnerabilities.importers.istio import IstioDataSource + +# from vulnerabilities.importers.suse_backports import SUSEBackportsDataSource diff --git a/vulnerabilities/importers/alpine_linux.py b/vulnerabilities/importers/alpine_linux.py index cd222ec46..758365a1f 100644 --- a/vulnerabilities/importers/alpine_linux.py +++ b/vulnerabilities/importers/alpine_linux.py @@ -122,39 +122,23 @@ def _process_link(self, link) -> List[Advisory]: advisories.extend( self._load_advisories( p["pkg"], - record["distroversion"], - record["reponame"], - record["archs"], ) ) return advisories + @staticmethod def _load_advisories( - self, pkg_infos: Mapping[str, Any], - distroversion: str, - reponame: str, - archs: Iterable[str], ) -> List[Advisory]: advisories = [] - for version, fixed_vulns in pkg_infos["secfixes"].items(): + for fixed_vulns in pkg_infos["secfixes"].values(): if fixed_vulns is None: continue - resolved_purls = { - PackageURL( - name=pkg_infos["name"], - type="alpine", - version=version, - qualifiers={"arch": arch, "distroversion": distroversion, "reponame": reponame}, - ) - for arch in archs - } - for vuln_ids in fixed_vulns: vuln_ids = vuln_ids.split() references = [] @@ -191,8 +175,6 @@ def _load_advisories( advisories.append( Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls=resolved_purls, references=references, vulnerability_id=vuln_ids[0] if is_cve(vuln_ids[0]) else "", ) diff --git a/vulnerabilities/importers/apache_kafka.py b/vulnerabilities/importers/apache_kafka.py index 1b763cb7a..105f327f0 100644 --- a/vulnerabilities/importers/apache_kafka.py +++ b/vulnerabilities/importers/apache_kafka.py @@ -32,6 +32,7 @@ from vulnerabilities.data_source import DataSource from vulnerabilities.data_source import Reference from vulnerabilities.package_managers import GitHubTagsAPI +from vulnerabilities.helpers import nearest_patched_package GH_PAGE_URL = "https://raw.githubusercontent.com/apache/kafka-site/asf-site/cve-list.html" ASF_PAGE_URL = "https://kafka.apache.org/cve-list" @@ -95,8 +96,7 @@ def to_advisory(self, advisory_page): Advisory( vulnerability_id=cve_id, summary=cve_description_paragraph.text, - impacted_package_urls=affected_packages, - resolved_package_urls=fixed_packages, + affected_packages=nearest_patched_package(affected_packages, fixed_packages), references=[ Reference(url=ASF_PAGE_URL), Reference( diff --git a/vulnerabilities/importers/apache_tomcat.py b/vulnerabilities/importers/apache_tomcat.py index 99fda05d6..42a728840 100644 --- a/vulnerabilities/importers/apache_tomcat.py +++ b/vulnerabilities/importers/apache_tomcat.py @@ -36,6 +36,7 @@ from vulnerabilities.data_source import DataSourceConfiguration from vulnerabilities.data_source import Reference from vulnerabilities.helpers import create_etag +from vulnerabilities.helpers import nearest_patched_package from vulnerabilities.package_managers import MavenVersionAPI @@ -115,8 +116,7 @@ def to_advisories(self, apache_tomcat_advisory_html): advisories.append( Advisory( summary="", - impacted_package_urls=affected_packages, - resolved_package_urls=fixed_package, + affected_packages=nearest_patched_package(affected_packages, fixed_package), vulnerability_id=cve_id, references=references, ) diff --git a/vulnerabilities/importers/archlinux.py b/vulnerabilities/importers/archlinux.py index b9e4c5018..b937a9931 100644 --- a/vulnerabilities/importers/archlinux.py +++ b/vulnerabilities/importers/archlinux.py @@ -36,6 +36,7 @@ from vulnerabilities.data_source import DataSourceConfiguration from vulnerabilities.data_source import Reference from vulnerabilities.data_source import VulnerabilitySeverity +from vulnerabilities.helpers import nearest_patched_package from vulnerabilities.severity_systems import scoring_systems @@ -87,9 +88,10 @@ def _parse(self, record) -> List[Advisory]: advisories = [] for cve_id in record["issues"]: - impacted_purls, resolved_purls = set(), set() + affected_packages = [] for name in record["packages"]: - impacted_purls.add( + impacted_purls, resolved_purls = [], [] + impacted_purls.append( PackageURL( name=name, type="pacman", @@ -99,7 +101,7 @@ def _parse(self, record) -> List[Advisory]: ) if record["fixed"]: - resolved_purls.add( + resolved_purls.append( PackageURL( name=name, type="pacman", @@ -107,6 +109,7 @@ def _parse(self, record) -> List[Advisory]: version=record["fixed"], ) ) + affected_packages.extend(nearest_patched_package(impacted_purls, resolved_purls)) references = [] references.append( @@ -133,8 +136,7 @@ def _parse(self, record) -> List[Advisory]: Advisory( vulnerability_id=cve_id, summary="", - impacted_package_urls=impacted_purls, - resolved_package_urls=resolved_purls, + affected_packages=affected_packages, references=references, ) ) diff --git a/vulnerabilities/importers/debian.py b/vulnerabilities/importers/debian.py index 28d499980..92444e0de 100644 --- a/vulnerabilities/importers/debian.py +++ b/vulnerabilities/importers/debian.py @@ -39,6 +39,7 @@ from vulnerabilities.data_source import DataSource from vulnerabilities.data_source import DataSourceConfiguration from vulnerabilities.data_source import Reference +from vulnerabilities.helpers import nearest_patched_package def validate_schema(advisory_dict): @@ -108,7 +109,7 @@ def _parse(self, pkg_name: str, records: Mapping[str, Any]) -> List[Advisory]: advisories = [] for cve_id, record in records.items(): - impacted_purls, resolved_purls = set(), set() + impacted_purls, resolved_purls = [], [] if not cve_id.startswith("CVE"): continue @@ -129,12 +130,12 @@ def _parse(self, pkg_name: str, records: Mapping[str, Any]) -> List[Advisory]: ) if release_record.get("status", "") == "resolved": - resolved_purls.add(purl) + resolved_purls.append(purl) else: - impacted_purls.add(purl) + impacted_purls.append(purl) if "fixed_version" in release_record: - resolved_purls.add( + resolved_purls.append( PackageURL( name=pkg_name, type="deb", @@ -149,13 +150,12 @@ def _parse(self, pkg_name: str, records: Mapping[str, Any]) -> List[Advisory]: if debianbug: bug_url = f"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug={debianbug}" references.append(Reference(url=bug_url, reference_id=debianbug)) - + # print(nearest_patched_package(impacted_purls, resolved_purls)) advisories.append( Advisory( vulnerability_id=cve_id, + affected_packages=nearest_patched_package(impacted_purls, resolved_purls), summary=record.get("description", ""), - impacted_package_urls=impacted_purls, - resolved_package_urls=resolved_purls, references=references, ) ) diff --git a/vulnerabilities/importers/elixir_security.py b/vulnerabilities/importers/elixir_security.py index c0c937718..b491ed529 100644 --- a/vulnerabilities/importers/elixir_security.py +++ b/vulnerabilities/importers/elixir_security.py @@ -33,6 +33,7 @@ from vulnerabilities.data_source import Reference from vulnerabilities.package_managers import HexVersionAPI from vulnerabilities.helpers import load_yaml +from vulnerabilities.helpers import nearest_patched_package class ElixirSecurityDataSource(GitDataSource): @@ -123,13 +124,13 @@ def process_file(self, path): safe_purls = [] vuln_purls = [] - safe_purls = { + safe_purls = [ PackageURL(name=pkg_name, type="hex", version=version) for version in safe_pkg_versions - } + ] - vuln_purls = { + vuln_purls = [ PackageURL(name=pkg_name, type="hex", version=version) for version in vuln_pkg_versions - } + ] references = [ Reference( @@ -142,8 +143,7 @@ def process_file(self, path): return Advisory( summary=yaml_file["description"], - impacted_package_urls=vuln_purls, - resolved_package_urls=safe_purls, + affected_packages=nearest_patched_package(vuln_purls, safe_purls), vulnerability_id=cve_id, references=references, ) diff --git a/vulnerabilities/importers/gentoo.py b/vulnerabilities/importers/gentoo.py index d4cb85fc4..ab105638d 100644 --- a/vulnerabilities/importers/gentoo.py +++ b/vulnerabilities/importers/gentoo.py @@ -29,6 +29,7 @@ from vulnerabilities.data_source import GitDataSource from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference +from vulnerabilities.helpers import nearest_patched_package class GentooDataSource(GitDataSource): @@ -71,6 +72,8 @@ def process_file(self, file): xml_data["affected_purls"], xml_data["unaffected_purls"], ) = self.affected_and_safe_purls(child) + xml_data["unaffected_purls"] = list(xml_data["unaffected_purls"]) + xml_data["affected_purls"] = list(xml_data["affected_purls"]) advisory_list = [] # It is very inefficient, to create new Advisory for each CVE @@ -79,8 +82,9 @@ def process_file(self, file): advisory = Advisory( vulnerability_id=cve, summary=xml_data["description"], - impacted_package_urls=xml_data["affected_purls"], - resolved_package_urls=xml_data["unaffected_purls"], + affected_packages=nearest_patched_package( + xml_data["affected_purls"], xml_data["unaffected_purls"] + ), references=vuln_reference, ) advisory_list.append(advisory) diff --git a/vulnerabilities/importers/github.py b/vulnerabilities/importers/github.py index cea315efc..9e45c93dc 100644 --- a/vulnerabilities/importers/github.py +++ b/vulnerabilities/importers/github.py @@ -46,6 +46,7 @@ from vulnerabilities.package_managers import PypiVersionAPI from vulnerabilities.package_managers import RubyVersionAPI from vulnerabilities.severity_systems import scoring_systems +from vulnerabilities.helpers import nearest_patched_package # set of all possible values of first '%s' = {'MAVEN','COMPOSER', 'NUGET', 'RUBYGEMS', 'PYPI'} # second '%s' is interesting, it will have the value '' for the first request, @@ -203,18 +204,18 @@ def process_response(self) -> List[Advisory]: aff_vers, unaff_vers = self.categorize_versions( self.version_api.package_type, aff_range, self.version_api.get(name) ) - affected_purls = { + affected_purls = [ PackageURL(name=pkg_name, namespace=ns, version=version, type=pkg_type) for version in aff_vers - } + ] - unaffected_purls = { + unaffected_purls = [ PackageURL(name=pkg_name, namespace=ns, version=version, type=pkg_type) for version in unaff_vers - } + ] else: - affected_purls = set() - unaffected_purls = set() + affected_purls = [] + unaffected_purls = [] cve_ids = set() references = self.extract_references(adv["node"]["advisory"]["references"]) @@ -244,8 +245,9 @@ def process_response(self) -> List[Advisory]: Advisory( vulnerability_id=cve_id, summary=vuln_desc, - impacted_package_urls=affected_purls, - resolved_package_urls=unaffected_purls, + affected_packages=nearest_patched_package( + affected_purls, unaffected_purls + ), references=references, ) ) @@ -254,13 +256,18 @@ def process_response(self) -> List[Advisory]: @staticmethod def categorize_versions( package_type: str, version_range: str, all_versions: Set[str] - ) -> Tuple[Set[str], Set[str]]: + ) -> Tuple[List[str], List[str]]: version_class = version_class_by_package_type[package_type] version_scheme = version_class.scheme version_range = VersionSpecifier.from_scheme_version_spec_string( version_scheme, version_range ) - affected_versions = { - version for version in all_versions if version_class(version) in version_range - } - return (affected_versions, all_versions - affected_versions) + affected_versions = [] + unaffected_versions = [] + for version in all_versions: + if version_class(version) in version_range: + affected_versions.append(version) + else: + unaffected_versions.append(version) + + return (affected_versions, unaffected_versions) diff --git a/vulnerabilities/importers/istio.py b/vulnerabilities/importers/istio.py index 02b34de4b..ec5f273c0 100644 --- a/vulnerabilities/importers/istio.py +++ b/vulnerabilities/importers/istio.py @@ -31,6 +31,7 @@ from vulnerabilities.data_source import Advisory, GitDataSource, Reference from vulnerabilities.package_managers import GitHubTagsAPI +from vulnerabilities.helpers import nearest_patched_package is_release = re.compile(r"^[\d.]+$", re.IGNORECASE).match @@ -161,34 +162,37 @@ def process_file(self, path): data["release_ranges"] ) - safe_purls_golang = { - PackageURL(type="golang", name="istio", version=version) - for version in safe_pkg_versions - } + affected_packages = [] - safe_purls_github = { - PackageURL(type="github", name="istio", version=version) + safe_purls_golang = [ + PackageURL(type="golang", name="istio", version=version) for version in safe_pkg_versions - } - safe_purls = safe_purls_github.union(safe_purls_golang) + ] - vuln_purls_golang = { + vuln_purls_golang = [ PackageURL(type="golang", name="istio", version=version) for version in vuln_pkg_versions - } + ] + + affected_packages.extend(nearest_patched_package(vuln_purls_golang, safe_purls_golang)) - vuln_purls_github = { + safe_purls_github = [ + PackageURL(type="github", name="istio", version=version) + for version in safe_pkg_versions + ] + + vuln_purls_github = [ PackageURL(type="github", name="istio", version=version) for version in vuln_pkg_versions - } - vuln_purls = vuln_purls_github.union(vuln_purls_golang) + ] + + affected_packages.extend(nearest_patched_package(vuln_purls_github, safe_purls_github)) advisories.append( Advisory( - summary=data["description"], - impacted_package_urls=vuln_purls, - resolved_package_urls=safe_purls, vulnerability_id=cve_id, + summary=data["description"], + affected_packages=affected_packages, ) ) diff --git a/vulnerabilities/importers/kaybee.py b/vulnerabilities/importers/kaybee.py index c25879fb5..ca31cbf4f 100644 --- a/vulnerabilities/importers/kaybee.py +++ b/vulnerabilities/importers/kaybee.py @@ -26,6 +26,7 @@ from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference from vulnerabilities.helpers import load_yaml +from vulnerabilities.helpers import nearest_patched_package class KaybeeDataSource(GitDataSource): @@ -57,7 +58,6 @@ def yaml_file_to_advisory(yaml_path): package = PackageURL.from_string(entry["id"]) if entry["affected"]: impacted_packages.append(package) - else: resolved_packages.append(package) @@ -68,7 +68,6 @@ def yaml_file_to_advisory(yaml_path): return Advisory( vulnerability_id=vuln_id, summary=summary, - impacted_package_urls=impacted_packages, - resolved_package_urls=resolved_packages, + affected_packages=nearest_patched_package(impacted_packages, resolved_packages), references=references, ) diff --git a/vulnerabilities/importers/nginx.py b/vulnerabilities/importers/nginx.py index 11e49b738..e5be6247c 100644 --- a/vulnerabilities/importers/nginx.py +++ b/vulnerabilities/importers/nginx.py @@ -22,7 +22,6 @@ import asyncio import dataclasses -import json import requests from packageurl import PackageURL @@ -35,7 +34,7 @@ from vulnerabilities.data_source import DataSourceConfiguration from vulnerabilities.data_source import Reference from vulnerabilities.package_managers import GitHubTagsAPI -from vulnerabilities.helpers import create_etag +from vulnerabilities.helpers import nearest_patched_package @dataclasses.dataclass @@ -59,7 +58,6 @@ def set_api(self): def updated_advisories(self): advisories = [] - # if create_etag(data_src=self, url=self.url, etag_key="ETag"): self.set_api() data = requests.get(self.url).content advisories.extend(self.to_advisories(data)) @@ -112,8 +110,7 @@ def to_advisories(self, data): Advisory( vulnerability_id=cve_id, summary=summary, - impacted_package_urls=vulnerable_packages, - resolved_package_urls=fixed_packages, + affected_packages=nearest_patched_package(vulnerable_packages, fixed_packages), ) ) @@ -139,9 +136,9 @@ def extract_fixed_pkgs(self, vuln_info): valid_versions = find_valid_versions(self.version_api.get("nginx/nginx"), version_ranges) - return { + return [ PackageURL(type="generic", name="nginx", version=version) for version in valid_versions - } + ] def extract_vuln_pkgs(self, vuln_info): vuln_status, version_infos = vuln_info.split(": ") @@ -177,10 +174,10 @@ def extract_vuln_pkgs(self, vuln_info): if windows_only: qualifiers["os"] = "windows" - return { + return [ PackageURL(type="generic", name="nginx", version=version, qualifiers=qualifiers) for version in valid_versions - } + ] def find_valid_versions(versions, version_ranges): diff --git a/vulnerabilities/importers/npm.py b/vulnerabilities/importers/npm.py index 2c5988cfc..76c6fbc28 100644 --- a/vulnerabilities/importers/npm.py +++ b/vulnerabilities/importers/npm.py @@ -41,6 +41,7 @@ from vulnerabilities.data_source import Reference from vulnerabilities.package_managers import NpmVersionAPI from vulnerabilities.helpers import load_json +from vulnerabilities.helpers import nearest_patched_package NPM_URL = "https://registry.npmjs.org{}" @@ -115,8 +116,7 @@ def process_file(self, file) -> List[Advisory]: Advisory( summary=record.get("overview", ""), vulnerability_id=cve_id, - impacted_package_urls=impacted_purls, - resolved_package_urls=resolved_purls, + affected_packages=nearest_patched_package(impacted_purls, resolved_purls), references=vuln_reference, ) ) @@ -125,7 +125,7 @@ def process_file(self, file) -> List[Advisory]: def _versions_to_purls(package_name, versions): purls = {f"pkg:npm/{quote(package_name)}@{v}" for v in versions} - return {PackageURL.from_string(s) for s in purls} + return [PackageURL.from_string(s) for s in purls] def normalize_ranges(version_range_string): diff --git a/vulnerabilities/importers/nvd.py b/vulnerabilities/importers/nvd.py index 711511b30..7af45dd4d 100644 --- a/vulnerabilities/importers/nvd.py +++ b/vulnerabilities/importers/nvd.py @@ -92,7 +92,6 @@ def to_advisories(self, nvd_data): vulnerability_id=cve_id, summary=summary, references=references, - impacted_package_urls=[], # nopep8 ) @staticmethod diff --git a/vulnerabilities/importers/openssl.py b/vulnerabilities/importers/openssl.py index 03d8c00a4..ee5939a8c 100644 --- a/vulnerabilities/importers/openssl.py +++ b/vulnerabilities/importers/openssl.py @@ -33,6 +33,7 @@ from vulnerabilities.data_source import Reference from vulnerabilities.data_source import DataSourceConfiguration from vulnerabilities.helpers import create_etag +from vulnerabilities.helpers import nearest_patched_package @dataclasses.dataclass @@ -101,20 +102,19 @@ def to_advisories(xml_response: str) -> Set[Advisory]: # Description summary = re.sub(r"\s+", " ", info.text).strip() - safe_purls = { + safe_purls = [ PackageURL(name=pkg_name, type=pkg_type, version=version) for version in safe_pkg_versions - } - vuln_purls = { + ] + vuln_purls = [ PackageURL(name=pkg_name, type=pkg_type, version=version) for version in vuln_pkg_versions - } + ] advisory = Advisory( vulnerability_id=cve_id, summary=summary, - impacted_package_urls=vuln_purls, - resolved_package_urls=safe_purls, + affected_packages=nearest_patched_package(vuln_purls, safe_purls), references=ref_urls, ) advisories.append(advisory) diff --git a/vulnerabilities/importers/postgresql.py b/vulnerabilities/importers/postgresql.py index fe45f4f7b..a49ed6585 100644 --- a/vulnerabilities/importers/postgresql.py +++ b/vulnerabilities/importers/postgresql.py @@ -30,6 +30,7 @@ from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import DataSource from vulnerabilities.data_source import Reference +from vulnerabilities.helpers import nearest_patched_package BASE_URL = "https://www.postgresql.org/" @@ -85,6 +86,7 @@ def to_advisories(data): qualifiers=pkg_qualifiers, ) for version in fixed_col.text.split(",") + if version ] try: @@ -108,8 +110,7 @@ def to_advisories(data): vulnerability_id=cve_id, summary=summary, references=references, - impacted_package_urls=affected_packages, - resolved_package_urls=fixed_packages, + affected_packages=nearest_patched_package(affected_packages, fixed_packages), ) ) diff --git a/vulnerabilities/importers/project_kb_msr2019.py b/vulnerabilities/importers/project_kb_msr2019.py index b9f797c48..8b97eccf1 100644 --- a/vulnerabilities/importers/project_kb_msr2019.py +++ b/vulnerabilities/importers/project_kb_msr2019.py @@ -80,7 +80,7 @@ def to_advisories(csv_reader): advisories.append( Advisory( summary="", - impacted_package_urls=[], + affected_packages=[], references=[reference], vulnerability_id=vuln_id, ) diff --git a/vulnerabilities/importers/redhat.py b/vulnerabilities/importers/redhat.py index 9415cd94a..8074841b5 100644 --- a/vulnerabilities/importers/redhat.py +++ b/vulnerabilities/importers/redhat.py @@ -28,6 +28,7 @@ from vulnerabilities.data_source import DataSourceConfiguration from vulnerabilities.data_source import Reference from vulnerabilities.data_source import VulnerabilitySeverity +from vulnerabilities.helpers import nearest_patched_package from vulnerabilities.helpers import requests_with_5xx_retry from vulnerabilities.severity_systems import scoring_systems @@ -170,7 +171,7 @@ def to_advisory(advisory_data): return Advisory( vulnerability_id=advisory_data["CVE"], summary=advisory_data["bugzilla_description"], - impacted_package_urls=affected_purls, + affected_packages=nearest_patched_package(affected_purls, []), references=references, ) diff --git a/vulnerabilities/importers/retiredotnet.py b/vulnerabilities/importers/retiredotnet.py index dff6c3e1d..25e08b04d 100644 --- a/vulnerabilities/importers/retiredotnet.py +++ b/vulnerabilities/importers/retiredotnet.py @@ -28,9 +28,9 @@ from packageurl import PackageURL from vulnerabilities.data_source import GitDataSource -from vulnerabilities.data_source import GitDataSourceConfiguration from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference +from vulnerabilities.helpers import AffectedPackage class RetireDotnetDataSource(GitDataSource): @@ -77,16 +77,19 @@ def process_file(self, path) -> List[Advisory]: else: return - affected_purls = set() - fixed_purls = set() - + affected_packages = [] for pkg in json_doc["packages"]: - affected_purls.add( - PackageURL(name=pkg["id"], version=pkg["affected"], type="nuget") + affected_packages.append( + AffectedPackage( + vulnerable_package=PackageURL( + name=pkg["id"], version=pkg["affected"], type="nuget" + ), + patched_package=PackageURL( + name=pkg["id"], version=pkg["fix"], type="nuget" + ), + ) ) - fixed_purls.add(PackageURL(name=pkg["id"], version=pkg["fix"], type="nuget")) - vuln_reference = [ Reference( url=json_doc["link"], @@ -94,9 +97,8 @@ def process_file(self, path) -> List[Advisory]: ] return Advisory( - summary=json_doc["description"], - impacted_package_urls=affected_purls, - resolved_package_urls=fixed_purls, vulnerability_id=vuln_id, + summary=json_doc["description"], + affected_packages=affected_packages, references=vuln_reference, ) diff --git a/vulnerabilities/importers/ruby.py b/vulnerabilities/importers/ruby.py index f22df5aa5..a801a5f81 100644 --- a/vulnerabilities/importers/ruby.py +++ b/vulnerabilities/importers/ruby.py @@ -33,6 +33,7 @@ from vulnerabilities.data_source import Reference from vulnerabilities.package_managers import RubyVersionAPI from vulnerabilities.helpers import load_yaml +from vulnerabilities.helpers import nearest_patched_package class RubyDataSource(GitDataSource): @@ -102,23 +103,23 @@ def process_file(self, path) -> List[Advisory]: all_vers = self.pkg_manager_api.get(package_name) safe_versions, affected_versions = self.categorize_versions(all_vers, safe_version_ranges) - impacted_purls = { + impacted_purls = [ PackageURL( name=package_name, type="gem", version=version, ) for version in affected_versions - } + ] - resolved_purls = { + resolved_purls = [ PackageURL( name=package_name, type="gem", version=version, ) for version in safe_versions - } + ] references = [] if record.get("url"): @@ -126,8 +127,7 @@ def process_file(self, path) -> List[Advisory]: return Advisory( summary=record.get("description", ""), - impacted_package_urls=impacted_purls, - resolved_package_urls=resolved_purls, + affected_packages=nearest_patched_package(impacted_purls, resolved_purls), references=references, vulnerability_id=cve_id, ) @@ -140,12 +140,18 @@ def categorize_versions(all_versions, unaffected_version_ranges): "semver", elem ) - safe_versions = set() + safe_versions = [] + vulnerable_versions = [] for i in all_versions: vobj = SemverVersion(i) - + is_vulnerable = False for ver_rng in unaffected_version_ranges: if vobj in ver_rng: - safe_versions.add(i) + safe_versions.append(i) + is_vulnerable = True + break + + if not is_vulnerable: + vulnerable_versions.append(i) - return (safe_versions, all_versions - safe_versions) + return safe_versions, vulnerable_versions diff --git a/vulnerabilities/importers/rust.py b/vulnerabilities/importers/rust.py index 1c3ecd98f..557ff7d06 100644 --- a/vulnerabilities/importers/rust.py +++ b/vulnerabilities/importers/rust.py @@ -21,15 +21,11 @@ # Visit https://github.com/nexB/vulnerablecode/ for support and download. import asyncio -import re from itertools import chain from typing import Optional -from typing import Mapping from typing import List from typing import Set from typing import Tuple -from urllib.error import HTTPError -from urllib.request import urlopen import toml from univers.version_specifier import VersionSpecifier @@ -41,7 +37,7 @@ from vulnerabilities.data_source import GitDataSource from vulnerabilities.data_source import Reference from vulnerabilities.package_managers import CratesVersionAPI -from vulnerabilities.helpers import load_toml +from vulnerabilities.helpers import nearest_patched_package class RustDataSource(GitDataSource): @@ -127,8 +123,8 @@ def _load_advisory(self, path: str) -> Optional[Advisory]: all_versions, unaffected_ranges, affected_ranges, resolved_ranges ) - impacted_purls = {PackageURL(type="cargo", name=crate_name, version=v) for v in affected} - resolved_purls = {PackageURL(type="cargo", name=crate_name, version=v) for v in unaffected} + impacted_purls = [PackageURL(type="cargo", name=crate_name, version=v) for v in affected] + resolved_purls = [PackageURL(type="cargo", name=crate_name, version=v) for v in unaffected] cve_id = None if "aliases" in advisory: @@ -146,8 +142,7 @@ def _load_advisory(self, path: str) -> Optional[Advisory]: return Advisory( summary=advisory.get("description", ""), - impacted_package_urls=impacted_purls, - resolved_package_urls=resolved_purls, + affected_packages=nearest_patched_package(impacted_purls, resolved_purls), vulnerability_id=cve_id, references=references, ) diff --git a/vulnerabilities/importers/safety_db.py b/vulnerabilities/importers/safety_db.py index 228aec425..ce7ba87eb 100755 --- a/vulnerabilities/importers/safety_db.py +++ b/vulnerabilities/importers/safety_db.py @@ -46,6 +46,7 @@ from vulnerabilities.data_source import DataSourceConfiguration from vulnerabilities.data_source import Reference from vulnerabilities.package_managers import PypiVersionAPI +from vulnerabilities.helpers import nearest_patched_package logger = logging.getLogger(__name__) @@ -75,11 +76,8 @@ class SafetyDbDataSource(DataSource): CONFIG_CLASS = SafetyDbConfiguration - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - self._api_response = self._fetch() - def __enter__(self): + self._api_response = self._fetch() self._versions = PypiVersionAPI() self.set_api(self.collect_packages()) @@ -138,13 +136,15 @@ def updated_advisories(self) -> Set[Advisory]: vulnerability_id=cve_id, summary=advisory["advisory"], references=reference, - impacted_package_urls=impacted_purls, - resolved_package_urls=resolved_purls, + affected_packages=nearest_patched_package( + impacted_purls, resolved_purls + ), ) ) - return self.batch_advisories(advisories) + return advisories + # FIXME: This is duplicate code. Use the the helper instead. def create_etag(self, url): etag = requests.head(url).headers.get("ETag") if not etag: @@ -158,6 +158,7 @@ def create_etag(self, url): return True +# FIXME: This function is horribly named incorretly. def categorize_versions( package_name: str, all_versions: Set[str], @@ -166,9 +167,7 @@ def categorize_versions( """ :return: impacted, resolved purls """ - impacted_versions, impacted_purls = set(), set() - # vurl_spec = f"pypi:{ ','.join(version_specs) }" - # vurl_spec = VersionSpecifier.from_version_spec_string(vurl_spec) + impacted_versions, impacted_purls = set(), [] vurl_specs = [] for version_spec in version_specs: vurl_specs.append(VersionSpecifier.from_scheme_version_spec_string("pypi", version_spec)) @@ -181,7 +180,7 @@ def categorize_versions( if any([version_object in vurl_spec for vurl_spec in vurl_specs]): impacted_versions.add(version) - impacted_purls.add( + impacted_purls.append( PackageURL( name=package_name, type="pypi", @@ -189,7 +188,7 @@ def categorize_versions( ) ) - resolved_purls = set() + resolved_purls = [] for version in all_versions - impacted_versions: - resolved_purls.add(PackageURL(name=package_name, type="pypi", version=version)) + resolved_purls.append(PackageURL(name=package_name, type="pypi", version=version)) return impacted_purls, resolved_purls diff --git a/vulnerabilities/importers/suse_scores.py b/vulnerabilities/importers/suse_scores.py index 55f7cf304..cd01abe90 100644 --- a/vulnerabilities/importers/suse_scores.py +++ b/vulnerabilities/importers/suse_scores.py @@ -75,7 +75,6 @@ def to_advisory(score_data): Advisory( vulnerability_id=cve_id, summary="", - impacted_package_urls=[], references=[Reference(url=URL, severities=severities)], ) ) diff --git a/vulnerabilities/importers/ubuntu_usn.py b/vulnerabilities/importers/ubuntu_usn.py index 32cccaee1..2810b19a0 100644 --- a/vulnerabilities/importers/ubuntu_usn.py +++ b/vulnerabilities/importers/ubuntu_usn.py @@ -67,10 +67,6 @@ def to_advisories(usn_db): advisories = [] for usn in usn_db: reference = get_usn_references(usn_db[usn]["id"]) - for release in usn_db[usn]["releases"]: - pkg_dict = usn_db[usn]["releases"][release] - safe_purls = get_purls(pkg_dict) - for cve in usn_db[usn].get("cves", [""]): # The db sometimes contains entries like # {'cves': ['python-pgsql vulnerabilities', 'CVE-2006-2313', 'CVE-2006-2314']} @@ -81,8 +77,6 @@ def to_advisories(usn_db): advisories.append( Advisory( vulnerability_id=cve, - impacted_package_urls=[], - resolved_package_urls=safe_purls, summary="", references=[reference], ) @@ -100,39 +94,3 @@ def fetch(url): raw_data = bz2.decompress(response) return json.loads(raw_data) - - -def get_purls(pkg_dict): - purls = set() - for pkg_name in pkg_dict.get("sources", []): - version = pkg_dict["sources"][pkg_name]["version"] - # The db sometimes contains entries like {'postgresql': {'version': ''}} - # This `if` ignores such entries - if not version: - continue - - purls.add( - PackageURL( - name=pkg_name, - version=version, - type="deb", - namespace="ubuntu", - ) - ) - - for pkg_name in pkg_dict["binaries"]: - version = pkg_dict["binaries"][pkg_name]["version"] - # The db sometimes contains entries like {'postgresql': {'version': ''}} - # This `if` ignores such entries - if not version: - continue - - purls.add( - PackageURL( - name=pkg_name, - version=version, - type="deb", - namespace="ubuntu", - ) - ) - return purls diff --git a/vulnerabilities/migrations/0002_add_patched_package.py b/vulnerabilities/migrations/0002_add_patched_package.py new file mode 100644 index 000000000..d2024a2f7 --- /dev/null +++ b/vulnerabilities/migrations/0002_add_patched_package.py @@ -0,0 +1,64 @@ +# Generated by Django 3.0.13 on 2021-04-04 06:32 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ("vulnerabilities", "0001_initial"), + ] + + operations = [ + migrations.AddField( + model_name="packagerelatedvulnerability", + name="patched_package", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + related_name="patched_package", + to="vulnerabilities.Package", + ), + ), + migrations.AlterField( + model_name="packagerelatedvulnerability", + name="package", + field=models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name="vulnerable_package", + to="vulnerabilities.Package", + ), + ), + migrations.AlterField( + model_name="vulnerability", + name="vulnerability_id", + field=models.CharField( + help_text="Unique identifier for a vulnerability: this is either a published CVE id (as in CVE-2020-7965) if it exists. Otherwise this is a VulnerableCode-assigned VULCOID (as in VULCOID-20210222-1315-16461541). When a vulnerability CVE is assigned later we replace this with the CVE and keep the 'old' VULCOID in the 'old_vulnerability_id' field to support redirection to the CVE id.", + max_length=50, + unique=True, + ), + ), + migrations.AlterField( + model_name="vulnerabilityseverity", + name="scoring_system", + field=models.CharField( + choices=[ + ("cvssv2", "CVSSv2 Base Score"), + ("cvssv2_vector", "CVSSv2 Vector"), + ("cvssv3", "CVSSv3 Base Score"), + ("cvssv3_vector", "CVSSv3 Vector"), + ("cvssv3.1", "CVSSv3.1 Base Score"), + ("cvssv3.1_vector", "CVSSv3.1 Vector"), + ("rhbs", "RedHat Bugzilla severity"), + ("rhas", "RedHat Aggregate severity"), + ("avgs", "Archlinux Vulnerability Group Severity"), + ("cvssv3.1_qr", "CVSSv3.1 Qualitative Severity Rating"), + ("generic_textual", "Generic textual severity rating"), + ], + help_text="identifier for the scoring system used. Available choices are: cvssv2 is vulnerability_id for CVSSv2 Base Score system, cvssv2_vector is vulnerability_id for CVSSv2 Vector system, cvssv3 is vulnerability_id for CVSSv3 Base Score system, cvssv3_vector is vulnerability_id for CVSSv3 Vector system, cvssv3.1 is vulnerability_id for CVSSv3.1 Base Score system, cvssv3.1_vector is vulnerability_id for CVSSv3.1 Vector system, rhbs is vulnerability_id for RedHat Bugzilla severity system, rhas is vulnerability_id for RedHat Aggregate severity system, avgs is vulnerability_id for Archlinux Vulnerability Group Severity system, cvssv3.1_qr is vulnerability_id for CVSSv3.1 Qualitative Severity Rating system, generic_textual is vulnerability_id for Generic textual severity rating system ", + max_length=50, + ), + ), + ] diff --git a/vulnerabilities/migrations/0003_populate_patched_package.py b/vulnerabilities/migrations/0003_populate_patched_package.py new file mode 100644 index 000000000..4c852a0e5 --- /dev/null +++ b/vulnerabilities/migrations/0003_populate_patched_package.py @@ -0,0 +1,107 @@ +# Generated by Django 3.0.13 on 2021-04-04 06:40 + +import bisect +from sys import stdout + +from django.db import migrations +from univers.versions import version_class_by_package_type + + +def nearest_patched_versions(vulnerable_versions, resolved_versions): + """ + Returns a mapping of vulnerable_version -> nearest_safe_version + """ + + vulnerable_versions = sorted(vulnerable_versions) + resolved_versions = sorted(resolved_versions) + resolved_version_count = len(resolved_versions) + nearest_patch_for_version = {} + for vulnerable_version in vulnerable_versions: + nearest_patch_for_version[vulnerable_version] = None + if not resolved_versions: + continue + + patched_version_index = bisect.bisect_right(resolved_versions, vulnerable_version) + if patched_version_index >= resolved_version_count: + continue + nearest_patch_for_version[vulnerable_version] = resolved_versions[patched_version_index] + + return nearest_patch_for_version + + +def _get_tuple_key(packagerelatedvulnerability): + return ( + packagerelatedvulnerability.vulnerability, + packagerelatedvulnerability.package.type, + packagerelatedvulnerability.package.name, + ) + + +def create_patched_candidates_by_tuple_key(packagerelatedvulnerability_class): + """ + Creates and returns a mapping of form + (models.Vulnerability, models.Package.type, models.Package.name) -> List[models.PackageRelatedVulnerability] + It's used to prevent multiple hits to db in firther processing. + """ + patched_candidates = {} + for prv in packagerelatedvulnerability_class.objects.filter( + is_vulnerable=False + ).select_related(): + key_tuple = _get_tuple_key(prv) + if key_tuple in patched_candidates: + patched_candidates[key_tuple].append(prv.package) + else: + patched_candidates[key_tuple] = [prv.package] + + return patched_candidates + + +def populate_patched_packages(apps, schema_editor): + PackageRelatedVulnerability = apps.get_model("vulnerabilities", "PackageRelatedVulnerability") + patched_candidates = create_patched_candidates_by_tuple_key(PackageRelatedVulnerability) + tot = PackageRelatedVulnerability.objects.filter(is_vulnerable=True).count() + n = 0 + for prv in PackageRelatedVulnerability.objects.filter(is_vulnerable=True).select_related(): + stdout.write(f"{n}/{tot}\n") + n += 1 + key_tuple = _get_tuple_key(prv) + if key_tuple not in patched_candidates: + continue + + possible_patches = patched_candidates[key_tuple] + version_class = version_class_by_package_type[prv.package.type] + patched_package_by_version_obj = {} + + for patch in possible_patches: + try: + patched_package_by_version_obj[version_class(patch.version)] = patch + except Exception as e: + stdout.write(f"{e} {patch.version}") + continue + patched_version_objects = list(patched_package_by_version_obj.keys()) + + try: + target_version_object = version_class(prv.package.version) + nearest_patched_version = nearest_patched_versions( + [target_version_object], patched_version_objects + )[target_version_object] + except Exception as e: + stdout.write(f"{e}, {prv.package.version}") + continue + + if not nearest_patched_version: + continue + + prv.patched_package = patched_package_by_version_obj[nearest_patched_version] + prv.save() + + PackageRelatedVulnerability.objects.filter(is_vulnerable=False).delete() + + +class Migration(migrations.Migration): + + dependencies = [ + ("vulnerabilities", "0002_add_patched_package"), + ] + + operations = [migrations.RunPython(populate_patched_packages)] diff --git a/vulnerabilities/migrations/0004_remove_packagerelatedvulnerability_is_vulnerable.py b/vulnerabilities/migrations/0004_remove_packagerelatedvulnerability_is_vulnerable.py new file mode 100644 index 000000000..ae7b9dffe --- /dev/null +++ b/vulnerabilities/migrations/0004_remove_packagerelatedvulnerability_is_vulnerable.py @@ -0,0 +1,17 @@ +# Generated by Django 3.0.13 on 2021-04-08 11:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("vulnerabilities", "0003_populate_patched_package"), + ] + + operations = [ + migrations.RemoveField( + model_name="packagerelatedvulnerability", + name="is_vulnerable", + ), + ] diff --git a/vulnerabilities/models.py b/vulnerabilities/models.py index f101c98d4..736ab9ee5 100644 --- a/vulnerabilities/models.py +++ b/vulnerabilities/models.py @@ -22,12 +22,10 @@ import importlib from datetime import datetime -from time import sleep from django.db import models -from django.db import IntegrityError -from django.db import transaction import django.contrib.postgres.fields as pgfields +from django.core.exceptions import ValidationError from django.utils.translation import ugettext_lazy as _ from packageurl.contrib.django.models import PackageURLMixin from packageurl import PackageURL @@ -76,15 +74,18 @@ def generate_vulcoid(timestamp=None): @property def vulnerable_to(self): - return self.package_set.filter( - packagerelatedvulnerability__is_vulnerable=True, - ) + """ + Returns packages which are vulnerable to this vulnerability. + """ + return self.vulnerable_packages.all() @property def resolved_to(self): - return self.package_set.filter( - packagerelatedvulnerability__is_vulnerable=False, - ) + """ + Returns packages, which first received patch against this vulnerability + in their particular version history. + """ + return self.patched_packages.all() def __str__(self): return self.vulnerability_id or self.summary @@ -123,20 +124,32 @@ class Package(PackageURLMixin): """ vulnerabilities = models.ManyToManyField( - to="Vulnerability", through="PackageRelatedVulnerability" + to="Vulnerability", + through="PackageRelatedVulnerability", + through_fields=("package", "vulnerability"), + related_name="vulnerable_packages", + ) + + resolved_vulnerabilities = models.ManyToManyField( + to="Vulnerability", + through="PackageRelatedVulnerability", + through_fields=("patched_package", "vulnerability"), + related_name="patched_packages", ) @property def vulnerable_to(self): - return self.vulnerabilities.filter( - packagerelatedvulnerability__is_vulnerable=True, - ) + """ + Returns vulnerabilities which are affecting this package. + """ + return self.vulnerabilities.all() @property def resolved_to(self): - return self.vulnerabilities.filter( - packagerelatedvulnerability__is_vulnerable=False, - ) + """ + Returns the vulnerabilities which this package is patched against. + """ + return self.resolved_vulnerabilities.all() class Meta: unique_together = ("name", "namespace", "type", "version", "qualifiers", "subpath") @@ -175,9 +188,13 @@ def __str__(self): class PackageRelatedVulnerability(models.Model): - package = models.ForeignKey(Package, on_delete=models.CASCADE) + package = models.ForeignKey( + Package, on_delete=models.CASCADE, related_name="vulnerable_package" + ) vulnerability = models.ForeignKey(Vulnerability, on_delete=models.CASCADE) - is_vulnerable = models.BooleanField() + patched_package = models.ForeignKey( + Package, on_delete=models.CASCADE, null=True, blank=True, related_name="patched_package" + ) def __str__(self): return f"{self.package.package_url} {self.vulnerability.vulnerability_id}" diff --git a/vulnerabilities/tests/test_alpine.py b/vulnerabilities/tests/test_alpine.py index 2ebb6c5fa..864fb7ebe 100644 --- a/vulnerabilities/tests/test_alpine.py +++ b/vulnerabilities/tests/test_alpine.py @@ -45,97 +45,31 @@ def test__process_link(self): expected_advisories = [ Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls={ - PackageURL( - type="alpine", - namespace=None, - name="ansible", - version="2.9.3-r0", - qualifiers={"arch": "x86_64", "distroversion": "v3.11", "reponame": "main"}, - subpath=None, - ) - }, references=[], vulnerability_id="CVE-2019-14904", ), Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls={ - PackageURL( - type="alpine", - namespace=None, - name="ansible", - version="2.9.3-r0", - qualifiers={"arch": "x86_64", "distroversion": "v3.11", "reponame": "main"}, - subpath=None, - ) - }, references=[], vulnerability_id="CVE-2019-14905", ), Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls={ - PackageURL( - type="alpine", - namespace=None, - name="ansible", - version="2.8.6-r0", - qualifiers={"arch": "x86_64", "distroversion": "v3.11", "reponame": "main"}, - subpath=None, - ) - }, references=[], vulnerability_id="CVE-2019-14846", ), Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls={ - PackageURL( - type="alpine", - namespace=None, - name="ansible", - version="2.8.6-r0", - qualifiers={"arch": "x86_64", "distroversion": "v3.11", "reponame": "main"}, - subpath=None, - ) - }, references=[], vulnerability_id="CVE-2019-14856", ), Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls={ - PackageURL( - type="alpine", - namespace=None, - name="ansible", - version="2.8.6-r0", - qualifiers={"arch": "x86_64", "distroversion": "v3.11", "reponame": "main"}, - subpath=None, - ) - }, references=[], vulnerability_id="CVE-2019-14858", ), Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls={ - PackageURL( - type="alpine", - namespace=None, - name="xen", - version="4.12.1-r0", - qualifiers={"arch": "x86_64", "distroversion": "v3.11", "reponame": "main"}, - subpath=None, - ) - }, references=[ Reference( url="https://xenbits.xen.org/xsa/advisory-295.html", reference_id="XSA-295" diff --git a/vulnerabilities/tests/test_apache_kafka.py b/vulnerabilities/tests/test_apache_kafka.py index 2de04390d..a2435b425 100644 --- a/vulnerabilities/tests/test_apache_kafka.py +++ b/vulnerabilities/tests/test_apache_kafka.py @@ -31,6 +31,7 @@ from vulnerabilities.package_managers import GitHubTagsAPI from vulnerabilities.importers.apache_kafka import ApacheKafkaDataSource from vulnerabilities.importers.apache_kafka import to_version_ranges +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) TEST_DATA = os.path.join(BASE_DIR, "test_data", "apache_kafka", "cve-list.html") @@ -65,39 +66,38 @@ def test_to_advisory(self): data_source.version_api = GitHubTagsAPI(cache={"apache/kafka": ["2.1.2", "0.10.2.2"]}) expected_advisories = [ Advisory( - summary="In Apache Kafka versions between 0.11.0.0 and 2.1.0, it is possible to " - "manually\n craft a Produce request which bypasses transaction/idempotent ACL " - "validation.\n Only authenticated clients with Write permission on the " - "respective topics are\n able to exploit this vulnerability. Users should " - "upgrade to 2.1.1 or later\n where this vulnerability has been fixed.", - impacted_package_urls=[ - PackageURL( - type="apache", - namespace=None, - name="kafka", - version="0.10.2.2", - qualifiers={}, - subpath=None, - ) - ], - resolved_package_urls=[ - PackageURL( - type="apache", - namespace=None, - name="kafka", - version="2.1.2", - qualifiers={}, - subpath=None, + summary="In Apache Kafka versions between 0.11.0.0 and 2.1.0, it is possible to manually\n craft a Produce request which bypasses transaction/idempotent ACL validation.\n Only authenticated clients with Write permission on the respective topics are\n able to exploit this vulnerability. Users should upgrade to 2.1.1 or later\n where this vulnerability has been fixed.", + vulnerability_id="CVE-2018-17196", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="apache", + namespace=None, + name="kafka", + version="0.10.2.2", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="apache", + namespace=None, + name="kafka", + version="2.1.2", + qualifiers={}, + subpath=None, + ), ) ], references=[ - Reference(url="https://kafka.apache.org/cve-list", reference_id=""), Reference( - url="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-17196", + reference_id="", url="https://kafka.apache.org/cve-list", severities=[] + ), + Reference( reference_id="CVE-2018-17196", + url="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-17196", + severities=[], ), ], - vulnerability_id="CVE-2018-17196", ) ] with open(TEST_DATA) as f: diff --git a/vulnerabilities/tests/test_apache_tomcat.py b/vulnerabilities/tests/test_apache_tomcat.py index fd395dee0..290ca3652 100644 --- a/vulnerabilities/tests/test_apache_tomcat.py +++ b/vulnerabilities/tests/test_apache_tomcat.py @@ -30,6 +30,7 @@ from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference from vulnerabilities.importers.apache_tomcat import ApacheTomcatDataSource +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) TEST_DATA = os.path.join(BASE_DIR, "test_data", "apache_tomcat", "security-9.html") @@ -51,42 +52,54 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2015-5351", - impacted_package_urls={ - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="8.0.0.M1", - qualifiers={}, - subpath=None, + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="8.0.0.M1", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M3", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="9.0.0.M1", - qualifiers={}, - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M1", + ), + patched_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M3", + ), ), - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="9.0.0.M2", - qualifiers={}, - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M2", + ), + patched_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M3", + ), ), - }, - resolved_package_urls={ - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="9.0.0.M3", - qualifiers={}, - subpath=None, - ) - }, + ], references=[ Reference( reference_id="", @@ -108,26 +121,22 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2016-0706", - impacted_package_urls={ - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="9.0.0.M1", - qualifiers={}, - subpath=None, + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M1", + ), + patched_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M3", + ), ) - }, - resolved_package_urls={ - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="9.0.0.M3", - qualifiers={}, - subpath=None, - ) - }, + ], references=[ Reference( reference_id="", @@ -144,17 +153,7 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2016-0714", - impacted_package_urls=set(), - resolved_package_urls={ - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="9.0.0.M3", - qualifiers={}, - subpath=None, - ) - }, + affected_packages={}, references=[ Reference( reference_id="", @@ -176,34 +175,36 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2016-0763", - impacted_package_urls={ - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="9.0.0.M1", - qualifiers={}, - subpath=None, + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M1", + ), + patched_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M3", + ), ), - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="9.0.0.M2", - qualifiers={}, - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M2", + ), + patched_package=PackageURL( + type="maven", + namespace="apache", + name="tomcat", + version="9.0.0.M3", + ), ), - }, - resolved_package_urls={ - PackageURL( - type="maven", - namespace="apache", - name="tomcat", - version="9.0.0.M3", - qualifiers={}, - subpath=None, - ) - }, + ], references=[ Reference( reference_id="", diff --git a/vulnerabilities/tests/test_archlinux.py b/vulnerabilities/tests/test_archlinux.py index abaa2b514..e9df2705d 100644 --- a/vulnerabilities/tests/test_archlinux.py +++ b/vulnerabilities/tests/test_archlinux.py @@ -63,8 +63,11 @@ def test_import(self): runner.run() assert models.Vulnerability.objects.count() == 6 assert models.VulnerabilityReference.objects.count() == 10 - assert models.PackageRelatedVulnerability.objects.filter(is_vulnerable=True).count() == 12 - assert models.PackageRelatedVulnerability.objects.filter(is_vulnerable=False).count() == 8 + assert models.PackageRelatedVulnerability.objects.all().count() == 12 + assert ( + models.PackageRelatedVulnerability.objects.filter(patched_package__isnull=False).count() + == 8 + ) assert models.Package.objects.count() == 10 self.assert_for_package( diff --git a/vulnerabilities/tests/test_data/rust/RUSTSEC-2021-0032.md b/vulnerabilities/tests/test_data/rust/RUSTSEC-2021-0032.md new file mode 100644 index 000000000..060ad5058 --- /dev/null +++ b/vulnerabilities/tests/test_data/rust/RUSTSEC-2021-0032.md @@ -0,0 +1,25 @@ +```toml +[advisory] +id = "RUSTSEC-2021-0032" +package = "byte_struct" +aliases = ["CVE-2021-28033"] +date = "2021-03-01" +url = "https://github.com/wwylele/byte-struct-rs/issues/1" +categories = ["memory-corruption"] +keywords = ["memory-safety"] + +[versions] +patched = [">= 0.6.1"] +``` + +# Deserializing an array can drop uninitialized memory on panic + +The `read_bytes_default_le` function for `[T; n]` arrays, used to deserialize +arrays of `T` from bytes created a `[T; n]` array with `std::mem::uninitialized` +and then called `T`'s deserialization method. + +If `T`'s deserialization method panicked, the uninitialized memory could drop +invalid objects. + +This flaw was corrected in `a535678` by removing the unsafe block and using +a `.map` function to deserialize each element of the array instead. diff --git a/vulnerabilities/tests/test_data/rust/rust-advisory-db.zip b/vulnerabilities/tests/test_data/rust/rust-advisory-db.zip deleted file mode 100644 index cbc89af33..000000000 Binary files a/vulnerabilities/tests/test_data/rust/rust-advisory-db.zip and /dev/null differ diff --git a/vulnerabilities/tests/test_data/safety_db/insecure_full.json b/vulnerabilities/tests/test_data/safety_db/insecure_full.json index 86bc8bd94..770270ff8 100644 --- a/vulnerabilities/tests/test_data/safety_db/insecure_full.json +++ b/vulnerabilities/tests/test_data/safety_db/insecure_full.json @@ -1,15 +1,4 @@ { - "ampache": [ - { - "advisory": "ampache 4.0.0:\r\n* Resolves CVE-2019-12385 for the SQL Injection\r\n* Resolves CVE-2019-12386 for the persistent XSS\r\n* Resolves NS-18-046 Multiple Reflected Cross-site Scripting Vulnerabilities in Ampache 3.9.0", - "cve": "CVE-2019-12385, CVE-2019-12386", - "id": "pyup.io-37863", - "specs": [ - "<4.0.0" - ], - "v": "<4.0.0" - } - ], "django": [ { "advisory": "The utils.http.is_safe_url function in Django before 1.4.20, 1.5.x, 1.6.x before 1.6.11, 1.7.x before 1.7.7, and 1.8.x before 1.8c1 does not properly validate URLs, which allows remote attackers to conduct cross-site scripting (XSS) attacks via a control character in a URL, as demonstrated by a \\x08javascript: URL.", @@ -35,34 +24,5 @@ ], "v": ">=1.9,<1.9.8,==1.8.14,>=1.10,<1.10.2" } - ], - "zulip": [ - { - "advisory": "Zulip 2.1.0 improves default nginx TLS settings for stronger security.", - "cve": null, - "id": "pyup.io-38115", - "specs": [ - "<2.1.0" - ], - "v": "<2.1.0" - }, - { - "advisory": "Zulip 2.1.2 includes a corrected fix for CVE-2019-19775 (the original fix was affected by an unfixed security bug in Python's urllib, CVE-2015-2104). It also adds authentication for redis and memcached even in configurations where these are running on localhost, for add hardening against attacks from malicious processes running on the Zulip server.", - "cve": "CVE-2019-19775,CVE-2015-2104", - "id": "pyup.io-38114", - "specs": [ - "<2.1.2" - ], - "v": "<2.1.2" - }, - { - "advisory": "Zulip 2.1.3 includes fixes for:\r\n- CVE-2020-9444: Prevent reverse tabnapping attacks. \r\n- CVE-2020-9445: Remove unused and insecure modal_link feature. \r\n- CVE-2020-10935: Fix XSS vulnerability in local link rewriting.", - "cve": "CVE-2020-9444,CVE-2020-10935", - "id": "pyup.io-38200", - "specs": [ - "<2.1.3" - ], - "v": "<2.1.3" - } ] } diff --git a/vulnerabilities/tests/test_debian.py b/vulnerabilities/tests/test_debian.py index 0a9736736..e67511b36 100644 --- a/vulnerabilities/tests/test_debian.py +++ b/vulnerabilities/tests/test_debian.py @@ -67,16 +67,14 @@ def test_import(self): assert models.Vulnerability.objects.count() == 3 assert models.VulnerabilityReference.objects.count() == 3 - assert models.PackageRelatedVulnerability.objects.filter(is_vulnerable=True).count() == 2 - assert models.PackageRelatedVulnerability.objects.filter(is_vulnerable=False).count() == 8 - assert models.Package.objects.count() == 6 + assert ( + models.PackageRelatedVulnerability.objects.count() + == models.Package.objects.count() + == 2 + ) self.assert_for_package("librsync", "0.9.7-10", "jessie", cve_ids={"CVE-2014-8242"}) self.assert_for_package("librsync", "0.9.7-10", "buster", cve_ids={"CVE-2014-8242"}) - self.assert_for_package("mimetex", "1.50-1.1", "stretch") - self.assert_for_package("mimetex", "1.74-1", "stretch") - self.assert_for_package("mimetex", "1.50-1.1", "buster") - self.assert_for_package("mimetex", "1.76-1", "buster") assert models.Vulnerability.objects.filter(vulnerability_id__startswith="TEMP").count() == 0 def test_response_is_new(self): diff --git a/vulnerabilities/tests/test_debian_oval.py b/vulnerabilities/tests/test_debian_oval.py index aa89ad22f..e7b298834 100644 --- a/vulnerabilities/tests/test_debian_oval.py +++ b/vulnerabilities/tests/test_debian_oval.py @@ -1,16 +1,13 @@ import os import unittest from unittest.mock import patch -from unittest.mock import MagicMock import xml.etree.ElementTree as ET -from collections import OrderedDict -import asyncio from packageurl import PackageURL -from vulnerabilities.oval_parser import OvalParser from vulnerabilities.importers.debian_oval import DebianOvalDataSource from vulnerabilities.data_source import Advisory +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -40,66 +37,67 @@ def test_get_data_from_xml_doc(self, mock_write): expected_advisories = [ Advisory( summary="denial of service", - impacted_package_urls={ - PackageURL( - type="deb", - namespace=None, - name="krb5", - version="0.11.1+dfsg-5+deb7u1", - qualifiers=OrderedDict([("distro", "wheezy")]), - subpath=None, - ) - }, - resolved_package_urls={ - PackageURL( - type="deb", - namespace=None, - name="krb5", - version="1.11.1+dfsg-5+deb7u1", - qualifiers=OrderedDict([("distro", "wheezy")]), - subpath=None, - ), - PackageURL( - type="deb", - namespace=None, - name="krb5", - version="2.3.9", - qualifiers=OrderedDict([("distro", "wheezy")]), - subpath=None, - ), - }, vulnerability_id="CVE-2002-2443", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="deb", + namespace=None, + name="krb5", + version="0.11.1+dfsg-5+deb7u1", + qualifiers={"distro": "wheezy"}, + subpath=None, + ), + patched_package=PackageURL( + type="deb", + namespace=None, + name="krb5", + version="1.11.1+dfsg-5+deb7u1", + qualifiers={"distro": "wheezy"}, + subpath=None, + ), + ) + ], + references=[], ), Advisory( summary="security update", vulnerability_id="CVE-2001-1593", - impacted_package_urls={ - PackageURL( - type="deb", - namespace=None, - name="a2ps", - version="1.11.1+dfsg-5+deb7u1", - qualifiers={"distro": "wheezy"}, - subpath=None, + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="deb", + namespace=None, + name="a2ps", + version="0.11.1+dfsg-5+deb7u1", + qualifiers={"distro": "wheezy"}, + subpath=None, + ), + patched_package=None, ), - PackageURL( - type="deb", - namespace=None, - name="a2ps", - version="2.3.9", - qualifiers={"distro": "wheezy"}, - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="deb", + namespace=None, + name="a2ps", + version="1.11.1+dfsg-5+deb7u1", + qualifiers={"distro": "wheezy"}, + subpath=None, + ), + patched_package=None, ), - PackageURL( - type="deb", - namespace=None, - name="a2ps", - version="0.11.1+dfsg-5+deb7u1", - qualifiers={"distro": "wheezy"}, - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="deb", + namespace=None, + name="a2ps", + version="2.3.9", + qualifiers={"distro": "wheezy"}, + subpath=None, + ), + patched_package=None, ), - }, - resolved_package_urls=set(), + ], references=[], ), ] diff --git a/vulnerabilities/tests/test_elixir_security.py b/vulnerabilities/tests/test_elixir_security.py index b5cfb529f..774a2209f 100644 --- a/vulnerabilities/tests/test_elixir_security.py +++ b/vulnerabilities/tests/test_elixir_security.py @@ -30,6 +30,7 @@ from vulnerabilities.data_source import Reference from vulnerabilities.importers.elixir_security import ElixirSecurityDataSource from vulnerabilities.package_managers import HexVersionAPI +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -64,65 +65,188 @@ def test_process_file(self): path = os.path.join(BASE_DIR, "test_data/elixir_security/test_file.yml") expected_advisory = Advisory( summary=('The Coherence library has "Mass Assignment"-like vulnerabilities.\n'), - impacted_package_urls={ - PackageURL( - type="hex", - name="coherence", - version="0.5.1", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.1.0", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="hex", - name="coherence", - version="0.5.0", + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.1.1", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="hex", - name="coherence", - version="0.4.0", + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.1.2", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="hex", - name="coherence", - version="0.3.1", + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.1.3", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="hex", - name="coherence", - version="0.3.0", + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.2.0", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="hex", - name="coherence", - version="0.2.0", + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.3.0", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="hex", - name="coherence", - version="0.1.3", + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.3.1", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="hex", - name="coherence", - version="0.1.2", + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.4.0", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="hex", - name="coherence", - version="0.1.1", + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.0", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - PackageURL( - type="hex", - name="coherence", - version="0.1.0", + AffectedPackage( + vulnerable_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.1", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="hex", + namespace=None, + name="coherence", + version="0.5.2", + qualifiers={}, + subpath=None, + ), ), - }, - resolved_package_urls={ - PackageURL( - type="hex", - name="coherence", - version="0.5.2", - ), - }, + ], references=[ Reference( reference_id="2aae6e3a-24a3-4d5f-86ff-b964eaf7c6d1", diff --git a/vulnerabilities/tests/test_gentoo.py b/vulnerabilities/tests/test_gentoo.py index bae2a0ad6..1cafb7b86 100644 --- a/vulnerabilities/tests/test_gentoo.py +++ b/vulnerabilities/tests/test_gentoo.py @@ -31,6 +31,7 @@ from vulnerabilities.importers.gentoo import GentooDataSource from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -99,26 +100,22 @@ def test_process_file(self): "Subversion may allow remote\n " "attackers to execute arbitrary code.\n " ), - impacted_package_urls={ - PackageURL( - type="ebuild", - namespace="dev-vcs", - name="subversion", - version="0.1.1", - qualifiers=OrderedDict(), - subpath=None, + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="ebuild", + namespace="dev-vcs", + name="subversion", + version="0.1.1", + ), + patched_package=PackageURL( + type="ebuild", + namespace="dev-vcs", + name="subversion", + version="1.9.7", + ), ) - }, - resolved_package_urls={ - PackageURL( - type="ebuild", - namespace="dev-vcs", - name="subversion", - version="1.9.7", - qualifiers=OrderedDict(), - subpath=None, - ) - }, + ], references=[ Reference( url="https://security.gentoo.org/glsa/201709-09", diff --git a/vulnerabilities/tests/test_github.py b/vulnerabilities/tests/test_github.py index 24de42d20..3306b75a5 100644 --- a/vulnerabilities/tests/test_github.py +++ b/vulnerabilities/tests/test_github.py @@ -42,7 +42,7 @@ from vulnerabilities.severity_systems import ScoringSystem from vulnerabilities.importers.github import GitHubTokenError from vulnerabilities.importers.github import query - +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) TEST_DATA = os.path.join(BASE_DIR, "test_data") @@ -63,13 +63,13 @@ def tearDown(self): def test_categorize_versions(self): eg_version_range = ">= 3.3.0, < 3.3.5" - eg_versions = {"3.3.6", "3.3.0", "3.3.4", "3.2.0"} + eg_versions = ["3.3.6", "3.3.0", "3.3.4", "3.2.0"] aff_vers, safe_vers = self.data_src.categorize_versions( "pypi", eg_version_range, eg_versions ) - exp_safe_vers = {"3.3.6", "3.2.0"} - exp_aff_vers = {"3.3.0", "3.3.4"} + exp_safe_vers = ["3.3.6", "3.2.0"] + exp_aff_vers = ["3.3.0", "3.3.4"] assert aff_vers == exp_aff_vers assert safe_vers == exp_safe_vers @@ -168,25 +168,6 @@ def test_process_response(self): expected_advisories = [ Advisory( summary="Denial of Service in Tomcat", - impacted_package_urls=set(), - resolved_package_urls={ - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="9.0.2", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="1.2.0", - qualifiers={}, - subpath=None, - ), - }, references=[ Reference( reference_id="GHSA-qcxh-w3j9-58qr", @@ -208,26 +189,18 @@ def test_process_response(self): ), Advisory( summary="Denial of Service in Tomcat", - impacted_package_urls={ - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="9.0.2", - qualifiers={}, - subpath=None, - ) - }, - resolved_package_urls={ - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="1.2.0", - qualifiers={}, - subpath=None, + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="maven", + namespace="org.apache.tomcat.embed", + name="tomcat-embed-core", + version="9.0.2", + qualifiers={}, + subpath=None, + ) ) - }, + ], references=[ Reference( reference_id="GHSA-qcxh-w3j9-58qr", @@ -249,25 +222,6 @@ def test_process_response(self): ), Advisory( summary="Improper Input Validation in Tomcat", - impacted_package_urls=set(), - resolved_package_urls={ - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="9.0.2", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="1.2.0", - qualifiers={}, - subpath=None, - ), - }, references=[ Reference( reference_id="GHSA-c9hw-wf7x-jp9j", @@ -289,25 +243,6 @@ def test_process_response(self): ), Advisory( summary="Improper Input Validation in Tomcat", - impacted_package_urls=set(), - resolved_package_urls={ - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="9.0.2", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="1.2.0", - qualifiers={}, - subpath=None, - ), - }, references=[ Reference( reference_id="GHSA-c9hw-wf7x-jp9j", @@ -329,26 +264,16 @@ def test_process_response(self): ), Advisory( summary="Improper Input Validation in Tomcat", - impacted_package_urls={ - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="9.0.2", - qualifiers={}, - subpath=None, + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="maven", + namespace="org.apache.tomcat.embed", + name="tomcat-embed-core", + version="9.0.2", + ) ) - }, - resolved_package_urls={ - PackageURL( - type="maven", - namespace="org.apache.tomcat.embed", - name="tomcat-embed-core", - version="1.2.0", - qualifiers={}, - subpath=None, - ) - }, + ], references=[ Reference( reference_id="GHSA-c9hw-wf7x-jp9j", diff --git a/vulnerabilities/tests/test_import_runner.py b/vulnerabilities/tests/test_import_runner.py index efda749b2..e0810357f 100644 --- a/vulnerabilities/tests/test_import_runner.py +++ b/vulnerabilities/tests/test_import_runner.py @@ -30,6 +30,7 @@ from vulnerabilities.data_source import PackageURL from vulnerabilities.data_source import Reference from vulnerabilities.import_runner import ImportRunner +from vulnerabilities.helpers import AffectedPackage # from vulnerabilities.import_runner import _insert_vulnerabilities_and_references @@ -72,8 +73,12 @@ def save(self): vulnerability_id="CVE-2020-13371337", summary="vulnerability description here", references=[Reference(url="https://example.com/with/more/info/CVE-2020-13371337")], - impacted_package_urls=[PackageURL(name="mock-webserver", type="pypi", version="1.2.33")], - resolved_package_urls=[PackageURL(name="mock-webserver", type="pypi", version="1.2.34")], + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL(name="mock-webserver", type="pypi", version="1.2.33"), + patched_package=PackageURL(name="mock-webserver", type="pypi", version="1.2.34"), + ) + ], ) ] @@ -107,10 +112,10 @@ def test_ImportRunner_new_package_and_new_vulnerability(db): assert models.Vulnerability.objects.count() == 1 assert models.VulnerabilityReference.objects.count() == 1 - assert models.PackageRelatedVulnerability.objects.count() == 2 + assert models.PackageRelatedVulnerability.objects.count() == 1 - assert impacted_package.vulnerabilities.count() == 1 - assert resolved_package.vulnerabilities.count() == 1 + assert impacted_package.vulnerable_to.count() == 1 + assert resolved_package.resolved_to.count() == 1 vuln = impacted_package.vulnerabilities.first() assert vuln.vulnerability_id == "CVE-2020-13371337" @@ -138,13 +143,12 @@ def test_ImportRunner_existing_package_and_new_vulnerability(db): assert models.Vulnerability.objects.count() == 1 assert models.VulnerabilityReference.objects.count() == 1 - assert models.PackageRelatedVulnerability.objects.count() == 2 + assert models.PackageRelatedVulnerability.objects.count() == 1 - resolved_package = models.PackageRelatedVulnerability.objects.filter(is_vulnerable=False)[0] - assert resolved_package.package.version == "1.2.34" + prv = models.PackageRelatedVulnerability.objects.all()[0] + assert prv.patched_package.version == "1.2.34" - impacted_package = models.PackageRelatedVulnerability.objects.filter(is_vulnerable=True)[0] - vuln = impacted_package.vulnerability + vuln = prv.vulnerability assert vuln.vulnerability_id == "CVE-2020-13371337" vuln_refs = models.VulnerabilityReference.objects.filter(vulnerability=vuln) @@ -167,17 +171,16 @@ def test_ImportRunner_new_package_version_affected_by_existing_vulnerability(db) models.PackageRelatedVulnerability.objects.create( vulnerability=vuln, package=models.Package.objects.create(name="mock-webserver", type="pypi", version="1.2.33"), - is_vulnerable=True, - ) - models.PackageRelatedVulnerability.objects.create( - vulnerability=vuln, - package=models.Package.objects.create(name="mock-webserver", type="pypi", version="1.2.34"), - is_vulnerable=False, + patched_package=models.Package.objects.create( + name="mock-webserver", type="pypi", version="1.2.34" + ), ) advisories = deepcopy(ADVISORIES) - advisories[0].impacted_package_urls.append( - PackageURL(name="mock-webserver", type="pypi", version="1.2.33a") + advisories[0].affected_packages.append( + AffectedPackage( + vulnerable_package=PackageURL(name="mock-webserver", type="pypi", version="1.2.33a") + ) ) runner = make_import_runner(updated_advs=advisories) @@ -189,106 +192,56 @@ def test_ImportRunner_new_package_version_affected_by_existing_vulnerability(db) assert models.Package.objects.all().count() == 3 assert models.Vulnerability.objects.count() == 1 assert models.VulnerabilityReference.objects.count() == 1 - assert models.PackageRelatedVulnerability.objects.count() == 3 + assert models.PackageRelatedVulnerability.objects.count() == 2 qs = models.Package.objects.filter(name="mock-webserver", version="1.2.33a") assert len(qs) == 1 added_package = qs[0] - qs = models.PackageRelatedVulnerability.objects.filter( - package=added_package, is_vulnerable=True - ) + qs = models.PackageRelatedVulnerability.objects.filter(package=added_package) assert len(qs) == 1 impacted_package = qs[0] assert impacted_package.vulnerability.vulnerability_id == "CVE-2020-13371337" -# def test_ImportRunner_assumed_fixed_package_is_updated_as_impacted(db): +# def test_ImportRunner_fixed_package_version_is_added(db): # """ -# A version of a package existing in the database that was assumed to be fixed was found to -# still be affected by a vulnerability that also already existed in the database (i.e. the -# previously stored data was corrected). +# A new version of a package was published that fixes a previously unresolved vulnerability. # """ -# FIXME This case is not supported due to cascading deletes. When the ResolvedPackage is -# FIXME deleted, the referenced Package and Vulnerability are also deleted. -# -# vuln = models.Vulnerability.objects.create( -# vulnerability_id='CVE-2020-13371337', summary='vulnerability description here') -# -# models.VulnerabilityReference.objects.create( -# vulnerability=vuln, -# url='https://example.com/with/more/info/CVE-2020-13371337' -# ) -# -# misclassified_package = models.Package.objects.create( -# name='mock-webserver', type='pypi', version='1.2.33') -# -# models.ResolvedPackage.objects.create( -# vulnerability=vuln, -# package=misclassified_package, -# ) -# models.ResolvedPackage.objects.create( -# vulnerability=vuln, -# package=models.Package.objects.create( -# name='mock-webserver', type='pypi', version='1.2.34'), -# ) -# -# runner = make_import_runner(updated_advs=ADVISORIES) -# -# runner.run() -# -# assert runner.importer.last_run is not None -# assert runner.importer.saved -# -# assert models.Package.objects.all().count() == 2 -# assert models.Vulnerability.objects.count() == 1 -# assert models.VulnerabilityReference.objects.count() == 1 -# assert models.ImpactedPackage.objects.count() == 2 -# assert models.ResolvedPackage.objects.count() == 0 -# -# assert models.ImpactedPackage.objects.filter(package=misclassified_package).count() == 1 -# assert models.ResolvedPackage.objects.filter(package=misclassified_package).count() == 0 - - -def test_ImportRunner_fixed_package_version_is_added(db): - """ - A new version of a package was published that fixes a previously unresolved vulnerability. - """ - vuln = models.Vulnerability.objects.create( - vulnerability_id="CVE-2020-13371337", summary="vulnerability description here" - ) +# vuln = models.Vulnerability.objects.create( +# vulnerability_id="CVE-2020-13371337", summary="vulnerability description here" +# ) - models.VulnerabilityReference.objects.create( - vulnerability=vuln, url="https://example.com/with/more/info/CVE-2020-13371337" - ) - models.PackageRelatedVulnerability.objects.create( - vulnerability=vuln, - package=models.Package.objects.create(name="mock-webserver", type="pypi", version="1.2.33"), - is_vulnerable=True, - ) +# models.VulnerabilityReference.objects.create( +# vulnerability=vuln, url="https://example.com/with/more/info/CVE-2020-13371337" +# ) +# models.PackageRelatedVulnerability.objects.create( +# vulnerability=vuln, +# package=models.Package.objects.create(name="mock-webserver", type="pypi", version="1.2.33"), +# ) - runner = make_import_runner(updated_advs=ADVISORIES) +# runner = make_import_runner(updated_advs=ADVISORIES) - runner.run() +# runner.run() - assert runner.importer.last_run is not None - assert runner.importer.saved +# assert runner.importer.last_run is not None +# assert runner.importer.saved - assert models.Package.objects.all().count() == 2 - assert models.Vulnerability.objects.count() == 1 - assert models.VulnerabilityReference.objects.count() == 1 - assert models.PackageRelatedVulnerability.objects.count() == 2 +# assert models.Package.objects.all().count() == 2 +# assert models.Vulnerability.objects.count() == 1 +# assert models.VulnerabilityReference.objects.count() == 1 +# assert models.PackageRelatedVulnerability.objects.count() == 2 - qs = models.Package.objects.filter(name="mock-webserver", version="1.2.34") - assert len(qs) == 1 - added_package = qs[0] +# qs = models.Package.objects.filter(name="mock-webserver", version="1.2.34") +# assert len(qs) == 1 +# added_package = qs[0] - qs = models.PackageRelatedVulnerability.objects.filter( - package=added_package, is_vulnerable=False - ) - assert len(qs) == 1 - resolved_package = qs[0] - assert resolved_package.vulnerability.vulnerability_id == "CVE-2020-13371337" +# qs = models.PackageRelatedVulnerability.objects.filter( +# package=added_package, is_vulnerable=False +# ) +# assert len(qs) == 1 +# resolved_package = qs[0] +# assert resolved_package.vulnerability.vulnerability_id == "CVE-2020-13371337" def test_ImportRunner_updated_vulnerability(db): @@ -303,12 +256,9 @@ def test_ImportRunner_updated_vulnerability(db): models.PackageRelatedVulnerability.objects.create( vulnerability=vuln, package=models.Package.objects.create(name="mock-webserver", type="pypi", version="1.2.33"), - is_vulnerable=True, - ) - models.PackageRelatedVulnerability.objects.create( - vulnerability=vuln, - package=models.Package.objects.create(name="mock-webserver", type="pypi", version="1.2.34"), - is_vulnerable=False, + patched_package=models.Package.objects.create( + name="mock-webserver", type="pypi", version="1.2.34" + ), ) runner = make_import_runner(updated_advs=ADVISORIES) @@ -319,7 +269,7 @@ def test_ImportRunner_updated_vulnerability(db): assert runner.importer.saved assert models.Package.objects.all().count() == 2 - assert models.PackageRelatedVulnerability.objects.count() == 2 + assert models.PackageRelatedVulnerability.objects.count() == 1 vuln = models.Vulnerability.objects.first() assert vuln.summary == "vulnerability description here" diff --git a/vulnerabilities/tests/test_istio.py b/vulnerabilities/tests/test_istio.py index 8269ed092..2f53a40d4 100644 --- a/vulnerabilities/tests/test_istio.py +++ b/vulnerabilities/tests/test_istio.py @@ -30,6 +30,7 @@ from vulnerabilities.data_source import Advisory, Reference from vulnerabilities.importers.istio import IstioDataSource from vulnerabilities.package_managers import GitHubTagsAPI +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -81,170 +82,128 @@ def test_process_file(self): Advisory( summary="Incorrect access control.", vulnerability_id="CVE-2019-12243", - impacted_package_urls={ - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.1.1", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.3.1", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.3.0", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.3.1", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.1.0", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.2.1", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.1.1", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.2.1", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.1.0", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.3.0", - qualifiers={}, - subpath=None, - ), - }, - resolved_package_urls={ - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.1.17", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.0.0", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.0.0", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.9.1", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.3.2", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.3.2", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.2.7", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="golang", - namespace=None, - name="istio", - version="1.1.17", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.2.7", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="github", - namespace=None, - name="istio", - version="1.9.1", - qualifiers={}, - subpath=None, - ), - }, + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="golang", + name="istio", + version="1.1.0", + ), + patched_package=PackageURL( + type="golang", + name="istio", + version="1.1.17", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="golang", + name="istio", + version="1.1.1", + ), + patched_package=PackageURL( + type="golang", + name="istio", + version="1.1.17", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="golang", + name="istio", + version="1.2.1", + ), + patched_package=PackageURL( + type="golang", + name="istio", + version="1.2.7", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="golang", + name="istio", + version="1.3.0", + ), + patched_package=PackageURL( + type="golang", + name="istio", + version="1.3.2", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="golang", + name="istio", + version="1.3.1", + ), + patched_package=PackageURL( + type="golang", + name="istio", + version="1.3.2", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="github", + name="istio", + version="1.1.0", + ), + patched_package=PackageURL( + type="github", + name="istio", + version="1.1.17", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="github", + name="istio", + version="1.1.1", + ), + patched_package=PackageURL( + type="github", + name="istio", + version="1.1.17", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="github", + name="istio", + version="1.2.1", + ), + patched_package=PackageURL( + type="github", + name="istio", + version="1.2.7", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="github", + name="istio", + version="1.3.0", + ), + patched_package=PackageURL( + type="github", + name="istio", + version="1.3.2", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="github", + name="istio", + version="1.3.1", + ), + patched_package=PackageURL( + type="github", + name="istio", + version="1.3.2", + ), + ), + ], references=[], ) ] diff --git a/vulnerabilities/tests/test_models.py b/vulnerabilities/tests/test_models.py index 096477af3..5f6ce075f 100644 --- a/vulnerabilities/tests/test_models.py +++ b/vulnerabilities/tests/test_models.py @@ -22,7 +22,6 @@ from datetime import datetime from unittest import TestCase -from unittest.mock import MagicMock, patch import pytest from freezegun import freeze_time @@ -35,7 +34,6 @@ def test_generate_vulcoid_given_timestamp_object(self): timestamp_object = datetime(2021, 1, 1, 11, 12, 13, 2000) expected_vulcoid = "VULCOID-20210101-1112-13002000" found_vulcoid = models.Vulnerability.generate_vulcoid(timestamp_object) - print(found_vulcoid) assert expected_vulcoid == found_vulcoid def test_generate_vulcoid(self): @@ -66,3 +64,39 @@ def test_vulnerability_save_without_vulnerability_id(self): ).count() == 1 ) + + +# FIXME: The fixture code is duplicated. setUpClass is not working with the pytest mark. +@pytest.mark.django_db +class TestPackageRelatedVulnerablity(TestCase): + def test_package_to_vulnerability(self): + p1 = models.Package.objects.create(type="deb", name="git", version="2.30.1") + p2 = models.Package.objects.create(type="deb", name="git", version="2.31.1") + v1 = models.Vulnerability.objects.create(vulnerability_id="CVE-123-2002") + + prv1 = models.PackageRelatedVulnerability.objects.create( + patched_package=p2, package=p1, vulnerability=v1 + ) + + assert p1.vulnerabilities.all().count() == 1 + assert p1.resolved_vulnerabilities.all().count() == 0 + assert p1.vulnerabilities.all()[0] == v1 + + assert p2.vulnerabilities.all().count() == 0 + assert p2.resolved_vulnerabilities.all().count() == 1 + assert p2.resolved_vulnerabilities.all()[0] == v1 + + def test_vulnerability_package(self): + p1 = models.Package.objects.create(type="deb", name="git", version="2.30.1") + p2 = models.Package.objects.create(type="deb", name="git", version="2.31.1") + v1 = models.Vulnerability.objects.create(vulnerability_id="CVE-123-2002") + + prv1 = models.PackageRelatedVulnerability.objects.create( + patched_package=p2, package=p1, vulnerability=v1 + ) + + assert v1.vulnerable_packages.all().count() == 1 + assert v1.patched_packages.all().count() == 1 + + assert v1.vulnerable_packages.all()[0] == p1 + assert v1.patched_packages.all()[0] == p2 diff --git a/vulnerabilities/tests/test_msr2019.py b/vulnerabilities/tests/test_msr2019.py index df8956f3b..8976b4200 100644 --- a/vulnerabilities/tests/test_msr2019.py +++ b/vulnerabilities/tests/test_msr2019.py @@ -48,8 +48,6 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2018-11040", - impacted_package_urls=set(), - resolved_package_urls=set(), references=[ Reference( reference_id="", @@ -61,8 +59,6 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2013-6408", - impacted_package_urls=set(), - resolved_package_urls=set(), references=[ Reference( reference_id="", @@ -74,8 +70,6 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2015-6748", - impacted_package_urls=set(), - resolved_package_urls=set(), references=[ Reference( reference_id="", @@ -87,8 +81,6 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2018-14658", - impacted_package_urls=set(), - resolved_package_urls=set(), references=[ Reference( reference_id="", @@ -100,8 +92,6 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2017-1000355", - impacted_package_urls=set(), - resolved_package_urls=set(), references=[ Reference( reference_id="", @@ -113,8 +103,6 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="CVE-2018-1000844", - impacted_package_urls=set(), - resolved_package_urls=set(), references=[ Reference( reference_id="", @@ -126,8 +114,6 @@ def test_to_advisories(self): Advisory( summary="", vulnerability_id="", - impacted_package_urls=set(), - resolved_package_urls=set(), references=[ Reference( reference_id="HTTPCLIENT-1803", diff --git a/vulnerabilities/tests/test_nginx.py b/vulnerabilities/tests/test_nginx.py index 1281bc67e..38551a46b 100644 --- a/vulnerabilities/tests/test_nginx.py +++ b/vulnerabilities/tests/test_nginx.py @@ -30,6 +30,7 @@ from vulnerabilities.data_source import Reference from vulnerabilities.importers.nginx import NginxDataSource from vulnerabilities.package_managers import GitHubTagsAPI +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -48,138 +49,137 @@ def setUpClass(cls): ) def test_to_advisories(self): + # expected_advisories = [Advisory(summary='An error log data are not sanitized', vulnerability_id='CVE-2009-4487', affected_packages=[], references=[]), Advisory(summary='Directory traversal vulnerability', vulnerability_id='CVE-2009-3898', affected_packages=[AffectedPackage(vulnerable_package=PackageURL(type='generic', namespace=None, name='nginx', version='0.7.52', qualifiers={}, subpath=None), patched_package=None)], references=[]), Advisory(summary='Stack-based buffer overflow with specially crafted request', vulnerability_id='CVE-2013-2028', affected_packages=[AffectedPackage(vulnerable_package=PackageURL(type='generic', namespace=None, name='nginx', version='1.3.9', qualifiers={}, subpath=None), patched_package=PackageURL(type='generic', namespace=None, name='nginx', version='1.7.0', qualifiers={}, subpath=None))], references=[]), Advisory(summary='The renegotiation vulnerability in SSL protocol', vulnerability_id='CVE-2009-3555', affected_packages=[AffectedPackage(vulnerable_package=PackageURL(type='generic', namespace=None, name='nginx', version='0.7.52', qualifiers={}, subpath=None), patched_package=None)], references=[]), Advisory(summary='Vulnerabilities with Windows directory aliases', vulnerability_id='CVE-2011-4963', affected_packages=[AffectedPackage(vulnerable_package=PackageURL(type='generic', namespace=None, name='nginx', version='0.7.52', qualifiers={'os': 'windows'}, subpath=None), patched_package=PackageURL(type='generic', namespace=None, name='nginx', version='1.2.3', qualifiers={}, subpath=None)), AffectedPackage(vulnerable_package=PackageURL(type='generic', namespace=None, name='nginx', version='1.2.3', qualifiers={'os': 'windows'}, subpath=None), patched_package=PackageURL(type='generic', namespace=None, name='nginx', version='1.3.9', qualifiers={}, subpath=None))], references=[]), Advisory(summary='Vulnerabilities with invalid UTF-8 sequence on Windows', vulnerability_id='CVE-2010-2266', affected_packages=[AffectedPackage(vulnerable_package=PackageURL(type='generic', namespace=None, name='nginx', version='0.7.52', qualifiers={'os': 'windows'}, subpath=None), patched_package=None)], references=[])] expected_advisories = [ Advisory( - summary="Stack-based buffer overflow with specially crafted request", - impacted_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="1.3.9", - qualifiers={}, - subpath=None, - ) - }, - resolved_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="1.7.0", - qualifiers={}, - subpath=None, - ) - }, + summary="An error log data are not sanitized", + vulnerability_id="CVE-2009-4487", + affected_packages=[], references=[], - vulnerability_id="CVE-2013-2028", ), Advisory( - summary="Vulnerabilities with Windows directory aliases", - impacted_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="0.7.52", - qualifiers={"os": "windows"}, - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="1.2.3", - qualifiers={"os": "windows"}, - subpath=None, - ), - }, - resolved_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="1.2.3", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="1.3.9", - qualifiers={}, - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="1.7.0", - qualifiers={}, - subpath=None, - ), - }, + summary="Directory traversal vulnerability", + vulnerability_id="CVE-2009-3898", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="nginx", + version="0.7.52", + qualifiers={}, + subpath=None, + ), + patched_package=None, + ) + ], references=[], - vulnerability_id="CVE-2011-4963", ), Advisory( - summary="Vulnerabilities with invalid UTF-8 sequence on Windows", - impacted_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="0.7.52", - qualifiers={"os": "windows"}, - subpath=None, + summary="Stack-based buffer overflow with specially crafted request", + vulnerability_id="CVE-2013-2028", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="nginx", + version="1.3.9", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="nginx", + version="1.7.0", + qualifiers={}, + subpath=None, + ), ) - }, - resolved_package_urls=set(), + ], references=[], - vulnerability_id="CVE-2010-2266", ), Advisory( - summary="An error log data are not sanitized", - impacted_package_urls=set(), - resolved_package_urls={}, + summary="The renegotiation vulnerability in SSL protocol", + vulnerability_id="CVE-2009-3555", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="nginx", + version="0.7.52", + qualifiers={}, + subpath=None, + ), + patched_package=None, + ) + ], references=[], - vulnerability_id="CVE-2009-4487", ), Advisory( - summary="The renegotiation vulnerability in SSL protocol", - impacted_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="0.7.52", - qualifiers={}, - subpath=None, - ) - }, - resolved_package_urls=set(), + summary="Vulnerabilities with Windows directory aliases", + vulnerability_id="CVE-2011-4963", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="nginx", + version="0.7.52", + qualifiers={"os": "windows"}, + subpath=None, + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="nginx", + version="1.2.3", + qualifiers={}, + subpath=None, + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="nginx", + version="1.2.3", + qualifiers={"os": "windows"}, + subpath=None, + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="nginx", + version="1.3.9", + qualifiers={}, + subpath=None, + ), + ), + ], references=[], - vulnerability_id="CVE-2009-3555", ), Advisory( - summary="Directory traversal vulnerability", - impacted_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="nginx", - version="0.7.52", - qualifiers={}, - subpath=None, + summary="Vulnerabilities with invalid UTF-8 sequence on Windows", + vulnerability_id="CVE-2010-2266", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="nginx", + version="0.7.52", + qualifiers={"os": "windows"}, + subpath=None, + ), + patched_package=None, ) - }, - resolved_package_urls=set(), + ], references=[], - vulnerability_id="CVE-2009-3898", ), ] - found_data = self.data_src.to_advisories(self.data) expected_advisories = list(map(Advisory.normalized, expected_advisories)) found_data = list(map(Advisory.normalized, found_data)) diff --git a/vulnerabilities/tests/test_npm.py b/vulnerabilities/tests/test_npm.py index 19e856a39..953cb1d96 100644 --- a/vulnerabilities/tests/test_npm.py +++ b/vulnerabilities/tests/test_npm.py @@ -88,18 +88,15 @@ def test_import(self, _): assert models.Vulnerability.objects.count() == 3 assert models.VulnerabilityReference.objects.count() == 3 - assert models.PackageRelatedVulnerability.objects.filter(is_vulnerable=False).count() == 5 + assert models.PackageRelatedVulnerability.objects.all().count() == 4 - assert models.PackageRelatedVulnerability.objects.filter(is_vulnerable=True).count() == 4 - - expected_package_count = sum([len(v) for v in MOCK_VERSION_API.cache.values()]) - assert models.Package.objects.count() == expected_package_count + assert models.Package.objects.count() == 8 self.assert_for_package( "jquery", {"3.4.0"}, {"3.8.0"}, "1518", vulnerability_id="CVE-2020-11022" ) # nopep8 self.assert_for_package("kerberos", {"0.5.8"}, {"1.2.0"}, "1514") - self.assert_for_package("subtext", {"4.1.1", "7.0.0"}, {"3.7.0", "6.1.3", "7.0.5"}, "1476") + self.assert_for_package("subtext", {"4.1.1", "7.0.0"}, {"6.1.3", "7.0.5"}, "1476") def assert_for_package( self, @@ -125,7 +122,7 @@ def assert_for_package( for version in resolved_versions: pkg = models.Package.objects.get(name=package_name, version=version) assert models.PackageRelatedVulnerability.objects.filter( - package=pkg, vulnerability=vuln, is_vulnerable=False + patched_package=pkg, vulnerability=vuln ) diff --git a/vulnerabilities/tests/test_nvd.py b/vulnerabilities/tests/test_nvd.py index 4907c6970..d8d75a47c 100644 --- a/vulnerabilities/tests/test_nvd.py +++ b/vulnerabilities/tests/test_nvd.py @@ -136,8 +136,6 @@ def test_to_advisories(self): "attacks such as buffer overflows via a large size value, which causes less memory to " # nopep8 "be allocated than expected." ), - impacted_package_urls=[], - resolved_package_urls=[], references=[ Reference( url="http://code.google.com/p/gperftools/source/browse/tags/perftools-0.4/ChangeLog", # nopep8 diff --git a/vulnerabilities/tests/test_openssl.py b/vulnerabilities/tests/test_openssl.py index c4a118e1f..093573ceb 100644 --- a/vulnerabilities/tests/test_openssl.py +++ b/vulnerabilities/tests/test_openssl.py @@ -29,7 +29,7 @@ from vulnerabilities.importers.openssl import OpenSSLDataSource from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference - +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) TEST_DATA = os.path.join(BASE_DIR, "test_data/", "openssl_xml_data.xml") @@ -45,319 +45,439 @@ def test_to_advisory(self): data = load_test_data() expected_advisories = [ Advisory( - summary="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.", - impacted_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1f", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1d", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1e", - qualifiers=OrderedDict(), - subpath=None, + summary='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.', + vulnerability_id="CVE-2020-1967", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1d", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1g", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1e", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1g", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1f", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1g", + ), ), - }, - resolved_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1g", - qualifiers=OrderedDict(), - subpath=None, - ) - }, + ], references=[ Reference( - url="https://github.com/openssl/openssl/commit/" - + "eb563247aef3e83dda7679c43f9649270462e5b1" + reference_id="", + url="https://github.com/openssl/openssl/commit/eb563247aef3e83dda7679c43f9649270462e5b1", + severities=[], ) ], - vulnerability_id="CVE-2020-1967", ), Advisory( - summary="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.", - impacted_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2g", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2p", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2f", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2l", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2c", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2m", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2j", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1d", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2r", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2i", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2a", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2t", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1c", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1a", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2b", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2k", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2s", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2q", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1b", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2h", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2o", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2e", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2d", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2n", - qualifiers=OrderedDict(), - subpath=None, - ), - }, - resolved_package_urls={ - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.1.1e", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="generic", - namespace=None, - name="openssl", - version="1.0.2u", - qualifiers=OrderedDict(), - subpath=None, + summary="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.", + vulnerability_id="CVE-2019-1551", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1e", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2a", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2b", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2c", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2d", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2e", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2f", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2g", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2h", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2i", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2j", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2k", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2l", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2m", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2n", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2o", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2p", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2q", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2r", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2s", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2t", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.0.2u", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1", + ), + patched_package=None, + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1a", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1e", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1b", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1e", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1c", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1e", + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1d", + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="openssl", + version="1.1.1e", + ), ), - }, + ], references=[ Reference( - url="https://github.com/openssl/openssl/commit/" - + "419102400a2811582a7a3d4a4e317d72e5ce0a8f" + reference_id="", + url="https://github.com/openssl/openssl/commit/419102400a2811582a7a3d4a4e317d72e5ce0a8f", + severities=[], ), Reference( - url="https://github.com/openssl/openssl/commit/" - + "f1c5eea8a817075d31e43f5876993c6710238c98" + reference_id="", + url="https://github.com/openssl/openssl/commit/f1c5eea8a817075d31e43f5876993c6710238c98", + severities=[], ), ], - vulnerability_id="CVE-2019-1551", ), ] + found_advisories = OpenSSLDataSource.to_advisories(data) found_advisories = list(map(Advisory.normalized, found_advisories)) diff --git a/vulnerabilities/tests/test_postgresql.py b/vulnerabilities/tests/test_postgresql.py index c8da3c790..6eb14ea94 100644 --- a/vulnerabilities/tests/test_postgresql.py +++ b/vulnerabilities/tests/test_postgresql.py @@ -29,6 +29,7 @@ from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference from vulnerabilities.importers.postgresql import to_advisories +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -43,76 +44,75 @@ def test_to_advisories(self): expected_advisories = [ Advisory( - summary="Windows installer runs executables from uncontrolled directories", - impacted_package_urls=[ - PackageURL( - type="generic", - namespace=None, - name="postgresql", - version="9.5", - qualifiers={"os": "windows"}, - subpath=None, - ) - ], - resolved_package_urls=[ - PackageURL( - type="generic", - namespace=None, - name="postgresql", - version="9.5.22", - qualifiers={"os": "windows"}, - subpath=None, - ) + summary="ALTER ... DEPENDS ON EXTENSION is missing authorization checks.", + vulnerability_id="CVE-2020-1720", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="postgresql", + version="11", + qualifiers={}, + subpath=None, + ), + patched_package=None, + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="postgresql", + version="12", + qualifiers={}, + subpath=None, + ), + patched_package=None, + ), ], references=[ Reference( - url="https://www.postgresql.org/about/news/postgresql-123-118-1013-9618-and-9522-released-2038/", # nopep8 reference_id="", - ) - ], - vulnerability_id="CVE-2020-10733", - ), - Advisory( - summary="ALTER ... DEPENDS ON EXTENSION is missing authorization checks.", - impacted_package_urls=[ - PackageURL( - type="generic", - namespace=None, - name="postgresql", - version="11", - qualifiers={}, - subpath=None, + url="https://access.redhat.com/security/cve/CVE-2020-1720", + severities=[], ), - PackageURL( - type="generic", - namespace=None, - name="postgresql", - version="12", - qualifiers={}, - subpath=None, + Reference( + reference_id="", + url="https://www.postgresql.org/about/news/postgresql-122-117-1012-9617-9521-and-9426-released-2011/", + severities=[], ), ], - resolved_package_urls=[ - PackageURL( - type="generic", - namespace=None, - name="postgresql", - version=None, - qualifiers={}, - subpath=None, + ), + Advisory( + summary="Windows installer runs executables from uncontrolled directories", + vulnerability_id="CVE-2020-10733", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="generic", + namespace=None, + name="postgresql", + version="9.5", + qualifiers={"os": "windows"}, + subpath=None, + ), + patched_package=PackageURL( + type="generic", + namespace=None, + name="postgresql", + version="9.5.22", + qualifiers={"os": "windows"}, + subpath=None, + ), ) ], references=[ Reference( - url="https://access.redhat.com/security/cve/CVE-2020-1720", - reference_id="", - ), - Reference( - url="https://www.postgresql.org/about/news/postgresql-122-117-1012-9617-9521-and-9426-released-2011/", # nopep8 reference_id="", - ), + url="https://www.postgresql.org/about/news/postgresql-123-118-1013-9618-and-9522-released-2038/", + severities=[], + ) ], - vulnerability_id="CVE-2020-1720", ), ] diff --git a/vulnerabilities/tests/test_redhat_importer.py b/vulnerabilities/tests/test_redhat_importer.py index 967b01684..01b9aacae 100644 --- a/vulnerabilities/tests/test_redhat_importer.py +++ b/vulnerabilities/tests/test_redhat_importer.py @@ -31,7 +31,9 @@ from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference from vulnerabilities.data_source import VulnerabilitySeverity -from vulnerabilities.severity_systems import scoring_systems, ScoringSystem +from vulnerabilities.severity_systems import ScoringSystem +from vulnerabilities.severity_systems import scoring_systems +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -53,8 +55,6 @@ def test_rpm_to_purl(self): namespace="redhat", name="kernel", version="2.6.32-754.el6", - qualifiers=OrderedDict(), - subpath=None, ) def test_to_advisory(self): @@ -62,75 +62,100 @@ def test_to_advisory(self): expected_advisories = [ Advisory( summary="CVE-2016-9401 bash: popd controlled free", - impacted_package_urls=[ - PackageURL( - type="rpm", - namespace="redhat", - name="bash", - version="4.2.46-28.el7", - qualifiers={}, - subpath=None, + vulnerability_id="CVE-2016-9401", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="rpm", + namespace="redhat", + name="bash", + version="4.1.2-48.el6", + ), + patched_package=None, ), - PackageURL( - type="rpm", - namespace="redhat", - name="bash", - version="4.1.2-48.el6", - qualifiers={}, - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="rpm", + namespace="redhat", + name="bash", + version="4.2.46-28.el7", + ), + patched_package=None, ), ], - resolved_package_urls=[], references=[ Reference( - reference_id="RHSA-2017:0725", - url="https://access.redhat.com/errata/RHSA-2017:0725", + reference_id="", + url="https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2016-9401.json", severities=[ VulnerabilitySeverity( - system=scoring_systems["rhas"], - value=2.2, - ) + system=ScoringSystem( + identifier="cvssv3", + name="CVSSv3 Base Score", + url="https://www.first.org/cvss/v3-0/", + notes="cvssv3 base score", + ), + value="3.3", + ), + VulnerabilitySeverity( + system=ScoringSystem( + identifier="cvssv3_vector", + name="CVSSv3 Vector", + url="https://www.first.org/cvss/v3-0/", + notes="cvssv3 vector, used to get additional info about nature and severity of vulnerability", + ), + value="CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + ), ], ), Reference( - reference_id="RHSA-2017:1931", - url="https://access.redhat.com/errata/RHSA-2017:1931", + reference_id="1396383", + url="https://bugzilla.redhat.com/show_bug.cgi?id=1396383", severities=[ VulnerabilitySeverity( - system=scoring_systems["rhas"], - value=2.2, + system=ScoringSystem( + identifier="rhbs", + name="RedHat Bugzilla severity", + url="https://bugzilla.redhat.com/page.cgi?id=fields.html#bug_severity", + notes="", + ), + value=2.0, ) ], ), Reference( - reference_id="", - url="https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2016-9401.json", # nopep8 + reference_id="RHSA-2017:0725", + url="https://access.redhat.com/errata/RHSA-2017:0725", severities=[ VulnerabilitySeverity( - system=scoring_systems["cvssv3"], - value="3.3", - ), - VulnerabilitySeverity( - system=scoring_systems["cvssv3_vector"], - value="CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", - ), + system=ScoringSystem( + identifier="rhas", + name="RedHat Aggregate severity", + url="https://access.redhat.com/security/updates/classification/", + notes="", + ), + value=2.2, + ) ], ), Reference( - reference_id="1396383", - url="https://bugzilla.redhat.com/show_bug.cgi?id=1396383", + reference_id="RHSA-2017:1931", + url="https://access.redhat.com/errata/RHSA-2017:1931", severities=[ VulnerabilitySeverity( - system=scoring_systems["rhbs"], - value=2.0, + system=ScoringSystem( + identifier="rhas", + name="RedHat Aggregate severity", + url="https://access.redhat.com/security/updates/classification/", + notes="", + ), + value=2.2, ) ], ), ], - vulnerability_id="CVE-2016-9401", ) ] - found_advisories = [] mock_resp = unittest.mock.MagicMock() mock_resp.json = lambda: { diff --git a/vulnerabilities/tests/test_retiredotnet.py b/vulnerabilities/tests/test_retiredotnet.py index 1494635fa..6f6bbde59 100644 --- a/vulnerabilities/tests/test_retiredotnet.py +++ b/vulnerabilities/tests/test_retiredotnet.py @@ -29,6 +29,7 @@ from vulnerabilities.importers.retiredotnet import RetireDotnetDataSource from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -55,82 +56,101 @@ def test_process_file(self): path = os.path.join(BASE_DIR, "test_data/retiredotnet/test_file.json") expected_data = Advisory( - summary=( - "Microsoft Security Advisory CVE-2019-0982: " - "ASP.NET Core Denial of Service Vulnerability" - ), - impacted_package_urls={ - PackageURL( - type="nuget", - namespace=None, - name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", - version="1.0.4", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="nuget", - namespace=None, - name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", - version="1.0.0", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="nuget", - namespace=None, - name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", - version="1.0.2", - qualifiers=OrderedDict(), - subpath=None, + summary="Microsoft Security Advisory CVE-2019-0982: ASP.NET Core Denial of Service Vulnerability", + vulnerability_id="CVE-2019-0982", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.0", + ), + patched_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.11", + ), ), - PackageURL( - type="nuget", - namespace=None, - name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", - version="1.0.3", - qualifiers=OrderedDict(), - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.1", + ), + patched_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.11", + ), ), - PackageURL( - type="nuget", - namespace=None, - name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", - version="1.1.0", - qualifiers=OrderedDict(), - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.2", + ), + patched_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.11", + ), ), - PackageURL( - type="nuget", - namespace=None, - name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", - version="1.0.1", - qualifiers=OrderedDict(), - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.3", + ), + patched_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.11", + ), ), - }, - resolved_package_urls={ - PackageURL( - type="nuget", - namespace=None, - name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", - version="1.0.11", - qualifiers=OrderedDict(), - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.4", + ), + patched_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.0.11", + ), ), - PackageURL( - type="nuget", - namespace=None, - name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", - version="1.1.5", - qualifiers=OrderedDict(), - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.1.0", + ), + patched_package=PackageURL( + type="nuget", + namespace=None, + name="Microsoft.AspNetCore.SignalR.Protocols.MessagePack", + version="1.1.5", + ), ), - }, + ], references=[ - Reference(url="https://github.com/aspnet/Announcements/issues/359", reference_id="") + Reference( + reference_id="", + url="https://github.com/aspnet/Announcements/issues/359", + severities=[], + ) ], - vulnerability_id="CVE-2019-0982", ) found_data = self.data_src.process_file(path) diff --git a/vulnerabilities/tests/test_ruby.py b/vulnerabilities/tests/test_ruby.py index 317f9466a..664f001ed 100644 --- a/vulnerabilities/tests/test_ruby.py +++ b/vulnerabilities/tests/test_ruby.py @@ -33,7 +33,7 @@ from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference from vulnerabilities.package_managers import RubyVersionAPI - +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) TEST_DATA = os.path.join(BASE_DIR, "test_data", "ruby") @@ -60,81 +60,74 @@ def setUpClass(cls): def test_process_file(self, mock_write): expected_advisories = [ Advisory( - summary=( - "An issue was discovered in" - " rack-protection/lib/rack/protection/path_traversal.rb\n" - "in Sinatra 2.x before 2.0.1 on Windows." - " Path traversal is possible via backslash\ncharacters.\n" - ), - impacted_package_urls={ - PackageURL( - type="gem", - namespace=None, - name="sinatra", - version="1.8.0", - qualifiers=OrderedDict(), - subpath=None, - ) - }, - resolved_package_urls={ - PackageURL( - type="gem", - namespace=None, - name="sinatra", - version="1.0.0", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="gem", - namespace=None, - name="sinatra", - version="2.0.3", - qualifiers=OrderedDict(), - subpath=None, - ), - }, - references=[Reference(url="https://github.com/sinatra/sinatra/pull/1379")], + summary="An issue was discovered in rack-protection/lib/rack/protection/path_traversal.rb\nin Sinatra 2.x before 2.0.1 on Windows. Path traversal is possible via backslash\ncharacters.\n", vulnerability_id="CVE-2018-7212", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="gem", + namespace=None, + name="sinatra", + version="1.8.0", + ), + patched_package=PackageURL( + type="gem", + namespace=None, + name="sinatra", + version="2.0.3", + ), + ) + ], + references=[ + Reference( + reference_id="", + url="https://github.com/sinatra/sinatra/pull/1379", + severities=[], + ) + ], ), Advisory( - summary=( - "Sinatra before 2.0.2 has XSS via the 400 Bad Request " - "page that occurs upon a params parser exception.\n" - ), - impacted_package_urls={ - PackageURL( - type="gem", - namespace=None, - name="sinatra", - version="1.0.0", - qualifiers=OrderedDict(), - subpath=None, + summary="Sinatra before 2.0.2 has XSS via the 400 Bad Request page that occurs upon a params parser exception.\n", + vulnerability_id="CVE-2018-11627", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="gem", + namespace=None, + name="sinatra", + version="1.0.0", + ), + patched_package=PackageURL( + type="gem", + namespace=None, + name="sinatra", + version="2.0.3", + ), ), - PackageURL( - type="gem", - namespace=None, - name="sinatra", - version="1.8.0", - qualifiers=OrderedDict(), - subpath=None, + AffectedPackage( + vulnerable_package=PackageURL( + type="gem", + namespace=None, + name="sinatra", + version="1.8.0", + ), + patched_package=PackageURL( + type="gem", + namespace=None, + name="sinatra", + version="2.0.3", + ), ), - }, - resolved_package_urls={ - PackageURL( - type="gem", - namespace=None, - name="sinatra", - version="2.0.3", - qualifiers=OrderedDict(), - subpath=None, + ], + references=[ + Reference( + reference_id="", + url="https://github.com/sinatra/sinatra/issues/1428", + severities=[], ) - }, - references=[Reference(url="https://github.com/sinatra/sinatra/issues/1428")], - vulnerability_id="CVE-2018-11627", + ], ), ] - found_advisories = [] for p in MOCK_ADDED_FILES: advisory = self.data_src.process_file(p) @@ -147,11 +140,11 @@ def test_process_file(self, mock_write): def test_categorize_versions(self): - all_versions = {"1.0.0", "1.2.0", "9.0.2", "0.2.3"} + all_versions = ["1.0.0", "1.2.0", "9.0.2", "0.2.3"] safe_ver_ranges = ["==1.0.0", ">1.2.0"] - exp_safe_vers = {"1.0.0", "9.0.2"} - exp_aff_vers = {"1.2.0", "0.2.3"} + exp_safe_vers = ["1.0.0", "9.0.2"] + exp_aff_vers = ["1.2.0", "0.2.3"] safe_vers, aff_vers = self.data_src.categorize_versions(all_versions, safe_ver_ranges) assert exp_aff_vers == aff_vers diff --git a/vulnerabilities/tests/test_rust.py b/vulnerabilities/tests/test_rust.py index 96be46720..f563ccc5e 100644 --- a/vulnerabilities/tests/test_rust.py +++ b/vulnerabilities/tests/test_rust.py @@ -19,33 +19,29 @@ # for any legal advice. # VulnerableCode is a free software code scanning tool from nexB Inc. and others. # Visit https://github.com/nexB/vulnerablecode/ for support and download. -import datetime import os -import shutil -import tempfile -import zipfile -from unittest.mock import patch - +from unittest import TestCase +from packageurl import PackageURL from univers.version_specifier import VersionSpecifier -from django.test import TestCase - -from vulnerabilities import models +from vulnerabilities.data_source import Advisory +from vulnerabilities.data_source import Reference from vulnerabilities.importers.rust import categorize_versions -from vulnerabilities.import_runner import ImportRunner -from vulnerabilities.package_managers import VersionAPI from vulnerabilities.importers.rust import get_advisory_data +from vulnerabilities.importers.rust import RustDataSource +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) TEST_DATA = os.path.join(BASE_DIR, "test_data/rust") MOCKED_CRATES_API_VERSIONS = { - "bitvec": ["0.10.0", "0.12.0", "0.18.0"], - "bumpalo": ["2.8.0", "3.0.1", "3.2.5"], - "cbox": ["0.10.0", "0.12.0", "0.18.0"], - "flatbuffers": ["0.3.0", "0.5.0", "0.6.5"], - "hyper": ["0.10.0", "0.12.0", "0.13.0"], + "bitvec": {"0.10.0", "0.12.0", "0.18.0"}, + "bumpalo": {"2.8.0", "3.0.1", "3.2.5"}, + "cbox": {"0.10.0", "0.12.0", "0.18.0"}, + "flatbuffers": {"0.3.0", "0.5.0", "0.6.5"}, + "hyper": {"0.10.0", "0.12.0", "0.13.0"}, + "byte_struct": {"0.6.1", "0.6.0", "1.0.0"}, } @@ -136,62 +132,51 @@ def test_categorize_versions_without_any_ranges(): assert len(affected) == 0 -@patch("vulnerabilities.importers.RustDataSource._update_from_remote") class RustImportTest(TestCase): - - tempdir = None - @classmethod def setUpClass(cls) -> None: - cls.tempdir = tempfile.mkdtemp() - zip_path = os.path.join(TEST_DATA, "rust-advisory-db.zip") - - with zipfile.ZipFile(zip_path, "r") as zip_ref: - zip_ref.extractall(cls.tempdir) - - cls.importer = models.Importer.objects.create( - name="rust_unittests", - license="https://creativecommons.org/publicdomain/zero/1.0/", - last_run=None, - data_source="RustDataSource", - data_source_cfg={ - "repository_url": "https://example.com/unit-tests/advisory-db", - "working_directory": os.path.join(cls.tempdir, "advisory-db"), - "create_working_directory": False, - "remove_working_directory": False, - }, - ) - - cls.crates_api_cache = {k: set(v) for k, v in MOCKED_CRATES_API_VERSIONS.items()} - - @classmethod - def tearDownClass(cls) -> None: - shutil.rmtree(cls.tempdir) - - def test_import(self, _): - runner = ImportRunner(self.importer, 5) - - with patch( - "vulnerabilities.importers.RustDataSource.crates_api", - new=VersionAPI(cache=self.crates_api_cache), - ): - with patch("vulnerabilities.importers.RustDataSource.set_api"): - runner.run( - cutoff_date=datetime.datetime( - year=2020, month=3, day=18, tzinfo=datetime.timezone.utc - ) + data_source_cfg = { + "repository_url": "", + } + cls.data_src = RustDataSource(1, config=data_source_cfg) + cls.data_src._crates_api = MOCKED_CRATES_API_VERSIONS + + def test_load_advisory(self): + md_path = os.path.join(TEST_DATA, "RUSTSEC-2021-0032.md") + data = self.data_src._load_advisory(md_path) + expected_data = Advisory( + summary="", + vulnerability_id="CVE-2021-28033", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="cargo", + name="byte_struct", + version="0.6.0", + ), + patched_package=PackageURL( + type="cargo", + name="byte_struct", + version="0.6.1", + ), ) + ], + references=[ + Reference( + reference_id="", + url="https://github.com/wwylele/byte-struct-rs/issues/1", + severities=[], + ), + Reference( + reference_id="RUSTSEC-2021-0032", + url="https://rustsec.org/advisories/RUSTSEC-2021-0032.html", + severities=[], + ), + ], + ) + assert expected_data == data - self.assert_for_package("bitvec", "RUSTSEC-2020-0007") - self.assert_for_package("bumpalo", "RUSTSEC-2020-0006") - self.assert_for_package("flatbuffers", "RUSTSEC-2019-0028") - self.assert_for_package("hyper", "RUSTSEC-2020-0008") - - # There is no data for cbox, because the advisory contains neither affected nor patched or - # unaffected versions. - assert models.Package.objects.filter(name="cbox").count() == 0 - - def test_load_toml_from_md(self, _): + def test_load_toml_from_md(self): md_path = os.path.join(TEST_DATA, "CVE-2019-16760.md") loaded_data = get_advisory_data(md_path) expected_data = { @@ -206,29 +191,3 @@ def test_load_toml_from_md(self, _): } assert loaded_data == expected_data - - def assert_for_package(self, package, advisory_id): - qs = models.Package.objects.filter(name=package) - versions = MOCKED_CRATES_API_VERSIONS[package] - assert qs.count() == len(versions) - unaffected_pkg = qs.get(version=versions[0]) - impacted_pkg = qs.get(version=versions[1]) - resolved_pkg = qs.get(version=versions[2]) - - qs = models.VulnerabilityReference.objects.filter(reference_id=advisory_id) - assert qs.count() == 1 - vuln = qs[0].vulnerability - - assert models.PackageRelatedVulnerability.objects.filter( - package=unaffected_pkg, vulnerability=vuln, is_vulnerable=False - ) - - assert models.PackageRelatedVulnerability.objects.filter( - package=resolved_pkg, vulnerability=vuln, is_vulnerable=False - ) - - assert models.PackageRelatedVulnerability.objects.filter( - package=impacted_pkg, vulnerability=vuln, is_vulnerable=True - ) - - importer = None diff --git a/vulnerabilities/tests/test_safety_db.py b/vulnerabilities/tests/test_safety_db.py index 2d3621141..c922df0db 100644 --- a/vulnerabilities/tests/test_safety_db.py +++ b/vulnerabilities/tests/test_safety_db.py @@ -23,17 +23,19 @@ import json import os from unittest.mock import patch +from unittest import TestCase -from django.test import TestCase +from packageurl import PackageURL -from vulnerabilities import models -from vulnerabilities.import_runner import ImportRunner from vulnerabilities.importers.safety_db import PypiVersionAPI from vulnerabilities.importers.safety_db import categorize_versions +from vulnerabilities.importers.safety_db import SafetyDbDataSource +from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) -TEST_DATA = os.path.join(BASE_DIR, "test_data/") +TEST_DATA = os.path.join(BASE_DIR, "test_data", "safety_db") MOCK_VERSION_API = PypiVersionAPI( cache={ @@ -44,130 +46,117 @@ ) -@patch("vulnerabilities.importers.SafetyDbDataSource.versions", new=MOCK_VERSION_API) -class SafetyDbImportTest(TestCase): - @classmethod - def setUpClass(cls) -> None: - fixture_path = os.path.join(TEST_DATA, "safety_db", "insecure_full.json") - with open(fixture_path) as f: - cls.mock_response = json.load(f) - - cls.importer = models.Importer.objects.create( - name="safetydb_unittests", - license="CC-BY-NC 4.0", - last_run=None, - data_source="SafetyDbDataSource", - data_source_cfg={"url": "https://example.com", "etags": {}}, - ) - - @classmethod - def tearDownClass(cls) -> None: - # Make sure no requests for unexpected package names have been made during the tests. - assert len(MOCK_VERSION_API.cache) == 3, MOCK_VERSION_API.cache - +class SafetyDbtTest(TestCase): def test_import(self): - runner = ImportRunner(self.importer, 5) - - with patch( - "vulnerabilities.importers.SafetyDbDataSource._fetch", return_value=self.mock_response - ): # nopep8 - with patch("vulnerabilities.importers.SafetyDbDataSource.set_api"): - runner.run() - - assert models.Vulnerability.objects.count() == 8 - assert models.VulnerabilityReference.objects.count() == 8 - assert models.PackageRelatedVulnerability.objects.filter(is_vulnerable=False).count() == 15 - assert models.PackageRelatedVulnerability.objects.filter(is_vulnerable=True).count() == 17 - - expected_package_count = sum([len(v) for v in MOCK_VERSION_API.cache.values()]) - assert models.Package.objects.count() == expected_package_count - - self.assert_by_vulnerability( - "pyup.io-37863", - "ampache", - {"2.0"}, - {"5.2.1"}, - cve_ids={"CVE-2019-12385", "CVE-2019-12386"}, - ) - - self.assert_by_vulnerability( - "pyup.io-25713", - "django", - {"1.8", "1.4.19", "1.5.1", "1.6.9"}, - {"1.8.14", "1.4.22"}, - cve_ids={"CVE-2015-2317"}, - ) - - self.assert_by_vulnerability( - "pyup.io-25721", - "django", - {"1.8.14"}, - {"1.8", "1.4.19", "1.5.1", "1.6.9", "1.4.22"}, - cve_ids={"CVE-2016-6186"}, - ) - - self.assert_by_vulnerability( - "pyup.io-38114", - "zulip", - {"2.0", "2.1.1"}, - {"2.1.2", "2.1.3"}, - cve_ids={"CVE-2019-19775", "CVE-2015-2104"}, - ) - - self.assert_by_vulnerability( - "pyup.io-38200", - "zulip", - {"2.0", "2.1.1", "2.1.2"}, - {"2.1.3"}, - cve_ids={"CVE-2020-9444", "CVE-2020-10935"}, - ) - - def assert_by_vulnerability( - self, - vuln_ref, - pkg_name, - impacted_versions, - resolved_versions, - cve_ids=None, - ): - impacted_pkgs = set( - models.Package.objects.filter(name=pkg_name, version__in=impacted_versions) - ) - - assert len(impacted_pkgs) == len(impacted_versions) - - resolved_pkgs = set( - models.Package.objects.filter(name=pkg_name, version__in=resolved_versions) - ) - - assert len(resolved_pkgs) == len(resolved_versions) - - vuln_count = 1 if cve_ids is None else len(cve_ids) - - vulns = { - r.vulnerability - for r in models.VulnerabilityReference.objects.filter(reference_id=vuln_ref) - } - - assert len(vulns) == vuln_count - - for vuln in vulns: - assert { - ip.package - for ip in models.PackageRelatedVulnerability.objects.filter( - vulnerability=vuln, is_vulnerable=True - ) - } == impacted_pkgs - - assert { - rp.package - for rp in models.PackageRelatedVulnerability.objects.filter( - vulnerability=vuln, is_vulnerable=False - ) - } == resolved_pkgs - - if cve_ids: - assert {v.vulnerability_id for v in vulns} == cve_ids + data_src = SafetyDbDataSource(1, config={"url": "https://gmail.com/", "etags": ""}) + with open(os.path.join(TEST_DATA, "insecure_full.json")) as f: + raw_data = json.load(f) + data_src._api_response = raw_data + data_src._versions = MOCK_VERSION_API + + expected_data = [ + Advisory( + summary="The utils.http.is_safe_url function in Django before 1.4.20, 1.5.x, 1.6.x before 1.6.11, 1.7.x before 1.7.7, and 1.8.x before 1.8c1 does not properly validate URLs, which allows remote attackers to conduct cross-site scripting (XSS) attacks via a control character in a URL, as demonstrated by a \\x08javascript: URL.", + vulnerability_id="CVE-2015-2317", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="pypi", + namespace=None, + name="django", + version="1.4.19", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="pypi", + namespace=None, + name="django", + version="1.4.22", + qualifiers={}, + subpath=None, + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="pypi", + namespace=None, + name="django", + version="1.5.1", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="pypi", + namespace=None, + name="django", + version="1.8.14", + qualifiers={}, + subpath=None, + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="pypi", + namespace=None, + name="django", + version="1.6.9", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="pypi", + namespace=None, + name="django", + version="1.8.14", + qualifiers={}, + subpath=None, + ), + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="pypi", + namespace=None, + name="django", + version="1.8", + qualifiers={}, + subpath=None, + ), + patched_package=PackageURL( + type="pypi", + namespace=None, + name="django", + version="1.8.14", + qualifiers={}, + subpath=None, + ), + ), + ], + references=[Reference(reference_id="pyup.io-25713", url="", severities=[])], + ), + Advisory( + summary="Cross-site scripting (XSS) vulnerability in the dismissChangeRelatedObjectPopup function in contrib/admin/static/admin/js/admin/RelatedObjectLookups.js in Django before 1.8.14, 1.9.x before 1.9.8, and 1.10.x before 1.10rc1 allows remote attackers to inject arbitrary web script or HTML via vectors involving unsafe usage of Element.innerHTML.", + vulnerability_id="CVE-2016-6186", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="pypi", + namespace=None, + name="django", + version="1.8.14", + qualifiers={}, + subpath=None, + ), + patched_package=None, + ) + ], + references=[Reference(reference_id="pyup.io-25721", url="", severities=[])], + ), + ] + + found_data = [adv for adv in data_src.updated_advisories()] + + assert expected_data == found_data def test_categorize_versions(): diff --git a/vulnerabilities/tests/test_suse_backports.py b/vulnerabilities/tests/test_suse_backports.py index 9d4c0c1f5..479fa7e2e 100644 --- a/vulnerabilities/tests/test_suse_backports.py +++ b/vulnerabilities/tests/test_suse_backports.py @@ -1,135 +1,135 @@ -# Copyright (c) 2017 nexB Inc. and others. All rights reserved. -# http://nexb.com and https://github.com/nexB/vulnerablecode/ -# The VulnerableCode software is licensed under the Apache License version 2.0. -# Data generated with VulnerableCode require an acknowledgment. -# -# You may not use this software except in compliance with the License. -# You may obtain a copy of the License at: http://apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software distributed -# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -# CONDITIONS OF ANY KIND, either express or implied. See the License for the -# specific language governing permissions and limitations under the License. -# -# When you publish or redistribute any data created with VulnerableCode or any VulnerableCode -# derivative work, you must accompany this data with the following acknowledgment: -# -# Generated with VulnerableCode and provided on an "AS IS" BASIS, WITHOUT WARRANTIES -# OR CONDITIONS OF ANY KIND, either express or implied. No content created from -# VulnerableCode should be considered or used as legal advice. Consult an Attorney -# for any legal advice. -# VulnerableCode is a free software code scanning tool from nexB Inc. and others. -# Visit https://github.com/nexB/vulnerablecode/ for support and download. +# # Copyright (c) 2017 nexB Inc. and others. All rights reserved. +# # http://nexb.com and https://github.com/nexB/vulnerablecode/ +# # The VulnerableCode software is licensed under the Apache License version 2.0. +# # Data generated with VulnerableCode require an acknowledgment. +# # +# # You may not use this software except in compliance with the License. +# # You may obtain a copy of the License at: http://apache.org/licenses/LICENSE-2.0 +# # Unless required by applicable law or agreed to in writing, software distributed +# # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# # CONDITIONS OF ANY KIND, either express or implied. See the License for the +# # specific language governing permissions and limitations under the License. +# # +# # When you publish or redistribute any data created with VulnerableCode or any VulnerableCode +# # derivative work, you must accompany this data with the following acknowledgment: +# # +# # Generated with VulnerableCode and provided on an "AS IS" BASIS, WITHOUT WARRANTIES +# # OR CONDITIONS OF ANY KIND, either express or implied. No content created from +# # VulnerableCode should be considered or used as legal advice. Consult an Attorney +# # for any legal advice. +# # VulnerableCode is a free software code scanning tool from nexB Inc. and others. +# # Visit https://github.com/nexB/vulnerablecode/ for support and download. -from collections import OrderedDict -import os -from unittest import TestCase -import yaml +# from collections import OrderedDict +# import os +# from unittest import TestCase +# import yaml -from packageurl import PackageURL +# from packageurl import PackageURL -from vulnerabilities.importers.suse_backports import SUSEBackportsDataSource -from vulnerabilities.data_source import Advisory +# from vulnerabilities.importers.suse_backports import SUSEBackportsDataSource +# from vulnerabilities.data_source import Advisory -BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +# BASE_DIR = os.path.dirname(os.path.abspath(__file__)) -def yaml_loader(): - path = os.path.join(BASE_DIR, "test_data/suse_backports/") - yaml_files = {} - for file in os.listdir(path): - with open(os.path.join(path, file)) as f: - yaml_files[file] = yaml.safe_load(f) - return yaml_files +# def yaml_loader(): +# path = os.path.join(BASE_DIR, "test_data/suse_backports/") +# yaml_files = {} +# for file in os.listdir(path): +# with open(os.path.join(path, file)) as f: +# yaml_files[file] = yaml.safe_load(f) +# return yaml_files -class TestSUSEBackportsDataSource(TestCase): - @classmethod - def setUpClass(cls): - data_source_cfg = {"url": "https://endpoint.com", "etags": {}} - cls.data_src = SUSEBackportsDataSource(1, config=data_source_cfg) +# class TestSUSEBackportsDataSource(TestCase): +# @classmethod +# def setUpClass(cls): +# data_source_cfg = {"url": "https://endpoint.com", "etags": {}} +# cls.data_src = SUSEBackportsDataSource(1, config=data_source_cfg) - def test_process_file(self): - parsed_yamls = yaml_loader() - expected_data = [ - Advisory( - summary="", - impacted_package_urls=[], - resolved_package_urls=[ - PackageURL( - type="rpm", - namespace="opensuse", - name="MozillaFirefox", - version="3.0.10-1.1.1", - qualifiers=OrderedDict(), - subpath=None, - ) - ], - vulnerability_id="CVE-2009-1313", - ), - Advisory( - summary="", - impacted_package_urls=[], - resolved_package_urls=[ - PackageURL( - type="rpm", - namespace="opensuse", - name="MozillaFirefox-branding-SLED", - version="3.5-1.1.5", - qualifiers=OrderedDict(), - subpath=None, - ) - ], - vulnerability_id="CVE-2009-1313", - ), - Advisory( - summary="", - impacted_package_urls=[], - resolved_package_urls=[ - PackageURL( - type="rpm", - namespace="opensuse", - name="MozillaFirefox-translations", - version="3.0.10-1.1.1", - qualifiers=OrderedDict(), - subpath=None, - ) - ], - vulnerability_id="CVE-2009-1313", - ), - Advisory( - summary="", - impacted_package_urls=[], - resolved_package_urls=[ - PackageURL( - type="rpm", - namespace="opensuse", - name="NetworkManager", - version="0.7.0.r4359-15.9.2", - qualifiers=OrderedDict(), - subpath=None, - ) - ], - vulnerability_id="CVE-2009-0365", - ), - Advisory( - summary="", - impacted_package_urls=[], - resolved_package_urls=[ - PackageURL( - type="rpm", - namespace="opensuse", - name="NetworkManager", - version="0.7.0.r4359-15.9.2", - qualifiers=OrderedDict(), - subpath=None, - ) - ], - vulnerability_id="CVE-2009-0578", - ), - ] +# def test_process_file(self): +# parsed_yamls = yaml_loader() +# expected_data = [ +# Advisory( +# summary="", +# impacted_package_urls=[], +# resolved_package_urls=[ +# PackageURL( +# type="rpm", +# namespace="opensuse", +# name="MozillaFirefox", +# version="3.0.10-1.1.1", +# qualifiers=OrderedDict(), +# subpath=None, +# ) +# ], +# vulnerability_id="CVE-2009-1313", +# ), +# Advisory( +# summary="", +# impacted_package_urls=[], +# resolved_package_urls=[ +# PackageURL( +# type="rpm", +# namespace="opensuse", +# name="MozillaFirefox-branding-SLED", +# version="3.5-1.1.5", +# qualifiers=OrderedDict(), +# subpath=None, +# ) +# ], +# vulnerability_id="CVE-2009-1313", +# ), +# Advisory( +# summary="", +# impacted_package_urls=[], +# resolved_package_urls=[ +# PackageURL( +# type="rpm", +# namespace="opensuse", +# name="MozillaFirefox-translations", +# version="3.0.10-1.1.1", +# qualifiers=OrderedDict(), +# subpath=None, +# ) +# ], +# vulnerability_id="CVE-2009-1313", +# ), +# Advisory( +# summary="", +# impacted_package_urls=[], +# resolved_package_urls=[ +# PackageURL( +# type="rpm", +# namespace="opensuse", +# name="NetworkManager", +# version="0.7.0.r4359-15.9.2", +# qualifiers=OrderedDict(), +# subpath=None, +# ) +# ], +# vulnerability_id="CVE-2009-0365", +# ), +# Advisory( +# summary="", +# impacted_package_urls=[], +# resolved_package_urls=[ +# PackageURL( +# type="rpm", +# namespace="opensuse", +# name="NetworkManager", +# version="0.7.0.r4359-15.9.2", +# qualifiers=OrderedDict(), +# subpath=None, +# ) +# ], +# vulnerability_id="CVE-2009-0578", +# ), +# ] - found_data = self.data_src.process_file(parsed_yamls["backports-sle11-sp0.yaml"]) +# found_data = self.data_src.process_file(parsed_yamls["backports-sle11-sp0.yaml"]) - found_advisories = list(map(Advisory.normalized, found_data)) - expected_advisories = list(map(Advisory.normalized, expected_data)) - assert sorted(found_advisories) == sorted(expected_advisories) +# found_advisories = list(map(Advisory.normalized, found_data)) +# expected_advisories = list(map(Advisory.normalized, expected_data)) +# assert sorted(found_advisories) == sorted(expected_advisories) diff --git a/vulnerabilities/tests/test_suse_scores.py b/vulnerabilities/tests/test_suse_scores.py index 4340e40db..f136ddb6b 100644 --- a/vulnerabilities/tests/test_suse_scores.py +++ b/vulnerabilities/tests/test_suse_scores.py @@ -40,8 +40,6 @@ def test_to_advisory(self): expected_data = [ Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls=[], references=[ Reference( reference_id="", @@ -90,8 +88,6 @@ def test_to_advisory(self): ), Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls=[], references=[ Reference( reference_id="", diff --git a/vulnerabilities/tests/test_ubuntu.py b/vulnerabilities/tests/test_ubuntu.py index 4d1ee9bda..16d1f217b 100644 --- a/vulnerabilities/tests/test_ubuntu.py +++ b/vulnerabilities/tests/test_ubuntu.py @@ -12,6 +12,7 @@ from vulnerabilities.importers.ubuntu import UbuntuDataSource from vulnerabilities.data_source import Advisory from vulnerabilities.data_source import Reference +from vulnerabilities.helpers import AffectedPackage BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -187,114 +188,101 @@ def setUpClass(cls): def test_get_data_from_xml_doc(self, mock_write): expected_advisories = [ Advisory( - summary=( - "Tor before 0.2.8.9 and 0.2.9.x before 0.2.9.4-alpha had " - "internal functions that were entitled to expect that buf_t data had " - "NUL termination, but the implementation of or/buffers.c did not " - "ensure that NUL termination was present, which allows remote " - "attackers to cause a denial of service (client, hidden " - "service, relay, or authority crash) via crafted data." - ), - impacted_package_urls={ - PackageURL( - type="deb", - namespace=None, - name="tor", - version="0.2.0", - qualifiers=OrderedDict(), - subpath=None, - ) - }, - resolved_package_urls={ - PackageURL( - type="deb", - namespace=None, - name="tor", - version="0.3.0", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="deb", - namespace=None, - name="tor", - version="2.14-2", - qualifiers=OrderedDict(), - subpath=None, - ), - }, - references=sorted( - [ - Reference(url="http://www.openwall.com/lists/oss-security/2016/10/18/11"), - Reference( - url="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-8860" + summary="Heap-based buffer overflow in the bm_readbody_bmp function in bitmap_io.c in potrace before 1.13 allows remote attackers to have unspecified impact via a crafted BMP image, a different vulnerability than CVE-2016-8698, CVE-2016-8699, CVE-2016-8700, CVE-2016-8701, and CVE-2016-8702.", + vulnerability_id="CVE-2016-8703", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="deb", + name="potrace", + version="0.2.0", ), - Reference( - url="http://people.canonical.com/~ubuntu-security/cve/2016/CVE-2016-8860.html" + patched_package=PackageURL( + type="deb", + name="potrace", + version="2.14-2", ), - Reference( - url="https://github.com/torproject/tor/commit/3cea86eb2fbb65949673eb4ba8ebb695c87a57ce" + ), + AffectedPackage( + vulnerable_package=PackageURL( + type="deb", + name="potrace", + version="0.3.0", ), - Reference( - url="https://blog.torproject.org/blog/tor-0289-released-important-fixes" + patched_package=PackageURL( + type="deb", + name="potrace", + version="2.14-2", ), - Reference(url="https://trac.torproject.org/projects/tor/ticket/20384"), - ], - key=lambda x: x.url, - ), - vulnerability_id="CVE-2016-8860", - ), - Advisory( - summary=( - "Heap-based buffer overflow in the bm_readbody_bmp function" - " in bitmap_io.c in potrace before 1.13 allows remote attackers to " - "have unspecified impact via a crafted BMP image, a different " - "vulnerability than CVE-2016-8698, CVE-2016-8699, " - "CVE-2016-8700, CVE-2016-8701, and CVE-2016-8702." - ), - impacted_package_urls={ - PackageURL( - type="deb", - namespace=None, - name="potrace", - version="0.3.0", - qualifiers=OrderedDict(), - subpath=None, ), - PackageURL( - type="deb", - namespace=None, - name="potrace", - version="0.2.0", - qualifiers=OrderedDict(), - subpath=None, + ], + references=[ + Reference( + reference_id="", + url="http://people.canonical.com/~ubuntu-security/cve/2016/CVE-2016-8703.html", + severities=[], ), - }, - resolved_package_urls={ - PackageURL( - type="deb", - namespace=None, - name="potrace", - version="2.14-2", - qualifiers=OrderedDict(), - subpath=None, - ) - }, - references=sorted( - [ - Reference( - url="http://people.canonical.com/~ubuntu-security/cve/2016/CVE-2016-8703.html" - ), - Reference( - url="https://blogs.gentoo.org/ago/2016/08/08/potrace-multiplesix-heap-based-buffer-overflow-in-bm_readbody_bmp-bitmap_io-c/" + Reference( + reference_id="", + url="https://blogs.gentoo.org/ago/2016/08/08/potrace-multiplesix-heap-based-buffer-overflow-in-bm_readbody_bmp-bitmap_io-c/", + severities=[], + ), + Reference( + reference_id="", + url="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-8703", + severities=[], + ), + ], + ), + Advisory( + summary="Tor before 0.2.8.9 and 0.2.9.x before 0.2.9.4-alpha had internal functions that were entitled to expect that buf_t data had NUL termination, but the implementation of or/buffers.c did not ensure that NUL termination was present, which allows remote attackers to cause a denial of service (client, hidden service, relay, or authority crash) via crafted data.", + vulnerability_id="CVE-2016-8860", + affected_packages=[ + AffectedPackage( + vulnerable_package=PackageURL( + type="deb", + name="tor", + version="0.2.0", ), - Reference( - url="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-8703" + patched_package=PackageURL( + type="deb", + name="tor", + version="0.3.0", ), - ], - key=lambda x: x.url, - ), - vulnerability_id="CVE-2016-8703", + ) + ], + references=[ + Reference( + reference_id="", + url="http://people.canonical.com/~ubuntu-security/cve/2016/CVE-2016-8860.html", + severities=[], + ), + Reference( + reference_id="", + url="http://www.openwall.com/lists/oss-security/2016/10/18/11", + severities=[], + ), + Reference( + reference_id="", + url="https://blog.torproject.org/blog/tor-0289-released-important-fixes", + severities=[], + ), + Reference( + reference_id="", + url="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-8860", + severities=[], + ), + Reference( + reference_id="", + url="https://github.com/torproject/tor/commit/3cea86eb2fbb65949673eb4ba8ebb695c87a57ce", + severities=[], + ), + Reference( + reference_id="", + url="https://trac.torproject.org/projects/tor/ticket/20384", + severities=[], + ), + ], ), ] diff --git a/vulnerabilities/tests/test_ubuntu_usn.py b/vulnerabilities/tests/test_ubuntu_usn.py index 7e2529f4f..7d94781eb 100644 --- a/vulnerabilities/tests/test_ubuntu_usn.py +++ b/vulnerabilities/tests/test_ubuntu_usn.py @@ -65,95 +65,11 @@ def test_fetch(self): with patch("vulnerabilities.importers.ubuntu_usn.requests.get", return_value=mock_response): assert ubuntu_usn.fetch("www.db.com") == self.db - def test_get_purls(self): - - eg_pkg_dict_1 = self.db["763-1"]["releases"]["hardy"] - eg_pkg_dict_2 = self.db["763-1"]["releases"]["dapper"] - eg_pkg_dict_3 = self.db["763-1"]["releases"]["intrepid"] - - exp_pkgs_1 = { - PackageURL( - type="deb", - namespace="ubuntu", - name="xine-lib", - version="1.1.11.1-1ubuntu3.4", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="deb", - namespace="ubuntu", - name="libxine1", - version="1.1.11.1-1ubuntu3.4", - qualifiers=OrderedDict(), - subpath=None, - ), - } - exp_pkgs_2 = { - PackageURL( - type="deb", - namespace="ubuntu", - name="libxine-main1", - version="1.1.1+ubuntu2-7.12", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="deb", - namespace="ubuntu", - name="xine-lib", - version="1.1.1+ubuntu2-7.12", - qualifiers=OrderedDict(), - subpath=None, - ), - } - exp_pkgs_3 = { - PackageURL( - type="deb", - namespace="ubuntu", - name="xine-lib", - version="1.1.15-0ubuntu3.3", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="deb", - namespace="ubuntu", - name="libxine1", - version="1.1.15-0ubuntu3.3", - qualifiers=OrderedDict(), - subpath=None, - ), - } - - assert exp_pkgs_1 == ubuntu_usn.get_purls(eg_pkg_dict_1) - assert exp_pkgs_2 == ubuntu_usn.get_purls(eg_pkg_dict_2) - assert exp_pkgs_3 == ubuntu_usn.get_purls(eg_pkg_dict_3) - def test_to_advisories(self): expected_advisories = [ Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls={ - PackageURL( - type="deb", - namespace="ubuntu", - name="xine-lib", - version="1.1.15-0ubuntu3.3", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="deb", - namespace="ubuntu", - name="libxine1", - version="1.1.15-0ubuntu3.3", - qualifiers=OrderedDict(), - subpath=None, - ), - }, references=[ Reference(url="https://usn.ubuntu.com/763-1/", reference_id="USN-763-1") ], @@ -161,25 +77,6 @@ def test_to_advisories(self): ), Advisory( summary="", - impacted_package_urls=[], - resolved_package_urls={ - PackageURL( - type="deb", - namespace="ubuntu", - name="xine-lib", - version="1.1.15-0ubuntu3.3", - qualifiers=OrderedDict(), - subpath=None, - ), - PackageURL( - type="deb", - namespace="ubuntu", - name="libxine1", - version="1.1.15-0ubuntu3.3", - qualifiers=OrderedDict(), - subpath=None, - ), - }, references=[ Reference(url="https://usn.ubuntu.com/763-1/", reference_id="USN-763-1") ],