mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-23 07:29:00 -08:00
feat(vulnerability): add primary URLs (#752)
* refactor(vulnerability): rename a method * feat(vulnerability): add primary url * fix(templates): add primary links * feat(writer): add url * refactor(convert): remove an unnecessary function * feat(rpc): add primary_url * test(integration): update golden files
This commit is contained in:
@@ -45,7 +45,7 @@
|
|||||||
"Remediation": {
|
"Remediation": {
|
||||||
"Recommendation": {
|
"Recommendation": {
|
||||||
"Text": "More information on this vulnerability is provided in the hyperlink",
|
"Text": "More information on this vulnerability is provided in the hyperlink",
|
||||||
"Url": "{{ index .References 0 }}"
|
"Url": "{{ .PrimaryURL }}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ProductFields": { "Product Name": "Trivy" },
|
"ProductFields": { "Product Name": "Trivy" },
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
"type": "cve",
|
"type": "cve",
|
||||||
"name": "{{ .VulnerabilityID }}",
|
"name": "{{ .VulnerabilityID }}",
|
||||||
"value": "{{ .VulnerabilityID }}",
|
"value": "{{ .VulnerabilityID }}",
|
||||||
"url": ""
|
"url": "{{ .PrimaryURL }}"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [
|
"links": [
|
||||||
|
|||||||
@@ -26,8 +26,8 @@
|
|||||||
"text": {{ endWithPeriod (escapeString .Title) | printf "%q" }}
|
"text": {{ endWithPeriod (escapeString .Title) | printf "%q" }}
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"text": {{ printf "Vulnerability %v\nSeverity: %v\nPackage: %v\nInstalled Version: %v\nFixed Version: %v\nLink: [%v](https://nvd.nist.gov/vuln/detail/%v)" .VulnerabilityID .Vulnerability.Severity .PkgName .InstalledVersion .FixedVersion .VulnerabilityID (.VulnerabilityID | toLower) | printf "%q"}},
|
"text": {{ printf "Vulnerability %v\nSeverity: %v\nPackage: %v\nInstalled Version: %v\nFixed Version: %v\nLink: [%v](%v)" .VulnerabilityID .Vulnerability.Severity .PkgName .InstalledVersion .FixedVersion .VulnerabilityID .PrimaryURL | printf "%q"}},
|
||||||
"markdown": {{ printf "**Vulnerability %v**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|%v|%v|%v|%v|[%v](https://nvd.nist.gov/vuln/detail/%v)|\n" .VulnerabilityID .Vulnerability.Severity .PkgName .InstalledVersion .FixedVersion .VulnerabilityID (.VulnerabilityID | toLower) | printf "%q"}}
|
"markdown": {{ printf "**Vulnerability %v**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|%v|%v|%v|%v|[%v](%v)|\n" .VulnerabilityID .Vulnerability.Severity .PkgName .InstalledVersion .FixedVersion .VulnerabilityID .PrimaryURL | printf "%q"}}
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [
|
"tags": [
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -39,6 +40,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -63,6 +65,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -90,6 +93,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -60,6 +62,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -83,6 +86,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -107,6 +111,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -128,6 +133,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -155,6 +161,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -178,6 +185,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -60,6 +62,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -83,6 +86,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -104,6 +108,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -131,6 +136,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -35,6 +36,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -63,6 +65,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -87,6 +90,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -112,6 +116,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -134,6 +139,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -162,6 +168,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -186,6 +193,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
|
|||||||
16
integration/testdata/alpine-310.asff.golden
vendored
16
integration/testdata/alpine-310.asff.golden
vendored
@@ -17,7 +17,7 @@
|
|||||||
"Remediation": {
|
"Remediation": {
|
||||||
"Recommendation": {
|
"Recommendation": {
|
||||||
"Text": "More information on this vulnerability is provided in the hyperlink",
|
"Text": "More information on this vulnerability is provided in the hyperlink",
|
||||||
"Url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549"
|
"Url": "https://avd.aquasec.com/nvd/cve-2019-1549"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ProductFields": { "Product Name": "Trivy" },
|
"ProductFields": { "Product Name": "Trivy" },
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
"Remediation": {
|
"Remediation": {
|
||||||
"Recommendation": {
|
"Recommendation": {
|
||||||
"Text": "More information on this vulnerability is provided in the hyperlink",
|
"Text": "More information on this vulnerability is provided in the hyperlink",
|
||||||
"Url": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00030.html"
|
"Url": "https://avd.aquasec.com/nvd/cve-2019-1551"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ProductFields": { "Product Name": "Trivy" },
|
"ProductFields": { "Product Name": "Trivy" },
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
"Remediation": {
|
"Remediation": {
|
||||||
"Recommendation": {
|
"Recommendation": {
|
||||||
"Text": "More information on this vulnerability is provided in the hyperlink",
|
"Text": "More information on this vulnerability is provided in the hyperlink",
|
||||||
"Url": "http://packetstormsecurity.com/files/154467/Slackware-Security-Advisory-openssl-Updates.html"
|
"Url": "https://avd.aquasec.com/nvd/cve-2019-1563"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ProductFields": { "Product Name": "Trivy" },
|
"ProductFields": { "Product Name": "Trivy" },
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
"Remediation": {
|
"Remediation": {
|
||||||
"Recommendation": {
|
"Recommendation": {
|
||||||
"Text": "More information on this vulnerability is provided in the hyperlink",
|
"Text": "More information on this vulnerability is provided in the hyperlink",
|
||||||
"Url": "http://packetstormsecurity.com/files/154467/Slackware-Security-Advisory-openssl-Updates.html"
|
"Url": "https://avd.aquasec.com/nvd/cve-2019-1547"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ProductFields": { "Product Name": "Trivy" },
|
"ProductFields": { "Product Name": "Trivy" },
|
||||||
@@ -201,7 +201,7 @@
|
|||||||
"Remediation": {
|
"Remediation": {
|
||||||
"Recommendation": {
|
"Recommendation": {
|
||||||
"Text": "More information on this vulnerability is provided in the hyperlink",
|
"Text": "More information on this vulnerability is provided in the hyperlink",
|
||||||
"Url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1549"
|
"Url": "https://avd.aquasec.com/nvd/cve-2019-1549"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ProductFields": { "Product Name": "Trivy" },
|
"ProductFields": { "Product Name": "Trivy" },
|
||||||
@@ -247,7 +247,7 @@
|
|||||||
"Remediation": {
|
"Remediation": {
|
||||||
"Recommendation": {
|
"Recommendation": {
|
||||||
"Text": "More information on this vulnerability is provided in the hyperlink",
|
"Text": "More information on this vulnerability is provided in the hyperlink",
|
||||||
"Url": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00030.html"
|
"Url": "https://avd.aquasec.com/nvd/cve-2019-1551"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ProductFields": { "Product Name": "Trivy" },
|
"ProductFields": { "Product Name": "Trivy" },
|
||||||
@@ -293,7 +293,7 @@
|
|||||||
"Remediation": {
|
"Remediation": {
|
||||||
"Recommendation": {
|
"Recommendation": {
|
||||||
"Text": "More information on this vulnerability is provided in the hyperlink",
|
"Text": "More information on this vulnerability is provided in the hyperlink",
|
||||||
"Url": "http://packetstormsecurity.com/files/154467/Slackware-Security-Advisory-openssl-Updates.html"
|
"Url": "https://avd.aquasec.com/nvd/cve-2019-1563"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ProductFields": { "Product Name": "Trivy" },
|
"ProductFields": { "Product Name": "Trivy" },
|
||||||
@@ -339,7 +339,7 @@
|
|||||||
"Remediation": {
|
"Remediation": {
|
||||||
"Recommendation": {
|
"Recommendation": {
|
||||||
"Text": "More information on this vulnerability is provided in the hyperlink",
|
"Text": "More information on this vulnerability is provided in the hyperlink",
|
||||||
"Url": "http://packetstormsecurity.com/files/154467/Slackware-Security-Advisory-openssl-Updates.html"
|
"Url": "https://avd.aquasec.com/nvd/cve-2019-1547"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ProductFields": { "Product Name": "Trivy" },
|
"ProductFields": { "Product Name": "Trivy" },
|
||||||
|
|||||||
16
integration/testdata/alpine-310.gitlab.golden
vendored
16
integration/testdata/alpine-310.gitlab.golden
vendored
@@ -29,7 +29,7 @@
|
|||||||
"type": "cve",
|
"type": "cve",
|
||||||
"name": "CVE-2019-1549",
|
"name": "CVE-2019-1549",
|
||||||
"value": "CVE-2019-1549",
|
"value": "CVE-2019-1549",
|
||||||
"url": ""
|
"url": "https://avd.aquasec.com/nvd/cve-2019-1549"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [{
|
"links": [{
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
"type": "cve",
|
"type": "cve",
|
||||||
"name": "CVE-2019-1551",
|
"name": "CVE-2019-1551",
|
||||||
"value": "CVE-2019-1551",
|
"value": "CVE-2019-1551",
|
||||||
"url": ""
|
"url": "https://avd.aquasec.com/nvd/cve-2019-1551"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [{
|
"links": [{
|
||||||
@@ -133,7 +133,7 @@
|
|||||||
"type": "cve",
|
"type": "cve",
|
||||||
"name": "CVE-2019-1563",
|
"name": "CVE-2019-1563",
|
||||||
"value": "CVE-2019-1563",
|
"value": "CVE-2019-1563",
|
||||||
"url": ""
|
"url": "https://avd.aquasec.com/nvd/cve-2019-1563"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [{
|
"links": [{
|
||||||
@@ -183,7 +183,7 @@
|
|||||||
"type": "cve",
|
"type": "cve",
|
||||||
"name": "CVE-2019-1547",
|
"name": "CVE-2019-1547",
|
||||||
"value": "CVE-2019-1547",
|
"value": "CVE-2019-1547",
|
||||||
"url": ""
|
"url": "https://avd.aquasec.com/nvd/cve-2019-1547"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [{
|
"links": [{
|
||||||
@@ -235,7 +235,7 @@
|
|||||||
"type": "cve",
|
"type": "cve",
|
||||||
"name": "CVE-2019-1549",
|
"name": "CVE-2019-1549",
|
||||||
"value": "CVE-2019-1549",
|
"value": "CVE-2019-1549",
|
||||||
"url": ""
|
"url": "https://avd.aquasec.com/nvd/cve-2019-1549"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [{
|
"links": [{
|
||||||
@@ -281,7 +281,7 @@
|
|||||||
"type": "cve",
|
"type": "cve",
|
||||||
"name": "CVE-2019-1551",
|
"name": "CVE-2019-1551",
|
||||||
"value": "CVE-2019-1551",
|
"value": "CVE-2019-1551",
|
||||||
"url": ""
|
"url": "https://avd.aquasec.com/nvd/cve-2019-1551"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [{
|
"links": [{
|
||||||
@@ -339,7 +339,7 @@
|
|||||||
"type": "cve",
|
"type": "cve",
|
||||||
"name": "CVE-2019-1563",
|
"name": "CVE-2019-1563",
|
||||||
"value": "CVE-2019-1563",
|
"value": "CVE-2019-1563",
|
||||||
"url": ""
|
"url": "https://avd.aquasec.com/nvd/cve-2019-1563"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [{
|
"links": [{
|
||||||
@@ -389,7 +389,7 @@
|
|||||||
"type": "cve",
|
"type": "cve",
|
||||||
"name": "CVE-2019-1547",
|
"name": "CVE-2019-1547",
|
||||||
"value": "CVE-2019-1547",
|
"value": "CVE-2019-1547",
|
||||||
"url": ""
|
"url": "https://avd.aquasec.com/nvd/cve-2019-1547"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [{
|
"links": [{
|
||||||
|
|||||||
8
integration/testdata/alpine-310.json.golden
vendored
8
integration/testdata/alpine-310.json.golden
vendored
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -60,6 +62,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -83,6 +86,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -107,6 +111,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -128,6 +133,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -155,6 +161,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -178,6 +185,7 @@
|
|||||||
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
"DiffID": "sha256:03901b4a2ea88eeaad62dbe59b072b28b6efa00491962b8741081c5df50c65e0"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
|
|||||||
32
integration/testdata/alpine-310.sarif.golden
vendored
32
integration/testdata/alpine-310.sarif.golden
vendored
@@ -18,8 +18,8 @@
|
|||||||
"text": "openssl: information disclosure in fork()."
|
"text": "openssl: information disclosure in fork()."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"text": "Vulnerability CVE-2019-1549\nSeverity: MEDIUM\nPackage: libcrypto1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1549](https://nvd.nist.gov/vuln/detail/cve-2019-1549)",
|
"text": "Vulnerability CVE-2019-1549\nSeverity: MEDIUM\nPackage: libcrypto1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1549](https://avd.aquasec.com/nvd/cve-2019-1549)",
|
||||||
"markdown": "**Vulnerability CVE-2019-1549**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libcrypto1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1549](https://nvd.nist.gov/vuln/detail/cve-2019-1549)|\n"
|
"markdown": "**Vulnerability CVE-2019-1549**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libcrypto1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1549](https://avd.aquasec.com/nvd/cve-2019-1549)|\n"
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [
|
"tags": [
|
||||||
@@ -40,8 +40,8 @@
|
|||||||
"text": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64."
|
"text": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"text": "Vulnerability CVE-2019-1551\nSeverity: MEDIUM\nPackage: libcrypto1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r2\nLink: [CVE-2019-1551](https://nvd.nist.gov/vuln/detail/cve-2019-1551)",
|
"text": "Vulnerability CVE-2019-1551\nSeverity: MEDIUM\nPackage: libcrypto1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r2\nLink: [CVE-2019-1551](https://avd.aquasec.com/nvd/cve-2019-1551)",
|
||||||
"markdown": "**Vulnerability CVE-2019-1551**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libcrypto1.1|1.1.1c-r0|1.1.1d-r2|[CVE-2019-1551](https://nvd.nist.gov/vuln/detail/cve-2019-1551)|\n"
|
"markdown": "**Vulnerability CVE-2019-1551**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libcrypto1.1|1.1.1c-r0|1.1.1d-r2|[CVE-2019-1551](https://avd.aquasec.com/nvd/cve-2019-1551)|\n"
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [
|
"tags": [
|
||||||
@@ -62,8 +62,8 @@
|
|||||||
"text": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey."
|
"text": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"text": "Vulnerability CVE-2019-1563\nSeverity: MEDIUM\nPackage: libcrypto1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1563](https://nvd.nist.gov/vuln/detail/cve-2019-1563)",
|
"text": "Vulnerability CVE-2019-1563\nSeverity: MEDIUM\nPackage: libcrypto1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1563](https://avd.aquasec.com/nvd/cve-2019-1563)",
|
||||||
"markdown": "**Vulnerability CVE-2019-1563**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libcrypto1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1563](https://nvd.nist.gov/vuln/detail/cve-2019-1563)|\n"
|
"markdown": "**Vulnerability CVE-2019-1563**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libcrypto1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1563](https://avd.aquasec.com/nvd/cve-2019-1563)|\n"
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [
|
"tags": [
|
||||||
@@ -84,8 +84,8 @@
|
|||||||
"text": "openssl: side-channel weak encryption vulnerability."
|
"text": "openssl: side-channel weak encryption vulnerability."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"text": "Vulnerability CVE-2019-1547\nSeverity: LOW\nPackage: libcrypto1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1547](https://nvd.nist.gov/vuln/detail/cve-2019-1547)",
|
"text": "Vulnerability CVE-2019-1547\nSeverity: LOW\nPackage: libcrypto1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1547](https://avd.aquasec.com/nvd/cve-2019-1547)",
|
||||||
"markdown": "**Vulnerability CVE-2019-1547**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|LOW|libcrypto1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1547](https://nvd.nist.gov/vuln/detail/cve-2019-1547)|\n"
|
"markdown": "**Vulnerability CVE-2019-1547**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|LOW|libcrypto1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1547](https://avd.aquasec.com/nvd/cve-2019-1547)|\n"
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [
|
"tags": [
|
||||||
@@ -106,8 +106,8 @@
|
|||||||
"text": "openssl: information disclosure in fork()."
|
"text": "openssl: information disclosure in fork()."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"text": "Vulnerability CVE-2019-1549\nSeverity: MEDIUM\nPackage: libssl1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1549](https://nvd.nist.gov/vuln/detail/cve-2019-1549)",
|
"text": "Vulnerability CVE-2019-1549\nSeverity: MEDIUM\nPackage: libssl1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1549](https://avd.aquasec.com/nvd/cve-2019-1549)",
|
||||||
"markdown": "**Vulnerability CVE-2019-1549**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libssl1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1549](https://nvd.nist.gov/vuln/detail/cve-2019-1549)|\n"
|
"markdown": "**Vulnerability CVE-2019-1549**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libssl1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1549](https://avd.aquasec.com/nvd/cve-2019-1549)|\n"
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [
|
"tags": [
|
||||||
@@ -128,8 +128,8 @@
|
|||||||
"text": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64."
|
"text": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"text": "Vulnerability CVE-2019-1551\nSeverity: MEDIUM\nPackage: libssl1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r2\nLink: [CVE-2019-1551](https://nvd.nist.gov/vuln/detail/cve-2019-1551)",
|
"text": "Vulnerability CVE-2019-1551\nSeverity: MEDIUM\nPackage: libssl1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r2\nLink: [CVE-2019-1551](https://avd.aquasec.com/nvd/cve-2019-1551)",
|
||||||
"markdown": "**Vulnerability CVE-2019-1551**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libssl1.1|1.1.1c-r0|1.1.1d-r2|[CVE-2019-1551](https://nvd.nist.gov/vuln/detail/cve-2019-1551)|\n"
|
"markdown": "**Vulnerability CVE-2019-1551**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libssl1.1|1.1.1c-r0|1.1.1d-r2|[CVE-2019-1551](https://avd.aquasec.com/nvd/cve-2019-1551)|\n"
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [
|
"tags": [
|
||||||
@@ -150,8 +150,8 @@
|
|||||||
"text": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey."
|
"text": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"text": "Vulnerability CVE-2019-1563\nSeverity: MEDIUM\nPackage: libssl1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1563](https://nvd.nist.gov/vuln/detail/cve-2019-1563)",
|
"text": "Vulnerability CVE-2019-1563\nSeverity: MEDIUM\nPackage: libssl1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1563](https://avd.aquasec.com/nvd/cve-2019-1563)",
|
||||||
"markdown": "**Vulnerability CVE-2019-1563**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libssl1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1563](https://nvd.nist.gov/vuln/detail/cve-2019-1563)|\n"
|
"markdown": "**Vulnerability CVE-2019-1563**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|MEDIUM|libssl1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1563](https://avd.aquasec.com/nvd/cve-2019-1563)|\n"
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [
|
"tags": [
|
||||||
@@ -172,8 +172,8 @@
|
|||||||
"text": "openssl: side-channel weak encryption vulnerability."
|
"text": "openssl: side-channel weak encryption vulnerability."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"text": "Vulnerability CVE-2019-1547\nSeverity: LOW\nPackage: libssl1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1547](https://nvd.nist.gov/vuln/detail/cve-2019-1547)",
|
"text": "Vulnerability CVE-2019-1547\nSeverity: LOW\nPackage: libssl1.1\nInstalled Version: 1.1.1c-r0\nFixed Version: 1.1.1d-r0\nLink: [CVE-2019-1547](https://avd.aquasec.com/nvd/cve-2019-1547)",
|
||||||
"markdown": "**Vulnerability CVE-2019-1547**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|LOW|libssl1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1547](https://nvd.nist.gov/vuln/detail/cve-2019-1547)|\n"
|
"markdown": "**Vulnerability CVE-2019-1547**\n| Severity | Package | Installed Version | Fixed Version | Link |\n| --- | --- | --- | --- | --- |\n|LOW|libssl1.1|1.1.1c-r0|1.1.1d-r0|[CVE-2019-1547](https://avd.aquasec.com/nvd/cve-2019-1547)|\n"
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"tags": [
|
"tags": [
|
||||||
|
|||||||
10
integration/testdata/alpine-39.json.golden
vendored
10
integration/testdata/alpine-39.json.golden
vendored
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -60,6 +62,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -83,6 +86,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -107,6 +111,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1549",
|
||||||
"Title": "openssl: information disclosure in fork()",
|
"Title": "openssl: information disclosure in fork()",
|
||||||
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
"Description": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -128,6 +133,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -155,6 +161,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -178,6 +185,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -202,6 +210,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-14697",
|
||||||
"Description": "musl libc through 1.1.23 has an x87 floating-point stack adjustment imbalance, related to the math/i386/ directory. In some cases, use of this library could introduce out-of-bounds writes that are not present in an application's source code.",
|
"Description": "musl libc through 1.1.23 has an x87 floating-point stack adjustment imbalance, related to the math/i386/ directory. In some cases, use of this library could introduce out-of-bounds writes that are not present in an application's source code.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -219,6 +228,7 @@
|
|||||||
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
"DiffID": "sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-14697",
|
||||||
"Description": "musl libc through 1.1.23 has an x87 floating-point stack adjustment imbalance, related to the math/i386/ directory. In some cases, use of this library could introduce out-of-bounds writes that are not present in an application's source code.",
|
"Description": "musl libc through 1.1.23 has an x87 floating-point stack adjustment imbalance, related to the math/i386/ directory. In some cases, use of this library could introduce out-of-bounds writes that are not present in an application's source code.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
"References": [
|
"References": [
|
||||||
|
|||||||
44
integration/testdata/amazon-1.json.golden
vendored
44
integration/testdata/amazon-1.json.golden
vendored
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5481",
|
||||||
"Title": "curl: double free due to subsequent call of realloc()",
|
"Title": "curl: double free due to subsequent call of realloc()",
|
||||||
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -56,6 +58,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18218",
|
||||||
"Title": "file: heap-based buffer overflow in cdf_read_property_info in cdf.c",
|
"Title": "file: heap-based buffer overflow in cdf_read_property_info in cdf.c",
|
||||||
"Description": "cdf_read_property_info in cdf.c in file through 5.37 does not restrict the number of CDF_VECTOR elements, which allows a heap-based buffer overflow (4-byte out-of-bounds write).",
|
"Description": "cdf_read_property_info in cdf.c in file through 5.37 does not restrict the number of CDF_VECTOR elements, which allows a heap-based buffer overflow (4-byte out-of-bounds write).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -80,6 +83,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -103,6 +107,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -126,6 +131,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5481",
|
||||||
"Title": "curl: double free due to subsequent call of realloc()",
|
"Title": "curl: double free due to subsequent call of realloc()",
|
||||||
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -147,6 +153,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -170,6 +177,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12290",
|
||||||
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -188,6 +196,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18224",
|
||||||
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
||||||
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -210,6 +219,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9511",
|
||||||
"Title": "HTTP/2: large amount of data requests leads to denial of service",
|
"Title": "HTTP/2: large amount of data requests leads to denial of service",
|
||||||
"Description": "Some HTTP/2 implementations are vulnerable to window size manipulation and stream prioritization manipulation, potentially leading to a denial of service. The attacker requests a large amount of data from a specified resource over multiple streams. They manipulate window size and stream priority to force the server to queue the data in 1-byte chunks. Depending on how efficiently this data is queued, this can consume excess CPU, memory, or both.",
|
"Description": "Some HTTP/2 implementations are vulnerable to window size manipulation and stream prioritization manipulation, potentially leading to a denial of service. The attacker requests a large amount of data from a specified resource over multiple streams. They manipulate window size and stream priority to force the server to queue the data in 1-byte chunks. Depending on how efficiently this data is queued, this can consume excess CPU, memory, or both.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -244,6 +254,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9513",
|
||||||
"Title": "HTTP/2: flood using PRIORITY frames results in excessive resource consumption",
|
"Title": "HTTP/2: flood using PRIORITY frames results in excessive resource consumption",
|
||||||
"Description": "Some HTTP/2 implementations are vulnerable to resource loops, potentially leading to a denial of service. The attacker creates multiple request streams and continually shuffles the priority of the streams in a way that causes substantial churn to the priority tree. This can consume excess CPU.",
|
"Description": "Some HTTP/2 implementations are vulnerable to resource loops, potentially leading to a denial of service. The attacker creates multiple request streams and continually shuffles the priority of the streams in a way that causes substantial churn to the priority tree. This can consume excess CPU.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -279,6 +290,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -305,6 +317,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -333,6 +346,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -370,6 +384,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -391,6 +406,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -417,6 +433,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -445,6 +462,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -482,6 +500,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -503,6 +522,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -529,6 +549,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -557,6 +578,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -594,6 +616,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -615,6 +638,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -641,6 +665,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -669,6 +694,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -706,6 +732,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -727,6 +754,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -753,6 +781,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -781,6 +810,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -818,6 +848,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -839,6 +870,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -865,6 +897,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -893,6 +926,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -930,6 +964,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -951,6 +986,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -977,6 +1013,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1005,6 +1042,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1042,6 +1080,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1063,6 +1102,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1086,6 +1126,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16056",
|
||||||
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
||||||
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1110,6 +1151,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16935",
|
||||||
"Title": "python: XSS vulnerability in the documentation XML-RPC server in server_title field",
|
"Title": "python: XSS vulnerability in the documentation XML-RPC server in server_title field",
|
||||||
"Description": "The documentation XML-RPC server in Python through 2.7.16, 3.x through 3.6.9, and 3.7.x through 3.7.4 has XSS via the server_title field. This occurs in Lib/DocXMLRPCServer.py in Python 2.x, and in Lib/xmlrpc/server.py in Python 3.x. If set_server_title is called with untrusted input, arbitrary JavaScript can be delivered to clients that visit the http URL for this server.",
|
"Description": "The documentation XML-RPC server in Python through 2.7.16, 3.x through 3.6.9, and 3.7.x through 3.7.4 has XSS via the server_title field. This occurs in Lib/DocXMLRPCServer.py in Python 2.x, and in Lib/xmlrpc/server.py in Python 3.x. If set_server_title is called with untrusted input, arbitrary JavaScript can be delivered to clients that visit the http URL for this server.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1132,6 +1174,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16056",
|
||||||
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
||||||
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1156,6 +1199,7 @@
|
|||||||
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
"DiffID": "sha256:984fe1509738f6f00f34d9be7398b07ebeb8b98dda077ff6be2cdb87111b73cf"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16935",
|
||||||
"Title": "python: XSS vulnerability in the documentation XML-RPC server in server_title field",
|
"Title": "python: XSS vulnerability in the documentation XML-RPC server in server_title field",
|
||||||
"Description": "The documentation XML-RPC server in Python through 2.7.16, 3.x through 3.6.9, and 3.7.x through 3.7.4 has XSS via the server_title field. This occurs in Lib/DocXMLRPCServer.py in Python 2.x, and in Lib/xmlrpc/server.py in Python 3.x. If set_server_title is called with untrusted input, arbitrary JavaScript can be delivered to clients that visit the http URL for this server.",
|
"Description": "The documentation XML-RPC server in Python through 2.7.16, 3.x through 3.6.9, and 3.7.x through 3.7.4 has XSS via the server_title field. This occurs in Lib/DocXMLRPCServer.py in Python 2.x, and in Lib/xmlrpc/server.py in Python 3.x. If set_server_title is called with untrusted input, arbitrary JavaScript can be delivered to clients that visit the http URL for this server.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
|
|||||||
79
integration/testdata/amazon-2.json.golden
vendored
79
integration/testdata/amazon-2.json.golden
vendored
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5481",
|
||||||
"Title": "curl: double free due to subsequent call of realloc()",
|
"Title": "curl: double free due to subsequent call of realloc()",
|
||||||
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -56,6 +58,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5435",
|
||||||
"Title": "curl: Integer overflows in curl_url_set() function",
|
"Title": "curl: Integer overflows in curl_url_set() function",
|
||||||
"Description": "An integer overflow in curl's URL API results in a buffer overflow in libcurl 7.62.0 to and including 7.64.1.",
|
"Description": "An integer overflow in curl's URL API results in a buffer overflow in libcurl 7.62.0 to and including 7.64.1.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -75,6 +78,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5436",
|
||||||
"Title": "curl: TFTP receive heap buffer overflow in tftp_receive_packet() function",
|
"Title": "curl: TFTP receive heap buffer overflow in tftp_receive_packet() function",
|
||||||
"Description": "A heap buffer overflow in the TFTP receiving code allows for DoS or arbitrary code execution in libcurl versions 7.19.4 through 7.64.1.",
|
"Description": "A heap buffer overflow in the TFTP receiving code allows for DoS or arbitrary code execution in libcurl versions 7.19.4 through 7.64.1.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -96,6 +100,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16062",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
||||||
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -120,6 +125,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16402",
|
||||||
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
||||||
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -140,6 +146,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16403",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
||||||
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -163,6 +170,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18310",
|
||||||
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
||||||
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -185,6 +193,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18520",
|
||||||
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
||||||
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -207,6 +216,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18521",
|
||||||
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
||||||
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -229,6 +239,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7149",
|
||||||
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
||||||
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -251,6 +262,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7150",
|
||||||
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
||||||
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -273,6 +285,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7664",
|
||||||
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
||||||
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -293,6 +306,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7665",
|
||||||
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
||||||
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -315,6 +329,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18218",
|
||||||
"Title": "file: heap-based buffer overflow in cdf_read_property_info in cdf.c",
|
"Title": "file: heap-based buffer overflow in cdf_read_property_info in cdf.c",
|
||||||
"Description": "cdf_read_property_info in cdf.c in file through 5.37 does not restrict the number of CDF_VECTOR elements, which allows a heap-based buffer overflow (4-byte out-of-bounds write).",
|
"Description": "cdf_read_property_info in cdf.c in file through 5.37 does not restrict the number of CDF_VECTOR elements, which allows a heap-based buffer overflow (4-byte out-of-bounds write).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -339,6 +354,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12450",
|
||||||
"Title": "glib2: file_copy_fallback in gio/gfile.c in GNOME GLib does not properly restrict file permissions while a copy operation is in progress",
|
"Title": "glib2: file_copy_fallback in gio/gfile.c in GNOME GLib does not properly restrict file permissions while a copy operation is in progress",
|
||||||
"Description": "file_copy_fallback in gio/gfile.c in GNOME GLib 2.15.0 through 2.61.1 does not properly restrict file permissions while a copy operation is in progress. Instead, default permissions are used.",
|
"Description": "file_copy_fallback in gio/gfile.c in GNOME GLib 2.15.0 through 2.61.1 does not properly restrict file permissions while a copy operation is in progress. Instead, default permissions are used.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -363,6 +379,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5481",
|
||||||
"Title": "curl: double free due to subsequent call of realloc()",
|
"Title": "curl: double free due to subsequent call of realloc()",
|
||||||
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -384,6 +401,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -407,6 +425,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5435",
|
||||||
"Title": "curl: Integer overflows in curl_url_set() function",
|
"Title": "curl: Integer overflows in curl_url_set() function",
|
||||||
"Description": "An integer overflow in curl's URL API results in a buffer overflow in libcurl 7.62.0 to and including 7.64.1.",
|
"Description": "An integer overflow in curl's URL API results in a buffer overflow in libcurl 7.62.0 to and including 7.64.1.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -426,6 +445,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5436",
|
||||||
"Title": "curl: TFTP receive heap buffer overflow in tftp_receive_packet() function",
|
"Title": "curl: TFTP receive heap buffer overflow in tftp_receive_packet() function",
|
||||||
"Description": "A heap buffer overflow in the TFTP receiving code allows for DoS or arbitrary code execution in libcurl versions 7.19.4 through 7.64.1.",
|
"Description": "A heap buffer overflow in the TFTP receiving code allows for DoS or arbitrary code execution in libcurl versions 7.19.4 through 7.64.1.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -447,6 +467,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12290",
|
||||||
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -465,6 +486,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18224",
|
||||||
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
||||||
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -487,6 +509,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9511",
|
||||||
"Title": "HTTP/2: large amount of data requests leads to denial of service",
|
"Title": "HTTP/2: large amount of data requests leads to denial of service",
|
||||||
"Description": "Some HTTP/2 implementations are vulnerable to window size manipulation and stream prioritization manipulation, potentially leading to a denial of service. The attacker requests a large amount of data from a specified resource over multiple streams. They manipulate window size and stream priority to force the server to queue the data in 1-byte chunks. Depending on how efficiently this data is queued, this can consume excess CPU, memory, or both.",
|
"Description": "Some HTTP/2 implementations are vulnerable to window size manipulation and stream prioritization manipulation, potentially leading to a denial of service. The attacker requests a large amount of data from a specified resource over multiple streams. They manipulate window size and stream priority to force the server to queue the data in 1-byte chunks. Depending on how efficiently this data is queued, this can consume excess CPU, memory, or both.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -521,6 +544,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9513",
|
||||||
"Title": "HTTP/2: flood using PRIORITY frames results in excessive resource consumption",
|
"Title": "HTTP/2: flood using PRIORITY frames results in excessive resource consumption",
|
||||||
"Description": "Some HTTP/2 implementations are vulnerable to resource loops, potentially leading to a denial of service. The attacker creates multiple request streams and continually shuffles the priority of the streams in a way that causes substantial churn to the priority tree. This can consume excess CPU.",
|
"Description": "Some HTTP/2 implementations are vulnerable to resource loops, potentially leading to a denial of service. The attacker creates multiple request streams and continually shuffles the priority of the streams in a way that causes substantial churn to the priority tree. This can consume excess CPU.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -556,6 +580,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3858",
|
||||||
"Title": "libssh2: Zero-byte allocation with a specially crafted SFTP packed leading to an out-of-bounds read",
|
"Title": "libssh2: Zero-byte allocation with a specially crafted SFTP packed leading to an out-of-bounds read",
|
||||||
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 when a specially crafted SFTP packet is received from the server. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 when a specially crafted SFTP packet is received from the server. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -589,6 +614,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3861",
|
||||||
"Title": "libssh2: Out-of-bounds reads with specially crafted SSH packets",
|
"Title": "libssh2: Out-of-bounds reads with specially crafted SSH packets",
|
||||||
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH packets with a padding length value greater than the packet length are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH packets with a padding length value greater than the packet length are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -616,6 +642,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3862",
|
||||||
"Title": "libssh2: Out-of-bounds memory comparison with specially crafted message channel request",
|
"Title": "libssh2: Out-of-bounds memory comparison with specially crafted message channel request",
|
||||||
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit status message and no payload are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit status message and no payload are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -649,6 +676,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-4658",
|
||||||
"Title": "libxml2: Use after free via namespace node in XPointer ranges",
|
"Title": "libxml2: Use after free via namespace node in XPointer ranges",
|
||||||
"Description": "xpointer.c in libxml2 before 2.9.5 (as used in Apple iOS before 10, OS X before 10.12, tvOS before 10, and watchOS before 3, and other products) does not forbid namespace nodes in XPointer ranges, which allows remote attackers to execute arbitrary code or cause a denial of service (use-after-free and memory corruption) via a crafted XML document.",
|
"Description": "xpointer.c in libxml2 before 2.9.5 (as used in Apple iOS before 10, OS X before 10.12, tvOS before 10, and watchOS before 3, and other products) does not forbid namespace nodes in XPointer ranges, which allows remote attackers to execute arbitrary code or cause a denial of service (use-after-free and memory corruption) via a crafted XML document.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -679,6 +707,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16931",
|
||||||
"Title": "libxml2: Mishandling parameter-entity references",
|
"Title": "libxml2: Mishandling parameter-entity references",
|
||||||
"Description": "parser.c in libxml2 before 2.9.5 mishandles parameter-entity references because the NEXTL macro calls the xmlParserHandlePEReference function in the case of a '%' character in a DTD name.",
|
"Description": "parser.c in libxml2 before 2.9.5 mishandles parameter-entity references because the NEXTL macro calls the xmlParserHandlePEReference function in the case of a '%' character in a DTD name.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -699,6 +728,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-10684",
|
||||||
"Title": "ncurses: Stack-based buffer overflow in fmt_entry function in dump_entry.c",
|
"Title": "ncurses: Stack-based buffer overflow in fmt_entry function in dump_entry.c",
|
||||||
"Description": "In ncurses 6.0, there is a stack-based buffer overflow in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
"Description": "In ncurses 6.0, there is a stack-based buffer overflow in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -717,6 +747,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-10685",
|
||||||
"Title": "ncurses: Stack-based buffer overflow caused by format string vulnerability in fmt_entry function",
|
"Title": "ncurses: Stack-based buffer overflow caused by format string vulnerability in fmt_entry function",
|
||||||
"Description": "In ncurses 6.0, there is a format string vulnerability in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
"Description": "In ncurses 6.0, there is a format string vulnerability in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -735,6 +766,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11112",
|
||||||
"Title": "ncurses: Illegal address access in append_acs function",
|
"Title": "ncurses: Illegal address access in append_acs function",
|
||||||
"Description": "In ncurses 6.0, there is an attempted 0xffffffffffffffff access in the append_acs function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
"Description": "In ncurses 6.0, there is an attempted 0xffffffffffffffff access in the append_acs function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -753,6 +785,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11113",
|
||||||
"Title": "ncurses: Null pointer dereference vulnerability in _nc_parse_entry function",
|
"Title": "ncurses: Null pointer dereference vulnerability in _nc_parse_entry function",
|
||||||
"Description": "In ncurses 6.0, there is a NULL Pointer Dereference in the _nc_parse_entry function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
"Description": "In ncurses 6.0, there is a NULL Pointer Dereference in the _nc_parse_entry function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -771,6 +804,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-10684",
|
||||||
"Title": "ncurses: Stack-based buffer overflow in fmt_entry function in dump_entry.c",
|
"Title": "ncurses: Stack-based buffer overflow in fmt_entry function in dump_entry.c",
|
||||||
"Description": "In ncurses 6.0, there is a stack-based buffer overflow in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
"Description": "In ncurses 6.0, there is a stack-based buffer overflow in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -789,6 +823,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-10685",
|
||||||
"Title": "ncurses: Stack-based buffer overflow caused by format string vulnerability in fmt_entry function",
|
"Title": "ncurses: Stack-based buffer overflow caused by format string vulnerability in fmt_entry function",
|
||||||
"Description": "In ncurses 6.0, there is a format string vulnerability in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
"Description": "In ncurses 6.0, there is a format string vulnerability in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -807,6 +842,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11112",
|
||||||
"Title": "ncurses: Illegal address access in append_acs function",
|
"Title": "ncurses: Illegal address access in append_acs function",
|
||||||
"Description": "In ncurses 6.0, there is an attempted 0xffffffffffffffff access in the append_acs function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
"Description": "In ncurses 6.0, there is an attempted 0xffffffffffffffff access in the append_acs function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -825,6 +861,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11113",
|
||||||
"Title": "ncurses: Null pointer dereference vulnerability in _nc_parse_entry function",
|
"Title": "ncurses: Null pointer dereference vulnerability in _nc_parse_entry function",
|
||||||
"Description": "In ncurses 6.0, there is a NULL Pointer Dereference in the _nc_parse_entry function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
"Description": "In ncurses 6.0, there is a NULL Pointer Dereference in the _nc_parse_entry function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -843,6 +880,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-10684",
|
||||||
"Title": "ncurses: Stack-based buffer overflow in fmt_entry function in dump_entry.c",
|
"Title": "ncurses: Stack-based buffer overflow in fmt_entry function in dump_entry.c",
|
||||||
"Description": "In ncurses 6.0, there is a stack-based buffer overflow in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
"Description": "In ncurses 6.0, there is a stack-based buffer overflow in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -861,6 +899,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-10685",
|
||||||
"Title": "ncurses: Stack-based buffer overflow caused by format string vulnerability in fmt_entry function",
|
"Title": "ncurses: Stack-based buffer overflow caused by format string vulnerability in fmt_entry function",
|
||||||
"Description": "In ncurses 6.0, there is a format string vulnerability in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
"Description": "In ncurses 6.0, there is a format string vulnerability in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -879,6 +918,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11112",
|
||||||
"Title": "ncurses: Illegal address access in append_acs function",
|
"Title": "ncurses: Illegal address access in append_acs function",
|
||||||
"Description": "In ncurses 6.0, there is an attempted 0xffffffffffffffff access in the append_acs function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
"Description": "In ncurses 6.0, there is an attempted 0xffffffffffffffff access in the append_acs function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -897,6 +937,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11113",
|
||||||
"Title": "ncurses: Null pointer dereference vulnerability in _nc_parse_entry function",
|
"Title": "ncurses: Null pointer dereference vulnerability in _nc_parse_entry function",
|
||||||
"Description": "In ncurses 6.0, there is a NULL Pointer Dereference in the _nc_parse_entry function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
"Description": "In ncurses 6.0, there is a NULL Pointer Dereference in the _nc_parse_entry function of tinfo/parse_entry.c. It could lead to a remote denial of service attack if the terminfo library code is used to process untrusted terminfo data.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -915,6 +956,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -941,6 +983,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -969,6 +1012,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1006,6 +1050,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1027,6 +1072,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1053,6 +1099,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1081,6 +1128,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1107,6 +1155,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1135,6 +1184,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1161,6 +1211,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1189,6 +1240,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1226,6 +1278,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1247,6 +1300,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1273,6 +1327,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1301,6 +1356,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1338,6 +1394,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1359,6 +1416,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1383,6 +1441,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1406,6 +1465,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0734",
|
||||||
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
||||||
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1441,6 +1501,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1559",
|
||||||
"Title": "openssl: 0-byte record padding oracle",
|
"Title": "openssl: 0-byte record padding oracle",
|
||||||
"Description": "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 that 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). Fixed in OpenSSL 1.0.2r (Affected 1.0.2-1.0.2q).",
|
"Description": "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 that 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). Fixed in OpenSSL 1.0.2r (Affected 1.0.2-1.0.2q).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1480,6 +1541,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1060",
|
||||||
"Title": "python: DOS via regular expression catastrophic backtracking in apop() method in pop3lib",
|
"Title": "python: DOS via regular expression catastrophic backtracking in apop() method in pop3lib",
|
||||||
"Description": "python before versions 2.7.15, 3.4.9, 3.5.6rc1, 3.6.5rc1 and 3.7.0 is vulnerable to catastrophic backtracking in pop3lib's apop() method. An attacker could use this flaw to cause denial of service.",
|
"Description": "python before versions 2.7.15, 3.4.9, 3.5.6rc1, 3.6.5rc1 and 3.7.0 is vulnerable to catastrophic backtracking in pop3lib's apop() method. An attacker could use this flaw to cause denial of service.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1521,6 +1583,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1061",
|
||||||
"Title": "python: DOS via regular expression backtracking in difflib.IS_LINE_JUNK method in difflib",
|
"Title": "python: DOS via regular expression backtracking in difflib.IS_LINE_JUNK method in difflib",
|
||||||
"Description": "python before versions 2.7.15, 3.4.9, 3.5.6rc1, 3.6.5rc1 and 3.7.0 is vulnerable to catastrophic backtracking in the difflib.IS_LINE_JUNK method. An attacker could use this flaw to cause denial of service.",
|
"Description": "python before versions 2.7.15, 3.4.9, 3.5.6rc1, 3.6.5rc1 and 3.7.0 is vulnerable to catastrophic backtracking in the difflib.IS_LINE_JUNK method. An attacker could use this flaw to cause denial of service.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1559,6 +1622,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20406",
|
||||||
"Title": "python: Integer overflow in Modules/_pickle.c allows for memory exhaustion if serializing gigabytes of data",
|
"Title": "python: Integer overflow in Modules/_pickle.c allows for memory exhaustion if serializing gigabytes of data",
|
||||||
"Description": "Modules/_pickle.c in Python before 3.7.1 has an integer overflow via a large LONG_BINPUT value that is mishandled during a \"resize to twice the size\" attempt. This issue might cause memory exhaustion, but is only relevant if the pickle format is used for serializing tens or hundreds of gigabytes of data.",
|
"Description": "Modules/_pickle.c in Python before 3.7.1 has an integer overflow via a large LONG_BINPUT value that is mishandled during a \"resize to twice the size\" attempt. This issue might cause memory exhaustion, but is only relevant if the pickle format is used for serializing tens or hundreds of gigabytes of data.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1586,6 +1650,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-10160",
|
||||||
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
||||||
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1625,6 +1690,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5010",
|
||||||
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
||||||
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1647,6 +1713,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9636",
|
||||||
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
||||||
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1693,6 +1760,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16056",
|
||||||
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
||||||
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1717,6 +1785,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9948",
|
||||||
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
||||||
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1742,6 +1811,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1060",
|
||||||
"Title": "python: DOS via regular expression catastrophic backtracking in apop() method in pop3lib",
|
"Title": "python: DOS via regular expression catastrophic backtracking in apop() method in pop3lib",
|
||||||
"Description": "python before versions 2.7.15, 3.4.9, 3.5.6rc1, 3.6.5rc1 and 3.7.0 is vulnerable to catastrophic backtracking in pop3lib's apop() method. An attacker could use this flaw to cause denial of service.",
|
"Description": "python before versions 2.7.15, 3.4.9, 3.5.6rc1, 3.6.5rc1 and 3.7.0 is vulnerable to catastrophic backtracking in pop3lib's apop() method. An attacker could use this flaw to cause denial of service.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1783,6 +1853,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1061",
|
||||||
"Title": "python: DOS via regular expression backtracking in difflib.IS_LINE_JUNK method in difflib",
|
"Title": "python: DOS via regular expression backtracking in difflib.IS_LINE_JUNK method in difflib",
|
||||||
"Description": "python before versions 2.7.15, 3.4.9, 3.5.6rc1, 3.6.5rc1 and 3.7.0 is vulnerable to catastrophic backtracking in the difflib.IS_LINE_JUNK method. An attacker could use this flaw to cause denial of service.",
|
"Description": "python before versions 2.7.15, 3.4.9, 3.5.6rc1, 3.6.5rc1 and 3.7.0 is vulnerable to catastrophic backtracking in the difflib.IS_LINE_JUNK method. An attacker could use this flaw to cause denial of service.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1821,6 +1892,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20406",
|
||||||
"Title": "python: Integer overflow in Modules/_pickle.c allows for memory exhaustion if serializing gigabytes of data",
|
"Title": "python: Integer overflow in Modules/_pickle.c allows for memory exhaustion if serializing gigabytes of data",
|
||||||
"Description": "Modules/_pickle.c in Python before 3.7.1 has an integer overflow via a large LONG_BINPUT value that is mishandled during a \"resize to twice the size\" attempt. This issue might cause memory exhaustion, but is only relevant if the pickle format is used for serializing tens or hundreds of gigabytes of data.",
|
"Description": "Modules/_pickle.c in Python before 3.7.1 has an integer overflow via a large LONG_BINPUT value that is mishandled during a \"resize to twice the size\" attempt. This issue might cause memory exhaustion, but is only relevant if the pickle format is used for serializing tens or hundreds of gigabytes of data.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1848,6 +1920,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-10160",
|
||||||
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
||||||
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1887,6 +1960,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5010",
|
||||||
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
||||||
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1909,6 +1983,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9636",
|
||||||
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
||||||
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1955,6 +2030,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16056",
|
||||||
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
||||||
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1979,6 +2055,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9948",
|
||||||
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
||||||
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2004,6 +2081,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13734",
|
||||||
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
||||||
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -2028,6 +2106,7 @@
|
|||||||
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
"DiffID": "sha256:f387c8b346c85cae37abd1f1a63015acb69f593dc425d0269f57d1012c3a81f6"
|
||||||
},
|
},
|
||||||
"SeveritySource": "amazon",
|
"SeveritySource": "amazon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12735",
|
||||||
"Title": "vim/neovim: ':source!' command allows arbitrary command execution via modelines",
|
"Title": "vim/neovim: ':source!' command allows arbitrary command execution via modelines",
|
||||||
"Description": "getchar.c in Vim before 8.1.1365 and Neovim before 0.3.6 allows remote attackers to execute arbitrary OS commands via the :source! command in a modeline, as demonstrated by execute in Vim, and assert_fails or nvim_input in Neovim.",
|
"Description": "getchar.c in Vim before 8.1.1365 and Neovim before 0.3.6 allows remote attackers to execute arbitrary OS commands via the :source! command in a modeline, as demonstrated by execute in Vim, and assert_fails or nvim_input in Neovim.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://rustsec.org/advisories/RUSTSEC-2019-0001",
|
||||||
"Title": "Uncontrolled recursion leads to abort in HTML serialization",
|
"Title": "Uncontrolled recursion leads to abort in HTML serialization",
|
||||||
"Description": "Affected versions of this crate did use recursion for serialization of HTML\nDOM trees.\n\nThis allows an attacker to cause abort due to stack overflow by providing\na pathologically nested input.\n\nThe flaw was corrected by serializing the DOM tree iteratively instead.",
|
"Description": "Affected versions of this crate did use recursion for serialization of HTML\nDOM trees.\n\nThis allows an attacker to cause abort due to stack overflow by providing\na pathologically nested input.\n\nThe flaw was corrected by serializing the DOM tree iteratively instead.",
|
||||||
"Severity": "UNKNOWN",
|
"Severity": "UNKNOWN",
|
||||||
@@ -26,6 +27,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://rustsec.org/advisories/RUSTSEC-2016-0001",
|
||||||
"Title": "SSL/TLS MitM vulnerability due to insecure defaults",
|
"Title": "SSL/TLS MitM vulnerability due to insecure defaults",
|
||||||
"Description": "All versions of rust-openssl prior to 0.9.0 contained numerous insecure defaults\nincluding off-by-default certificate verification and no API to perform hostname\nverification.\n\nUnless configured correctly by a developer, these defaults could allow an attacker\nto perform man-in-the-middle attacks.\n\nThe problem was addressed in newer versions by enabling certificate verification\nby default and exposing APIs to perform hostname verification. Use the\n`SslConnector` and `SslAcceptor` types to take advantage of these new features\n(as opposed to the lower-level `SslContext` type).",
|
"Description": "All versions of rust-openssl prior to 0.9.0 contained numerous insecure defaults\nincluding off-by-default certificate verification and no API to perform hostname\nverification.\n\nUnless configured correctly by a developer, these defaults could allow an attacker\nto perform man-in-the-middle attacks.\n\nThe problem was addressed in newer versions by enabling certificate verification\nby default and exposing APIs to perform hostname verification. Use the\n`SslConnector` and `SslAcceptor` types to take advantage of these new features\n(as opposed to the lower-level `SslContext` type).",
|
||||||
"Severity": "UNKNOWN",
|
"Severity": "UNKNOWN",
|
||||||
@@ -41,6 +43,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://rustsec.org/advisories/RUSTSEC-2019-0035",
|
||||||
"Title": "Unaligned memory access",
|
"Title": "Unaligned memory access",
|
||||||
"Description": "Affected versions of this crate violated alignment when casting byte slices to\ninteger slices, resulting in undefined behavior.\n\nThe flaw was corrected by Ralf Jung and Diggory Hardy.",
|
"Description": "Affected versions of this crate violated alignment when casting byte slices to\ninteger slices, resulting in undefined behavior.\n\nThe flaw was corrected by Ralf Jung and Diggory Hardy.",
|
||||||
"Severity": "UNKNOWN",
|
"Severity": "UNKNOWN",
|
||||||
@@ -56,6 +59,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://rustsec.org/advisories/RUSTSEC-2019-0035",
|
||||||
"Title": "Unaligned memory access",
|
"Title": "Unaligned memory access",
|
||||||
"Description": "Affected versions of this crate violated alignment when casting byte slices to\ninteger slices, resulting in undefined behavior.\n\nThe flaw was corrected by Ralf Jung and Diggory Hardy.",
|
"Description": "Affected versions of this crate violated alignment when casting byte slices to\ninteger slices, resulting in undefined behavior.\n\nThe flaw was corrected by Ralf Jung and Diggory Hardy.",
|
||||||
"Severity": "UNKNOWN",
|
"Severity": "UNKNOWN",
|
||||||
@@ -71,6 +75,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://rustsec.org/advisories/RUSTSEC-2018-0018",
|
||||||
"Title": "smallvec creates uninitialized value of any type",
|
"Title": "smallvec creates uninitialized value of any type",
|
||||||
"Description": "Affected versions of this crate called `mem::uninitialized()` to create values of a user-supplied type `T`.\nThis is unsound e.g. if `T` is a reference type (which must be non-null and thus may not remain uninitialized).\n \nThe flaw was corrected by avoiding the use of `mem::uninitialized()`, using `MaybeUninit` instead.",
|
"Description": "Affected versions of this crate called `mem::uninitialized()` to create values of a user-supplied type `T`.\nThis is unsound e.g. if `T` is a reference type (which must be non-null and thus may not remain uninitialized).\n \nThe flaw was corrected by avoiding the use of `mem::uninitialized()`, using `MaybeUninit` instead.",
|
||||||
"Severity": "UNKNOWN",
|
"Severity": "UNKNOWN",
|
||||||
@@ -86,6 +91,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://rustsec.org/advisories/RUSTSEC-2019-0009",
|
||||||
"Title": "Double-free and use-after-free in SmallVec::grow()",
|
"Title": "Double-free and use-after-free in SmallVec::grow()",
|
||||||
"Description": "Attempting to call `grow` on a spilled SmallVec with a value equal to the current capacity causes it to free the existing data. This performs a double free immediately and may lead to use-after-free on subsequent accesses to the SmallVec contents.\n\nAn attacker that controls the value passed to `grow` may exploit this flaw to obtain memory contents or gain remote code execution.\n\nCredits to @ehuss for discovering, reporting and fixing the bug.",
|
"Description": "Attempting to call `grow` on a spilled SmallVec with a value equal to the current capacity causes it to free the existing data. This performs a double free immediately and may lead to use-after-free on subsequent accesses to the SmallVec contents.\n\nAn attacker that controls the value passed to `grow` may exploit this flaw to obtain memory contents or gain remote code execution.\n\nCredits to @ehuss for discovering, reporting and fixing the bug.",
|
||||||
"Severity": "UNKNOWN",
|
"Severity": "UNKNOWN",
|
||||||
@@ -101,6 +107,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://rustsec.org/advisories/RUSTSEC-2019-0012",
|
||||||
"Title": "Memory corruption in SmallVec::grow()",
|
"Title": "Memory corruption in SmallVec::grow()",
|
||||||
"Description": "Attempting to call `grow` on a spilled SmallVec with a value less than the current capacity causes corruption of memory allocator data structures.\n\nAn attacker that controls the value passed to `grow` may exploit this flaw to obtain memory contents or gain remote code execution.\n\nCredits to @ehuss for discovering, reporting and fixing the bug.",
|
"Description": "Attempting to call `grow` on a spilled SmallVec with a value less than the current capacity causes corruption of memory allocator data structures.\n\nAn attacker that controls the value passed to `grow` may exploit this flaw to obtain memory contents or gain remote code execution.\n\nCredits to @ehuss for discovering, reporting and fixing the bug.",
|
||||||
"Severity": "UNKNOWN",
|
"Severity": "UNKNOWN",
|
||||||
@@ -115,6 +122,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
"DiffID": "sha256:ea6f6933da66090da8bfe233d68f083792a68f944cd2d8f9fbb52da795813a4f"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://rustsec.org/advisories/RUSTSEC-2018-0017",
|
||||||
"Title": "`tempdir` crate has been deprecated; use `tempfile` instead",
|
"Title": "`tempdir` crate has been deprecated; use `tempfile` instead",
|
||||||
"Description": "The [`tempdir`](https://crates.io/crates/tempdir) crate has been deprecated\nand the functionality is merged into [`tempfile`](https://crates.io/crates/tempfile).",
|
"Description": "The [`tempdir`](https://crates.io/crates/tempdir) crate has been deprecated\nand the functionality is merged into [`tempfile`](https://crates.io/crates/tempfile).",
|
||||||
"Severity": "UNKNOWN",
|
"Severity": "UNKNOWN",
|
||||||
|
|||||||
647
integration/testdata/centos-6.json.golden
vendored
647
integration/testdata/centos-6.json.golden
vendored
File diff suppressed because it is too large
Load Diff
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5743",
|
||||||
"Title": "bind: Limiting simultaneous TCP clients is ineffective",
|
"Title": "bind: Limiting simultaneous TCP clients is ineffective",
|
||||||
"Description": "By design, BIND is intended to limit the number of TCP clients that can be connected at any given time. The number of allowed connections is a tunable parameter which, if unset, defaults to a conservative value for most servers. Unfortunately, the code which was intended to limit the number of simultaneous connections contained an error which could be exploited to grow the number of simultaneous connections beyond this limit. Versions affected: BIND 9.9.0 -\u003e 9.10.8-P1, 9.11.0 -\u003e 9.11.6, 9.12.0 -\u003e 9.12.4, 9.14.0. BIND 9 Supported Preview Edition versions 9.9.3-S1 -\u003e 9.11.5-S3, and 9.11.5-S5. Versions 9.13.0 -\u003e 9.13.7 of the 9.13 development branch are also affected. Versions prior to BIND 9.9.0 have not been evaluated for vulnerability to CVE-2018-5743.",
|
"Description": "By design, BIND is intended to limit the number of TCP clients that can be connected at any given time. The number of allowed connections is a tunable parameter which, if unset, defaults to a conservative value for most servers. Unfortunately, the code which was intended to limit the number of simultaneous connections contained an error which could be exploited to grow the number of simultaneous connections beyond this limit. Versions affected: BIND 9.9.0 -\u003e 9.10.8-P1, 9.11.0 -\u003e 9.11.6, 9.12.0 -\u003e 9.12.4, 9.14.0. BIND 9 Supported Preview Edition versions 9.9.3-S1 -\u003e 9.11.5-S3, and 9.11.5-S5. Versions 9.13.0 -\u003e 9.13.7 of the 9.13 development branch are also affected. Versions prior to BIND 9.9.0 have not been evaluated for vulnerability to CVE-2018-5743.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5741",
|
||||||
"Title": "bind: Incorrect documentation of krb5-subdomain and ms-subdomain update policies",
|
"Title": "bind: Incorrect documentation of krb5-subdomain and ms-subdomain update policies",
|
||||||
"Description": "To provide fine-grained controls over the ability to use Dynamic DNS (DDNS) to update records in a zone, BIND 9 provides a feature called update-policy. Various rules can be configured to limit the types of updates that can be performed by a client, depending on the key used when sending the update request. Unfortunately, some rule types were not initially documented, and when documentation for them was added to the Administrator Reference Manual (ARM) in change #3112, the language that was added to the ARM at that time incorrectly described the behavior of two rule types, krb5-subdomain and ms-subdomain. This incorrect documentation could mislead operators into believing that policies they had configured were more restrictive than they actually were. This affects BIND versions prior to BIND 9.11.5 and BIND 9.12.3.",
|
"Description": "To provide fine-grained controls over the ability to use Dynamic DNS (DDNS) to update records in a zone, BIND 9 provides a feature called update-policy. Various rules can be configured to limit the types of updates that can be performed by a client, depending on the key used when sending the update request. Unfortunately, some rule types were not initially documented, and when documentation for them was added to the Administrator Reference Manual (ARM) in change #3112, the language that was added to the ARM at that time incorrectly described the behavior of two rule types, krb5-subdomain and ms-subdomain. This incorrect documentation could mislead operators into believing that policies they had configured were more restrictive than they actually were. This affects BIND versions prior to BIND 9.11.5 and BIND 9.12.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -56,6 +58,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000876",
|
||||||
"Title": "binutils: integer overflow leads to heap-based buffer overflow in objdump",
|
"Title": "binutils: integer overflow leads to heap-based buffer overflow in objdump",
|
||||||
"Description": "binutils version 2.32 and earlier contains a Integer Overflow vulnerability in objdump, bfd_get_dynamic_reloc_upper_bound,bfd_canonicalize_dynamic_reloc that can result in Integer overflow trigger heap overflow. Successful exploitation allows execution of arbitrary code.. This attack appear to be exploitable via Local. This vulnerability appears to have been fixed in after commit 3a551c7a1b80fca579461774860574eabfd7f18f.",
|
"Description": "binutils version 2.32 and earlier contains a Integer Overflow vulnerability in objdump, bfd_get_dynamic_reloc_upper_bound,bfd_canonicalize_dynamic_reloc that can result in Integer overflow trigger heap overflow. Successful exploitation allows execution of arbitrary code.. This attack appear to be exploitable via Local. This vulnerability appears to have been fixed in after commit 3a551c7a1b80fca579461774860574eabfd7f18f.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -77,6 +80,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12641",
|
||||||
"Title": "binutils: Stack Exhaustion in the demangling functions provided by libiberty",
|
"Title": "binutils: Stack Exhaustion in the demangling functions provided by libiberty",
|
||||||
"Description": "An issue was discovered in arm_pt in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. Stack Exhaustion occurs in the C++ demangling functions provided by libiberty, and there are recursive stack frames: demangle_arm_hp_template, demangle_class_name, demangle_fund_type, do_type, do_arg, demangle_args, and demangle_nested_args. This can occur during execution of nm-new.",
|
"Description": "An issue was discovered in arm_pt in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. Stack Exhaustion occurs in the C++ demangling functions provided by libiberty, and there are recursive stack frames: demangle_arm_hp_template, demangle_class_name, demangle_fund_type, do_type, do_arg, demangle_args, and demangle_nested_args. This can occur during execution of nm-new.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -99,6 +103,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12697",
|
||||||
"Title": "binutils: NULL pointer dereference in work_stuff_copy_to_from in cplus-dem.c.",
|
"Title": "binutils: NULL pointer dereference in work_stuff_copy_to_from in cplus-dem.c.",
|
||||||
"Description": "A NULL pointer dereference (aka SEGV on unknown address 0x000000000000) was discovered in work_stuff_copy_to_from in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. This can occur during execution of objdump.",
|
"Description": "A NULL pointer dereference (aka SEGV on unknown address 0x000000000000) was discovered in work_stuff_copy_to_from in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. This can occur during execution of objdump.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -122,6 +127,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-14618",
|
||||||
"Title": "curl: NTLM password overflow via integer overflow",
|
"Title": "curl: NTLM password overflow via integer overflow",
|
||||||
"Description": "curl before version 7.61.1 is vulnerable to a buffer overrun in the NTLM authentication code. The internal function Curl_ntlm_core_mk_nt_hash multiplies the length of the password by two (SUM) to figure out how large temporary storage area to allocate from the heap. The length value is then subsequently used to iterate over the password and generate output into the allocated storage buffer. On systems with a 32 bit size_t, the math to calculate SUM triggers an integer overflow when the password length exceeds 2GB (2^31 bytes). This integer overflow usually causes a very small buffer to actually get allocated instead of the intended very huge one, making the use of that buffer end up in a heap buffer overflow. (This bug is almost identical to CVE-2017-8816.)",
|
"Description": "curl before version 7.61.1 is vulnerable to a buffer overrun in the NTLM authentication code. The internal function Curl_ntlm_core_mk_nt_hash multiplies the length of the password by two (SUM) to figure out how large temporary storage area to allocate from the heap. The length value is then subsequently used to iterate over the password and generate output into the allocated storage buffer. On systems with a 32 bit size_t, the math to calculate SUM triggers an integer overflow when the password length exceeds 2GB (2^31 bytes). This integer overflow usually causes a very small buffer to actually get allocated instead of the intended very huge one, making the use of that buffer end up in a heap buffer overflow. (This bug is almost identical to CVE-2017-8816.)",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -150,6 +156,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16842",
|
||||||
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
||||||
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -178,6 +185,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16062",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
||||||
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -202,6 +210,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16402",
|
||||||
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
||||||
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -222,6 +231,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16403",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
||||||
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -245,6 +255,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18310",
|
||||||
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
||||||
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -267,6 +278,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18520",
|
||||||
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
||||||
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -289,6 +301,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18521",
|
||||||
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
||||||
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -311,6 +324,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7149",
|
||||||
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
||||||
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -333,6 +347,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7150",
|
||||||
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
||||||
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -355,6 +370,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7664",
|
||||||
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
||||||
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -375,6 +391,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7665",
|
||||||
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
||||||
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -397,6 +414,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16062",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
||||||
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -421,6 +439,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16402",
|
||||||
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
||||||
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -441,6 +460,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16403",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
||||||
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -464,6 +484,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18310",
|
||||||
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
||||||
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -486,6 +507,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18520",
|
||||||
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
||||||
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -508,6 +530,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18521",
|
||||||
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
||||||
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -530,6 +553,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7149",
|
||||||
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
||||||
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -552,6 +576,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7150",
|
||||||
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
||||||
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -574,6 +599,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7664",
|
||||||
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
||||||
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -594,6 +620,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7665",
|
||||||
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
||||||
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -616,6 +643,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16062",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
||||||
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -640,6 +668,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16402",
|
||||||
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
||||||
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -660,6 +689,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16403",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
||||||
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -683,6 +713,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18310",
|
||||||
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
||||||
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -705,6 +736,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18520",
|
||||||
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
||||||
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -727,6 +759,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18521",
|
||||||
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
||||||
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -749,6 +782,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7149",
|
||||||
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
||||||
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -771,6 +805,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7150",
|
||||||
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
||||||
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -793,6 +828,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7664",
|
||||||
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
||||||
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -813,6 +849,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7665",
|
||||||
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
||||||
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -835,6 +872,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -858,6 +896,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -881,6 +920,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-14618",
|
||||||
"Title": "curl: NTLM password overflow via integer overflow",
|
"Title": "curl: NTLM password overflow via integer overflow",
|
||||||
"Description": "curl before version 7.61.1 is vulnerable to a buffer overrun in the NTLM authentication code. The internal function Curl_ntlm_core_mk_nt_hash multiplies the length of the password by two (SUM) to figure out how large temporary storage area to allocate from the heap. The length value is then subsequently used to iterate over the password and generate output into the allocated storage buffer. On systems with a 32 bit size_t, the math to calculate SUM triggers an integer overflow when the password length exceeds 2GB (2^31 bytes). This integer overflow usually causes a very small buffer to actually get allocated instead of the intended very huge one, making the use of that buffer end up in a heap buffer overflow. (This bug is almost identical to CVE-2017-8816.)",
|
"Description": "curl before version 7.61.1 is vulnerable to a buffer overrun in the NTLM authentication code. The internal function Curl_ntlm_core_mk_nt_hash multiplies the length of the password by two (SUM) to figure out how large temporary storage area to allocate from the heap. The length value is then subsequently used to iterate over the password and generate output into the allocated storage buffer. On systems with a 32 bit size_t, the math to calculate SUM triggers an integer overflow when the password length exceeds 2GB (2^31 bytes). This integer overflow usually causes a very small buffer to actually get allocated instead of the intended very huge one, making the use of that buffer end up in a heap buffer overflow. (This bug is almost identical to CVE-2017-8816.)",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -909,6 +949,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16842",
|
||||||
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
||||||
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -937,6 +978,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3855",
|
||||||
"Title": "libssh2: Integer overflow in transport read resulting in out of bounds write",
|
"Title": "libssh2: Integer overflow in transport read resulting in out of bounds write",
|
||||||
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way packets are read from the server. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way packets are read from the server. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -972,6 +1014,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3856",
|
||||||
"Title": "libssh2: Integer overflow in keyboard interactive handling resulting in out of bounds write",
|
"Title": "libssh2: Integer overflow in keyboard interactive handling resulting in out of bounds write",
|
||||||
"Description": "An integer overflow flaw, which could lead to an out of bounds write, was discovered in libssh2 before 1.8.1 in the way keyboard prompt requests are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
"Description": "An integer overflow flaw, which could lead to an out of bounds write, was discovered in libssh2 before 1.8.1 in the way keyboard prompt requests are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1001,6 +1044,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3857",
|
||||||
"Title": "libssh2: Integer overflow in SSH packet processing channel resulting in out of bounds write",
|
"Title": "libssh2: Integer overflow in SSH packet processing channel resulting in out of bounds write",
|
||||||
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit signal are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit signal are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1030,6 +1074,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3863",
|
||||||
"Title": "libssh2: Integer overflow in user authenticate keyboard interactive allows out-of-bounds writes",
|
"Title": "libssh2: Integer overflow in user authenticate keyboard interactive allows out-of-bounds writes",
|
||||||
"Description": "A flaw was found in libssh2 before 1.8.1. A server could send a multiple keyboard interactive response messages whose total length are greater than unsigned char max characters. This value is used as an index to copy memory causing in an out of bounds memory write error.",
|
"Description": "A flaw was found in libssh2 before 1.8.1. A server could send a multiple keyboard interactive response messages whose total length are greater than unsigned char max characters. This value is used as an index to copy memory causing in an out of bounds memory write error.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1059,6 +1104,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3858",
|
||||||
"Title": "libssh2: Zero-byte allocation with a specially crafted SFTP packed leading to an out-of-bounds read",
|
"Title": "libssh2: Zero-byte allocation with a specially crafted SFTP packed leading to an out-of-bounds read",
|
||||||
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 when a specially crafted SFTP packet is received from the server. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 when a specially crafted SFTP packet is received from the server. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1092,6 +1138,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3861",
|
||||||
"Title": "libssh2: Out-of-bounds reads with specially crafted SSH packets",
|
"Title": "libssh2: Out-of-bounds reads with specially crafted SSH packets",
|
||||||
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH packets with a padding length value greater than the packet length are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH packets with a padding length value greater than the packet length are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1119,6 +1166,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3862",
|
||||||
"Title": "libssh2: Out-of-bounds memory comparison with specially crafted message channel request",
|
"Title": "libssh2: Out-of-bounds memory comparison with specially crafted message channel request",
|
||||||
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit status message and no payload are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit status message and no payload are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1152,6 +1200,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1189,6 +1238,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1210,6 +1260,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1238,6 +1289,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1275,6 +1327,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1296,6 +1349,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1322,6 +1376,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1350,6 +1405,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1387,6 +1443,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1408,6 +1465,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1434,6 +1492,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1462,6 +1521,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1499,6 +1559,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1520,6 +1581,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1546,6 +1608,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1574,6 +1637,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1611,6 +1675,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1632,6 +1697,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1658,6 +1724,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1686,6 +1753,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1723,6 +1791,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1744,6 +1813,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1770,6 +1840,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1798,6 +1869,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1835,6 +1907,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1856,6 +1929,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1882,6 +1956,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5407",
|
||||||
"Title": "openssl: Side-channel vulnerability on SMT/Hyper-Threading architectures (PortSmash)",
|
"Title": "openssl: Side-channel vulnerability on SMT/Hyper-Threading architectures (PortSmash)",
|
||||||
"Description": "Simultaneous Multi-threading (SMT) in processors can enable local users to exploit software vulnerable to timing attacks via a side-channel timing attack on 'port contention'.",
|
"Description": "Simultaneous Multi-threading (SMT) in processors can enable local users to exploit software vulnerable to timing attacks via a side-channel timing attack on 'port contention'.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1920,6 +1995,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1559",
|
||||||
"Title": "openssl: 0-byte record padding oracle",
|
"Title": "openssl: 0-byte record padding oracle",
|
||||||
"Description": "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 that 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). Fixed in OpenSSL 1.0.2r (Affected 1.0.2-1.0.2q).",
|
"Description": "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 that 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). Fixed in OpenSSL 1.0.2r (Affected 1.0.2-1.0.2q).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1959,6 +2035,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0734",
|
||||||
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
||||||
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1994,6 +2071,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1122",
|
||||||
"Title": "procps-ng, procps: Local privilege escalation in top",
|
"Title": "procps-ng, procps: Local privilege escalation in top",
|
||||||
"Description": "procps-ng before version 3.3.15 is vulnerable to a local privilege escalation in top. If a user runs top with HOME unset in an attacker-controlled directory, the attacker could achieve privilege escalation by exploiting one of several vulnerabilities in the config_file() function.",
|
"Description": "procps-ng before version 3.3.15 is vulnerable to a local privilege escalation in top. If a user runs top with HOME unset in an attacker-controlled directory, the attacker could achieve privilege escalation by exploiting one of several vulnerabilities in the config_file() function.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2023,6 +2101,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-10160",
|
||||||
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
||||||
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -2062,6 +2141,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9636",
|
||||||
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
||||||
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -2108,6 +2188,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-14647",
|
||||||
"Title": "python: Missing salt initialization in _elementtree.c module",
|
"Title": "python: Missing salt initialization in _elementtree.c module",
|
||||||
"Description": "Python's elementtree C accelerator failed to initialise Expat's hash salt during initialization. This could make it easy to conduct denial of service attacks against Expat by constructing an XML document that would cause pathological hash collisions in Expat's internal data structures, consuming large amounts CPU and RAM. Python 3.8, 3.7, 3.6, 3.5, 3.4, 2.7 are believed to be vulnerable.",
|
"Description": "Python's elementtree C accelerator failed to initialise Expat's hash salt during initialization. This could make it easy to conduct denial of service attacks against Expat by constructing an XML document that would cause pathological hash collisions in Expat's internal data structures, consuming large amounts CPU and RAM. Python 3.8, 3.7, 3.6, 3.5, 3.4, 2.7 are believed to be vulnerable.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2139,6 +2220,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5010",
|
||||||
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
||||||
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2161,6 +2243,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9740",
|
||||||
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2184,6 +2267,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9947",
|
||||||
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2207,6 +2291,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9948",
|
||||||
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
||||||
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2232,6 +2317,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-10160",
|
||||||
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
||||||
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -2271,6 +2357,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9636",
|
||||||
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
||||||
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -2317,6 +2404,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-14647",
|
||||||
"Title": "python: Missing salt initialization in _elementtree.c module",
|
"Title": "python: Missing salt initialization in _elementtree.c module",
|
||||||
"Description": "Python's elementtree C accelerator failed to initialise Expat's hash salt during initialization. This could make it easy to conduct denial of service attacks against Expat by constructing an XML document that would cause pathological hash collisions in Expat's internal data structures, consuming large amounts CPU and RAM. Python 3.8, 3.7, 3.6, 3.5, 3.4, 2.7 are believed to be vulnerable.",
|
"Description": "Python's elementtree C accelerator failed to initialise Expat's hash salt during initialization. This could make it easy to conduct denial of service attacks against Expat by constructing an XML document that would cause pathological hash collisions in Expat's internal data structures, consuming large amounts CPU and RAM. Python 3.8, 3.7, 3.6, 3.5, 3.4, 2.7 are believed to be vulnerable.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2348,6 +2436,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5010",
|
||||||
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
||||||
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2370,6 +2459,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9740",
|
||||||
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2393,6 +2483,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9947",
|
||||||
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2416,6 +2507,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9948",
|
||||||
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
||||||
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2441,6 +2533,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13734",
|
||||||
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
||||||
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -2465,6 +2558,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-15686",
|
||||||
"Title": "systemd: line splitting via fgets() allows for state injection during daemon-reexec",
|
"Title": "systemd: line splitting via fgets() allows for state injection during daemon-reexec",
|
||||||
"Description": "A vulnerability in unit_deserialize of systemd allows an attacker to supply arbitrary state across systemd re-execution via NotifyAccess. This can be used to improperly influence systemd execution and possibly lead to root privilege escalation. Affected releases are systemd versions up to and including 239.",
|
"Description": "A vulnerability in unit_deserialize of systemd allows an attacker to supply arbitrary state across systemd re-execution via NotifyAccess. This can be used to improperly influence systemd execution and possibly lead to root privilege escalation. Affected releases are systemd versions up to and including 239.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2490,6 +2584,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16866",
|
||||||
"Title": "systemd: out-of-bounds read when parsing a crafted syslog message",
|
"Title": "systemd: out-of-bounds read when parsing a crafted syslog message",
|
||||||
"Description": "An out of bounds read was discovered in systemd-journald in the way it parses log messages that terminate with a colon ':'. A local attacker can use this flaw to disclose process memory data. Versions from v221 to v239 are vulnerable.",
|
"Description": "An out of bounds read was discovered in systemd-journald in the way it parses log messages that terminate with a colon ':'. A local attacker can use this flaw to disclose process memory data. Versions from v221 to v239 are vulnerable.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2519,6 +2614,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16888",
|
||||||
"Title": "systemd: kills privileged process if unprivileged PIDFile was tampered",
|
"Title": "systemd: kills privileged process if unprivileged PIDFile was tampered",
|
||||||
"Description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.",
|
"Description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -2541,6 +2637,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-15686",
|
||||||
"Title": "systemd: line splitting via fgets() allows for state injection during daemon-reexec",
|
"Title": "systemd: line splitting via fgets() allows for state injection during daemon-reexec",
|
||||||
"Description": "A vulnerability in unit_deserialize of systemd allows an attacker to supply arbitrary state across systemd re-execution via NotifyAccess. This can be used to improperly influence systemd execution and possibly lead to root privilege escalation. Affected releases are systemd versions up to and including 239.",
|
"Description": "A vulnerability in unit_deserialize of systemd allows an attacker to supply arbitrary state across systemd re-execution via NotifyAccess. This can be used to improperly influence systemd execution and possibly lead to root privilege escalation. Affected releases are systemd versions up to and including 239.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2566,6 +2663,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16866",
|
||||||
"Title": "systemd: out-of-bounds read when parsing a crafted syslog message",
|
"Title": "systemd: out-of-bounds read when parsing a crafted syslog message",
|
||||||
"Description": "An out of bounds read was discovered in systemd-journald in the way it parses log messages that terminate with a colon ':'. A local attacker can use this flaw to disclose process memory data. Versions from v221 to v239 are vulnerable.",
|
"Description": "An out of bounds read was discovered in systemd-journald in the way it parses log messages that terminate with a colon ':'. A local attacker can use this flaw to disclose process memory data. Versions from v221 to v239 are vulnerable.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2595,6 +2693,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16888",
|
||||||
"Title": "systemd: kills privileged process if unprivileged PIDFile was tampered",
|
"Title": "systemd: kills privileged process if unprivileged PIDFile was tampered",
|
||||||
"Description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.",
|
"Description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -2617,6 +2716,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12735",
|
||||||
"Title": "vim/neovim: ':source!' command allows arbitrary command execution via modelines",
|
"Title": "vim/neovim: ':source!' command allows arbitrary command execution via modelines",
|
||||||
"Description": "getchar.c in Vim before 8.1.1365 and Neovim before 0.3.6 allows remote attackers to execute arbitrary OS commands via the :source! command in a modeline, as demonstrated by execute in Vim, and assert_fails or nvim_input in Neovim.",
|
"Description": "getchar.c in Vim before 8.1.1365 and Neovim before 0.3.6 allows remote attackers to execute arbitrary OS commands via the :source! command in a modeline, as demonstrated by execute in Vim, and assert_fails or nvim_input in Neovim.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5743",
|
||||||
"Title": "bind: Limiting simultaneous TCP clients is ineffective",
|
"Title": "bind: Limiting simultaneous TCP clients is ineffective",
|
||||||
"Description": "By design, BIND is intended to limit the number of TCP clients that can be connected at any given time. The number of allowed connections is a tunable parameter which, if unset, defaults to a conservative value for most servers. Unfortunately, the code which was intended to limit the number of simultaneous connections contained an error which could be exploited to grow the number of simultaneous connections beyond this limit. Versions affected: BIND 9.9.0 -\u003e 9.10.8-P1, 9.11.0 -\u003e 9.11.6, 9.12.0 -\u003e 9.12.4, 9.14.0. BIND 9 Supported Preview Edition versions 9.9.3-S1 -\u003e 9.11.5-S3, and 9.11.5-S5. Versions 9.13.0 -\u003e 9.13.7 of the 9.13 development branch are also affected. Versions prior to BIND 9.9.0 have not been evaluated for vulnerability to CVE-2018-5743.",
|
"Description": "By design, BIND is intended to limit the number of TCP clients that can be connected at any given time. The number of allowed connections is a tunable parameter which, if unset, defaults to a conservative value for most servers. Unfortunately, the code which was intended to limit the number of simultaneous connections contained an error which could be exploited to grow the number of simultaneous connections beyond this limit. Versions affected: BIND 9.9.0 -\u003e 9.10.8-P1, 9.11.0 -\u003e 9.11.6, 9.12.0 -\u003e 9.12.4, 9.14.0. BIND 9 Supported Preview Edition versions 9.9.3-S1 -\u003e 9.11.5-S3, and 9.11.5-S5. Versions 9.13.0 -\u003e 9.13.7 of the 9.13 development branch are also affected. Versions prior to BIND 9.9.0 have not been evaluated for vulnerability to CVE-2018-5743.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12641",
|
||||||
"Title": "binutils: Stack Exhaustion in the demangling functions provided by libiberty",
|
"Title": "binutils: Stack Exhaustion in the demangling functions provided by libiberty",
|
||||||
"Description": "An issue was discovered in arm_pt in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. Stack Exhaustion occurs in the C++ demangling functions provided by libiberty, and there are recursive stack frames: demangle_arm_hp_template, demangle_class_name, demangle_fund_type, do_type, do_arg, demangle_args, and demangle_nested_args. This can occur during execution of nm-new.",
|
"Description": "An issue was discovered in arm_pt in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. Stack Exhaustion occurs in the C++ demangling functions provided by libiberty, and there are recursive stack frames: demangle_arm_hp_template, demangle_class_name, demangle_fund_type, do_type, do_arg, demangle_args, and demangle_nested_args. This can occur during execution of nm-new.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -55,6 +57,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12697",
|
||||||
"Title": "binutils: NULL pointer dereference in work_stuff_copy_to_from in cplus-dem.c.",
|
"Title": "binutils: NULL pointer dereference in work_stuff_copy_to_from in cplus-dem.c.",
|
||||||
"Description": "A NULL pointer dereference (aka SEGV on unknown address 0x000000000000) was discovered in work_stuff_copy_to_from in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. This can occur during execution of objdump.",
|
"Description": "A NULL pointer dereference (aka SEGV on unknown address 0x000000000000) was discovered in work_stuff_copy_to_from in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. This can occur during execution of objdump.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -78,6 +81,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-14618",
|
||||||
"Title": "curl: NTLM password overflow via integer overflow",
|
"Title": "curl: NTLM password overflow via integer overflow",
|
||||||
"Description": "curl before version 7.61.1 is vulnerable to a buffer overrun in the NTLM authentication code. The internal function Curl_ntlm_core_mk_nt_hash multiplies the length of the password by two (SUM) to figure out how large temporary storage area to allocate from the heap. The length value is then subsequently used to iterate over the password and generate output into the allocated storage buffer. On systems with a 32 bit size_t, the math to calculate SUM triggers an integer overflow when the password length exceeds 2GB (2^31 bytes). This integer overflow usually causes a very small buffer to actually get allocated instead of the intended very huge one, making the use of that buffer end up in a heap buffer overflow. (This bug is almost identical to CVE-2017-8816.)",
|
"Description": "curl before version 7.61.1 is vulnerable to a buffer overrun in the NTLM authentication code. The internal function Curl_ntlm_core_mk_nt_hash multiplies the length of the password by two (SUM) to figure out how large temporary storage area to allocate from the heap. The length value is then subsequently used to iterate over the password and generate output into the allocated storage buffer. On systems with a 32 bit size_t, the math to calculate SUM triggers an integer overflow when the password length exceeds 2GB (2^31 bytes). This integer overflow usually causes a very small buffer to actually get allocated instead of the intended very huge one, making the use of that buffer end up in a heap buffer overflow. (This bug is almost identical to CVE-2017-8816.)",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -106,6 +110,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16842",
|
||||||
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
||||||
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -134,6 +139,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16062",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
||||||
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -158,6 +164,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16402",
|
||||||
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
||||||
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -178,6 +185,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16403",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
||||||
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -201,6 +209,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18310",
|
||||||
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
||||||
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -223,6 +232,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18520",
|
||||||
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
||||||
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -245,6 +255,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18521",
|
||||||
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
||||||
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -267,6 +278,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7149",
|
||||||
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
||||||
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -289,6 +301,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7150",
|
||||||
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
||||||
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -311,6 +324,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7664",
|
||||||
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
||||||
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -331,6 +345,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7665",
|
||||||
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
||||||
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -353,6 +368,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16062",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
||||||
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -377,6 +393,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16402",
|
||||||
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
||||||
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -397,6 +414,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16403",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
||||||
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -420,6 +438,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18310",
|
||||||
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
||||||
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -442,6 +461,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18520",
|
||||||
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
||||||
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -464,6 +484,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18521",
|
||||||
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
||||||
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -486,6 +507,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7149",
|
||||||
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
||||||
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -508,6 +530,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7150",
|
||||||
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
||||||
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -530,6 +553,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7664",
|
||||||
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
||||||
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -550,6 +574,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7665",
|
||||||
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
||||||
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -572,6 +597,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16062",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
||||||
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -596,6 +622,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16402",
|
||||||
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
||||||
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -616,6 +643,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16403",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
||||||
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -639,6 +667,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18310",
|
||||||
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
||||||
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -661,6 +690,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18520",
|
||||||
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
||||||
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -683,6 +713,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18521",
|
||||||
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
||||||
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -705,6 +736,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7149",
|
||||||
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
||||||
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -727,6 +759,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7150",
|
||||||
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
||||||
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -749,6 +782,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7664",
|
||||||
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
||||||
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -769,6 +803,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7665",
|
||||||
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
||||||
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -791,6 +826,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-14618",
|
||||||
"Title": "curl: NTLM password overflow via integer overflow",
|
"Title": "curl: NTLM password overflow via integer overflow",
|
||||||
"Description": "curl before version 7.61.1 is vulnerable to a buffer overrun in the NTLM authentication code. The internal function Curl_ntlm_core_mk_nt_hash multiplies the length of the password by two (SUM) to figure out how large temporary storage area to allocate from the heap. The length value is then subsequently used to iterate over the password and generate output into the allocated storage buffer. On systems with a 32 bit size_t, the math to calculate SUM triggers an integer overflow when the password length exceeds 2GB (2^31 bytes). This integer overflow usually causes a very small buffer to actually get allocated instead of the intended very huge one, making the use of that buffer end up in a heap buffer overflow. (This bug is almost identical to CVE-2017-8816.)",
|
"Description": "curl before version 7.61.1 is vulnerable to a buffer overrun in the NTLM authentication code. The internal function Curl_ntlm_core_mk_nt_hash multiplies the length of the password by two (SUM) to figure out how large temporary storage area to allocate from the heap. The length value is then subsequently used to iterate over the password and generate output into the allocated storage buffer. On systems with a 32 bit size_t, the math to calculate SUM triggers an integer overflow when the password length exceeds 2GB (2^31 bytes). This integer overflow usually causes a very small buffer to actually get allocated instead of the intended very huge one, making the use of that buffer end up in a heap buffer overflow. (This bug is almost identical to CVE-2017-8816.)",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -819,6 +855,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16842",
|
||||||
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
||||||
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -847,6 +884,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3855",
|
||||||
"Title": "libssh2: Integer overflow in transport read resulting in out of bounds write",
|
"Title": "libssh2: Integer overflow in transport read resulting in out of bounds write",
|
||||||
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way packets are read from the server. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way packets are read from the server. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -882,6 +920,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3856",
|
||||||
"Title": "libssh2: Integer overflow in keyboard interactive handling resulting in out of bounds write",
|
"Title": "libssh2: Integer overflow in keyboard interactive handling resulting in out of bounds write",
|
||||||
"Description": "An integer overflow flaw, which could lead to an out of bounds write, was discovered in libssh2 before 1.8.1 in the way keyboard prompt requests are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
"Description": "An integer overflow flaw, which could lead to an out of bounds write, was discovered in libssh2 before 1.8.1 in the way keyboard prompt requests are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -911,6 +950,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3857",
|
||||||
"Title": "libssh2: Integer overflow in SSH packet processing channel resulting in out of bounds write",
|
"Title": "libssh2: Integer overflow in SSH packet processing channel resulting in out of bounds write",
|
||||||
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit signal are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit signal are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -940,6 +980,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3863",
|
||||||
"Title": "libssh2: Integer overflow in user authenticate keyboard interactive allows out-of-bounds writes",
|
"Title": "libssh2: Integer overflow in user authenticate keyboard interactive allows out-of-bounds writes",
|
||||||
"Description": "A flaw was found in libssh2 before 1.8.1. A server could send a multiple keyboard interactive response messages whose total length are greater than unsigned char max characters. This value is used as an index to copy memory causing in an out of bounds memory write error.",
|
"Description": "A flaw was found in libssh2 before 1.8.1. A server could send a multiple keyboard interactive response messages whose total length are greater than unsigned char max characters. This value is used as an index to copy memory causing in an out of bounds memory write error.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -969,6 +1010,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -997,6 +1039,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1025,6 +1068,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1053,6 +1097,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1081,6 +1126,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1109,6 +1155,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1137,6 +1184,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0734",
|
||||||
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
||||||
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1172,6 +1220,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-10160",
|
||||||
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
||||||
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1211,6 +1260,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9636",
|
||||||
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
||||||
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1257,6 +1307,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-10160",
|
||||||
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
"Title": "python: regression of CVE-2019-9636 due to functional fix to allow port numbers in netloc",
|
||||||
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
"Description": "A security regression of CVE-2019-9636 was discovered in python since commit d537ab0ff9767ef024f26246899728f0116b1ec3 affecting versions 2.7, 3.5, 3.6, 3.7 and from v3.8.0a4 through v3.8.0b1, which still allows an attacker to exploit CVE-2019-9636 by abusing the user and password parts of a URL. When an application parses user-supplied URLs to store cookies, authentication credentials, or other kind of information, it is possible for an attacker to provide specially crafted URLs to make the application locate host-related information (e.g. cookies, authentication data) and send them to a different host than where it should, unlike if the URLs had been correctly parsed. The result of an attack may vary based on the application.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1296,6 +1347,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9636",
|
||||||
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
||||||
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1342,6 +1394,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13734",
|
||||||
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
||||||
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1366,6 +1419,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16888",
|
||||||
"Title": "systemd: kills privileged process if unprivileged PIDFile was tampered",
|
"Title": "systemd: kills privileged process if unprivileged PIDFile was tampered",
|
||||||
"Description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.",
|
"Description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1388,6 +1442,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16888",
|
||||||
"Title": "systemd: kills privileged process if unprivileged PIDFile was tampered",
|
"Title": "systemd: kills privileged process if unprivileged PIDFile was tampered",
|
||||||
"Description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.",
|
"Description": "It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1410,6 +1465,7 @@
|
|||||||
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
"DiffID": "sha256:d69483a6face4499acb974449d1303591fcbb5cdce5420f36f8a6607bda11854"
|
||||||
},
|
},
|
||||||
"SeveritySource": "redhat",
|
"SeveritySource": "redhat",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12735",
|
||||||
"Title": "vim/neovim: ':source!' command allows arbitrary command execution via modelines",
|
"Title": "vim/neovim: ':source!' command allows arbitrary command execution via modelines",
|
||||||
"Description": "getchar.c in Vim before 8.1.1365 and Neovim before 0.3.6 allows remote attackers to execute arbitrary OS commands via the :source! command in a modeline, as demonstrated by execute in Vim, and assert_fails or nvim_input in Neovim.",
|
"Description": "getchar.c in Vim before 8.1.1365 and Neovim before 0.3.6 allows remote attackers to execute arbitrary OS commands via the :source! command in a modeline, as demonstrated by execute in Vim, and assert_fails or nvim_input in Neovim.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
|
|||||||
729
integration/testdata/centos-7.json.golden
vendored
729
integration/testdata/centos-7.json.golden
vendored
File diff suppressed because it is too large
Load Diff
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -54,6 +56,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -75,6 +78,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -96,6 +100,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -117,6 +122,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -138,6 +144,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18224",
|
||||||
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
||||||
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -160,6 +167,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -180,6 +188,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -200,6 +209,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -221,6 +231,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -242,6 +253,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15718",
|
||||||
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
||||||
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -265,6 +277,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -285,6 +298,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -305,6 +319,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15718",
|
||||||
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
||||||
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -328,6 +343,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -348,6 +364,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -368,6 +385,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -388,6 +406,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
|
|||||||
99
integration/testdata/debian-buster.json.golden
vendored
99
integration/testdata/debian-buster.json.golden
vendored
@@ -11,6 +11,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374",
|
||||||
"Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.",
|
"Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -29,6 +30,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18276",
|
||||||
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
||||||
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -46,6 +48,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://security-tracker.debian.org/tracker/TEMP-0841856-B18BAF",
|
||||||
"Severity": "LOW"
|
"Severity": "LOW"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -56,6 +59,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-2781",
|
||||||
"Title": "coreutils: Non-privileged session can escape to the parent session in chroot",
|
"Title": "coreutils: Non-privileged session can escape to the parent session in chroot",
|
||||||
"Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.",
|
"Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -72,6 +76,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-18018",
|
||||||
"Title": "coreutils: race condition vulnerability in chown and chgrp",
|
"Title": "coreutils: race condition vulnerability in chown and chgrp",
|
||||||
"Description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.",
|
"Description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -88,6 +93,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -109,6 +115,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -129,6 +136,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886",
|
||||||
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
||||||
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -145,6 +153,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15847",
|
||||||
"Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output",
|
"Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output",
|
||||||
"Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.",
|
"Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -162,6 +171,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-14855",
|
||||||
"Title": "gnupg2: OpenPGP Key Certification Forgeries with SHA-1",
|
"Title": "gnupg2: OpenPGP Key Certification Forgeries with SHA-1",
|
||||||
"Description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.",
|
"Description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -180,6 +190,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374",
|
||||||
"Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.",
|
"Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -197,6 +208,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1752",
|
||||||
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
||||||
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
||||||
"Severity": "HIGH"
|
"Severity": "HIGH"
|
||||||
@@ -208,6 +220,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1751",
|
||||||
"Title": "glibc: array overflow in backtrace on powerpc",
|
"Title": "glibc: array overflow in backtrace on powerpc",
|
||||||
"Description": "No description is available for this CVE.",
|
"Description": "No description is available for this CVE.",
|
||||||
"Severity": "MEDIUM"
|
"Severity": "MEDIUM"
|
||||||
@@ -220,6 +233,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4051",
|
||||||
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -245,6 +259,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4052",
|
||||||
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -270,6 +285,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756",
|
||||||
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
||||||
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -287,6 +303,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228",
|
||||||
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
||||||
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -304,6 +321,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -323,6 +341,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022",
|
||||||
"Title": "glibc: stack guard protection bypass",
|
"Title": "glibc: stack guard protection bypass",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -338,6 +357,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023",
|
||||||
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
||||||
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -355,6 +375,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024",
|
||||||
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -372,6 +393,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025",
|
||||||
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
||||||
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -387,6 +409,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19126",
|
||||||
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
||||||
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -403,6 +426,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -419,6 +443,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-10029",
|
||||||
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
||||||
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -435,6 +460,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1752",
|
||||||
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
||||||
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
||||||
"Severity": "HIGH"
|
"Severity": "HIGH"
|
||||||
@@ -446,6 +472,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1751",
|
||||||
"Title": "glibc: array overflow in backtrace on powerpc",
|
"Title": "glibc: array overflow in backtrace on powerpc",
|
||||||
"Description": "No description is available for this CVE.",
|
"Description": "No description is available for this CVE.",
|
||||||
"Severity": "MEDIUM"
|
"Severity": "MEDIUM"
|
||||||
@@ -458,6 +485,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4051",
|
||||||
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -483,6 +511,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4052",
|
||||||
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -508,6 +537,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756",
|
||||||
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
||||||
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -525,6 +555,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228",
|
||||||
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
||||||
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -542,6 +573,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -561,6 +593,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022",
|
||||||
"Title": "glibc: stack guard protection bypass",
|
"Title": "glibc: stack guard protection bypass",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -576,6 +609,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023",
|
||||||
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
||||||
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -593,6 +627,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024",
|
||||||
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -610,6 +645,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025",
|
||||||
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
||||||
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -625,6 +661,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19126",
|
||||||
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
||||||
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -641,6 +678,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -657,6 +695,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-10029",
|
||||||
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
||||||
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -675,6 +714,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -696,6 +736,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -717,6 +758,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -738,6 +780,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -758,6 +801,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886",
|
||||||
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
||||||
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -774,6 +818,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15847",
|
||||||
"Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output",
|
"Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output",
|
||||||
"Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.",
|
"Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -791,6 +836,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12904",
|
||||||
"Title": "Libgcrypt: physical addresses being available to other processes leads to a flush-and-reload side-channel attack",
|
"Title": "Libgcrypt: physical addresses being available to other processes leads to a flush-and-reload side-channel attack",
|
||||||
"Description": "In Libgcrypt 1.8.4, the C implementation of AES is vulnerable to a flush-and-reload side-channel attack because physical addresses are available to other processes. (The C implementation is used on platforms where an assembly-language implementation is unavailable.)",
|
"Description": "In Libgcrypt 1.8.4, the C implementation of AES is vulnerable to a flush-and-reload side-channel attack because physical addresses are available to other processes. (The C implementation is used on platforms where an assembly-language implementation is unavailable.)",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -810,6 +856,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13627",
|
||||||
"Title": "libgcrypt: ECDSA timing attack in the libgcrypt20 cryptographic library",
|
"Title": "libgcrypt: ECDSA timing attack in the libgcrypt20 cryptographic library",
|
||||||
"Description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.",
|
"Description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -832,6 +879,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6829",
|
||||||
"Title": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information",
|
"Title": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information",
|
||||||
"Description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.",
|
"Description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -850,6 +898,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3389",
|
||||||
"Title": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)",
|
"Title": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)",
|
||||||
"Description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a \"BEAST\" attack.",
|
"Description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a \"BEAST\" attack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -955,6 +1004,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18224",
|
||||||
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
||||||
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -976,6 +1026,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12290",
|
||||||
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -993,6 +1044,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17543",
|
||||||
"Title": "lz4: heap-based buffer overflow in LZ4_write32",
|
"Title": "lz4: heap-based buffer overflow in LZ4_write32",
|
||||||
"Description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states \"only a few specific / uncommon usages of the API are at risk.\"",
|
"Description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states \"only a few specific / uncommon usages of the API are at risk.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1020,6 +1072,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1040,6 +1093,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1059,6 +1113,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11164",
|
||||||
"Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c",
|
"Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c",
|
||||||
"Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.",
|
"Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1075,6 +1130,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16231",
|
||||||
"Title": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service",
|
"Title": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service",
|
||||||
"Description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.",
|
"Description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1097,6 +1153,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7245",
|
||||||
"Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
|
"Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
|
||||||
"Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.",
|
"Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1115,6 +1172,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7246",
|
||||||
"Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
|
"Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
|
||||||
"Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.",
|
"Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1133,6 +1191,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9893",
|
||||||
"Title": "libseccomp: incorrect generation of syscall filters in libseccomp",
|
"Title": "libseccomp: incorrect generation of syscall filters in libseccomp",
|
||||||
"Description": "libseccomp before 2.4.0 did not correctly generate 64-bit syscall argument comparisons using the arithmetic operators (LT, GT, LE, GE), which might able to lead to bypassing seccomp filters and potential privilege escalations.",
|
"Description": "libseccomp before 2.4.0 did not correctly generate 64-bit syscall argument comparisons using the arithmetic operators (LT, GT, LE, GE), which might able to lead to bypassing seccomp filters and potential privilege escalations.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1155,6 +1214,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1176,6 +1236,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1196,6 +1257,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886",
|
||||||
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
||||||
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1212,6 +1274,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15847",
|
||||||
"Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output",
|
"Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output",
|
||||||
"Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.",
|
"Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1228,6 +1291,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1712",
|
||||||
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
||||||
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1244,6 +1308,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843",
|
||||||
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1262,6 +1327,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844",
|
||||||
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1279,6 +1345,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392",
|
||||||
"Title": "systemd: TOCTOU race condition when updating file permissions and SELinux security contexts",
|
"Title": "systemd: TOCTOU race condition when updating file permissions and SELinux security contexts",
|
||||||
"Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.",
|
"Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1297,6 +1364,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15718",
|
||||||
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
||||||
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1319,6 +1387,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386",
|
||||||
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
||||||
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1337,6 +1406,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000654",
|
||||||
"Title": "libtasn1: Infinite loop in _asn1_expand_object_id(ptree) leads to memory exhaustion",
|
"Title": "libtasn1: Infinite loop in _asn1_expand_object_id(ptree) leads to memory exhaustion",
|
||||||
"Description": "GNU Libtasn1-4.13 libtasn1-4.13 version libtasn1-4.13, libtasn1-4.12 contains a DoS, specifically CPU usage will reach 100% when running asn1Paser against the POC due to an issue in _asn1_expand_object_id(p_tree), after a long time, the program will be killed. This attack appears to be exploitable via parsing a crafted file.",
|
"Description": "GNU Libtasn1-4.13 libtasn1-4.13 version libtasn1-4.13, libtasn1-4.12 contains a DoS, specifically CPU usage will reach 100% when running asn1Paser against the POC due to an issue in _asn1_expand_object_id(p_tree), after a long time, the program will be killed. This attack appears to be exploitable via parsing a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1356,6 +1426,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1376,6 +1447,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1394,6 +1466,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1712",
|
||||||
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
||||||
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1410,6 +1483,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843",
|
||||||
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1428,6 +1502,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844",
|
||||||
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1445,6 +1520,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392",
|
||||||
"Title": "systemd: TOCTOU race condition when updating file permissions and SELinux security contexts",
|
"Title": "systemd: TOCTOU race condition when updating file permissions and SELinux security contexts",
|
||||||
"Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.",
|
"Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1463,6 +1539,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15718",
|
||||||
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
||||||
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1485,6 +1562,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386",
|
||||||
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
||||||
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1503,6 +1581,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663",
|
||||||
"Title": "iptables: --syn flag bypass",
|
"Title": "iptables: --syn flag bypass",
|
||||||
"Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.",
|
"Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1519,6 +1598,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11360",
|
||||||
"Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.",
|
"Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -1534,6 +1614,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686",
|
||||||
"Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.",
|
"Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -1553,6 +1634,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235",
|
||||||
"Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
|
"Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
|
||||||
"Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
|
"Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1570,6 +1652,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7169",
|
||||||
"Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation",
|
"Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation",
|
||||||
"Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.",
|
"Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1586,6 +1669,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882",
|
||||||
"Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured",
|
"Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured",
|
||||||
"Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).",
|
"Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1605,6 +1689,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://security-tracker.debian.org/tracker/TEMP-0628843-DBAD28",
|
||||||
"Severity": "LOW"
|
"Severity": "LOW"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1616,6 +1701,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1636,6 +1722,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1656,6 +1743,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1676,6 +1764,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1695,6 +1784,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686",
|
||||||
"Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.",
|
"Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -1714,6 +1804,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235",
|
||||||
"Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
|
"Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
|
||||||
"Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
|
"Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1731,6 +1822,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7169",
|
||||||
"Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation",
|
"Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation",
|
||||||
"Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.",
|
"Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1747,6 +1839,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882",
|
||||||
"Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured",
|
"Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured",
|
||||||
"Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).",
|
"Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1766,6 +1859,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://security-tracker.debian.org/tracker/TEMP-0628843-DBAD28",
|
||||||
"Severity": "LOW"
|
"Severity": "LOW"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1776,6 +1870,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-4116",
|
||||||
"Title": "perl: File::Temp insecure temporary file handling",
|
"Title": "perl: File::Temp insecure temporary file handling",
|
||||||
"Description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.",
|
"Description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1795,6 +1890,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://security-tracker.debian.org/tracker/TEMP-0517018-A83CE6",
|
||||||
"Severity": "LOW"
|
"Severity": "LOW"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1805,6 +1901,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2005-2541",
|
||||||
"Description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.",
|
"Description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -1819,6 +1916,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9923",
|
||||||
"Title": "tar: null-pointer dereference in pax_decode_header in sparse.c",
|
"Title": "tar: null-pointer dereference in pax_decode_header in sparse.c",
|
||||||
"Description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.",
|
"Description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1837,6 +1935,7 @@
|
|||||||
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
"DiffID": "sha256:78c1b9419976227e05be9d243b7fa583bea44a5258e52018b2af4cdfe23d148d"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://security-tracker.debian.org/tracker/TEMP-0290435-0B57B5",
|
||||||
"Severity": "LOW"
|
"Severity": "LOW"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
169
integration/testdata/debian-stretch.json.golden
vendored
169
integration/testdata/debian-stretch.json.golden
vendored
File diff suppressed because it is too large
Load Diff
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -35,6 +36,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
|
|||||||
32
integration/testdata/distroless-base.json.golden
vendored
32
integration/testdata/distroless-base.json.golden
vendored
@@ -11,6 +11,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000001",
|
||||||
"Title": "glibc: realpath() buffer underflow when getcwd() returns relative path allows privilege escalation",
|
"Title": "glibc: realpath() buffer underflow when getcwd() returns relative path allows privilege escalation",
|
||||||
"Description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.",
|
"Description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -38,6 +39,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6485",
|
||||||
"Title": "glibc: Integer overflow in posix_memalign in memalign functions",
|
"Title": "glibc: Integer overflow in posix_memalign in memalign functions",
|
||||||
"Description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.",
|
"Description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -63,6 +65,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6551",
|
||||||
"Title": "glibc: integer overflow in malloc functions",
|
"Title": "glibc: integer overflow in malloc functions",
|
||||||
"Description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.",
|
"Description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -81,6 +84,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9169",
|
||||||
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -103,6 +107,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1752",
|
||||||
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
||||||
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
||||||
"Severity": "HIGH"
|
"Severity": "HIGH"
|
||||||
@@ -115,6 +120,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2009-5155",
|
||||||
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -139,6 +145,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -161,6 +168,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-12132",
|
||||||
"Title": "glibc: Fragmentation attacks possible when EDNS0 is enabled",
|
"Title": "glibc: Fragmentation attacks possible when EDNS0 is enabled",
|
||||||
"Description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.",
|
"Description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -181,6 +189,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1751",
|
||||||
"Title": "glibc: array overflow in backtrace on powerpc",
|
"Title": "glibc: array overflow in backtrace on powerpc",
|
||||||
"Description": "No description is available for this CVE.",
|
"Description": "No description is available for this CVE.",
|
||||||
"Severity": "MEDIUM"
|
"Severity": "MEDIUM"
|
||||||
@@ -193,6 +202,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4051",
|
||||||
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -218,6 +228,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4052",
|
||||||
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -243,6 +254,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756",
|
||||||
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
||||||
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -260,6 +272,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2015-8985",
|
||||||
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
||||||
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -279,6 +292,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228",
|
||||||
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
||||||
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -296,6 +310,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -315,6 +330,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022",
|
||||||
"Title": "glibc: stack guard protection bypass",
|
"Title": "glibc: stack guard protection bypass",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -330,6 +346,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023",
|
||||||
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
||||||
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -347,6 +364,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024",
|
||||||
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -364,6 +382,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025",
|
||||||
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
||||||
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -379,6 +398,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19126",
|
||||||
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
||||||
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -395,6 +415,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-6488",
|
||||||
"Title": "glibc: Incorrect attempt to use a 64-bit register for size_t in assembly codes results in segmentation fault",
|
"Title": "glibc: Incorrect attempt to use a 64-bit register for size_t in assembly codes results in segmentation fault",
|
||||||
"Description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.",
|
"Description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -412,6 +433,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7309",
|
||||||
"Title": "glibc: memcmp function incorrectly returns zero",
|
"Title": "glibc: memcmp function incorrectly returns zero",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -430,6 +452,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -446,6 +469,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-10029",
|
||||||
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
||||||
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -464,6 +488,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -486,6 +511,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755",
|
||||||
"Title": "Dual_EC_DRBG: weak pseudo random number generator",
|
"Title": "Dual_EC_DRBG: weak pseudo random number generator",
|
||||||
"Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.",
|
"Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -508,6 +534,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928",
|
||||||
"Title": "openssl: RSA authentication weakness",
|
"Title": "openssl: RSA authentication weakness",
|
||||||
"Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"",
|
"Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -528,6 +555,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -555,6 +583,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -577,6 +606,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755",
|
||||||
"Title": "Dual_EC_DRBG: weak pseudo random number generator",
|
"Title": "Dual_EC_DRBG: weak pseudo random number generator",
|
||||||
"Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.",
|
"Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -599,6 +629,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928",
|
||||||
"Title": "openssl: RSA authentication weakness",
|
"Title": "openssl: RSA authentication weakness",
|
||||||
"Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"",
|
"Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -619,6 +650,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
|
|||||||
109
integration/testdata/distroless-python27.json.golden
vendored
109
integration/testdata/distroless-python27.json.golden
vendored
@@ -11,6 +11,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12900",
|
||||||
"Title": "bzip2: out-of-bounds write in function BZ2_decompress",
|
"Title": "bzip2: out-of-bounds write in function BZ2_decompress",
|
||||||
"Description": "BZ2_decompress in decompress.c in bzip2 through 1.0.6 has an out-of-bounds write when there are many selectors.",
|
"Description": "BZ2_decompress in decompress.c in bzip2 through 1.0.6 has an out-of-bounds write when there are many selectors.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -30,6 +31,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000001",
|
||||||
"Title": "glibc: realpath() buffer underflow when getcwd() returns relative path allows privilege escalation",
|
"Title": "glibc: realpath() buffer underflow when getcwd() returns relative path allows privilege escalation",
|
||||||
"Description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.",
|
"Description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -57,6 +59,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6485",
|
||||||
"Title": "glibc: Integer overflow in posix_memalign in memalign functions",
|
"Title": "glibc: Integer overflow in posix_memalign in memalign functions",
|
||||||
"Description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.",
|
"Description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -82,6 +85,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6551",
|
||||||
"Title": "glibc: integer overflow in malloc functions",
|
"Title": "glibc: integer overflow in malloc functions",
|
||||||
"Description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.",
|
"Description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -100,6 +104,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9169",
|
||||||
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -122,6 +127,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1752",
|
||||||
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
||||||
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
||||||
"Severity": "HIGH"
|
"Severity": "HIGH"
|
||||||
@@ -134,6 +140,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2009-5155",
|
||||||
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -158,6 +165,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -180,6 +188,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-12132",
|
||||||
"Title": "glibc: Fragmentation attacks possible when EDNS0 is enabled",
|
"Title": "glibc: Fragmentation attacks possible when EDNS0 is enabled",
|
||||||
"Description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.",
|
"Description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -200,6 +209,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1751",
|
||||||
"Title": "glibc: array overflow in backtrace on powerpc",
|
"Title": "glibc: array overflow in backtrace on powerpc",
|
||||||
"Description": "No description is available for this CVE.",
|
"Description": "No description is available for this CVE.",
|
||||||
"Severity": "MEDIUM"
|
"Severity": "MEDIUM"
|
||||||
@@ -212,6 +222,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4051",
|
||||||
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -237,6 +248,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4052",
|
||||||
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -262,6 +274,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756",
|
||||||
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
||||||
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -279,6 +292,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2015-8985",
|
||||||
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
||||||
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -298,6 +312,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228",
|
||||||
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
||||||
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -315,6 +330,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -334,6 +350,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022",
|
||||||
"Title": "glibc: stack guard protection bypass",
|
"Title": "glibc: stack guard protection bypass",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -349,6 +366,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023",
|
||||||
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
||||||
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -366,6 +384,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024",
|
||||||
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -383,6 +402,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025",
|
||||||
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
||||||
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -398,6 +418,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19126",
|
||||||
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
||||||
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -414,6 +435,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-6488",
|
||||||
"Title": "glibc: Incorrect attempt to use a 64-bit register for size_t in assembly codes results in segmentation fault",
|
"Title": "glibc: Incorrect attempt to use a 64-bit register for size_t in assembly codes results in segmentation fault",
|
||||||
"Description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.",
|
"Description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -431,6 +453,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7309",
|
||||||
"Title": "glibc: memcmp function incorrectly returns zero",
|
"Title": "glibc: memcmp function incorrectly returns zero",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -449,6 +472,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -465,6 +489,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-10029",
|
||||||
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
||||||
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -482,6 +507,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000001",
|
||||||
"Title": "glibc: realpath() buffer underflow when getcwd() returns relative path allows privilege escalation",
|
"Title": "glibc: realpath() buffer underflow when getcwd() returns relative path allows privilege escalation",
|
||||||
"Description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.",
|
"Description": "In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -509,6 +535,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6485",
|
||||||
"Title": "glibc: Integer overflow in posix_memalign in memalign functions",
|
"Title": "glibc: Integer overflow in posix_memalign in memalign functions",
|
||||||
"Description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.",
|
"Description": "An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -534,6 +561,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6551",
|
||||||
"Title": "glibc: integer overflow in malloc functions",
|
"Title": "glibc: integer overflow in malloc functions",
|
||||||
"Description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.",
|
"Description": "The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -552,6 +580,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9169",
|
||||||
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -574,6 +603,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1752",
|
||||||
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
"Title": "glibc: use-after-free in glob() function when expanding ~user",
|
||||||
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
"Description": "A use-after-free vulnerability was found in glibc in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution.",
|
||||||
"Severity": "HIGH"
|
"Severity": "HIGH"
|
||||||
@@ -586,6 +616,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2009-5155",
|
||||||
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -610,6 +641,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -632,6 +664,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-12132",
|
||||||
"Title": "glibc: Fragmentation attacks possible when EDNS0 is enabled",
|
"Title": "glibc: Fragmentation attacks possible when EDNS0 is enabled",
|
||||||
"Description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.",
|
"Description": "The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -652,6 +685,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1751",
|
||||||
"Title": "glibc: array overflow in backtrace on powerpc",
|
"Title": "glibc: array overflow in backtrace on powerpc",
|
||||||
"Description": "No description is available for this CVE.",
|
"Description": "No description is available for this CVE.",
|
||||||
"Severity": "MEDIUM"
|
"Severity": "MEDIUM"
|
||||||
@@ -664,6 +698,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4051",
|
||||||
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
"Description": "The regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (application crash) via a regular expression containing adjacent bounded repetitions that bypass the intended RE_DUP_MAX limitation, as demonstrated by a {10,}{10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD, related to a \"RE_DUP_MAX overflow.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -689,6 +724,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4052",
|
||||||
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
"Title": "CVE-2010-4051 CVE-2010-4052 glibc: De-recursivise regular expression engine",
|
||||||
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
"Description": "Stack consumption vulnerability in the regcomp implementation in the GNU C Library (aka glibc or libc6) through 2.11.3, and 2.12.x through 2.12.2, allows context-dependent attackers to cause a denial of service (resource exhaustion) via a regular expression containing adjacent repetition operators, as demonstrated by a {10,}{10,}{10,}{10,} sequence in the proftpd.gnu.c exploit for ProFTPD.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -714,6 +750,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756",
|
||||||
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
"Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
|
||||||
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
"Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -731,6 +768,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2015-8985",
|
||||||
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
||||||
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -750,6 +788,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228",
|
||||||
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
||||||
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -767,6 +806,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -786,6 +826,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022",
|
||||||
"Title": "glibc: stack guard protection bypass",
|
"Title": "glibc: stack guard protection bypass",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -801,6 +842,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023",
|
||||||
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
"Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
|
||||||
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
"Description": "GNU Libc current is affected by: Re-mapping current loaded libray with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -818,6 +860,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024",
|
||||||
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
"Title": "glibc: ASLR bypass using cache of thread stack and heap",
|
||||||
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
"Description": "GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -835,6 +878,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025",
|
||||||
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
"Title": "glibc: information disclosure of heap addresses of pthread_created thread",
|
||||||
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
"Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -850,6 +894,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19126",
|
||||||
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
"Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries",
|
||||||
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
"Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -866,6 +911,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-6488",
|
||||||
"Title": "glibc: Incorrect attempt to use a 64-bit register for size_t in assembly codes results in segmentation fault",
|
"Title": "glibc: Incorrect attempt to use a 64-bit register for size_t in assembly codes results in segmentation fault",
|
||||||
"Description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.",
|
"Description": "The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -883,6 +929,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7309",
|
||||||
"Title": "glibc: memcmp function incorrectly returns zero",
|
"Title": "glibc: memcmp function incorrectly returns zero",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -901,6 +948,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -917,6 +965,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-10029",
|
||||||
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
"Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions",
|
||||||
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
"Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -934,6 +983,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-0340",
|
||||||
"Title": "expat: internal entity expansion",
|
"Title": "expat: internal entity expansion",
|
||||||
"Description": "expat 2.1.0 and earlier does not properly handle entities expansion unless an application developer uses the XML_SetEntityDeclHandler function, which allows remote attackers to cause a denial of service (resource consumption), send HTTP requests to intranet servers, or read arbitrary files via a crafted XML document, aka an XML External Entity (XXE) issue. NOTE: it could be argued that because expat already provides the ability to disable external entity expansion, the responsibility for resolving this issue lies with application developers; according to this argument, this entry should be REJECTed, and each affected application would need its own CVE.",
|
"Description": "expat 2.1.0 and earlier does not properly handle entities expansion unless an application developer uses the XML_SetEntityDeclHandler function, which allows remote attackers to cause a denial of service (resource consumption), send HTTP requests to intranet servers, or read arbitrary files via a crafted XML document, aka an XML External Entity (XXE) issue. NOTE: it could be argued that because expat already provides the ability to disable external entity expansion, the responsibility for resolving this issue lies with application developers; according to this argument, this entry should be REJECTed, and each affected application would need its own CVE.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -954,6 +1004,7 @@
|
|||||||
"DiffID": "sha256:6189abe095d53c1c9f2bfc8f50128ee876b9a5d10f9eda1564e5f5357d6ffe61"
|
"DiffID": "sha256:6189abe095d53c1c9f2bfc8f50128ee876b9a5d10f9eda1564e5f5357d6ffe61"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886",
|
||||||
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
||||||
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -970,6 +1021,7 @@
|
|||||||
"DiffID": "sha256:6189abe095d53c1c9f2bfc8f50128ee876b9a5d10f9eda1564e5f5357d6ffe61"
|
"DiffID": "sha256:6189abe095d53c1c9f2bfc8f50128ee876b9a5d10f9eda1564e5f5357d6ffe61"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886",
|
||||||
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
||||||
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -986,6 +1038,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-19211",
|
||||||
"Title": "ncurses: Null pointer dereference at function _nc_parse_entry in parse_entry.c",
|
"Title": "ncurses: Null pointer dereference at function _nc_parse_entry in parse_entry.c",
|
||||||
"Description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.",
|
"Description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1002,6 +1055,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1021,6 +1075,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1040,6 +1095,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8492",
|
||||||
"Title": "python: wrong backtracking in urllib.request.AbstractBasicAuthHandler allows for a ReDoS",
|
"Title": "python: wrong backtracking in urllib.request.AbstractBasicAuthHandler allows for a ReDoS",
|
||||||
"Description": "Python 2.7 through 2.7.17, 3.5 through 3.5.9, 3.6 through 3.6.10, 3.7 through 3.7.6, and 3.8 through 3.8.1 allows an HTTP server to conduct Regular Expression Denial of Service (ReDoS) attacks against a client because of urllib.request.AbstractBasicAuthHandler catastrophic backtracking.",
|
"Description": "Python 2.7 through 2.7.17, 3.5 through 3.5.9, 3.6 through 3.6.10, 3.7 through 3.7.6, and 3.8 through 3.8.1 allows an HTTP server to conduct Regular Expression Denial of Service (ReDoS) attacks against a client because of urllib.request.AbstractBasicAuthHandler catastrophic backtracking.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1059,6 +1115,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20852",
|
||||||
"Title": "python: Cookie domain check returns incorrect results",
|
"Title": "python: Cookie domain check returns incorrect results",
|
||||||
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1081,6 +1138,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16056",
|
||||||
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
||||||
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1104,6 +1162,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16935",
|
||||||
"Title": "python: XSS vulnerability in the documentation XML-RPC server in server_title field",
|
"Title": "python: XSS vulnerability in the documentation XML-RPC server in server_title field",
|
||||||
"Description": "The documentation XML-RPC server in Python through 2.7.16, 3.x through 3.6.9, and 3.7.x through 3.7.4 has XSS via the server_title field. This occurs in Lib/DocXMLRPCServer.py in Python 2.x, and in Lib/xmlrpc/server.py in Python 3.x. If set_server_title is called with untrusted input, arbitrary JavaScript can be delivered to clients that visit the http URL for this server.",
|
"Description": "The documentation XML-RPC server in Python through 2.7.16, 3.x through 3.6.9, and 3.7.x through 3.7.4 has XSS via the server_title field. This occurs in Lib/DocXMLRPCServer.py in Python 2.x, and in Lib/xmlrpc/server.py in Python 3.x. If set_server_title is called with untrusted input, arbitrary JavaScript can be delivered to clients that visit the http URL for this server.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1125,6 +1184,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5010",
|
||||||
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
||||||
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1146,6 +1206,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9636",
|
||||||
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
||||||
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1191,6 +1252,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9740",
|
||||||
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1213,6 +1275,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9947",
|
||||||
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1235,6 +1298,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9948",
|
||||||
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
||||||
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1259,6 +1323,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-7040",
|
||||||
"Title": "python: hash secret can be recovered remotely",
|
"Title": "python: hash secret can be recovered remotely",
|
||||||
"Description": "Python 2.7 before 3.4 only uses the last eight bits of the prefix to randomize hash values, which causes it to compute hash values without restricting the ability to trigger hash collisions predictably and makes it easier for context-dependent attackers to cause a denial of service (CPU consumption) via crafted input to an application that maintains a hash table. NOTE: this vulnerability exists because of an incomplete fix for CVE-2012-1150.",
|
"Description": "Python 2.7 before 3.4 only uses the last eight bits of the prefix to randomize hash values, which causes it to compute hash values without restricting the ability to trigger hash collisions predictably and makes it easier for context-dependent attackers to cause a denial of service (CPU consumption) via crafted input to an application that maintains a hash table. NOTE: this vulnerability exists because of an incomplete fix for CVE-2012-1150.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1279,6 +1344,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-17522",
|
||||||
"Title": "python: Command injection in Lib/webbrowser.py",
|
"Title": "python: Command injection in Lib/webbrowser.py",
|
||||||
"Description": "** DISPUTED ** Lib/webbrowser.py in Python through 3.6.3 does not validate strings before launching the program specified by the BROWSER environment variable, which might allow remote attackers to conduct argument-injection attacks via a crafted URL. NOTE: a software maintainer indicates that exploitation is impossible because the code relies on subprocess.Popen and the default shell=False setting.",
|
"Description": "** DISPUTED ** Lib/webbrowser.py in Python through 3.6.3 does not validate strings before launching the program specified by the BROWSER environment variable, which might allow remote attackers to conduct argument-injection attacks via a crafted URL. NOTE: a software maintainer indicates that exploitation is impossible because the code relies on subprocess.Popen and the default shell=False setting.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1296,6 +1362,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000030",
|
||||||
"Title": "python: Heap-Buffer-Overflow and Heap-Use-After-Free in Objects/fileobject.c",
|
"Title": "python: Heap-Buffer-Overflow and Heap-Use-After-Free in Objects/fileobject.c",
|
||||||
"Description": "Python 2.7.14 is vulnerable to a Heap-Buffer-Overflow as well as a Heap-Use-After-Free. Python versions prior to 2.7.14 may also be vulnerable and it appears that Python 2.7.17 and prior may also be vulnerable however this has not been confirmed. The vulnerability lies when multiply threads are handling large amounts of data. In both cases there is essentially a race condition that occurs. For the Heap-Buffer-Overflow, Thread 2 is creating the size for a buffer, but Thread1 is already writing to the buffer without knowing how much to write. So when a large amount of data is being processed, it is very easy to cause memory corruption using a Heap-Buffer-Overflow. As for the Use-After-Free, Thread3-\u003eMalloc-\u003eThread1-\u003eFree's-\u003eThread2-Re-uses-Free'd Memory. The PSRT has stated that this is not a security vulnerability due to the fact that the attacker must be able to run code, however in some situations, such as function as a service, this vulnerability can potentially be used by an attacker to violate a trust boundary, as such the DWF feels this issue deserves a CVE.",
|
"Description": "Python 2.7.14 is vulnerable to a Heap-Buffer-Overflow as well as a Heap-Use-After-Free. Python versions prior to 2.7.14 may also be vulnerable and it appears that Python 2.7.17 and prior may also be vulnerable however this has not been confirmed. The vulnerability lies when multiply threads are handling large amounts of data. In both cases there is essentially a race condition that occurs. For the Heap-Buffer-Overflow, Thread 2 is creating the size for a buffer, but Thread1 is already writing to the buffer without knowing how much to write. So when a large amount of data is being processed, it is very easy to cause memory corruption using a Heap-Buffer-Overflow. As for the Use-After-Free, Thread3-\u003eMalloc-\u003eThread1-\u003eFree's-\u003eThread2-Re-uses-Free'd Memory. The PSRT has stated that this is not a security vulnerability due to the fact that the attacker must be able to run code, however in some situations, such as function as a service, this vulnerability can potentially be used by an attacker to violate a trust boundary, as such the DWF feels this issue deserves a CVE.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1318,6 +1385,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18348",
|
||||||
"Title": "python: CRLF injection via the host part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the host part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.17 and urllib in Python 3.x through 3.8.0. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the host component of a URL) followed by an HTTP header. This is similar to the CVE-2019-9740 query string issue and the CVE-2019-9947 path string issue. (This is not exploitable when glibc has CVE-2016-10739 fixed.)",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.17 and urllib in Python 3.x through 3.8.0. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the host component of a URL) followed by an HTTP header. This is similar to the CVE-2019-9740 query string issue and the CVE-2019-9947 path string issue. (This is not exploitable when glibc has CVE-2016-10739 fixed.)",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1338,6 +1406,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9674",
|
||||||
"Title": "python: Nested zip file (Zip bomb) vulnerability in Lib/zipfile.py",
|
"Title": "python: Nested zip file (Zip bomb) vulnerability in Lib/zipfile.py",
|
||||||
"Description": "Lib/zipfile.py in Python through 3.7.2 allows remote attackers to cause a denial of service (resource consumption) via a ZIP bomb.",
|
"Description": "Lib/zipfile.py in Python through 3.7.2 allows remote attackers to cause a denial of service (resource consumption) via a ZIP bomb.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1359,6 +1428,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-8457",
|
||||||
"Title": "sqlite: heap out-of-bound read in function rtreenode()",
|
"Title": "sqlite: heap out-of-bound read in function rtreenode()",
|
||||||
"Description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.",
|
"Description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1386,6 +1456,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20346",
|
||||||
"Title": "CVE-2018-20505 CVE-2018-20506 sqlite: Multiple flaws in sqlite which can be triggered via corrupted internal databases (Magellan)",
|
"Title": "CVE-2018-20505 CVE-2018-20506 sqlite: Multiple flaws in sqlite which can be triggered via corrupted internal databases (Magellan)",
|
||||||
"Description": "SQLite before 3.25.3, when the FTS3 extension is enabled, encounters an integer overflow (and resultant buffer overflow) for FTS3 queries that occur after crafted changes to FTS3 shadow tables, allowing remote attackers to execute arbitrary code by leveraging the ability to run arbitrary SQL statements (such as in certain WebSQL use cases), aka Magellan.",
|
"Description": "SQLite before 3.25.3, when the FTS3 extension is enabled, encounters an integer overflow (and resultant buffer overflow) for FTS3 queries that occur after crafted changes to FTS3 shadow tables, allowing remote attackers to execute arbitrary code by leveraging the ability to run arbitrary SQL statements (such as in certain WebSQL use cases), aka Magellan.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1431,6 +1502,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20505",
|
||||||
"Title": "CVE-2018-20346 CVE-2018-20505 CVE-2018-20506 sqlite: Multiple flaws in sqlite which can be triggered via corrupted internal databases (Magellan)",
|
"Title": "CVE-2018-20346 CVE-2018-20505 CVE-2018-20506 sqlite: Multiple flaws in sqlite which can be triggered via corrupted internal databases (Magellan)",
|
||||||
"Description": "SQLite 3.25.2, when queries are run on a table with a malformed PRIMARY KEY, allows remote attackers to cause a denial of service (application crash) by leveraging the ability to run arbitrary SQL statements (such as in certain WebSQL use cases).",
|
"Description": "SQLite 3.25.2, when queries are run on a table with a malformed PRIMARY KEY, allows remote attackers to cause a denial of service (application crash) by leveraging the ability to run arbitrary SQL statements (such as in certain WebSQL use cases).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1471,6 +1543,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20506",
|
||||||
"Title": "CVE-2018-20346 CVE-2018-20505 CVE-2018-20506 sqlite: Multiple flaws in sqlite which can be triggered via corrupted internal databases (Magellan)",
|
"Title": "CVE-2018-20346 CVE-2018-20505 CVE-2018-20506 sqlite: Multiple flaws in sqlite which can be triggered via corrupted internal databases (Magellan)",
|
||||||
"Description": "SQLite before 3.25.3, when the FTS3 extension is enabled, encounters an integer overflow (and resultant buffer overflow) for FTS3 queries in a \"merge\" operation that occurs after crafted changes to FTS3 shadow tables, allowing remote attackers to execute arbitrary code by leveraging the ability to run arbitrary SQL statements (such as in certain WebSQL use cases). This is a different vulnerability than CVE-2018-20346.",
|
"Description": "SQLite before 3.25.3, when the FTS3 extension is enabled, encounters an integer overflow (and resultant buffer overflow) for FTS3 queries in a \"merge\" operation that occurs after crafted changes to FTS3 shadow tables, allowing remote attackers to execute arbitrary code by leveraging the ability to run arbitrary SQL statements (such as in certain WebSQL use cases). This is a different vulnerability than CVE-2018-20346.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1513,6 +1586,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-8740",
|
||||||
"Title": "sqlite: NULL pointer dereference with databases with schema corrupted with CREATE TABLE AS allows for denial of service",
|
"Title": "sqlite: NULL pointer dereference with databases with schema corrupted with CREATE TABLE AS allows for denial of service",
|
||||||
"Description": "In SQLite through 3.22.0, databases whose schema is corrupted using a CREATE TABLE AS statement could cause a NULL pointer dereference, related to build.c and prepare.c.",
|
"Description": "In SQLite through 3.22.0, databases whose schema is corrupted using a CREATE TABLE AS statement could cause a NULL pointer dereference, related to build.c and prepare.c.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1535,6 +1609,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16168",
|
||||||
"Title": "sqlite: division by zero in whereLoopAddBtreeIndex in sqlite3.c",
|
"Title": "sqlite: division by zero in whereLoopAddBtreeIndex in sqlite3.c",
|
||||||
"Description": "In SQLite through 3.29.0, whereLoopAddBtreeIndex in sqlite3.c can crash a browser or other application because of missing validation of a sqlite_stat1 sz field, aka a \"severe division by zero in the query planner.\"",
|
"Description": "In SQLite through 3.29.0, whereLoopAddBtreeIndex in sqlite3.c can crash a browser or other application because of missing validation of a sqlite_stat1 sz field, aka a \"severe division by zero in the query planner.\"",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1559,6 +1634,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19603",
|
||||||
"Title": "sqlite: mishandles certain SELECT statements with a nonexistent VIEW, leading to DoS",
|
"Title": "sqlite: mishandles certain SELECT statements with a nonexistent VIEW, leading to DoS",
|
||||||
"Description": "SQLite 3.30.1 mishandles certain SELECT statements with a nonexistent VIEW, leading to an application crash.",
|
"Description": "SQLite 3.30.1 mishandles certain SELECT statements with a nonexistent VIEW, leading to an application crash.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1576,6 +1652,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20218",
|
||||||
"Title": "sqlite: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error",
|
"Title": "sqlite: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error",
|
||||||
"Description": "selectExpander in select.c in SQLite 3.30.1 proceeds with WITH stack unwinding even after a parsing error.",
|
"Description": "selectExpander in select.c in SQLite 3.30.1 proceeds with WITH stack unwinding even after a parsing error.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1592,6 +1669,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5827",
|
||||||
"Title": "chromium-browser: out-of-bounds access in SQLite",
|
"Title": "chromium-browser: out-of-bounds access in SQLite",
|
||||||
"Description": "Integer overflow in SQLite via WebSQL in Google Chrome prior to 74.0.3729.131 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
"Description": "Integer overflow in SQLite via WebSQL in Google Chrome prior to 74.0.3729.131 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1612,6 +1690,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-9327",
|
||||||
"Title": "sqlite: NULL pointer dereference and segmentation fault because of generated column optimizations",
|
"Title": "sqlite: NULL pointer dereference and segmentation fault because of generated column optimizations",
|
||||||
"Description": "In SQLite 3.31.1, isAuxiliaryVtabOperator allows attackers to trigger a NULL pointer dereference and segmentation fault because of generated column optimizations.",
|
"Description": "In SQLite 3.31.1, isAuxiliaryVtabOperator allows attackers to trigger a NULL pointer dereference and segmentation fault because of generated column optimizations.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1632,6 +1711,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-13685",
|
||||||
"Title": "sqlite: Local DoS via dump_callback function",
|
"Title": "sqlite: Local DoS via dump_callback function",
|
||||||
"Description": "The dump_callback function in SQLite 3.20.0 allows remote attackers to cause a denial of service (EXC_BAD_ACCESS and application crash) via a crafted file.",
|
"Description": "The dump_callback function in SQLite 3.20.0 allows remote attackers to cause a denial of service (EXC_BAD_ACCESS and application crash) via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1649,6 +1729,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19645",
|
||||||
"Title": "sqlite: infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements",
|
"Title": "sqlite: infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements",
|
||||||
"Description": "alter.c in SQLite through 3.30.1 allows attackers to trigger infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements.",
|
"Description": "alter.c in SQLite through 3.30.1 allows attackers to trigger infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1665,6 +1746,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9936",
|
||||||
"Title": "sqlite: heap-based buffer over-read in function fts5HashEntrySort in sqlite3.c",
|
"Title": "sqlite: heap-based buffer over-read in function fts5HashEntrySort in sqlite3.c",
|
||||||
"Description": "In SQLite 3.27.2, running fts5 prefix queries inside a transaction could trigger a heap-based buffer over-read in fts5HashEntrySort in sqlite3.c, which may lead to an information leak. This is related to ext/fts5/fts5_hash.c.",
|
"Description": "In SQLite 3.27.2, running fts5 prefix queries inside a transaction could trigger a heap-based buffer over-read in fts5HashEntrySort in sqlite3.c, which may lead to an information leak. This is related to ext/fts5/fts5_hash.c.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1688,6 +1770,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9937",
|
||||||
"Title": "sqlite: null-pointer dereference in function fts5ChunkIterate in sqlite3.c",
|
"Title": "sqlite: null-pointer dereference in function fts5ChunkIterate in sqlite3.c",
|
||||||
"Description": "In SQLite 3.27.2, interleaving reads and writes in a single transaction with an fts5 virtual table will lead to a NULL Pointer Dereference in fts5ChunkIterate in sqlite3.c. This is related to ext/fts5/fts5_hash.c and ext/fts5/fts5_index.c.",
|
"Description": "In SQLite 3.27.2, interleaving reads and writes in a single transaction with an fts5 virtual table will lead to a NULL Pointer Dereference in fts5ChunkIterate in sqlite3.c. This is related to ext/fts5/fts5_hash.c and ext/fts5/fts5_index.c.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1712,6 +1795,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1734,6 +1818,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755",
|
||||||
"Title": "Dual_EC_DRBG: weak pseudo random number generator",
|
"Title": "Dual_EC_DRBG: weak pseudo random number generator",
|
||||||
"Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.",
|
"Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1756,6 +1841,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928",
|
||||||
"Title": "openssl: RSA authentication weakness",
|
"Title": "openssl: RSA authentication weakness",
|
||||||
"Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"",
|
"Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1776,6 +1862,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1802,6 +1889,7 @@
|
|||||||
"DiffID": "sha256:6189abe095d53c1c9f2bfc8f50128ee876b9a5d10f9eda1564e5f5357d6ffe61"
|
"DiffID": "sha256:6189abe095d53c1c9f2bfc8f50128ee876b9a5d10f9eda1564e5f5357d6ffe61"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886",
|
||||||
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
"Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass",
|
||||||
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
"Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1818,6 +1906,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-19211",
|
||||||
"Title": "ncurses: Null pointer dereference at function _nc_parse_entry in parse_entry.c",
|
"Title": "ncurses: Null pointer dereference at function _nc_parse_entry in parse_entry.c",
|
||||||
"Description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.",
|
"Description": "In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a \"dubious character `*' in name or alias field\" detection.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1834,6 +1923,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1853,6 +1943,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1873,6 +1964,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1895,6 +1987,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755",
|
||||||
"Title": "Dual_EC_DRBG: weak pseudo random number generator",
|
"Title": "Dual_EC_DRBG: weak pseudo random number generator",
|
||||||
"Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.",
|
"Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1917,6 +2010,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928",
|
||||||
"Title": "openssl: RSA authentication weakness",
|
"Title": "openssl: RSA authentication weakness",
|
||||||
"Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"",
|
"Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1937,6 +2031,7 @@
|
|||||||
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
"DiffID": "sha256:dffd9992ca398466a663c87c92cfea2a2db0ae0cf33fcb99da60eec52addbfc5"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1963,6 +2058,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8492",
|
||||||
"Title": "python: wrong backtracking in urllib.request.AbstractBasicAuthHandler allows for a ReDoS",
|
"Title": "python: wrong backtracking in urllib.request.AbstractBasicAuthHandler allows for a ReDoS",
|
||||||
"Description": "Python 2.7 through 2.7.17, 3.5 through 3.5.9, 3.6 through 3.6.10, 3.7 through 3.7.6, and 3.8 through 3.8.1 allows an HTTP server to conduct Regular Expression Denial of Service (ReDoS) attacks against a client because of urllib.request.AbstractBasicAuthHandler catastrophic backtracking.",
|
"Description": "Python 2.7 through 2.7.17, 3.5 through 3.5.9, 3.6 through 3.6.10, 3.7 through 3.7.6, and 3.8 through 3.8.1 allows an HTTP server to conduct Regular Expression Denial of Service (ReDoS) attacks against a client because of urllib.request.AbstractBasicAuthHandler catastrophic backtracking.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -1982,6 +2078,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20852",
|
||||||
"Title": "python: Cookie domain check returns incorrect results",
|
"Title": "python: Cookie domain check returns incorrect results",
|
||||||
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2004,6 +2101,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16056",
|
||||||
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
"Title": "python: email.utils.parseaddr wrongly parses email addresses",
|
||||||
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
"Description": "An issue was discovered in Python through 2.7.16, 3.x through 3.5.7, 3.6.x through 3.6.9, and 3.7.x through 3.7.4. The email module wrongly parses email addresses that contain multiple @ characters. An application that uses the email module and implements some kind of checks on the From/To headers of a message could be tricked into accepting an email address that should be denied. An attack may be the same as in CVE-2019-11340; however, this CVE applies to Python more generally.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2027,6 +2125,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16935",
|
||||||
"Title": "python: XSS vulnerability in the documentation XML-RPC server in server_title field",
|
"Title": "python: XSS vulnerability in the documentation XML-RPC server in server_title field",
|
||||||
"Description": "The documentation XML-RPC server in Python through 2.7.16, 3.x through 3.6.9, and 3.7.x through 3.7.4 has XSS via the server_title field. This occurs in Lib/DocXMLRPCServer.py in Python 2.x, and in Lib/xmlrpc/server.py in Python 3.x. If set_server_title is called with untrusted input, arbitrary JavaScript can be delivered to clients that visit the http URL for this server.",
|
"Description": "The documentation XML-RPC server in Python through 2.7.16, 3.x through 3.6.9, and 3.7.x through 3.7.4 has XSS via the server_title field. This occurs in Lib/DocXMLRPCServer.py in Python 2.x, and in Lib/xmlrpc/server.py in Python 3.x. If set_server_title is called with untrusted input, arbitrary JavaScript can be delivered to clients that visit the http URL for this server.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2048,6 +2147,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5010",
|
||||||
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
||||||
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2069,6 +2169,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9636",
|
||||||
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
"Title": "python: Information Disclosure due to urlsplit improper NFKC normalization",
|
||||||
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
"Description": "Python 2.7.x through 2.7.16 and 3.x through 3.7.2 is affected by: Improper Handling of Unicode Encoding (with an incorrect netloc) during NFKC normalization. The impact is: Information disclosure (credentials, cookies, etc. that are cached against a given hostname). The components are: urllib.parse.urlsplit, urllib.parse.urlparse. The attack vector is: A specially crafted URL could be incorrectly parsed to locate cookies or authentication data and send that information to a different host than when parsed correctly.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2114,6 +2215,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9740",
|
||||||
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2136,6 +2238,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9947",
|
||||||
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2158,6 +2261,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9948",
|
||||||
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
||||||
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -2182,6 +2286,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-7040",
|
||||||
"Title": "python: hash secret can be recovered remotely",
|
"Title": "python: hash secret can be recovered remotely",
|
||||||
"Description": "Python 2.7 before 3.4 only uses the last eight bits of the prefix to randomize hash values, which causes it to compute hash values without restricting the ability to trigger hash collisions predictably and makes it easier for context-dependent attackers to cause a denial of service (CPU consumption) via crafted input to an application that maintains a hash table. NOTE: this vulnerability exists because of an incomplete fix for CVE-2012-1150.",
|
"Description": "Python 2.7 before 3.4 only uses the last eight bits of the prefix to randomize hash values, which causes it to compute hash values without restricting the ability to trigger hash collisions predictably and makes it easier for context-dependent attackers to cause a denial of service (CPU consumption) via crafted input to an application that maintains a hash table. NOTE: this vulnerability exists because of an incomplete fix for CVE-2012-1150.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -2202,6 +2307,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-17522",
|
||||||
"Title": "python: Command injection in Lib/webbrowser.py",
|
"Title": "python: Command injection in Lib/webbrowser.py",
|
||||||
"Description": "** DISPUTED ** Lib/webbrowser.py in Python through 3.6.3 does not validate strings before launching the program specified by the BROWSER environment variable, which might allow remote attackers to conduct argument-injection attacks via a crafted URL. NOTE: a software maintainer indicates that exploitation is impossible because the code relies on subprocess.Popen and the default shell=False setting.",
|
"Description": "** DISPUTED ** Lib/webbrowser.py in Python through 3.6.3 does not validate strings before launching the program specified by the BROWSER environment variable, which might allow remote attackers to conduct argument-injection attacks via a crafted URL. NOTE: a software maintainer indicates that exploitation is impossible because the code relies on subprocess.Popen and the default shell=False setting.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -2219,6 +2325,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000030",
|
||||||
"Title": "python: Heap-Buffer-Overflow and Heap-Use-After-Free in Objects/fileobject.c",
|
"Title": "python: Heap-Buffer-Overflow and Heap-Use-After-Free in Objects/fileobject.c",
|
||||||
"Description": "Python 2.7.14 is vulnerable to a Heap-Buffer-Overflow as well as a Heap-Use-After-Free. Python versions prior to 2.7.14 may also be vulnerable and it appears that Python 2.7.17 and prior may also be vulnerable however this has not been confirmed. The vulnerability lies when multiply threads are handling large amounts of data. In both cases there is essentially a race condition that occurs. For the Heap-Buffer-Overflow, Thread 2 is creating the size for a buffer, but Thread1 is already writing to the buffer without knowing how much to write. So when a large amount of data is being processed, it is very easy to cause memory corruption using a Heap-Buffer-Overflow. As for the Use-After-Free, Thread3-\u003eMalloc-\u003eThread1-\u003eFree's-\u003eThread2-Re-uses-Free'd Memory. The PSRT has stated that this is not a security vulnerability due to the fact that the attacker must be able to run code, however in some situations, such as function as a service, this vulnerability can potentially be used by an attacker to violate a trust boundary, as such the DWF feels this issue deserves a CVE.",
|
"Description": "Python 2.7.14 is vulnerable to a Heap-Buffer-Overflow as well as a Heap-Use-After-Free. Python versions prior to 2.7.14 may also be vulnerable and it appears that Python 2.7.17 and prior may also be vulnerable however this has not been confirmed. The vulnerability lies when multiply threads are handling large amounts of data. In both cases there is essentially a race condition that occurs. For the Heap-Buffer-Overflow, Thread 2 is creating the size for a buffer, but Thread1 is already writing to the buffer without knowing how much to write. So when a large amount of data is being processed, it is very easy to cause memory corruption using a Heap-Buffer-Overflow. As for the Use-After-Free, Thread3-\u003eMalloc-\u003eThread1-\u003eFree's-\u003eThread2-Re-uses-Free'd Memory. The PSRT has stated that this is not a security vulnerability due to the fact that the attacker must be able to run code, however in some situations, such as function as a service, this vulnerability can potentially be used by an attacker to violate a trust boundary, as such the DWF feels this issue deserves a CVE.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -2241,6 +2348,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18348",
|
||||||
"Title": "python: CRLF injection via the host part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the host part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.17 and urllib in Python 3.x through 3.8.0. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the host component of a URL) followed by an HTTP header. This is similar to the CVE-2019-9740 query string issue and the CVE-2019-9947 path string issue. (This is not exploitable when glibc has CVE-2016-10739 fixed.)",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.17 and urllib in Python 3.x through 3.8.0. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the host component of a URL) followed by an HTTP header. This is similar to the CVE-2019-9740 query string issue and the CVE-2019-9947 path string issue. (This is not exploitable when glibc has CVE-2016-10739 fixed.)",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -2261,6 +2369,7 @@
|
|||||||
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
"DiffID": "sha256:e92caab8efcf25a24bea5213ab7e54d4a5f5f08644836bb2d296070b1ae1044e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "debian",
|
"SeveritySource": "debian",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9674",
|
||||||
"Title": "python: Nested zip file (Zip bomb) vulnerability in Lib/zipfile.py",
|
"Title": "python: Nested zip file (Zip bomb) vulnerability in Lib/zipfile.py",
|
||||||
"Description": "Lib/zipfile.py in Python through 3.7.2 allows remote attackers to cause a denial of service (resource consumption) via a ZIP bomb.",
|
"Description": "Lib/zipfile.py in Python through 3.7.2 allows remote attackers to cause a denial of service (resource consumption) via a ZIP bomb.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -54,6 +56,7 @@
|
|||||||
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -75,6 +78,7 @@
|
|||||||
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18224",
|
||||||
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
||||||
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -97,6 +101,7 @@
|
|||||||
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
"DiffID": "sha256:831c5620387fb9efec59fc82a42b948546c6be601e3ab34a87108ecf852aa15f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -35,6 +36,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -58,6 +60,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3855",
|
||||||
"Title": "libssh2: Integer overflow in transport read resulting in out of bounds write",
|
"Title": "libssh2: Integer overflow in transport read resulting in out of bounds write",
|
||||||
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way packets are read from the server. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way packets are read from the server. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -93,6 +96,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3856",
|
||||||
"Title": "libssh2: Integer overflow in keyboard interactive handling resulting in out of bounds write",
|
"Title": "libssh2: Integer overflow in keyboard interactive handling resulting in out of bounds write",
|
||||||
"Description": "An integer overflow flaw, which could lead to an out of bounds write, was discovered in libssh2 before 1.8.1 in the way keyboard prompt requests are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
"Description": "An integer overflow flaw, which could lead to an out of bounds write, was discovered in libssh2 before 1.8.1 in the way keyboard prompt requests are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -122,6 +126,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3857",
|
||||||
"Title": "libssh2: Integer overflow in SSH packet processing channel resulting in out of bounds write",
|
"Title": "libssh2: Integer overflow in SSH packet processing channel resulting in out of bounds write",
|
||||||
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit signal are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
"Description": "An integer overflow flaw which could lead to an out of bounds write was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit signal are parsed. A remote attacker who compromises a SSH server may be able to execute code on the client system when a user connects to the server.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -151,6 +156,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3862",
|
||||||
"Title": "libssh2: Out-of-bounds memory comparison with specially crafted message channel request",
|
"Title": "libssh2: Out-of-bounds memory comparison with specially crafted message channel request",
|
||||||
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit status message and no payload are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH_MSG_CHANNEL_REQUEST packets with an exit status message and no payload are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -184,6 +190,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3863",
|
||||||
"Title": "libssh2: Integer overflow in user authenticate keyboard interactive allows out-of-bounds writes",
|
"Title": "libssh2: Integer overflow in user authenticate keyboard interactive allows out-of-bounds writes",
|
||||||
"Description": "A flaw was found in libssh2 before 1.8.1. A server could send a multiple keyboard interactive response messages whose total length are greater than unsigned char max characters. This value is used as an index to copy memory causing in an out of bounds memory write error.",
|
"Description": "A flaw was found in libssh2 before 1.8.1. A server could send a multiple keyboard interactive response messages whose total length are greater than unsigned char max characters. This value is used as an index to copy memory causing in an out of bounds memory write error.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -213,6 +220,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -241,6 +249,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -269,6 +278,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1559",
|
||||||
"Title": "openssl: 0-byte record padding oracle",
|
"Title": "openssl: 0-byte record padding oracle",
|
||||||
"Description": "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 that 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). Fixed in OpenSSL 1.0.2r (Affected 1.0.2-1.0.2q).",
|
"Description": "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 that 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). Fixed in OpenSSL 1.0.2r (Affected 1.0.2-1.0.2q).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -308,6 +318,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20852",
|
||||||
"Title": "python: Cookie domain check returns incorrect results",
|
"Title": "python: Cookie domain check returns incorrect results",
|
||||||
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -331,6 +342,7 @@
|
|||||||
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
"DiffID": "sha256:a6f189f69066d36aff8efe2602482d28c02de433aef44ee9087b291df7e8fd08"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20852",
|
||||||
"Title": "python: Cookie domain check returns incorrect results",
|
"Title": "python: Cookie domain check returns incorrect results",
|
||||||
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -35,6 +36,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16842",
|
||||||
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
||||||
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -63,6 +65,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16402",
|
||||||
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
"Title": "elfutils: Double-free due to double decompression of sections in crafted ELF causes crash",
|
||||||
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
"Description": "libelf/elf_end.c in elfutils 0.173 allows remote attackers to cause a denial of service (double free and application crash) or possibly have unspecified other impact because it tries to decompress twice.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -83,6 +86,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16062",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getaranges.c:dwarf_getaranges() via crafted file",
|
||||||
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
"Description": "dwarf_getaranges in dwarf_getaranges.c in libdw in elfutils before 2018-08-18 allows remote attackers to cause a denial of service (heap-based buffer over-read) via a crafted file.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -107,6 +111,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16403",
|
||||||
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
"Title": "elfutils: Heap-based buffer over-read in libdw/dwarf_getabbrev.c and libwd/dwarf_hasattr.c causes crash",
|
||||||
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
"Description": "libdw in elfutils 0.173 checks the end of the attributes list incorrectly in dwarf_getabbrev in dwarf_getabbrev.c and dwarf_hasattr in dwarf_hasattr.c, leading to a heap-based buffer over-read and an application crash.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -130,6 +135,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18310",
|
||||||
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
"Title": "elfutils: invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl",
|
||||||
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
"Description": "An invalid memory address dereference was discovered in dwfl_segment_report_module.c in libdwfl in elfutils through v0.174. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by consider_notes.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -152,6 +158,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18520",
|
||||||
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
"Title": "elfutils: eu-size cannot handle recursive ar files",
|
||||||
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
"Description": "An Invalid Memory Address Dereference exists in the function elf_end in libelf in elfutils through v0.174. Although eu-size is intended to support ar files inside ar files, handle_ar in size.c closes the outer ar file before handling all inner entries. The vulnerability allows attackers to cause a denial of service (application crash) with a crafted ELF file.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -174,6 +181,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-18521",
|
||||||
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
"Title": "elfutils: Divide-by-zero in arlib_add_symbols function in arlib.c",
|
||||||
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
"Description": "Divide-by-zero vulnerabilities in the function arlib_add_symbols() in arlib.c in elfutils 0.174 allow remote attackers to cause a denial of service (application crash) with a crafted ELF file, as demonstrated by eu-ranlib, because a zero sh_entsize is mishandled.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -196,6 +204,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7149",
|
||||||
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
||||||
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -218,6 +227,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7150",
|
||||||
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
||||||
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -240,6 +250,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7664",
|
||||||
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
||||||
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -260,6 +271,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7665",
|
||||||
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
||||||
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -282,6 +294,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -305,6 +318,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -328,6 +342,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -351,6 +366,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16842",
|
||||||
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
"Title": "curl: Heap-based buffer over-read in the curl tool warning formatting",
|
||||||
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
"Description": "Curl versions 7.14.1 through 7.61.1 are vulnerable to a heap-based buffer over-read in the tool_msgs.c:voutf() function that may result in information exposure and denial of service.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -379,6 +395,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3858",
|
||||||
"Title": "libssh2: Zero-byte allocation with a specially crafted SFTP packed leading to an out-of-bounds read",
|
"Title": "libssh2: Zero-byte allocation with a specially crafted SFTP packed leading to an out-of-bounds read",
|
||||||
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 when a specially crafted SFTP packet is received from the server. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 when a specially crafted SFTP packet is received from the server. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -412,6 +429,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3861",
|
||||||
"Title": "libssh2: Out-of-bounds reads with specially crafted SSH packets",
|
"Title": "libssh2: Out-of-bounds reads with specially crafted SSH packets",
|
||||||
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH packets with a padding length value greater than the packet length are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
"Description": "An out of bounds read flaw was discovered in libssh2 before 1.8.1 in the way SSH packets with a padding length value greater than the packet length are parsed. A remote attacker who compromises a SSH server may be able to cause a Denial of Service or read data in the client memory.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -439,6 +457,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -460,6 +479,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -497,6 +517,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -518,6 +539,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -544,6 +566,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -572,6 +595,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -609,6 +633,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -630,6 +655,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -656,6 +682,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -684,6 +711,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -721,6 +749,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -742,6 +771,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -768,6 +798,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -796,6 +827,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -833,6 +865,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -854,6 +887,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -880,6 +914,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -908,6 +943,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -945,6 +981,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -966,6 +1003,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -992,6 +1030,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1020,6 +1059,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1057,6 +1097,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12404",
|
||||||
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
"Title": "nss: Cache side-channel variant of the Bleichenbacher attack",
|
||||||
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
"Description": "A cached side channel attack during handshakes using RSA encryption could allow for the decryption of encrypted content. This is a variant of the Adaptive Chosen Ciphertext attack (AKA Bleichenbacher attack) and affects all NSS versions prior to NSS 3.41.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1078,6 +1119,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11729",
|
||||||
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
"Title": "nss: Empty or malformed p256-ECDH public keys may trigger a segmentation fault",
|
||||||
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
"Description": "Empty or malformed p256-ECDH public keys may trigger a segmentation fault due values being improperly sanitized before being copied into memory and used. This vulnerability affects Firefox ESR \u003c 60.8, Firefox \u003c 68, and Thunderbird \u003c 60.8.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1104,6 +1146,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11745",
|
||||||
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
"Title": "nss: Out-of-bounds write when passing an output buffer smaller than the block size to NSC_EncryptUpdate",
|
||||||
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
"Description": "When encrypting with a block cipher, if a call to NSC_EncryptUpdate was made with data smaller than the block size, a small out of bounds write could occur. This could have caused heap corruption and a potentially exploitable crash. This vulnerability affects Thunderbird \u003c 68.3, Firefox ESR \u003c 68.3, and Firefox \u003c 71.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1132,6 +1175,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0495",
|
||||||
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
"Title": "ROHNP: Key Extraction Side Channel in Multiple Crypto Libraries",
|
||||||
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
"Description": "Libgcrypt before 1.7.10 and 1.8.x before 1.8.3 allows a memory-cache side-channel attack on ECDSA signatures that can be mitigated through the use of blinding during the signing process in the _gcry_ecc_ecdsa_sign function in cipher/ecc-ecdsa.c, aka the Return Of the Hidden Number Problem or ROHNP. To discover an ECDSA key, the attacker needs access to either the local machine or a different virtual machine on the same physical host.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1169,6 +1213,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0734",
|
||||||
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
||||||
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1204,6 +1249,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1559",
|
||||||
"Title": "openssl: 0-byte record padding oracle",
|
"Title": "openssl: 0-byte record padding oracle",
|
||||||
"Description": "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 that 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). Fixed in OpenSSL 1.0.2r (Affected 1.0.2-1.0.2q).",
|
"Description": "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 that 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). Fixed in OpenSSL 1.0.2r (Affected 1.0.2-1.0.2q).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1243,6 +1289,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-14647",
|
||||||
"Title": "python: Missing salt initialization in _elementtree.c module",
|
"Title": "python: Missing salt initialization in _elementtree.c module",
|
||||||
"Description": "Python's elementtree C accelerator failed to initialise Expat's hash salt during initialization. This could make it easy to conduct denial of service attacks against Expat by constructing an XML document that would cause pathological hash collisions in Expat's internal data structures, consuming large amounts CPU and RAM. Python 3.8, 3.7, 3.6, 3.5, 3.4, 2.7 are believed to be vulnerable.",
|
"Description": "Python's elementtree C accelerator failed to initialise Expat's hash salt during initialization. This could make it easy to conduct denial of service attacks against Expat by constructing an XML document that would cause pathological hash collisions in Expat's internal data structures, consuming large amounts CPU and RAM. Python 3.8, 3.7, 3.6, 3.5, 3.4, 2.7 are believed to be vulnerable.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1274,6 +1321,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20852",
|
||||||
"Title": "python: Cookie domain check returns incorrect results",
|
"Title": "python: Cookie domain check returns incorrect results",
|
||||||
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1297,6 +1345,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5010",
|
||||||
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
||||||
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1319,6 +1368,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9740",
|
||||||
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1342,6 +1392,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9947",
|
||||||
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1365,6 +1416,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9948",
|
||||||
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
||||||
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1390,6 +1442,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-14647",
|
||||||
"Title": "python: Missing salt initialization in _elementtree.c module",
|
"Title": "python: Missing salt initialization in _elementtree.c module",
|
||||||
"Description": "Python's elementtree C accelerator failed to initialise Expat's hash salt during initialization. This could make it easy to conduct denial of service attacks against Expat by constructing an XML document that would cause pathological hash collisions in Expat's internal data structures, consuming large amounts CPU and RAM. Python 3.8, 3.7, 3.6, 3.5, 3.4, 2.7 are believed to be vulnerable.",
|
"Description": "Python's elementtree C accelerator failed to initialise Expat's hash salt during initialization. This could make it easy to conduct denial of service attacks against Expat by constructing an XML document that would cause pathological hash collisions in Expat's internal data structures, consuming large amounts CPU and RAM. Python 3.8, 3.7, 3.6, 3.5, 3.4, 2.7 are believed to be vulnerable.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1421,6 +1474,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20852",
|
||||||
"Title": "python: Cookie domain check returns incorrect results",
|
"Title": "python: Cookie domain check returns incorrect results",
|
||||||
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
"Description": "http.cookiejar.DefaultPolicy.domain_return_ok in Lib/http/cookiejar.py in Python before 3.7.3 does not correctly validate the domain: it can be tricked into sending existing cookies to the wrong server. An attacker may abuse this flaw by using a server with a hostname that has another valid hostname as a suffix (e.g., pythonicexample.com to steal cookies for example.com). When a program uses http.cookiejar.DefaultPolicy and tries to do an HTTP connection to an attacker-controlled server, existing cookies can be leaked to the attacker. This affects 2.x through 2.7.16, 3.x before 3.4.10, 3.5.x before 3.5.7, 3.6.x before 3.6.9, and 3.7.x before 3.7.3.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1444,6 +1498,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5010",
|
||||||
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
"Title": "python: NULL pointer dereference using a specially crafted X509 certificate",
|
||||||
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
"Description": "An exploitable denial-of-service vulnerability exists in the X509 certificate parser of Python.org Python 2.7.11 / 3.6.6. A specially crafted X509 certificate can cause a NULL pointer dereference, resulting in a denial of service. An attacker can initiate or accept TLS connections using crafted certificates to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1466,6 +1521,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9740",
|
||||||
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the query part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the query string after a ? character) followed by an HTTP header or a Redis command.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1489,6 +1545,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9947",
|
||||||
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
"Title": "python: CRLF injection via the path part of the url passed to urlopen()",
|
||||||
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
"Description": "An issue was discovered in urllib2 in Python 2.x through 2.7.16 and urllib in Python 3.x through 3.7.3. CRLF injection is possible if the attacker controls a url parameter, as demonstrated by the first argument to urllib.request.urlopen with \\r\\n (specifically in the path component of a URL that lacks a ? character) followed by an HTTP header or a Redis command. This is similar to the CVE-2019-9740 query string issue.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1512,6 +1569,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9948",
|
||||||
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
"Title": "python: Undocumented local_file protocol allows remote attackers to bypass protection mechanisms",
|
||||||
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
"Description": "urllib in Python 2.x through 2.7.16 supports the local_file: scheme, which makes it easier for remote attackers to bypass protection mechanisms that blacklist file: URIs, as demonstrated by triggering a urllib.urlopen('local_file:///etc/passwd') call.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1537,6 +1595,7 @@
|
|||||||
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
"DiffID": "sha256:4fee40bcfecff11f540de853f7f0dc71efbab8c14ea599452b617e215562e3e2"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13734",
|
||||||
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
||||||
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3822",
|
||||||
"Title": "curl: NTLMv2 type-3 header stack buffer overflow",
|
"Title": "curl: NTLMv2 type-3 header stack buffer overflow",
|
||||||
"Description": "libcurl versions from 7.36.0 to before 7.64.0 are vulnerable to a stack-based buffer overflow. The function creating an outgoing NTLM type-3 header (`lib/vauth/ntlm.c:Curl_auth_create_ntlm_type3_message()`), generates the request HTTP header contents based on previously received data. The check that exists to prevent the local buffer from getting overflowed is implemented wrongly (using unsigned math) and as such it does not prevent the overflow from happening. This output data can grow larger than the local buffer if very large 'nt response' data is extracted from a previous NTLMv2 header provided by the malicious or broken HTTP server. Such a 'large value' needs to be around 1000 bytes or more. The actual payload data copied to the target buffer comes from the NTLMv2 type-2 response header.",
|
"Description": "libcurl versions from 7.36.0 to before 7.64.0 are vulnerable to a stack-based buffer overflow. The function creating an outgoing NTLM type-3 header (`lib/vauth/ntlm.c:Curl_auth_create_ntlm_type3_message()`), generates the request HTTP header contents based on previously received data. The check that exists to prevent the local buffer from getting overflowed is implemented wrongly (using unsigned math) and as such it does not prevent the overflow from happening. This output data can grow larger than the local buffer if very large 'nt response' data is extracted from a previous NTLMv2 header provided by the malicious or broken HTTP server. Such a 'large value' needs to be around 1000 bytes or more. The actual payload data copied to the target buffer comes from the NTLMv2 type-2 response header.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -42,6 +43,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16890",
|
||||||
"Title": "curl: NTLM type-2 heap out-of-bounds buffer read",
|
"Title": "curl: NTLM type-2 heap out-of-bounds buffer read",
|
||||||
"Description": "libcurl versions from 7.36.0 to before 7.64.0 is vulnerable to a heap buffer out-of-bounds read. The function handling incoming NTLM type-2 messages (`lib/vauth/ntlm.c:ntlm_decode_type2_target`) does not validate incoming data correctly and is subject to an integer overflow vulnerability. Using that overflow, a malicious or broken NTLM server could trick libcurl to accept a bad length + offset combination that would lead to a buffer read out-of-bounds.",
|
"Description": "libcurl versions from 7.36.0 to before 7.64.0 is vulnerable to a heap buffer out-of-bounds read. The function handling incoming NTLM type-2 messages (`lib/vauth/ntlm.c:ntlm_decode_type2_target`) does not validate incoming data correctly and is subject to an integer overflow vulnerability. Using that overflow, a malicious or broken NTLM server could trick libcurl to accept a bad length + offset combination that would lead to a buffer read out-of-bounds.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -70,6 +72,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3823",
|
||||||
"Title": "curl: SMTP end-of-response out-of-bounds read",
|
"Title": "curl: SMTP end-of-response out-of-bounds read",
|
||||||
"Description": "libcurl versions from 7.34.0 to before 7.64.0 are vulnerable to a heap out-of-bounds read in the code handling the end-of-response for SMTP. If the buffer passed to `smtp_endofresp()` isn't NUL terminated and contains no character ending the parsed number, and `len` is set to 5, then the `strtol()` call reads beyond the allocated buffer. The read contents will not be returned to the caller.",
|
"Description": "libcurl versions from 7.34.0 to before 7.64.0 are vulnerable to a heap out-of-bounds read in the code handling the end-of-response for SMTP. If the buffer passed to `smtp_endofresp()` isn't NUL terminated and contains no character ending the parsed number, and `len` is set to 5, then the `strtol()` call reads beyond the allocated buffer. The read contents will not be returned to the caller.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -98,6 +101,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20483",
|
||||||
"Title": "wget: Information exposure in set_file_metadata function in xattr.c",
|
"Title": "wget: Information exposure in set_file_metadata function in xattr.c",
|
||||||
"Description": "set_file_metadata in xattr.c in GNU Wget before 1.20.1 stores a file's origin URL in the user.xdg.origin.url metadata attribute of the extended attributes of the downloaded file, which allows local users to obtain sensitive information (e.g., credentials contained in the URL) by reading this attribute, as demonstrated by getfattr. This also applies to Referer information in the user.xdg.referrer.url metadata attribute. According to 2016-07-22 in the Wget ChangeLog, user.xdg.origin.url was partially based on the behavior of fwrite_xattr in tool_xattr.c in curl.",
|
"Description": "set_file_metadata in xattr.c in GNU Wget before 1.20.1 stores a file's origin URL in the user.xdg.origin.url metadata attribute of the extended attributes of the downloaded file, which allows local users to obtain sensitive information (e.g., credentials contained in the URL) by reading this attribute, as demonstrated by getfattr. This also applies to Referer information in the user.xdg.referrer.url metadata attribute. According to 2016-07-22 in the Wget ChangeLog, user.xdg.origin.url was partially based on the behavior of fwrite_xattr in tool_xattr.c in curl.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -122,6 +126,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7146",
|
||||||
"Title": "elfutils: buffer over-read in the ebl_object_note function in eblobjnote.c in libebl",
|
"Title": "elfutils: buffer over-read in the ebl_object_note function in eblobjnote.c in libebl",
|
||||||
"Description": "In elfutils 0.175, there is a buffer over-read in the ebl_object_note function in eblobjnote.c in libebl. Remote attackers could leverage this vulnerability to cause a denial-of-service via a crafted elf file, as demonstrated by eu-readelf.",
|
"Description": "In elfutils 0.175, there is a buffer over-read in the ebl_object_note function in eblobjnote.c in libebl. Remote attackers could leverage this vulnerability to cause a denial-of-service via a crafted elf file, as demonstrated by eu-readelf.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -143,6 +148,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7149",
|
||||||
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
"Title": "elfutils: heap-based buffer over-read in read_srclines in dwarf_getsrclines.c in libdw",
|
||||||
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
"Description": "A heap-based buffer over-read was discovered in the function read_srclines in dwarf_getsrclines.c in libdw in elfutils 0.175. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by eu-nm.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -165,6 +171,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7150",
|
||||||
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
"Title": "elfutils: segmentation fault in elf64_xlatetom in libelf/elf32_xlatetom.c",
|
||||||
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
"Description": "An issue was discovered in elfutils 0.175. A segmentation fault can occur in the function elf64_xlatetom in libelf/elf32_xlatetom.c, due to dwfl_segment_report_module not checking whether the dyn data read from a core file is truncated. A crafted input can cause a program crash, leading to denial-of-service, as demonstrated by eu-stack.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -187,6 +194,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7664",
|
||||||
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
"Title": "elfutils: out of bound write in elf_cvt_note in libelf/note_xlate.h",
|
||||||
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
"Description": "In elfutils 0.175, a negative-sized memcpy is attempted in elf_cvt_note in libelf/note_xlate.h because of an incorrect overflow check. Crafted elf input causes a segmentation fault, leading to denial of service (program crash).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -207,6 +215,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7665",
|
||||||
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
"Title": "elfutils: heap-based buffer over-read in function elf32_xlatetom in elf32_xlatetom.c",
|
||||||
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
"Description": "In elfutils 0.175, a heap-based buffer over-read was discovered in the function elf32_xlatetom in elf32_xlatetom.c in libelf. A crafted ELF input can cause a segmentation fault leading to denial of service (program crash) because ebl_core_note does not reject malformed core file notes.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -229,6 +238,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12450",
|
||||||
"Title": "glib2: file_copy_fallback in gio/gfile.c in GNOME GLib does not properly restrict file permissions while a copy operation is in progress",
|
"Title": "glib2: file_copy_fallback in gio/gfile.c in GNOME GLib does not properly restrict file permissions while a copy operation is in progress",
|
||||||
"Description": "file_copy_fallback in gio/gfile.c in GNOME GLib 2.15.0 through 2.61.1 does not properly restrict file permissions while a copy operation is in progress. Instead, default permissions are used.",
|
"Description": "file_copy_fallback in gio/gfile.c in GNOME GLib 2.15.0 through 2.61.1 does not properly restrict file permissions while a copy operation is in progress. Instead, default permissions are used.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -253,6 +263,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -276,6 +287,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -299,6 +311,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -322,6 +335,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3829",
|
||||||
"Title": "gnutls: use-after-free/double-free in certificate verification",
|
"Title": "gnutls: use-after-free/double-free in certificate verification",
|
||||||
"Description": "A vulnerability was found in gnutls versions from 3.5.8 before 3.6.7. A memory corruption (double free) vulnerability in the certificate verification API. Any client or server application that verifies X.509 certificates with GnuTLS 3.5.8 or later is affected.",
|
"Description": "A vulnerability was found in gnutls versions from 3.5.8 before 3.6.7. A memory corruption (double free) vulnerability in the certificate verification API. Any client or server application that verifies X.509 certificates with GnuTLS 3.5.8 or later is affected.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -349,6 +363,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3836",
|
||||||
"Title": "gnutls: invalid pointer access upon receiving async handshake messages",
|
"Title": "gnutls: invalid pointer access upon receiving async handshake messages",
|
||||||
"Description": "It was discovered in gnutls before version 3.6.7 upstream that there is an uninitialized pointer access in gnutls versions 3.6.3 or later which can be triggered by certain post-handshake messages.",
|
"Description": "It was discovered in gnutls before version 3.6.7 upstream that there is an uninitialized pointer access in gnutls versions 3.6.3 or later which can be triggered by certain post-handshake messages.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -375,6 +390,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-14503",
|
||||||
"Title": "libarchive: Out-of-bounds read in lha_read_data_none",
|
"Title": "libarchive: Out-of-bounds read in lha_read_data_none",
|
||||||
"Description": "libarchive 3.3.2 suffers from an out-of-bounds read within lha_read_data_none() in archive_read_support_format_lha.c when extracting a specially crafted lha archive, related to lha_crc16.",
|
"Description": "libarchive 3.3.2 suffers from an out-of-bounds read within lha_read_data_none() in archive_read_support_format_lha.c when extracting a specially crafted lha archive, related to lha_crc16.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -398,6 +414,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000877",
|
||||||
"Title": "libarchive: Double free in RAR decoder resulting in a denial of service",
|
"Title": "libarchive: Double free in RAR decoder resulting in a denial of service",
|
||||||
"Description": "libarchive version commit 416694915449219d505531b1096384f3237dd6cc onwards (release v3.1.0 onwards) contains a CWE-415: Double Free vulnerability in RAR decoder - libarchive/archive_read_support_format_rar.c, parse_codes(), realloc(rar-\u003elzss.window, new_size) with new_size = 0 that can result in Crash/DoS. This attack appear to be exploitable via the victim must open a specially crafted RAR archive.",
|
"Description": "libarchive version commit 416694915449219d505531b1096384f3237dd6cc onwards (release v3.1.0 onwards) contains a CWE-415: Double Free vulnerability in RAR decoder - libarchive/archive_read_support_format_rar.c, parse_codes(), realloc(rar-\u003elzss.window, new_size) with new_size = 0 that can result in Crash/DoS. This attack appear to be exploitable via the victim must open a specially crafted RAR archive.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -429,6 +446,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000878",
|
||||||
"Title": "libarchive: Use after free in RAR decoder resulting in a denial of service",
|
"Title": "libarchive: Use after free in RAR decoder resulting in a denial of service",
|
||||||
"Description": "libarchive version commit 416694915449219d505531b1096384f3237dd6cc onwards (release v3.1.0 onwards) contains a CWE-416: Use After Free vulnerability in RAR decoder - libarchive/archive_read_support_format_rar.c that can result in Crash/DoS - it is unknown if RCE is possible. This attack appear to be exploitable via the victim must open a specially crafted RAR archive.",
|
"Description": "libarchive version commit 416694915449219d505531b1096384f3237dd6cc onwards (release v3.1.0 onwards) contains a CWE-416: Use After Free vulnerability in RAR decoder - libarchive/archive_read_support_format_rar.c that can result in Crash/DoS - it is unknown if RCE is possible. This attack appear to be exploitable via the victim must open a specially crafted RAR archive.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -460,6 +478,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1000019",
|
||||||
"Title": "libarchive: Out of bounds read in archive_read_support_format_7zip.c resulting in a denial of service",
|
"Title": "libarchive: Out of bounds read in archive_read_support_format_7zip.c resulting in a denial of service",
|
||||||
"Description": "libarchive version commit bf9aec176c6748f0ee7a678c5f9f9555b9a757c1 onwards (release v3.0.2 onwards) contains a CWE-125: Out-of-bounds Read vulnerability in 7zip decompression, archive_read_support_format_7zip.c, header_bytes() that can result in a crash (denial of service). This attack appears to be exploitable via the victim opening a specially crafted 7zip file.",
|
"Description": "libarchive version commit bf9aec176c6748f0ee7a678c5f9f9555b9a757c1 onwards (release v3.0.2 onwards) contains a CWE-125: Out-of-bounds Read vulnerability in 7zip decompression, archive_read_support_format_7zip.c, header_bytes() that can result in a crash (denial of service). This attack appears to be exploitable via the victim opening a specially crafted 7zip file.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -487,6 +506,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1000020",
|
||||||
"Title": "libarchive: Infinite recursion in archive_read_support_format_iso9660.c resulting in denial of service",
|
"Title": "libarchive: Infinite recursion in archive_read_support_format_iso9660.c resulting in denial of service",
|
||||||
"Description": "libarchive version commit 5a98dcf8a86364b3c2c469c85b93647dfb139961 onwards (version v2.8.0 onwards) contains a CWE-835: Loop with Unreachable Exit Condition ('Infinite Loop') vulnerability in ISO9660 parser, archive_read_support_format_iso9660.c, read_CE()/parse_rockridge() that can result in DoS by infinite loop. This attack appears to be exploitable via the victim opening a specially crafted ISO9660 file.",
|
"Description": "libarchive version commit 5a98dcf8a86364b3c2c469c85b93647dfb139961 onwards (version v2.8.0 onwards) contains a CWE-835: Loop with Unreachable Exit Condition ('Infinite Loop') vulnerability in ISO9660 parser, archive_read_support_format_iso9660.c, read_CE()/parse_rockridge() that can result in DoS by infinite loop. This attack appears to be exploitable via the victim opening a specially crafted ISO9660 file.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -514,6 +534,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18408",
|
||||||
"Title": "libarchive: use-after-free in archive_read_format_rar_read_data when there is an error in the decompression of an archive entry",
|
"Title": "libarchive: use-after-free in archive_read_format_rar_read_data when there is an error in the decompression of an archive entry",
|
||||||
"Description": "archive_read_format_rar_read_data in archive_read_support_format_rar.c in libarchive before 3.4.0 has a use-after-free in a certain ARCHIVE_FAILED situation, related to Ppmd7_DecodeSymbol.",
|
"Description": "archive_read_format_rar_read_data in archive_read_support_format_rar.c in libarchive before 3.4.0 has a use-after-free in a certain ARCHIVE_FAILED situation, related to Ppmd7_DecodeSymbol.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -539,6 +560,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3822",
|
||||||
"Title": "curl: NTLMv2 type-3 header stack buffer overflow",
|
"Title": "curl: NTLMv2 type-3 header stack buffer overflow",
|
||||||
"Description": "libcurl versions from 7.36.0 to before 7.64.0 are vulnerable to a stack-based buffer overflow. The function creating an outgoing NTLM type-3 header (`lib/vauth/ntlm.c:Curl_auth_create_ntlm_type3_message()`), generates the request HTTP header contents based on previously received data. The check that exists to prevent the local buffer from getting overflowed is implemented wrongly (using unsigned math) and as such it does not prevent the overflow from happening. This output data can grow larger than the local buffer if very large 'nt response' data is extracted from a previous NTLMv2 header provided by the malicious or broken HTTP server. Such a 'large value' needs to be around 1000 bytes or more. The actual payload data copied to the target buffer comes from the NTLMv2 type-2 response header.",
|
"Description": "libcurl versions from 7.36.0 to before 7.64.0 are vulnerable to a stack-based buffer overflow. The function creating an outgoing NTLM type-3 header (`lib/vauth/ntlm.c:Curl_auth_create_ntlm_type3_message()`), generates the request HTTP header contents based on previously received data. The check that exists to prevent the local buffer from getting overflowed is implemented wrongly (using unsigned math) and as such it does not prevent the overflow from happening. This output data can grow larger than the local buffer if very large 'nt response' data is extracted from a previous NTLMv2 header provided by the malicious or broken HTTP server. Such a 'large value' needs to be around 1000 bytes or more. The actual payload data copied to the target buffer comes from the NTLMv2 type-2 response header.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -569,6 +591,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16890",
|
||||||
"Title": "curl: NTLM type-2 heap out-of-bounds buffer read",
|
"Title": "curl: NTLM type-2 heap out-of-bounds buffer read",
|
||||||
"Description": "libcurl versions from 7.36.0 to before 7.64.0 is vulnerable to a heap buffer out-of-bounds read. The function handling incoming NTLM type-2 messages (`lib/vauth/ntlm.c:ntlm_decode_type2_target`) does not validate incoming data correctly and is subject to an integer overflow vulnerability. Using that overflow, a malicious or broken NTLM server could trick libcurl to accept a bad length + offset combination that would lead to a buffer read out-of-bounds.",
|
"Description": "libcurl versions from 7.36.0 to before 7.64.0 is vulnerable to a heap buffer out-of-bounds read. The function handling incoming NTLM type-2 messages (`lib/vauth/ntlm.c:ntlm_decode_type2_target`) does not validate incoming data correctly and is subject to an integer overflow vulnerability. Using that overflow, a malicious or broken NTLM server could trick libcurl to accept a bad length + offset combination that would lead to a buffer read out-of-bounds.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -597,6 +620,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3823",
|
||||||
"Title": "curl: SMTP end-of-response out-of-bounds read",
|
"Title": "curl: SMTP end-of-response out-of-bounds read",
|
||||||
"Description": "libcurl versions from 7.34.0 to before 7.64.0 are vulnerable to a heap out-of-bounds read in the code handling the end-of-response for SMTP. If the buffer passed to `smtp_endofresp()` isn't NUL terminated and contains no character ending the parsed number, and `len` is set to 5, then the `strtol()` call reads beyond the allocated buffer. The read contents will not be returned to the caller.",
|
"Description": "libcurl versions from 7.34.0 to before 7.64.0 are vulnerable to a heap out-of-bounds read in the code handling the end-of-response for SMTP. If the buffer passed to `smtp_endofresp()` isn't NUL terminated and contains no character ending the parsed number, and `len` is set to 5, then the `strtol()` call reads beyond the allocated buffer. The read contents will not be returned to the caller.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -625,6 +649,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20483",
|
||||||
"Title": "wget: Information exposure in set_file_metadata function in xattr.c",
|
"Title": "wget: Information exposure in set_file_metadata function in xattr.c",
|
||||||
"Description": "set_file_metadata in xattr.c in GNU Wget before 1.20.1 stores a file's origin URL in the user.xdg.origin.url metadata attribute of the extended attributes of the downloaded file, which allows local users to obtain sensitive information (e.g., credentials contained in the URL) by reading this attribute, as demonstrated by getfattr. This also applies to Referer information in the user.xdg.referrer.url metadata attribute. According to 2016-07-22 in the Wget ChangeLog, user.xdg.origin.url was partially based on the behavior of fwrite_xattr in tool_xattr.c in curl.",
|
"Description": "set_file_metadata in xattr.c in GNU Wget before 1.20.1 stores a file's origin URL in the user.xdg.origin.url metadata attribute of the extended attributes of the downloaded file, which allows local users to obtain sensitive information (e.g., credentials contained in the URL) by reading this attribute, as demonstrated by getfattr. This also applies to Referer information in the user.xdg.referrer.url metadata attribute. According to 2016-07-22 in the Wget ChangeLog, user.xdg.origin.url was partially based on the behavior of fwrite_xattr in tool_xattr.c in curl.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -649,6 +674,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20534",
|
||||||
"Title": "libsolv: illegal address access in pool_whatprovides in src/pool.h",
|
"Title": "libsolv: illegal address access in pool_whatprovides in src/pool.h",
|
||||||
"Description": "** DISPUTED ** There is an illegal address access at ext/testcase.c in libsolv.a in libsolv through 0.7.2 that will cause a denial of service. NOTE: third parties dispute this issue stating that the issue affects the test suite and not the underlying library. It cannot be exploited in any real-world application.",
|
"Description": "** DISPUTED ** There is an illegal address access at ext/testcase.c in libsolv.a in libsolv through 0.7.2 that will cause a denial of service. NOTE: third parties dispute this issue stating that the issue affects the test suite and not the underlying library. It cannot be exploited in any real-world application.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -672,6 +698,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3817",
|
||||||
"Title": "libcomps: use after free when merging two objmrtrees",
|
"Title": "libcomps: use after free when merging two objmrtrees",
|
||||||
"Description": "A use-after-free flaw has been discovered in libcomps before version 0.1.10 in the way ObjMRTrees are merged. An attacker, who is able to make an application read a crafted comps XML file, may be able to crash the application or execute malicious code.",
|
"Description": "A use-after-free flaw has been discovered in libcomps before version 0.1.10 in the way ObjMRTrees are merged. An attacker, who is able to make an application read a crafted comps XML file, may be able to crash the application or execute malicious code.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -692,6 +719,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20534",
|
||||||
"Title": "libsolv: illegal address access in pool_whatprovides in src/pool.h",
|
"Title": "libsolv: illegal address access in pool_whatprovides in src/pool.h",
|
||||||
"Description": "** DISPUTED ** There is an illegal address access at ext/testcase.c in libsolv.a in libsolv through 0.7.2 that will cause a denial of service. NOTE: third parties dispute this issue stating that the issue affects the test suite and not the underlying library. It cannot be exploited in any real-world application.",
|
"Description": "** DISPUTED ** There is an illegal address access at ext/testcase.c in libsolv.a in libsolv through 0.7.2 that will cause a denial of service. NOTE: third parties dispute this issue stating that the issue affects the test suite and not the underlying library. It cannot be exploited in any real-world application.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -715,6 +743,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3817",
|
||||||
"Title": "libcomps: use after free when merging two objmrtrees",
|
"Title": "libcomps: use after free when merging two objmrtrees",
|
||||||
"Description": "A use-after-free flaw has been discovered in libcomps before version 0.1.10 in the way ObjMRTrees are merged. An attacker, who is able to make an application read a crafted comps XML file, may be able to crash the application or execute malicious code.",
|
"Description": "A use-after-free flaw has been discovered in libcomps before version 0.1.10 in the way ObjMRTrees are merged. An attacker, who is able to make an application read a crafted comps XML file, may be able to crash the application or execute malicious code.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -735,6 +764,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20534",
|
||||||
"Title": "libsolv: illegal address access in pool_whatprovides in src/pool.h",
|
"Title": "libsolv: illegal address access in pool_whatprovides in src/pool.h",
|
||||||
"Description": "** DISPUTED ** There is an illegal address access at ext/testcase.c in libsolv.a in libsolv through 0.7.2 that will cause a denial of service. NOTE: third parties dispute this issue stating that the issue affects the test suite and not the underlying library. It cannot be exploited in any real-world application.",
|
"Description": "** DISPUTED ** There is an illegal address access at ext/testcase.c in libsolv.a in libsolv through 0.7.2 that will cause a denial of service. NOTE: third parties dispute this issue stating that the issue affects the test suite and not the underlying library. It cannot be exploited in any real-world application.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -758,6 +788,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3817",
|
||||||
"Title": "libcomps: use after free when merging two objmrtrees",
|
"Title": "libcomps: use after free when merging two objmrtrees",
|
||||||
"Description": "A use-after-free flaw has been discovered in libcomps before version 0.1.10 in the way ObjMRTrees are merged. An attacker, who is able to make an application read a crafted comps XML file, may be able to crash the application or execute malicious code.",
|
"Description": "A use-after-free flaw has been discovered in libcomps before version 0.1.10 in the way ObjMRTrees are merged. An attacker, who is able to make an application read a crafted comps XML file, may be able to crash the application or execute malicious code.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -778,6 +809,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-6706",
|
||||||
"Title": "lua: use-after-free in lua_upvaluejoin in lapi.c resulting in denial of service",
|
"Title": "lua: use-after-free in lua_upvaluejoin in lapi.c resulting in denial of service",
|
||||||
"Description": "Lua 5.3.5 has a use-after-free in lua_upvaluejoin in lapi.c. For example, a crash outcome might be achieved by an attacker who is able to trigger a debug.upvaluejoin call in which the arguments have certain relationships.",
|
"Description": "Lua 5.3.5 has a use-after-free in lua_upvaluejoin in lapi.c. For example, a crash outcome might be achieved by an attacker who is able to trigger a debug.upvaluejoin call in which the arguments have certain relationships.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -799,6 +831,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20534",
|
||||||
"Title": "libsolv: illegal address access in pool_whatprovides in src/pool.h",
|
"Title": "libsolv: illegal address access in pool_whatprovides in src/pool.h",
|
||||||
"Description": "** DISPUTED ** There is an illegal address access at ext/testcase.c in libsolv.a in libsolv through 0.7.2 that will cause a denial of service. NOTE: third parties dispute this issue stating that the issue affects the test suite and not the underlying library. It cannot be exploited in any real-world application.",
|
"Description": "** DISPUTED ** There is an illegal address access at ext/testcase.c in libsolv.a in libsolv through 0.7.2 that will cause a denial of service. NOTE: third parties dispute this issue stating that the issue affects the test suite and not the underlying library. It cannot be exploited in any real-world application.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -822,6 +855,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3817",
|
||||||
"Title": "libcomps: use after free when merging two objmrtrees",
|
"Title": "libcomps: use after free when merging two objmrtrees",
|
||||||
"Description": "A use-after-free flaw has been discovered in libcomps before version 0.1.10 in the way ObjMRTrees are merged. An attacker, who is able to make an application read a crafted comps XML file, may be able to crash the application or execute malicious code.",
|
"Description": "A use-after-free flaw has been discovered in libcomps before version 0.1.10 in the way ObjMRTrees are merged. An attacker, who is able to make an application read a crafted comps XML file, may be able to crash the application or execute malicious code.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -842,6 +876,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0734",
|
||||||
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
"Title": "openssl: timing side channel attack in the DSA signature algorithm",
|
||||||
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
"Description": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.1a (Affected 1.1.1). Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.0.2q (Affected 1.0.2-1.0.2p).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -877,6 +912,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-0735",
|
||||||
"Title": "openssl: timing side channel attack in the ECDSA signature generation",
|
"Title": "openssl: timing side channel attack in the ECDSA signature generation",
|
||||||
"Description": "The OpenSSL ECDSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.1.1a (Affected 1.1.1).",
|
"Description": "The OpenSSL ECDSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key. Fixed in OpenSSL 1.1.0j (Affected 1.1.0-1.1.0i). Fixed in OpenSSL 1.1.1a (Affected 1.1.1).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -908,6 +944,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1543",
|
||||||
"Title": "openssl: ChaCha20-Poly1305 with long nonces",
|
"Title": "openssl: ChaCha20-Poly1305 with long nonces",
|
||||||
"Description": "ChaCha20-Poly1305 is an AEAD cipher, and requires a unique nonce input for every encryption operation. RFC 7539 specifies that the nonce value (IV) should be 96 bits (12 bytes). OpenSSL allows a variable nonce length and front pads the nonce with 0 bytes if it is less than 12 bytes. However it also incorrectly allows a nonce to be set of up to 16 bytes. In this case only the last 12 bytes are significant and any additional leading bytes are ignored. It is a requirement of using this cipher that nonce values are unique. Messages encrypted using a reused nonce value are susceptible to serious confidentiality and integrity attacks. If an application changes the default nonce length to be longer than 12 bytes and then makes a change to the leading bytes of the nonce expecting the new value to be a new unique nonce then such an application could inadvertently encrypt messages with a reused nonce. Additionally the ignored bytes in a long nonce are not covered by the integrity guarantee of this cipher. Any application that relies on the integrity of these ignored leading bytes of a long nonce may be further affected. Any OpenSSL internal use of this cipher, including in SSL/TLS, is safe because no such use sets such a long nonce value. However user applications that use this cipher directly and set a non-default nonce length to be longer than 12 bytes may be vulnerable. OpenSSL versions 1.1.1 and 1.1.0 are affected by this issue. Due to the limited scope of affected deployments this has been assessed as low severity and therefore we are not creating new releases at this time. Fixed in OpenSSL 1.1.1c (Affected 1.1.1-1.1.1b). Fixed in OpenSSL 1.1.0k (Affected 1.1.0-1.1.0j).",
|
"Description": "ChaCha20-Poly1305 is an AEAD cipher, and requires a unique nonce input for every encryption operation. RFC 7539 specifies that the nonce value (IV) should be 96 bits (12 bytes). OpenSSL allows a variable nonce length and front pads the nonce with 0 bytes if it is less than 12 bytes. However it also incorrectly allows a nonce to be set of up to 16 bytes. In this case only the last 12 bytes are significant and any additional leading bytes are ignored. It is a requirement of using this cipher that nonce values are unique. Messages encrypted using a reused nonce value are susceptible to serious confidentiality and integrity attacks. If an application changes the default nonce length to be longer than 12 bytes and then makes a change to the leading bytes of the nonce expecting the new value to be a new unique nonce then such an application could inadvertently encrypt messages with a reused nonce. Additionally the ignored bytes in a long nonce are not covered by the integrity guarantee of this cipher. Any application that relies on the integrity of these ignored leading bytes of a long nonce may be further affected. Any OpenSSL internal use of this cipher, including in SSL/TLS, is safe because no such use sets such a long nonce value. However user applications that use this cipher directly and set a non-default nonce length to be longer than 12 bytes may be vulnerable. OpenSSL versions 1.1.1 and 1.1.0 are affected by this issue. Due to the limited scope of affected deployments this has been assessed as low severity and therefore we are not creating new releases at this time. Fixed in OpenSSL 1.1.1c (Affected 1.1.1-1.1.1b). Fixed in OpenSSL 1.1.0k (Affected 1.1.0-1.1.0j).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -929,6 +966,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13734",
|
||||||
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
"Title": "sqlite: fts3: improve shadow table corruption detection",
|
||||||
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
"Description": "Out of bounds write in SQLite in Google Chrome prior to 79.0.3945.79 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -952,6 +990,7 @@
|
|||||||
"Layer": {
|
"Layer": {
|
||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1712",
|
||||||
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
||||||
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -969,6 +1008,7 @@
|
|||||||
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
"DiffID": "sha256:e3196b7450602f5547c52d197255dfa96a006ea9c52c19bf3ba2d5412a4b161e"
|
||||||
},
|
},
|
||||||
"SeveritySource": "nvd",
|
"SeveritySource": "nvd",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15718",
|
||||||
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
||||||
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
|
|||||||
23
integration/testdata/photon-10.json.golden
vendored
23
integration/testdata/photon-10.json.golden
vendored
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18276",
|
||||||
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
||||||
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -30,6 +31,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-6711",
|
||||||
"Title": "bash: heap-based buffer overflow during echo of unsupported characters",
|
"Title": "bash: heap-based buffer overflow during echo of unsupported characters",
|
||||||
"Description": "A heap-based buffer overflow exists in GNU Bash before 4.3 when wide characters, not supported by the current locale set in the LC_CTYPE environment variable, are printed through the echo built-in function. A local attacker, who can provide data to print through the \"echo -e\" built-in function, may use this flaw to crash a script or execute code with the privileges of the bash process. This occurs because ansicstr() in lib/sh/strtrans.c mishandles u32cconv().",
|
"Description": "A heap-based buffer overflow exists in GNU Bash before 4.3 when wide characters, not supported by the current locale set in the LC_CTYPE environment variable, are printed through the echo built-in function. A local attacker, who can provide data to print through the \"echo -e\" built-in function, may use this flaw to crash a script or execute code with the privileges of the bash process. This occurs because ansicstr() in lib/sh/strtrans.c mishandles u32cconv().",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -49,6 +51,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5481",
|
||||||
"Title": "curl: double free due to subsequent call of realloc()",
|
"Title": "curl: double free due to subsequent call of realloc()",
|
||||||
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -70,6 +73,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -93,6 +97,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18218",
|
||||||
"Title": "file: heap-based buffer overflow in cdf_read_property_info in cdf.c",
|
"Title": "file: heap-based buffer overflow in cdf_read_property_info in cdf.c",
|
||||||
"Description": "cdf_read_property_info in cdf.c in file through 5.37 does not restrict the number of CDF_VECTOR elements, which allows a heap-based buffer overflow (4-byte out-of-bounds write).",
|
"Description": "cdf_read_property_info in cdf.c in file through 5.37 does not restrict the number of CDF_VECTOR elements, which allows a heap-based buffer overflow (4-byte out-of-bounds write).",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -117,6 +122,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20387",
|
||||||
"Title": "libsolv: out-of-bounds read in repodata_schema2id in repodata.c",
|
"Title": "libsolv: out-of-bounds read in repodata_schema2id in repodata.c",
|
||||||
"Description": "repodata_schema2id in repodata.c in libsolv before 0.7.6 has a heap-based buffer over-read via a last schema whose length is less than the length of the input schema.",
|
"Description": "repodata_schema2id in repodata.c in libsolv before 0.7.6 has a heap-based buffer over-read via a last schema whose length is less than the length of the input schema.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -136,6 +142,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17498",
|
||||||
"Title": "libssh2: integer overflow in SSH_MSG_DISCONNECT logic in packet.c",
|
"Title": "libssh2: integer overflow in SSH_MSG_DISCONNECT logic in packet.c",
|
||||||
"Description": "In libssh2 v1.9.0 and earlier versions, the SSH_MSG_DISCONNECT logic in packet.c has an integer overflow in a bounds check, enabling an attacker to specify an arbitrary (out-of-bounds) offset for a subsequent memory read. A crafted SSH server may be able to disclose sensitive information or cause a denial of service condition on the client system when a user connects to the server.",
|
"Description": "In libssh2 v1.9.0 and earlier versions, the SSH_MSG_DISCONNECT logic in packet.c has an integer overflow in a bounds check, enabling an attacker to specify an arbitrary (out-of-bounds) offset for a subsequent memory read. A crafted SSH server may be able to disclose sensitive information or cause a denial of service condition on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -159,6 +166,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -179,6 +187,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -199,6 +208,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -223,6 +233,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -250,6 +261,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -273,6 +285,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19317",
|
||||||
"Title": "sqlite: omits bits from the colUsed bitmask in the case of a generated column",
|
"Title": "sqlite: omits bits from the colUsed bitmask in the case of a generated column",
|
||||||
"Description": "lookupName in resolve.c in SQLite 3.30.1 omits bits from the colUsed bitmask in the case of a generated column, which allows attackers to cause a denial of service or possibly have unspecified other impact.",
|
"Description": "lookupName in resolve.c in SQLite 3.30.1 omits bits from the colUsed bitmask in the case of a generated column, which allows attackers to cause a denial of service or possibly have unspecified other impact.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -291,6 +304,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19603",
|
||||||
"Title": "sqlite: mishandles certain SELECT statements with a nonexistent VIEW, leading to DoS",
|
"Title": "sqlite: mishandles certain SELECT statements with a nonexistent VIEW, leading to DoS",
|
||||||
"Description": "SQLite 3.30.1 mishandles certain SELECT statements with a nonexistent VIEW, leading to an application crash.",
|
"Description": "SQLite 3.30.1 mishandles certain SELECT statements with a nonexistent VIEW, leading to an application crash.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -309,6 +323,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19646",
|
||||||
"Title": "sqlite: pragma.c mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns",
|
"Title": "sqlite: pragma.c mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns",
|
||||||
"Description": "pragma.c in SQLite through 3.30.1 mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns.",
|
"Description": "pragma.c in SQLite through 3.30.1 mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -328,6 +343,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20218",
|
||||||
"Title": "sqlite: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error",
|
"Title": "sqlite: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error",
|
||||||
"Description": "selectExpander in select.c in SQLite 3.30.1 proceeds with WITH stack unwinding even after a parsing error.",
|
"Description": "selectExpander in select.c in SQLite 3.30.1 proceeds with WITH stack unwinding even after a parsing error.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -345,6 +361,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19244",
|
||||||
"Title": "sqlite: allows a crash if a sub-select uses both DISTINCT and window functions and also has certain ORDER BY usage",
|
"Title": "sqlite: allows a crash if a sub-select uses both DISTINCT and window functions and also has certain ORDER BY usage",
|
||||||
"Description": "sqlite3Select in select.c in SQLite 3.30.1 allows a crash if a sub-select uses both DISTINCT and window functions, and also has certain ORDER BY usage.",
|
"Description": "sqlite3Select in select.c in SQLite 3.30.1 allows a crash if a sub-select uses both DISTINCT and window functions, and also has certain ORDER BY usage.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -362,6 +379,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19880",
|
||||||
"Title": "sqlite: invalid pointer dereference in exprListAppendList in window.c",
|
"Title": "sqlite: invalid pointer dereference in exprListAppendList in window.c",
|
||||||
"Description": "exprListAppendList in window.c in SQLite 3.30.1 allows attackers to trigger an invalid pointer dereference because constant integer values in ORDER BY clauses of window definitions are mishandled.",
|
"Description": "exprListAppendList in window.c in SQLite 3.30.1 allows attackers to trigger an invalid pointer dereference because constant integer values in ORDER BY clauses of window definitions are mishandled.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -380,6 +398,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19923",
|
||||||
"Title": "sqlite: mishandling of certain uses of SELECT DISTINCT involving a LEFT JOIN in flattenSubquery in select.c leads to a NULL pointer dereference",
|
"Title": "sqlite: mishandling of certain uses of SELECT DISTINCT involving a LEFT JOIN in flattenSubquery in select.c leads to a NULL pointer dereference",
|
||||||
"Description": "flattenSubquery in select.c in SQLite 3.30.1 mishandles certain uses of SELECT DISTINCT involving a LEFT JOIN in which the right-hand side is a view. This can cause a NULL pointer dereference (or incorrect results).",
|
"Description": "flattenSubquery in select.c in SQLite 3.30.1 mishandles certain uses of SELECT DISTINCT involving a LEFT JOIN in which the right-hand side is a view. This can cause a NULL pointer dereference (or incorrect results).",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -398,6 +417,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19925",
|
||||||
"Title": "sqlite: zipfileUpdate in ext/misc/zipfile.c mishandles a NULL pathname during an update of a ZIP archive",
|
"Title": "sqlite: zipfileUpdate in ext/misc/zipfile.c mishandles a NULL pathname during an update of a ZIP archive",
|
||||||
"Description": "zipfileUpdate in ext/misc/zipfile.c in SQLite 3.30.1 mishandles a NULL pathname during an update of a ZIP archive.",
|
"Description": "zipfileUpdate in ext/misc/zipfile.c in SQLite 3.30.1 mishandles a NULL pathname during an update of a ZIP archive.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -416,6 +436,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19926",
|
||||||
"Title": "sqlite: error mishandling because of incomplete fix of CVE-2019-19880",
|
"Title": "sqlite: error mishandling because of incomplete fix of CVE-2019-19880",
|
||||||
"Description": "multiSelect in select.c in SQLite 3.30.1 mishandles certain errors during parsing, as demonstrated by errors from sqlite3WindowRewrite() calls. NOTE: this vulnerability exists because of an incomplete fix for CVE-2019-19880.",
|
"Description": "multiSelect in select.c in SQLite 3.30.1 mishandles certain errors during parsing, as demonstrated by errors from sqlite3WindowRewrite() calls. NOTE: this vulnerability exists because of an incomplete fix for CVE-2019-19880.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -434,6 +455,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19959",
|
||||||
"Title": "sqlite: mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames",
|
"Title": "sqlite: mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames",
|
||||||
"Description": "ext/misc/zipfile.c in SQLite 3.30.1 mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames, leading to a memory-management error that can be detected by (for example) valgrind.",
|
"Description": "ext/misc/zipfile.c in SQLite 3.30.1 mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames, leading to a memory-management error that can be detected by (for example) valgrind.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -452,6 +474,7 @@
|
|||||||
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
"DiffID": "sha256:9740df1ac227d21600b22524f869c9bec2d8c13446d1c8579a6195b6d855ae2b"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19645",
|
||||||
"Title": "sqlite: infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements",
|
"Title": "sqlite: infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements",
|
||||||
"Description": "alter.c in SQLite through 3.30.1 allows attackers to trigger infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements.",
|
"Description": "alter.c in SQLite through 3.30.1 allows attackers to trigger infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
|
|||||||
29
integration/testdata/photon-20.json.golden
vendored
29
integration/testdata/photon-20.json.golden
vendored
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18276",
|
||||||
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
||||||
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -30,6 +31,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5481",
|
||||||
"Title": "curl: double free due to subsequent call of realloc()",
|
"Title": "curl: double free due to subsequent call of realloc()",
|
||||||
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -51,6 +53,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -74,6 +77,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16890",
|
||||||
"Title": "curl: NTLM type-2 heap out-of-bounds buffer read",
|
"Title": "curl: NTLM type-2 heap out-of-bounds buffer read",
|
||||||
"Description": "libcurl versions from 7.36.0 to before 7.64.0 is vulnerable to a heap buffer out-of-bounds read. The function handling incoming NTLM type-2 messages (`lib/vauth/ntlm.c:ntlm_decode_type2_target`) does not validate incoming data correctly and is subject to an integer overflow vulnerability. Using that overflow, a malicious or broken NTLM server could trick libcurl to accept a bad length + offset combination that would lead to a buffer read out-of-bounds.",
|
"Description": "libcurl versions from 7.36.0 to before 7.64.0 is vulnerable to a heap buffer out-of-bounds read. The function handling incoming NTLM type-2 messages (`lib/vauth/ntlm.c:ntlm_decode_type2_target`) does not validate incoming data correctly and is subject to an integer overflow vulnerability. Using that overflow, a malicious or broken NTLM server could trick libcurl to accept a bad length + offset combination that would lead to a buffer read out-of-bounds.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -102,6 +106,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5481",
|
||||||
"Title": "curl: double free due to subsequent call of realloc()",
|
"Title": "curl: double free due to subsequent call of realloc()",
|
||||||
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -123,6 +128,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -146,6 +152,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16890",
|
||||||
"Title": "curl: NTLM type-2 heap out-of-bounds buffer read",
|
"Title": "curl: NTLM type-2 heap out-of-bounds buffer read",
|
||||||
"Description": "libcurl versions from 7.36.0 to before 7.64.0 is vulnerable to a heap buffer out-of-bounds read. The function handling incoming NTLM type-2 messages (`lib/vauth/ntlm.c:ntlm_decode_type2_target`) does not validate incoming data correctly and is subject to an integer overflow vulnerability. Using that overflow, a malicious or broken NTLM server could trick libcurl to accept a bad length + offset combination that would lead to a buffer read out-of-bounds.",
|
"Description": "libcurl versions from 7.36.0 to before 7.64.0 is vulnerable to a heap buffer out-of-bounds read. The function handling incoming NTLM type-2 messages (`lib/vauth/ntlm.c:ntlm_decode_type2_target`) does not validate incoming data correctly and is subject to an integer overflow vulnerability. Using that overflow, a malicious or broken NTLM server could trick libcurl to accept a bad length + offset combination that would lead to a buffer read out-of-bounds.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -174,6 +181,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -195,6 +203,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -216,6 +225,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20843",
|
||||||
"Title": "expat: large number of colons in input makes parser consume high amount of resources, leading to DoS",
|
"Title": "expat: large number of colons in input makes parser consume high amount of resources, leading to DoS",
|
||||||
"Description": "In libexpat in Expat before 2.2.7, XML input including XML names that contain a large number of colons could make the XML parser consume a high amount of RAM and CPU resources while processing (enough to be usable for denial-of-service attacks).",
|
"Description": "In libexpat in Expat before 2.2.7, XML input including XML names that contain a large number of colons could make the XML parser consume a high amount of RAM and CPU resources while processing (enough to be usable for denial-of-service attacks).",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -244,6 +254,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20387",
|
||||||
"Title": "libsolv: out-of-bounds read in repodata_schema2id in repodata.c",
|
"Title": "libsolv: out-of-bounds read in repodata_schema2id in repodata.c",
|
||||||
"Description": "repodata_schema2id in repodata.c in libsolv before 0.7.6 has a heap-based buffer over-read via a last schema whose length is less than the length of the input schema.",
|
"Description": "repodata_schema2id in repodata.c in libsolv before 0.7.6 has a heap-based buffer over-read via a last schema whose length is less than the length of the input schema.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -263,6 +274,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13115",
|
||||||
"Title": "libssh2: integer overflow in kex_method_diffie_hellman_group_exchange_sha256_key_exchange in kex.c leads to out-of-bounds write",
|
"Title": "libssh2: integer overflow in kex_method_diffie_hellman_group_exchange_sha256_key_exchange in kex.c leads to out-of-bounds write",
|
||||||
"Description": "In libssh2 before 1.9.0, kex_method_diffie_hellman_group_exchange_sha256_key_exchange in kex.c has an integer overflow that could lead to an out-of-bounds read in the way packets are read from the server. A remote attacker who compromises a SSH server may be able to disclose sensitive information or cause a denial of service condition on the client system when a user connects to the server. This is related to an _libssh2_check_length mistake, and is different from the various issues fixed in 1.8.1, such as CVE-2019-3855.",
|
"Description": "In libssh2 before 1.9.0, kex_method_diffie_hellman_group_exchange_sha256_key_exchange in kex.c has an integer overflow that could lead to an out-of-bounds read in the way packets are read from the server. A remote attacker who compromises a SSH server may be able to disclose sensitive information or cause a denial of service condition on the client system when a user connects to the server. This is related to an _libssh2_check_length mistake, and is different from the various issues fixed in 1.8.1, such as CVE-2019-3855.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -284,6 +296,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17498",
|
||||||
"Title": "libssh2: integer overflow in SSH_MSG_DISCONNECT logic in packet.c",
|
"Title": "libssh2: integer overflow in SSH_MSG_DISCONNECT logic in packet.c",
|
||||||
"Description": "In libssh2 v1.9.0 and earlier versions, the SSH_MSG_DISCONNECT logic in packet.c has an integer overflow in a bounds check, enabling an attacker to specify an arbitrary (out-of-bounds) offset for a subsequent memory read. A crafted SSH server may be able to disclose sensitive information or cause a denial of service condition on the client system when a user connects to the server.",
|
"Description": "In libssh2 v1.9.0 and earlier versions, the SSH_MSG_DISCONNECT logic in packet.c has an integer overflow in a bounds check, enabling an attacker to specify an arbitrary (out-of-bounds) offset for a subsequent memory read. A crafted SSH server may be able to disclose sensitive information or cause a denial of service condition on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -307,6 +320,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -327,6 +341,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -347,6 +362,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -371,6 +387,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -394,6 +411,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19317",
|
||||||
"Title": "sqlite: omits bits from the colUsed bitmask in the case of a generated column",
|
"Title": "sqlite: omits bits from the colUsed bitmask in the case of a generated column",
|
||||||
"Description": "lookupName in resolve.c in SQLite 3.30.1 omits bits from the colUsed bitmask in the case of a generated column, which allows attackers to cause a denial of service or possibly have unspecified other impact.",
|
"Description": "lookupName in resolve.c in SQLite 3.30.1 omits bits from the colUsed bitmask in the case of a generated column, which allows attackers to cause a denial of service or possibly have unspecified other impact.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -412,6 +430,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19603",
|
||||||
"Title": "sqlite: mishandles certain SELECT statements with a nonexistent VIEW, leading to DoS",
|
"Title": "sqlite: mishandles certain SELECT statements with a nonexistent VIEW, leading to DoS",
|
||||||
"Description": "SQLite 3.30.1 mishandles certain SELECT statements with a nonexistent VIEW, leading to an application crash.",
|
"Description": "SQLite 3.30.1 mishandles certain SELECT statements with a nonexistent VIEW, leading to an application crash.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -430,6 +449,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19646",
|
||||||
"Title": "sqlite: pragma.c mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns",
|
"Title": "sqlite: pragma.c mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns",
|
||||||
"Description": "pragma.c in SQLite through 3.30.1 mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns.",
|
"Description": "pragma.c in SQLite through 3.30.1 mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -449,6 +469,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20218",
|
||||||
"Title": "sqlite: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error",
|
"Title": "sqlite: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error",
|
||||||
"Description": "selectExpander in select.c in SQLite 3.30.1 proceeds with WITH stack unwinding even after a parsing error.",
|
"Description": "selectExpander in select.c in SQLite 3.30.1 proceeds with WITH stack unwinding even after a parsing error.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -466,6 +487,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16168",
|
||||||
"Title": "sqlite: division by zero in whereLoopAddBtreeIndex in sqlite3.c",
|
"Title": "sqlite: division by zero in whereLoopAddBtreeIndex in sqlite3.c",
|
||||||
"Description": "In SQLite through 3.29.0, whereLoopAddBtreeIndex in sqlite3.c can crash a browser or other application because of missing validation of a sqlite_stat1 sz field, aka a \"severe division by zero in the query planner.\"",
|
"Description": "In SQLite through 3.29.0, whereLoopAddBtreeIndex in sqlite3.c can crash a browser or other application because of missing validation of a sqlite_stat1 sz field, aka a \"severe division by zero in the query planner.\"",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -491,6 +513,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19244",
|
||||||
"Title": "sqlite: allows a crash if a sub-select uses both DISTINCT and window functions and also has certain ORDER BY usage",
|
"Title": "sqlite: allows a crash if a sub-select uses both DISTINCT and window functions and also has certain ORDER BY usage",
|
||||||
"Description": "sqlite3Select in select.c in SQLite 3.30.1 allows a crash if a sub-select uses both DISTINCT and window functions, and also has certain ORDER BY usage.",
|
"Description": "sqlite3Select in select.c in SQLite 3.30.1 allows a crash if a sub-select uses both DISTINCT and window functions, and also has certain ORDER BY usage.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -508,6 +531,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19880",
|
||||||
"Title": "sqlite: invalid pointer dereference in exprListAppendList in window.c",
|
"Title": "sqlite: invalid pointer dereference in exprListAppendList in window.c",
|
||||||
"Description": "exprListAppendList in window.c in SQLite 3.30.1 allows attackers to trigger an invalid pointer dereference because constant integer values in ORDER BY clauses of window definitions are mishandled.",
|
"Description": "exprListAppendList in window.c in SQLite 3.30.1 allows attackers to trigger an invalid pointer dereference because constant integer values in ORDER BY clauses of window definitions are mishandled.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -526,6 +550,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19923",
|
||||||
"Title": "sqlite: mishandling of certain uses of SELECT DISTINCT involving a LEFT JOIN in flattenSubquery in select.c leads to a NULL pointer dereference",
|
"Title": "sqlite: mishandling of certain uses of SELECT DISTINCT involving a LEFT JOIN in flattenSubquery in select.c leads to a NULL pointer dereference",
|
||||||
"Description": "flattenSubquery in select.c in SQLite 3.30.1 mishandles certain uses of SELECT DISTINCT involving a LEFT JOIN in which the right-hand side is a view. This can cause a NULL pointer dereference (or incorrect results).",
|
"Description": "flattenSubquery in select.c in SQLite 3.30.1 mishandles certain uses of SELECT DISTINCT involving a LEFT JOIN in which the right-hand side is a view. This can cause a NULL pointer dereference (or incorrect results).",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -544,6 +569,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19925",
|
||||||
"Title": "sqlite: zipfileUpdate in ext/misc/zipfile.c mishandles a NULL pathname during an update of a ZIP archive",
|
"Title": "sqlite: zipfileUpdate in ext/misc/zipfile.c mishandles a NULL pathname during an update of a ZIP archive",
|
||||||
"Description": "zipfileUpdate in ext/misc/zipfile.c in SQLite 3.30.1 mishandles a NULL pathname during an update of a ZIP archive.",
|
"Description": "zipfileUpdate in ext/misc/zipfile.c in SQLite 3.30.1 mishandles a NULL pathname during an update of a ZIP archive.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -562,6 +588,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19926",
|
||||||
"Title": "sqlite: error mishandling because of incomplete fix of CVE-2019-19880",
|
"Title": "sqlite: error mishandling because of incomplete fix of CVE-2019-19880",
|
||||||
"Description": "multiSelect in select.c in SQLite 3.30.1 mishandles certain errors during parsing, as demonstrated by errors from sqlite3WindowRewrite() calls. NOTE: this vulnerability exists because of an incomplete fix for CVE-2019-19880.",
|
"Description": "multiSelect in select.c in SQLite 3.30.1 mishandles certain errors during parsing, as demonstrated by errors from sqlite3WindowRewrite() calls. NOTE: this vulnerability exists because of an incomplete fix for CVE-2019-19880.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -580,6 +607,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19959",
|
||||||
"Title": "sqlite: mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames",
|
"Title": "sqlite: mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames",
|
||||||
"Description": "ext/misc/zipfile.c in SQLite 3.30.1 mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames, leading to a memory-management error that can be detected by (for example) valgrind.",
|
"Description": "ext/misc/zipfile.c in SQLite 3.30.1 mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames, leading to a memory-management error that can be detected by (for example) valgrind.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -598,6 +626,7 @@
|
|||||||
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
"DiffID": "sha256:41cdb0d109d6a7cf33d6a439c3d6e586d7dba0be84606066693ea4573a4a9b66"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19645",
|
||||||
"Title": "sqlite: infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements",
|
"Title": "sqlite: infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements",
|
||||||
"Description": "alter.c in SQLite through 3.30.1 allows attackers to trigger infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements.",
|
"Description": "alter.c in SQLite through 3.30.1 allows attackers to trigger infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
|
|||||||
17
integration/testdata/photon-30.json.golden
vendored
17
integration/testdata/photon-30.json.golden
vendored
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18276",
|
||||||
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
||||||
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -30,6 +31,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5481",
|
||||||
"Title": "curl: double free due to subsequent call of realloc()",
|
"Title": "curl: double free due to subsequent call of realloc()",
|
||||||
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -51,6 +53,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -74,6 +77,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5481",
|
||||||
"Title": "curl: double free due to subsequent call of realloc()",
|
"Title": "curl: double free due to subsequent call of realloc()",
|
||||||
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
"Description": "Double-free vulnerability in the FTP-kerberos code in cURL 7.52.0 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -95,6 +99,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5482",
|
||||||
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
"Title": "curl: heap buffer overflow in function tftp_receive_packet()",
|
||||||
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
"Description": "Heap buffer overflow in the TFTP protocol handler in cURL 7.19.4 to 7.65.3.",
|
||||||
"Severity": "CRITICAL",
|
"Severity": "CRITICAL",
|
||||||
@@ -118,6 +123,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -139,6 +145,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -160,6 +167,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20387",
|
||||||
"Title": "libsolv: out-of-bounds read in repodata_schema2id in repodata.c",
|
"Title": "libsolv: out-of-bounds read in repodata_schema2id in repodata.c",
|
||||||
"Description": "repodata_schema2id in repodata.c in libsolv before 0.7.6 has a heap-based buffer over-read via a last schema whose length is less than the length of the input schema.",
|
"Description": "repodata_schema2id in repodata.c in libsolv before 0.7.6 has a heap-based buffer over-read via a last schema whose length is less than the length of the input schema.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -179,6 +187,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17498",
|
||||||
"Title": "libssh2: integer overflow in SSH_MSG_DISCONNECT logic in packet.c",
|
"Title": "libssh2: integer overflow in SSH_MSG_DISCONNECT logic in packet.c",
|
||||||
"Description": "In libssh2 v1.9.0 and earlier versions, the SSH_MSG_DISCONNECT logic in packet.c has an integer overflow in a bounds check, enabling an attacker to specify an arbitrary (out-of-bounds) offset for a subsequent memory read. A crafted SSH server may be able to disclose sensitive information or cause a denial of service condition on the client system when a user connects to the server.",
|
"Description": "In libssh2 v1.9.0 and earlier versions, the SSH_MSG_DISCONNECT logic in packet.c has an integer overflow in a bounds check, enabling an attacker to specify an arbitrary (out-of-bounds) offset for a subsequent memory read. A crafted SSH server may be able to disclose sensitive information or cause a denial of service condition on the client system when a user connects to the server.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -202,6 +211,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1547",
|
||||||
"Title": "openssl: side-channel weak encryption vulnerability",
|
"Title": "openssl: side-channel weak encryption vulnerability",
|
||||||
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -226,6 +236,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551",
|
||||||
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
"Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64",
|
||||||
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
"Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -253,6 +264,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1563",
|
||||||
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
"Title": "openssl: information disclosure in PKCS7_dataDecode and CMS_decrypt_set1_pkey",
|
||||||
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
"Description": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt. Fixed in OpenSSL 1.1.1d (Affected 1.1.1-1.1.1c). Fixed in OpenSSL 1.1.0l (Affected 1.1.0-1.1.0k). Fixed in OpenSSL 1.0.2t (Affected 1.0.2-1.0.2s).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -276,6 +288,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-16168",
|
||||||
"Title": "sqlite: division by zero in whereLoopAddBtreeIndex in sqlite3.c",
|
"Title": "sqlite: division by zero in whereLoopAddBtreeIndex in sqlite3.c",
|
||||||
"Description": "In SQLite through 3.29.0, whereLoopAddBtreeIndex in sqlite3.c can crash a browser or other application because of missing validation of a sqlite_stat1 sz field, aka a \"severe division by zero in the query planner.\"",
|
"Description": "In SQLite through 3.29.0, whereLoopAddBtreeIndex in sqlite3.c can crash a browser or other application because of missing validation of a sqlite_stat1 sz field, aka a \"severe division by zero in the query planner.\"",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -301,6 +314,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19244",
|
||||||
"Title": "sqlite: allows a crash if a sub-select uses both DISTINCT and window functions and also has certain ORDER BY usage",
|
"Title": "sqlite: allows a crash if a sub-select uses both DISTINCT and window functions and also has certain ORDER BY usage",
|
||||||
"Description": "sqlite3Select in select.c in SQLite 3.30.1 allows a crash if a sub-select uses both DISTINCT and window functions, and also has certain ORDER BY usage.",
|
"Description": "sqlite3Select in select.c in SQLite 3.30.1 allows a crash if a sub-select uses both DISTINCT and window functions, and also has certain ORDER BY usage.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -318,6 +332,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19923",
|
||||||
"Title": "sqlite: mishandling of certain uses of SELECT DISTINCT involving a LEFT JOIN in flattenSubquery in select.c leads to a NULL pointer dereference",
|
"Title": "sqlite: mishandling of certain uses of SELECT DISTINCT involving a LEFT JOIN in flattenSubquery in select.c leads to a NULL pointer dereference",
|
||||||
"Description": "flattenSubquery in select.c in SQLite 3.30.1 mishandles certain uses of SELECT DISTINCT involving a LEFT JOIN in which the right-hand side is a view. This can cause a NULL pointer dereference (or incorrect results).",
|
"Description": "flattenSubquery in select.c in SQLite 3.30.1 mishandles certain uses of SELECT DISTINCT involving a LEFT JOIN in which the right-hand side is a view. This can cause a NULL pointer dereference (or incorrect results).",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -336,6 +351,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19926",
|
||||||
"Title": "sqlite: error mishandling because of incomplete fix of CVE-2019-19880",
|
"Title": "sqlite: error mishandling because of incomplete fix of CVE-2019-19880",
|
||||||
"Description": "multiSelect in select.c in SQLite 3.30.1 mishandles certain errors during parsing, as demonstrated by errors from sqlite3WindowRewrite() calls. NOTE: this vulnerability exists because of an incomplete fix for CVE-2019-19880.",
|
"Description": "multiSelect in select.c in SQLite 3.30.1 mishandles certain errors during parsing, as demonstrated by errors from sqlite3WindowRewrite() calls. NOTE: this vulnerability exists because of an incomplete fix for CVE-2019-19880.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
@@ -354,6 +370,7 @@
|
|||||||
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
"DiffID": "sha256:0f379947a276b7b051643960392fa66c2f0cb493bc1dcd471abb5545005949fd"
|
||||||
},
|
},
|
||||||
"SeveritySource": "photon",
|
"SeveritySource": "photon",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19959",
|
||||||
"Title": "sqlite: mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames",
|
"Title": "sqlite: mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames",
|
||||||
"Description": "ext/misc/zipfile.c in SQLite 3.30.1 mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames, leading to a memory-management error that can be detected by (for example) valgrind.",
|
"Description": "ext/misc/zipfile.c in SQLite 3.30.1 mishandles certain uses of INSERT INTO in situations involving embedded '\\0' characters in filenames, leading to a memory-management error that can be detected by (for example) valgrind.",
|
||||||
"Severity": "HIGH",
|
"Severity": "HIGH",
|
||||||
|
|||||||
649
integration/testdata/ubi-7.json.golden
vendored
649
integration/testdata/ubi-7.json.golden
vendored
File diff suppressed because it is too large
Load Diff
184
integration/testdata/ubuntu-1604.json.golden
vendored
184
integration/testdata/ubuntu-1604.json.golden
vendored
File diff suppressed because it is too large
Load Diff
@@ -12,6 +12,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -54,6 +56,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -75,6 +78,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -96,6 +100,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -117,6 +122,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -138,6 +144,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13627",
|
||||||
"Title": "libgcrypt: ECDSA timing attack in the libgcrypt20 cryptographic library",
|
"Title": "libgcrypt: ECDSA timing attack in the libgcrypt20 cryptographic library",
|
||||||
"Description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.",
|
"Description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -161,6 +168,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12290",
|
||||||
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -179,6 +187,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18224",
|
||||||
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
||||||
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -201,6 +210,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -222,6 +232,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -243,6 +254,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15718",
|
||||||
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
||||||
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -266,6 +278,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1712",
|
||||||
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
||||||
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -283,6 +296,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386",
|
||||||
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
||||||
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -302,6 +316,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843",
|
||||||
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -321,6 +336,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844",
|
||||||
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -339,6 +355,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15718",
|
||||||
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
||||||
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -362,6 +379,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1712",
|
||||||
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
||||||
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -379,6 +397,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386",
|
||||||
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
||||||
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -398,6 +417,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843",
|
||||||
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -417,6 +437,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844",
|
||||||
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -435,6 +456,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11922",
|
||||||
"Description": "A race condition in the one-pass compression functions of Zstandard prior to version 1.3.8 could allow an attacker to write bytes out of bounds if an output buffer smaller than the recommended size was used.",
|
"Description": "A race condition in the one-pass compression functions of Zstandard prior to version 1.3.8 could allow an attacker to write bytes out of bounds if an output buffer smaller than the recommended size was used.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
"References": [
|
"References": [
|
||||||
|
|||||||
85
integration/testdata/ubuntu-1804.json.golden
vendored
85
integration/testdata/ubuntu-1804.json.golden
vendored
@@ -11,6 +11,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18276",
|
||||||
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
"Title": "bash: when effective UID is not equal to its real UID the saved UID is not dropped",
|
||||||
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
"Description": "An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support \"saved UID\" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use \"enable -f\" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -28,6 +29,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7738",
|
||||||
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
||||||
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -48,6 +50,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-2781",
|
||||||
"Title": "coreutils: Non-privileged session can escape to the parent session in chroot",
|
"Title": "coreutils: Non-privileged session can escape to the parent session in chroot",
|
||||||
"Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.",
|
"Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -64,6 +67,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-8283",
|
||||||
"Description": "dpkg-source in dpkg 1.3.0 through 1.18.23 is able to use a non-GNU patch program and does not offer a protection mechanism for blank-indented diff hunks, which allows remote attackers to conduct directory traversal attacks via a crafted Debian source package, as demonstrated by use of dpkg-source on NetBSD.",
|
"Description": "dpkg-source in dpkg 1.3.0 through 1.18.23 is able to use a non-GNU patch program and does not offer a protection mechanism for blank-indented diff hunks, which allows remote attackers to conduct directory traversal attacks via a crafted Debian source package, as demonstrated by use of dpkg-source on NetBSD.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -81,6 +85,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -102,6 +107,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -122,6 +128,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7738",
|
||||||
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
||||||
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -142,6 +149,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13050",
|
||||||
"Title": "GnuPG: interaction between the sks-keyserver code and GnuPG allows for a Certificate Spamming Attack which leads to persistent DoS",
|
"Title": "GnuPG: interaction between the sks-keyserver code and GnuPG allows for a Certificate Spamming Attack which leads to persistent DoS",
|
||||||
"Description": "Interaction between the sks-keyserver code through 1.2.0 of the SKS keyserver network, and GnuPG through 2.2.16, makes it risky to have a GnuPG keyserver configuration line referring to a host on the SKS keyserver network. Retrieving data from this network may cause a persistent denial of service, because of a Certificate Spamming Attack.",
|
"Description": "Interaction between the sks-keyserver code through 1.2.0 of the SKS keyserver network, and GnuPG through 2.2.16, makes it risky to have a GnuPG keyserver configuration line referring to a host on the SKS keyserver network. Retrieving data from this network may cause a persistent denial of service, because of a Certificate Spamming Attack.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -160,6 +168,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-14855",
|
||||||
"Title": "gnupg2: OpenPGP Key Certification Forgeries with SHA-1",
|
"Title": "gnupg2: OpenPGP Key Certification Forgeries with SHA-1",
|
||||||
"Description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.",
|
"Description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -178,6 +187,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7738",
|
||||||
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
||||||
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -198,6 +208,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-11236",
|
||||||
"Title": "glibc: Integer overflow in stdlib/canonicalize.c on 32-bit architectures leading to stack-based buffer overflow",
|
"Title": "glibc: Integer overflow in stdlib/canonicalize.c on 32-bit architectures leading to stack-based buffer overflow",
|
||||||
"Description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.",
|
"Description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -223,6 +234,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-11237",
|
||||||
"Title": "glibc: Buffer overflow in __mempcpy_avx512_no_vzeroupper",
|
"Title": "glibc: Buffer overflow in __mempcpy_avx512_no_vzeroupper",
|
||||||
"Description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.",
|
"Description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -248,6 +260,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-19591",
|
||||||
"Title": "glibc: file descriptor leak in if_nametoindex() in sysdeps/unix/sysv/linux/if_index.c",
|
"Title": "glibc: file descriptor leak in if_nametoindex() in sysdeps/unix/sysv/linux/if_index.c",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, attempting to resolve a crafted hostname via getaddrinfo() leads to the allocation of a socket descriptor that is not closed. This is related to the if_nametoindex() function.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, attempting to resolve a crafted hostname via getaddrinfo() leads to the allocation of a socket descriptor that is not closed. This is related to the if_nametoindex() function.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -272,6 +285,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2009-5155",
|
||||||
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -296,6 +310,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2015-8985",
|
||||||
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
||||||
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -315,6 +330,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228",
|
||||||
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
||||||
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -332,6 +348,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -354,6 +371,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -373,6 +391,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7309",
|
||||||
"Title": "glibc: memcmp function incorrectly returns zero",
|
"Title": "glibc: memcmp function incorrectly returns zero",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -391,6 +410,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9169",
|
||||||
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -414,6 +434,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -430,6 +451,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-11236",
|
||||||
"Title": "glibc: Integer overflow in stdlib/canonicalize.c on 32-bit architectures leading to stack-based buffer overflow",
|
"Title": "glibc: Integer overflow in stdlib/canonicalize.c on 32-bit architectures leading to stack-based buffer overflow",
|
||||||
"Description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.",
|
"Description": "stdlib/canonicalize.c in the GNU C Library (aka glibc or libc6) 2.27 and earlier, when processing very long pathname arguments to the realpath function, could encounter an integer overflow on 32-bit architectures, leading to a stack-based buffer overflow and, potentially, arbitrary code execution.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -455,6 +477,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-11237",
|
||||||
"Title": "glibc: Buffer overflow in __mempcpy_avx512_no_vzeroupper",
|
"Title": "glibc: Buffer overflow in __mempcpy_avx512_no_vzeroupper",
|
||||||
"Description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.",
|
"Description": "An AVX-512-optimized implementation of the mempcpy function in the GNU C Library (aka glibc or libc6) 2.27 and earlier may write data beyond the target buffer, leading to a buffer overflow in __mempcpy_avx512_no_vzeroupper.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -480,6 +503,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-19591",
|
||||||
"Title": "glibc: file descriptor leak in if_nametoindex() in sysdeps/unix/sysv/linux/if_index.c",
|
"Title": "glibc: file descriptor leak in if_nametoindex() in sysdeps/unix/sysv/linux/if_index.c",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, attempting to resolve a crafted hostname via getaddrinfo() leads to the allocation of a socket descriptor that is not closed. This is related to the if_nametoindex() function.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, attempting to resolve a crafted hostname via getaddrinfo() leads to the allocation of a socket descriptor that is not closed. This is related to the if_nametoindex() function.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -504,6 +528,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2009-5155",
|
||||||
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
"Title": "glibc: parse_reg_exp in posix/regcomp.c misparses alternatives leading to denial of service or trigger incorrect result",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -528,6 +553,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2015-8985",
|
||||||
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
"Title": "glibc: potential denial of service in pop_fail_stack()",
|
||||||
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
"Description": "The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -547,6 +573,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228",
|
||||||
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
"Title": "glibc: iconv program can hang when invoked with the -c option",
|
||||||
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
"Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.25 and earlier, when invoked with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -564,6 +591,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10739",
|
||||||
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
"Title": "glibc: getaddrinfo should reject IP addresses with trailing characters",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -586,6 +614,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -605,6 +634,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-7309",
|
||||||
"Title": "glibc: memcmp function incorrectly returns zero",
|
"Title": "glibc: memcmp function incorrectly returns zero",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -623,6 +653,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9169",
|
||||||
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
"Title": "glibc: regular-expression match via proceed_next_node in posix/regexec.c leads to heap-based buffer over-read",
|
||||||
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
"Description": "In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -646,6 +677,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192",
|
||||||
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
"Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
|
||||||
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
"Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -663,6 +695,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -684,6 +717,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -705,6 +739,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -726,6 +761,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -746,6 +782,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7738",
|
||||||
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
||||||
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -767,6 +804,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13627",
|
||||||
"Title": "libgcrypt: ECDSA timing attack in the libgcrypt20 cryptographic library",
|
"Title": "libgcrypt: ECDSA timing attack in the libgcrypt20 cryptographic library",
|
||||||
"Description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.",
|
"Description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -789,6 +827,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12904",
|
||||||
"Title": "Libgcrypt: physical addresses being available to other processes leads to a flush-and-reload side-channel attack",
|
"Title": "Libgcrypt: physical addresses being available to other processes leads to a flush-and-reload side-channel attack",
|
||||||
"Description": "In Libgcrypt 1.8.4, the C implementation of AES is vulnerable to a flush-and-reload side-channel attack because physical addresses are available to other processes. (The C implementation is used on platforms where an assembly-language implementation is unavailable.)",
|
"Description": "In Libgcrypt 1.8.4, the C implementation of AES is vulnerable to a flush-and-reload side-channel attack because physical addresses are available to other processes. (The C implementation is used on platforms where an assembly-language implementation is unavailable.)",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -808,6 +847,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16868",
|
||||||
"Title": "gnutls: Bleichenbacher-like side channel leakage in PKCS#1 v1.5 verification and padding oracle verification",
|
"Title": "gnutls: Bleichenbacher-like side channel leakage in PKCS#1 v1.5 verification and padding oracle verification",
|
||||||
"Description": "A Bleichenbacher type side-channel based padding oracle attack was found in the way gnutls handles verification of RSA decrypted PKCS#1 v1.5 data. An attacker who is able to run process on the same physical core as the victim process, could use this to extract plaintext or in some cases downgrade any TLS connections to a vulnerable server.",
|
"Description": "A Bleichenbacher type side-channel based padding oracle attack was found in the way gnutls handles verification of RSA decrypted PKCS#1 v1.5 data. An attacker who is able to run process on the same physical core as the victim process, could use this to extract plaintext or in some cases downgrade any TLS connections to a vulnerable server.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -828,6 +868,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16869",
|
||||||
"Title": "nettle: Leaky data conversion exposing a manager oracle",
|
"Title": "nettle: Leaky data conversion exposing a manager oracle",
|
||||||
"Description": "A Bleichenbacher type side-channel based padding oracle attack was found in the way nettle handles endian conversion of RSA decrypted PKCS#1 v1.5 data. An attacker who is able to run a process on the same physical core as the victim process, could use this flaw extract plaintext or in some cases downgrade any TLS connections to a vulnerable server.",
|
"Description": "A Bleichenbacher type side-channel based padding oracle attack was found in the way nettle handles endian conversion of RSA decrypted PKCS#1 v1.5 data. An attacker who is able to run a process on the same physical core as the victim process, could use this flaw extract plaintext or in some cases downgrade any TLS connections to a vulnerable server.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -847,6 +888,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12290",
|
||||||
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
"Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -865,6 +907,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-18224",
|
||||||
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
"Title": "libidn2: heap-based buffer overflow in idn2_to_ascii_4i in lib/lookup.c",
|
||||||
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
"Description": "idn2_to_ascii_4i in lib/lookup.c in GNU libidn2 before 2.1.1 has a heap-based buffer overflow via a long domain string.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -886,6 +929,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17543",
|
||||||
"Title": "lz4: heap-based buffer overflow in LZ4_write32",
|
"Title": "lz4: heap-based buffer overflow in LZ4_write32",
|
||||||
"Description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states \"only a few specific / uncommon usages of the API are at risk.\"",
|
"Description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states \"only a few specific / uncommon usages of the API are at risk.\"",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -912,6 +956,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7738",
|
||||||
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
||||||
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -932,6 +977,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -951,6 +997,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -970,6 +1017,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -989,6 +1037,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1008,6 +1057,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-16869",
|
||||||
"Title": "nettle: Leaky data conversion exposing a manager oracle",
|
"Title": "nettle: Leaky data conversion exposing a manager oracle",
|
||||||
"Description": "A Bleichenbacher type side-channel based padding oracle attack was found in the way nettle handles endian conversion of RSA decrypted PKCS#1 v1.5 data. An attacker who is able to run a process on the same physical core as the victim process, could use this flaw extract plaintext or in some cases downgrade any TLS connections to a vulnerable server.",
|
"Description": "A Bleichenbacher type side-channel based padding oracle attack was found in the way nettle handles endian conversion of RSA decrypted PKCS#1 v1.5 data. An attacker who is able to run a process on the same physical core as the victim process, could use this flaw extract plaintext or in some cases downgrade any TLS connections to a vulnerable server.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1026,6 +1076,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11164",
|
||||||
"Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c",
|
"Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c",
|
||||||
"Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.",
|
"Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1042,6 +1093,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7245",
|
||||||
"Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
|
"Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
|
||||||
"Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.",
|
"Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1060,6 +1112,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7246",
|
||||||
"Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
|
"Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
|
||||||
"Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.",
|
"Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1078,6 +1131,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7738",
|
||||||
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
||||||
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1099,6 +1153,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5094",
|
||||||
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
"Title": "e2fsprogs: crafted ext4 partition leads to out-of-bounds write",
|
||||||
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "An exploitable code execution vulnerability exists in the quota file functionality of E2fsprogs 1.45.3. A specially crafted ext4 partition can cause an out-of-bounds write on the heap, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1120,6 +1175,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-5188",
|
||||||
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
"Title": "e2fsprogs: Out-of-bounds write in e2fsck/rehash.c",
|
||||||
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
"Description": "A code execution vulnerability exists in the directory rehashing functionality of E2fsprogs e2fsck 1.45.4. A specially crafted ext4 directory can cause an out-of-bounds write on the stack, resulting in code execution. An attacker can corrupt a partition to trigger this vulnerability.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1140,6 +1196,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20839",
|
||||||
"Title": "systemd: mishandling of the current keyboard mode check leading to passwords being disclosed in cleartext to attacker",
|
"Title": "systemd: mishandling of the current keyboard mode check leading to passwords being disclosed in cleartext to attacker",
|
||||||
"Description": "systemd 242 changes the VT1 mode upon a logout, which allows attackers to read cleartext passwords in certain circumstances, such as watching a shutdown, or using Ctrl-Alt-F1 and Ctrl-Alt-F2. This occurs because the KDGKBMODE (aka current keyboard mode) check is mishandled.",
|
"Description": "systemd 242 changes the VT1 mode upon a logout, which allows attackers to read cleartext passwords in certain circumstances, such as watching a shutdown, or using Ctrl-Alt-F1 and Ctrl-Alt-F2. This occurs because the KDGKBMODE (aka current keyboard mode) check is mishandled.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1160,6 +1217,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15718",
|
||||||
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
||||||
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1183,6 +1241,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1712",
|
||||||
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
||||||
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1200,6 +1259,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386",
|
||||||
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
||||||
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1219,6 +1279,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843",
|
||||||
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1238,6 +1299,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844",
|
||||||
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1255,6 +1317,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000654",
|
||||||
"Title": "libtasn1: Infinite loop in _asn1_expand_object_id(ptree) leads to memory exhaustion",
|
"Title": "libtasn1: Infinite loop in _asn1_expand_object_id(ptree) leads to memory exhaustion",
|
||||||
"Description": "GNU Libtasn1-4.13 libtasn1-4.13 version libtasn1-4.13, libtasn1-4.12 contains a DoS, specifically CPU usage will reach 100% when running asn1Paser against the POC due to an issue in _asn1_expand_object_id(p_tree), after a long time, the program will be killed. This attack appears to be exploitable via parsing a crafted file.",
|
"Description": "GNU Libtasn1-4.13 libtasn1-4.13 version libtasn1-4.13, libtasn1-4.12 contains a DoS, specifically CPU usage will reach 100% when running asn1Paser against the POC due to an issue in _asn1_expand_object_id(p_tree), after a long time, the program will be killed. This attack appears to be exploitable via parsing a crafted file.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1273,6 +1336,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1292,6 +1356,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1311,6 +1376,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20839",
|
||||||
"Title": "systemd: mishandling of the current keyboard mode check leading to passwords being disclosed in cleartext to attacker",
|
"Title": "systemd: mishandling of the current keyboard mode check leading to passwords being disclosed in cleartext to attacker",
|
||||||
"Description": "systemd 242 changes the VT1 mode upon a logout, which allows attackers to read cleartext passwords in certain circumstances, such as watching a shutdown, or using Ctrl-Alt-F1 and Ctrl-Alt-F2. This occurs because the KDGKBMODE (aka current keyboard mode) check is mishandled.",
|
"Description": "systemd 242 changes the VT1 mode upon a logout, which allows attackers to read cleartext passwords in certain circumstances, such as watching a shutdown, or using Ctrl-Alt-F1 and Ctrl-Alt-F2. This occurs because the KDGKBMODE (aka current keyboard mode) check is mishandled.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1331,6 +1397,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15718",
|
||||||
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
"Title": "systemd: systemd-resolved allows unprivileged users to configure DNS",
|
||||||
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
"Description": "In systemd 240, bus_open_system_watch_bind_with_description in shared/bus-util.c (as used by systemd-resolved to connect to the system D-Bus instance), calls sd_bus_set_trusted, which disables access controls for incoming D-Bus messages. An unprivileged user can exploit this by executing D-Bus methods that should be restricted to privileged users, in order to change the system's DNS resolver settings.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1354,6 +1421,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1712",
|
||||||
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
"Title": "systemd: use-after-free when asynchronous polkit queries are performed",
|
||||||
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
"Description": "A heap use-after-free vulnerability was found in systemd, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
@@ -1371,6 +1439,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386",
|
||||||
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
"Title": "systemd: a memory leak was discovered in button_open in login/logind-button.c when udev events are received",
|
||||||
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
"Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1390,6 +1459,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843",
|
||||||
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
"Title": "systemd: services with DynamicUser can create SUID/SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1409,6 +1479,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844",
|
||||||
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
"Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries",
|
||||||
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
"Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1426,6 +1497,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7738",
|
||||||
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
||||||
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1447,6 +1519,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11922",
|
||||||
"Description": "A race condition in the one-pass compression functions of Zstandard prior to version 1.3.8 could allow an attacker to write bytes out of bounds if an output buffer smaller than the recommended size was used.",
|
"Description": "A race condition in the one-pass compression functions of Zstandard prior to version 1.3.8 could allow an attacker to write bytes out of bounds if an output buffer smaller than the recommended size was used.",
|
||||||
"Severity": "MEDIUM",
|
"Severity": "MEDIUM",
|
||||||
"References": [
|
"References": [
|
||||||
@@ -1465,6 +1538,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235",
|
||||||
"Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
|
"Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
|
||||||
"Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
|
"Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1482,6 +1556,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7169",
|
||||||
"Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation",
|
"Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation",
|
||||||
"Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.",
|
"Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1498,6 +1573,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7738",
|
||||||
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
||||||
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1518,6 +1594,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1537,6 +1614,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1556,6 +1634,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17594",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the _nc_find_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1575,6 +1654,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17595",
|
||||||
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
"Title": "ncurses: heap-based buffer overflow in the fmt_entry function in tinfo/comp_hash.c",
|
||||||
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
"Description": "There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1594,6 +1674,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235",
|
||||||
"Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
|
"Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
|
||||||
"Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
|
"Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1611,6 +1692,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7169",
|
||||||
"Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation",
|
"Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation",
|
||||||
"Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.",
|
"Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1627,6 +1709,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20482",
|
||||||
"Title": "tar: Infinite read loop in sparse_dump_region function in sparse.c",
|
"Title": "tar: Infinite read loop in sparse_dump_region function in sparse.c",
|
||||||
"Description": "GNU Tar through 1.30, when --sparse is used, mishandles file shrinkage during read access, which allows local users to cause a denial of service (infinite read loop in sparse_dump_region in sparse.c) by modifying a file that is supposed to be archived by a different user's process (e.g., a system backup running as root).",
|
"Description": "GNU Tar through 1.30, when --sparse is used, mishandles file shrinkage during read access, which allows local users to cause a denial of service (infinite read loop in sparse_dump_region in sparse.c) by modifying a file that is supposed to be archived by a different user's process (e.g., a system backup running as root).",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1651,6 +1734,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9923",
|
||||||
"Title": "tar: null-pointer dereference in pax_decode_header in sparse.c",
|
"Title": "tar: null-pointer dereference in pax_decode_header in sparse.c",
|
||||||
"Description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.",
|
"Description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
@@ -1669,6 +1753,7 @@
|
|||||||
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
"DiffID": "sha256:6cebf3abed5fac58d2e792ce8461454e92c245d5312c42118f02e231a73b317f"
|
||||||
},
|
},
|
||||||
"SeveritySource": "ubuntu",
|
"SeveritySource": "ubuntu",
|
||||||
|
"PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7738",
|
||||||
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
"Title": "util-linux: Shell command injection in unescaped bash-completed mount point names",
|
||||||
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
"Description": "In util-linux before 2.32-rc1, bash-completion/umount allows local users to gain privileges by embedding shell commands in a mountpoint name, which is mishandled during a umount command (within Bash) by a different user, as demonstrated by logging in as root and entering umount followed by a tab character for autocompletion.",
|
||||||
"Severity": "LOW",
|
"Severity": "LOW",
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ func (tw TableWriter) write(result Result) {
|
|||||||
table := tablewriter.NewWriter(tw.Output)
|
table := tablewriter.NewWriter(tw.Output)
|
||||||
header := []string{"Library", "Vulnerability ID", "Severity", "Installed Version", "Fixed Version"}
|
header := []string{"Library", "Vulnerability ID", "Severity", "Installed Version", "Fixed Version"}
|
||||||
if !tw.Light {
|
if !tw.Light {
|
||||||
header = append(header, "Title")
|
header = append(header, "Title", "URL")
|
||||||
}
|
}
|
||||||
table.SetHeader(header)
|
table.SetHeader(header)
|
||||||
|
|
||||||
@@ -110,7 +110,7 @@ func (tw TableWriter) write(result Result) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if !tw.Light {
|
if !tw.Light {
|
||||||
row = append(row, title)
|
row = append(row, title, strings.TrimPrefix(v.PrimaryURL, "https://"))
|
||||||
}
|
}
|
||||||
table.Append(row)
|
table.Append(row)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,10 +25,11 @@ func TestReportWriter_Table(t *testing.T) {
|
|||||||
name: "happy path full",
|
name: "happy path full",
|
||||||
detectedVulns: []types.DetectedVulnerability{
|
detectedVulns: []types.DetectedVulnerability{
|
||||||
{
|
{
|
||||||
VulnerabilityID: "123",
|
VulnerabilityID: "CVE-2020-0001",
|
||||||
PkgName: "foo",
|
PkgName: "foo",
|
||||||
InstalledVersion: "1.2.3",
|
InstalledVersion: "1.2.3",
|
||||||
FixedVersion: "3.4.5",
|
FixedVersion: "3.4.5",
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2020-0001",
|
||||||
Vulnerability: dbTypes.Vulnerability{
|
Vulnerability: dbTypes.Vulnerability{
|
||||||
Title: "foobar",
|
Title: "foobar",
|
||||||
Description: "baz",
|
Description: "baz",
|
||||||
@@ -36,11 +37,11 @@ func TestReportWriter_Table(t *testing.T) {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
expectedOutput: `+---------+------------------+----------+-------------------+---------------+--------+
|
expectedOutput: `+---------+------------------+----------+-------------------+---------------+--------+-----------------------------------+
|
||||||
| LIBRARY | VULNERABILITY ID | SEVERITY | INSTALLED VERSION | FIXED VERSION | TITLE |
|
| LIBRARY | VULNERABILITY ID | SEVERITY | INSTALLED VERSION | FIXED VERSION | TITLE | URL |
|
||||||
+---------+------------------+----------+-------------------+---------------+--------+
|
+---------+------------------+----------+-------------------+---------------+--------+-----------------------------------+
|
||||||
| foo | 123 | HIGH | 1.2.3 | 3.4.5 | foobar |
|
| foo | CVE-2020-0001 | HIGH | 1.2.3 | 3.4.5 | foobar | avd.aquasec.com/nvd/cve-2020-0001 |
|
||||||
+---------+------------------+----------+-------------------+---------------+--------+
|
+---------+------------------+----------+-------------------+---------------+--------+-----------------------------------+
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -80,32 +81,33 @@ func TestReportWriter_Table(t *testing.T) {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
expectedOutput: `+---------+------------------+----------+-------------------+---------------+--------+
|
expectedOutput: `+---------+------------------+----------+-------------------+---------------+--------+-----+
|
||||||
| LIBRARY | VULNERABILITY ID | SEVERITY | INSTALLED VERSION | FIXED VERSION | TITLE |
|
| LIBRARY | VULNERABILITY ID | SEVERITY | INSTALLED VERSION | FIXED VERSION | TITLE | URL |
|
||||||
+---------+------------------+----------+-------------------+---------------+--------+
|
+---------+------------------+----------+-------------------+---------------+--------+-----+
|
||||||
| foo | 123 | HIGH | 1.2.3 | 3.4.5 | foobar |
|
| foo | 123 | HIGH | 1.2.3 | 3.4.5 | foobar | |
|
||||||
+---------+------------------+----------+-------------------+---------------+--------+
|
+---------+------------------+----------+-------------------+---------------+--------+-----+
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "long title for vuln",
|
name: "long title for vuln",
|
||||||
detectedVulns: []types.DetectedVulnerability{
|
detectedVulns: []types.DetectedVulnerability{
|
||||||
{
|
{
|
||||||
VulnerabilityID: "123",
|
VulnerabilityID: "CVE-2020-1234",
|
||||||
PkgName: "foo",
|
PkgName: "foo",
|
||||||
InstalledVersion: "1.2.3",
|
InstalledVersion: "1.2.3",
|
||||||
FixedVersion: "3.4.5",
|
FixedVersion: "3.4.5",
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2020-0001",
|
||||||
Vulnerability: dbTypes.Vulnerability{
|
Vulnerability: dbTypes.Vulnerability{
|
||||||
Title: "a b c d e f g h i j k l m n o p q r s t u v",
|
Title: "a b c d e f g h i j k l m n o p q r s t u v",
|
||||||
Severity: "HIGH",
|
Severity: "HIGH",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
expectedOutput: `+---------+------------------+----------+-------------------+---------------+----------------------------+
|
expectedOutput: `+---------+------------------+----------+-------------------+---------------+----------------------------+-----------------------------------+
|
||||||
| LIBRARY | VULNERABILITY ID | SEVERITY | INSTALLED VERSION | FIXED VERSION | TITLE |
|
| LIBRARY | VULNERABILITY ID | SEVERITY | INSTALLED VERSION | FIXED VERSION | TITLE | URL |
|
||||||
+---------+------------------+----------+-------------------+---------------+----------------------------+
|
+---------+------------------+----------+-------------------+---------------+----------------------------+-----------------------------------+
|
||||||
| foo | 123 | HIGH | 1.2.3 | 3.4.5 | a b c d e f g h i j k l... |
|
| foo | CVE-2020-1234 | HIGH | 1.2.3 | 3.4.5 | a b c d e f g h i j k l... | avd.aquasec.com/nvd/cve-2020-0001 |
|
||||||
+---------+------------------+----------+-------------------+---------------+----------------------------+
|
+---------+------------------+----------+-------------------+---------------+----------------------------+-----------------------------------+
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -140,10 +142,11 @@ func TestReportWriter_JSON(t *testing.T) {
|
|||||||
name: "happy path",
|
name: "happy path",
|
||||||
detectedVulns: []types.DetectedVulnerability{
|
detectedVulns: []types.DetectedVulnerability{
|
||||||
{
|
{
|
||||||
VulnerabilityID: "123",
|
VulnerabilityID: "CVE-2020-0001",
|
||||||
PkgName: "foo",
|
PkgName: "foo",
|
||||||
InstalledVersion: "1.2.3",
|
InstalledVersion: "1.2.3",
|
||||||
FixedVersion: "3.4.5",
|
FixedVersion: "3.4.5",
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2020-0001",
|
||||||
Vulnerability: dbTypes.Vulnerability{
|
Vulnerability: dbTypes.Vulnerability{
|
||||||
Title: "foobar",
|
Title: "foobar",
|
||||||
Description: "baz",
|
Description: "baz",
|
||||||
@@ -156,10 +159,11 @@ func TestReportWriter_JSON(t *testing.T) {
|
|||||||
Target: "foojson",
|
Target: "foojson",
|
||||||
Vulnerabilities: []types.DetectedVulnerability{
|
Vulnerabilities: []types.DetectedVulnerability{
|
||||||
{
|
{
|
||||||
VulnerabilityID: "123",
|
VulnerabilityID: "CVE-2020-0001",
|
||||||
PkgName: "foo",
|
PkgName: "foo",
|
||||||
InstalledVersion: "1.2.3",
|
InstalledVersion: "1.2.3",
|
||||||
FixedVersion: "3.4.5",
|
FixedVersion: "3.4.5",
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2020-0001",
|
||||||
Vulnerability: dbTypes.Vulnerability{
|
Vulnerability: dbTypes.Vulnerability{
|
||||||
Title: "foobar",
|
Title: "foobar",
|
||||||
Description: "baz",
|
Description: "baz",
|
||||||
|
|||||||
@@ -78,27 +78,6 @@ func ConvertToRPCLibraries(libs []deptypes.Library) []*common.Library {
|
|||||||
return rpcLibs
|
return rpcLibs
|
||||||
}
|
}
|
||||||
|
|
||||||
// ConvertFromRPCVulns returns converted vulnerability from common vulnerability format
|
|
||||||
func ConvertFromRPCVulns(rpcVulns []*common.Vulnerability) []types.DetectedVulnerability {
|
|
||||||
var vulns []types.DetectedVulnerability
|
|
||||||
for _, vuln := range rpcVulns {
|
|
||||||
severity := dbTypes.Severity(vuln.Severity)
|
|
||||||
vulns = append(vulns, types.DetectedVulnerability{
|
|
||||||
VulnerabilityID: vuln.VulnerabilityId,
|
|
||||||
PkgName: vuln.PkgName,
|
|
||||||
InstalledVersion: vuln.InstalledVersion,
|
|
||||||
FixedVersion: vuln.FixedVersion,
|
|
||||||
Vulnerability: dbTypes.Vulnerability{
|
|
||||||
Title: vuln.Title,
|
|
||||||
Description: vuln.Description,
|
|
||||||
Severity: severity.String(),
|
|
||||||
References: vuln.References,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return vulns
|
|
||||||
}
|
|
||||||
|
|
||||||
// ConvertToRPCVulns returns common.Vulnerability
|
// ConvertToRPCVulns returns common.Vulnerability
|
||||||
func ConvertToRPCVulns(vulns []types.DetectedVulnerability) []*common.Vulnerability {
|
func ConvertToRPCVulns(vulns []types.DetectedVulnerability) []*common.Vulnerability {
|
||||||
var rpcVulns []*common.Vulnerability
|
var rpcVulns []*common.Vulnerability
|
||||||
@@ -133,12 +112,13 @@ func ConvertToRPCVulns(vulns []types.DetectedVulnerability) []*common.Vulnerabil
|
|||||||
Cvss: cvssMap,
|
Cvss: cvssMap,
|
||||||
SeveritySource: vuln.SeveritySource,
|
SeveritySource: vuln.SeveritySource,
|
||||||
CweIds: vuln.CweIDs,
|
CweIds: vuln.CweIDs,
|
||||||
|
PrimaryUrl: vuln.PrimaryURL,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return rpcVulns
|
return rpcVulns
|
||||||
}
|
}
|
||||||
|
|
||||||
// ConvertFromRPCResults converts scannel.Result to report.Result
|
// ConvertFromRPCResults converts scanner.Result to report.Result
|
||||||
func ConvertFromRPCResults(rpcResults []*scanner.Result) []report.Result {
|
func ConvertFromRPCResults(rpcResults []*scanner.Result) []report.Result {
|
||||||
var results []report.Result
|
var results []report.Result
|
||||||
for _, result := range rpcResults {
|
for _, result := range rpcResults {
|
||||||
@@ -173,6 +153,7 @@ func ConvertFromRPCResults(rpcResults []*scanner.Result) []report.Result {
|
|||||||
DiffID: vuln.Layer.DiffId,
|
DiffID: vuln.Layer.DiffId,
|
||||||
},
|
},
|
||||||
SeveritySource: vuln.SeveritySource,
|
SeveritySource: vuln.SeveritySource,
|
||||||
|
PrimaryURL: vuln.PrimaryUrl,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
results = append(results, report.Result{
|
results = append(results, report.Result{
|
||||||
|
|||||||
@@ -181,55 +181,6 @@ func TestConvertToRpcLibraries(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestConvertFromRpcVulns(t *testing.T) {
|
|
||||||
type args struct {
|
|
||||||
rpcVulns []*common.Vulnerability
|
|
||||||
}
|
|
||||||
tests := []struct {
|
|
||||||
name string
|
|
||||||
args args
|
|
||||||
want []types.DetectedVulnerability
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
name: "happy path",
|
|
||||||
args: args{
|
|
||||||
rpcVulns: []*common.Vulnerability{
|
|
||||||
{
|
|
||||||
VulnerabilityId: "CVE-2019-0001",
|
|
||||||
PkgName: "foo",
|
|
||||||
InstalledVersion: "1.2.3",
|
|
||||||
FixedVersion: "1.2.4",
|
|
||||||
Title: "DoS",
|
|
||||||
Description: "Denial of Service",
|
|
||||||
Severity: common.Severity_CRITICAL,
|
|
||||||
References: []string{"http://example.com"},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
want: []types.DetectedVulnerability{
|
|
||||||
{
|
|
||||||
VulnerabilityID: "CVE-2019-0001",
|
|
||||||
PkgName: "foo",
|
|
||||||
InstalledVersion: "1.2.3",
|
|
||||||
FixedVersion: "1.2.4",
|
|
||||||
Vulnerability: dbTypes.Vulnerability{
|
|
||||||
Title: "DoS",
|
|
||||||
Description: "Denial of Service",
|
|
||||||
Severity: "CRITICAL",
|
|
||||||
References: []string{"http://example.com"},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
got := ConvertFromRPCVulns(tt.args.rpcVulns)
|
|
||||||
assert.Equal(t, got, tt.want, tt.name)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestConvertToRpcVulns(t *testing.T) {
|
func TestConvertToRpcVulns(t *testing.T) {
|
||||||
type args struct {
|
type args struct {
|
||||||
vulns []types.DetectedVulnerability
|
vulns []types.DetectedVulnerability
|
||||||
@@ -266,6 +217,7 @@ func TestConvertToRpcVulns(t *testing.T) {
|
|||||||
Digest: "sha256:154ad0735c360b212b167f424d33a62305770a1fcfb6363882f5c436cfbd9812",
|
Digest: "sha256:154ad0735c360b212b167f424d33a62305770a1fcfb6363882f5c436cfbd9812",
|
||||||
DiffID: "sha256:b2a1a2d80bf0c747a4f6b0ca6af5eef23f043fcdb1ed4f3a3e750aef2dc68079",
|
DiffID: "sha256:b2a1a2d80bf0c747a4f6b0ca6af5eef23f043fcdb1ed4f3a3e750aef2dc68079",
|
||||||
},
|
},
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/CVE-2019-0001",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -291,6 +243,7 @@ func TestConvertToRpcVulns(t *testing.T) {
|
|||||||
Digest: "sha256:154ad0735c360b212b167f424d33a62305770a1fcfb6363882f5c436cfbd9812",
|
Digest: "sha256:154ad0735c360b212b167f424d33a62305770a1fcfb6363882f5c436cfbd9812",
|
||||||
DiffId: "sha256:b2a1a2d80bf0c747a4f6b0ca6af5eef23f043fcdb1ed4f3a3e750aef2dc68079",
|
DiffId: "sha256:b2a1a2d80bf0c747a4f6b0ca6af5eef23f043fcdb1ed4f3a3e750aef2dc68079",
|
||||||
},
|
},
|
||||||
|
PrimaryUrl: "https://avd.aquasec.com/nvd/CVE-2019-0001",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ type DetectedVulnerability struct {
|
|||||||
FixedVersion string `json:",omitempty"`
|
FixedVersion string `json:",omitempty"`
|
||||||
Layer ftypes.Layer `json:",omitempty"`
|
Layer ftypes.Layer `json:",omitempty"`
|
||||||
SeveritySource string `json:",omitempty"`
|
SeveritySource string `json:",omitempty"`
|
||||||
|
PrimaryURL string `json:",omitempty"`
|
||||||
|
|
||||||
types.Vulnerability
|
types.Vulnerability
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,6 +25,19 @@ const (
|
|||||||
DefaultIgnoreFile = ".trivyignore"
|
DefaultIgnoreFile = ".trivyignore"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
primaryURLPrefixes = map[string][]string{
|
||||||
|
vulnerability.Debian: {"http://www.debian.org", "https://www.debian.org"},
|
||||||
|
vulnerability.Ubuntu: {"http://www.ubuntu.com", "https://usn.ubuntu.com"},
|
||||||
|
vulnerability.RedHat: {"https://access.redhat.com"},
|
||||||
|
vulnerability.OpenSuseCVRF: {"http://lists.opensuse.org", "https://lists.opensuse.org"},
|
||||||
|
vulnerability.SuseCVRF: {"http://lists.opensuse.org", "https://lists.opensuse.org"},
|
||||||
|
vulnerability.OracleOVAL: {"http://linux.oracle.com/errata", "https://linux.oracle.com/errata"},
|
||||||
|
vulnerability.NodejsSecurityWg: {"https://www.npmjs.com", "https://hackerone.com"},
|
||||||
|
vulnerability.RubySec: {"https://groups.google.com"},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
// SuperSet binds the dependencies
|
// SuperSet binds the dependencies
|
||||||
var SuperSet = wire.NewSet(
|
var SuperSet = wire.NewSet(
|
||||||
wire.Struct(new(db.Config)),
|
wire.Struct(new(db.Config)),
|
||||||
@@ -49,7 +62,7 @@ func NewClient(dbc db.Config) Client {
|
|||||||
return Client{dbc: dbc}
|
return Client{dbc: dbc}
|
||||||
}
|
}
|
||||||
|
|
||||||
// FillInfo fills extra info rin vulnerability objects
|
// FillInfo fills extra info in vulnerability objects
|
||||||
func (c Client) FillInfo(vulns []types.DetectedVulnerability, reportType string) {
|
func (c Client) FillInfo(vulns []types.DetectedVulnerability, reportType string) {
|
||||||
var err error
|
var err error
|
||||||
|
|
||||||
@@ -77,24 +90,46 @@ func (c Client) FillInfo(vulns []types.DetectedVulnerability, reportType string)
|
|||||||
case "composer":
|
case "composer":
|
||||||
source = vulnerability.PhpSecurityAdvisories
|
source = vulnerability.PhpSecurityAdvisories
|
||||||
}
|
}
|
||||||
c.getVendorSeverity(&vulns[i], source)
|
|
||||||
|
vulns[i].Severity, vulns[i].SeveritySource = c.getVendorSeverity(&vulns[i], source)
|
||||||
|
vulns[i].PrimaryURL = c.getPrimaryURL(vulns[i].VulnerabilityID, vulns[i].References, source)
|
||||||
vulns[i].Vulnerability.VendorSeverity = nil // Remove VendorSeverity from Results
|
vulns[i].Vulnerability.VendorSeverity = nil // Remove VendorSeverity from Results
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c Client) getVendorSeverity(vuln *types.DetectedVulnerability, reportType string) {
|
func (c Client) getVendorSeverity(vuln *types.DetectedVulnerability, source string) (string, string) {
|
||||||
if vs, ok := vuln.Vulnerability.VendorSeverity[reportType]; ok {
|
if vs, ok := vuln.VendorSeverity[source]; ok {
|
||||||
vuln.Vulnerability.Severity = vs.String()
|
return vs.String(), source
|
||||||
vuln.SeveritySource = reportType
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try NVD as a fallback if it exists
|
// Try NVD as a fallback if it exists
|
||||||
if vs, ok := vuln.Vulnerability.VendorSeverity[vulnerability.Nvd]; ok {
|
if vs, ok := vuln.VendorSeverity[vulnerability.Nvd]; ok {
|
||||||
vuln.Vulnerability.Severity = vs.String()
|
return vs.String(), vulnerability.Nvd
|
||||||
vuln.SeveritySource = vulnerability.Nvd
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
return vuln.Severity, ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c Client) getPrimaryURL(vulnID string, refs []string, source string) string {
|
||||||
|
switch {
|
||||||
|
case strings.HasPrefix(vulnID, "CVE-"):
|
||||||
|
return "https://avd.aquasec.com/nvd/" + strings.ToLower(vulnID)
|
||||||
|
case strings.HasPrefix(vulnID, "RUSTSEC-"):
|
||||||
|
return "https://rustsec.org/advisories/" + vulnID
|
||||||
|
case strings.HasPrefix(vulnID, "GHSA-"):
|
||||||
|
return "https://github.com/advisories/" + vulnID
|
||||||
|
case strings.HasPrefix(vulnID, "TEMP-"):
|
||||||
|
return "https://security-tracker.debian.org/tracker/" + vulnID
|
||||||
|
}
|
||||||
|
|
||||||
|
prefixes := primaryURLPrefixes[source]
|
||||||
|
for _, pre := range prefixes {
|
||||||
|
for _, ref := range refs {
|
||||||
|
if strings.HasPrefix(ref, pre) {
|
||||||
|
return ref
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
// Filter filter out the vulnerabilities
|
// Filter filter out the vulnerabilities
|
||||||
|
|||||||
@@ -69,6 +69,7 @@ func TestClient_FillInfo(t *testing.T) {
|
|||||||
Severity: dbTypes.SeverityMedium.String(),
|
Severity: dbTypes.SeverityMedium.String(),
|
||||||
References: []string{"http://example.com"},
|
References: []string{"http://example.com"},
|
||||||
},
|
},
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2019-0001",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -107,6 +108,7 @@ func TestClient_FillInfo(t *testing.T) {
|
|||||||
References: []string{"http://example.com"},
|
References: []string{"http://example.com"},
|
||||||
},
|
},
|
||||||
SeveritySource: vulnerability.Nvd,
|
SeveritySource: vulnerability.Nvd,
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2019-0001",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -140,6 +142,7 @@ func TestClient_FillInfo(t *testing.T) {
|
|||||||
Description: "dos vulnerability",
|
Description: "dos vulnerability",
|
||||||
References: []string{"http://example.com"},
|
References: []string{"http://example.com"},
|
||||||
},
|
},
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2019-0001",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -209,6 +212,7 @@ func TestClient_FillInfo(t *testing.T) {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
SeveritySource: vulnerability.RedHat,
|
SeveritySource: vulnerability.RedHat,
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2019-0001",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -242,6 +246,7 @@ func TestClient_FillInfo(t *testing.T) {
|
|||||||
Severity: dbTypes.SeverityLow.String(),
|
Severity: dbTypes.SeverityLow.String(),
|
||||||
},
|
},
|
||||||
SeveritySource: vulnerability.Ubuntu,
|
SeveritySource: vulnerability.Ubuntu,
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2019-0001",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -281,6 +286,7 @@ func TestClient_FillInfo(t *testing.T) {
|
|||||||
References: []string{"https://www.who.int/emergencies/diseases/novel-coronavirus-2019"},
|
References: []string{"https://www.who.int/emergencies/diseases/novel-coronavirus-2019"},
|
||||||
},
|
},
|
||||||
SeveritySource: vulnerability.PythonSafetyDB,
|
SeveritySource: vulnerability.PythonSafetyDB,
|
||||||
|
PrimaryURL: "https://avd.aquasec.com/nvd/cve-2020-0001",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -324,6 +330,88 @@ func TestClient_FillInfo(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestClient_getPrimaryURL(t *testing.T) {
|
||||||
|
type args struct {
|
||||||
|
vulnID string
|
||||||
|
refs []string
|
||||||
|
source string
|
||||||
|
}
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
args args
|
||||||
|
want string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "CVE-ID",
|
||||||
|
args: args{
|
||||||
|
vulnID: "CVE-2014-8484",
|
||||||
|
refs: []string{"http://linux.oracle.com/cve/CVE-2014-8484.html"},
|
||||||
|
source: vulnerability.OracleOVAL,
|
||||||
|
},
|
||||||
|
want: "https://avd.aquasec.com/nvd/cve-2014-8484",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "RUSTSEC",
|
||||||
|
args: args{
|
||||||
|
vulnID: "RUSTSEC-2018-0017",
|
||||||
|
refs: []string{"https://github.com/rust-lang-deprecated/tempdir/pull/46"},
|
||||||
|
source: vulnerability.RustSec,
|
||||||
|
},
|
||||||
|
want: "https://rustsec.org/advisories/RUSTSEC-2018-0017",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "GHSA",
|
||||||
|
args: args{
|
||||||
|
vulnID: "GHSA-28fw-88hq-6jmm",
|
||||||
|
refs: []string{},
|
||||||
|
source: vulnerability.PhpSecurityAdvisories,
|
||||||
|
},
|
||||||
|
want: "https://github.com/advisories/GHSA-28fw-88hq-6jmm",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Debian temp vulnerability",
|
||||||
|
args: args{
|
||||||
|
vulnID: "TEMP-0841856-B18BAF",
|
||||||
|
refs: []string{},
|
||||||
|
source: vulnerability.DebianOVAL,
|
||||||
|
},
|
||||||
|
want: "https://security-tracker.debian.org/tracker/TEMP-0841856-B18BAF",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "npm",
|
||||||
|
args: args{
|
||||||
|
vulnID: "NSWG-ECO-516",
|
||||||
|
refs: []string{
|
||||||
|
"https://hackerone.com/reports/712065",
|
||||||
|
"https://github.com/lodash/lodash/pull/4759",
|
||||||
|
"https://www.npmjs.com/advisories/1523",
|
||||||
|
},
|
||||||
|
source: vulnerability.NodejsSecurityWg,
|
||||||
|
},
|
||||||
|
want: "https://www.npmjs.com/advisories/1523",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "suse",
|
||||||
|
args: args{
|
||||||
|
vulnID: "openSUSE-SU-2019:2596-1",
|
||||||
|
refs: []string{
|
||||||
|
"http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00076.html",
|
||||||
|
"https://www.suse.com/support/security/rating/",
|
||||||
|
},
|
||||||
|
source: vulnerability.OpenSuseCVRF,
|
||||||
|
},
|
||||||
|
want: "http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00076.html",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
c := Client{}
|
||||||
|
got := c.getPrimaryURL(tt.args.vulnID, tt.args.refs, tt.args.source)
|
||||||
|
assert.Equal(t, tt.want, got)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestClient_Filter(t *testing.T) {
|
func TestClient_Filter(t *testing.T) {
|
||||||
type args struct {
|
type args struct {
|
||||||
vulns []types.DetectedVulnerability
|
vulns []types.DetectedVulnerability
|
||||||
|
|||||||
@@ -370,6 +370,7 @@ type Vulnerability struct {
|
|||||||
SeveritySource string `protobuf:"bytes,11,opt,name=severity_source,json=severitySource,proto3" json:"severity_source,omitempty"`
|
SeveritySource string `protobuf:"bytes,11,opt,name=severity_source,json=severitySource,proto3" json:"severity_source,omitempty"`
|
||||||
Cvss map[string]*CVSS `protobuf:"bytes,12,rep,name=cvss,proto3" json:"cvss,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
Cvss map[string]*CVSS `protobuf:"bytes,12,rep,name=cvss,proto3" json:"cvss,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||||
CweIds []string `protobuf:"bytes,13,rep,name=cwe_ids,json=cweIds,proto3" json:"cwe_ids,omitempty"`
|
CweIds []string `protobuf:"bytes,13,rep,name=cwe_ids,json=cweIds,proto3" json:"cwe_ids,omitempty"`
|
||||||
|
PrimaryUrl string `protobuf:"bytes,14,opt,name=primary_url,json=primaryUrl,proto3" json:"primary_url,omitempty"`
|
||||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
XXX_sizecache int32 `json:"-"`
|
XXX_sizecache int32 `json:"-"`
|
||||||
@@ -484,6 +485,13 @@ func (m *Vulnerability) GetCweIds() []string {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *Vulnerability) GetPrimaryUrl() string {
|
||||||
|
if m != nil {
|
||||||
|
return m.PrimaryUrl
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
type Layer struct {
|
type Layer struct {
|
||||||
Digest string `protobuf:"bytes,1,opt,name=digest,proto3" json:"digest,omitempty"`
|
Digest string `protobuf:"bytes,1,opt,name=digest,proto3" json:"digest,omitempty"`
|
||||||
DiffId string `protobuf:"bytes,2,opt,name=diff_id,json=diffId,proto3" json:"diff_id,omitempty"`
|
DiffId string `protobuf:"bytes,2,opt,name=diff_id,json=diffId,proto3" json:"diff_id,omitempty"`
|
||||||
@@ -610,52 +618,53 @@ func init() {
|
|||||||
func init() { proto.RegisterFile("rpc/common/service.proto", fileDescriptor_6e749acacaaabfff) }
|
func init() { proto.RegisterFile("rpc/common/service.proto", fileDescriptor_6e749acacaaabfff) }
|
||||||
|
|
||||||
var fileDescriptor_6e749acacaaabfff = []byte{
|
var fileDescriptor_6e749acacaaabfff = []byte{
|
||||||
// 748 bytes of a gzipped FileDescriptorProto
|
// 767 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xdf, 0x6f, 0xe3, 0x44,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xdf, 0x8f, 0xdb, 0x44,
|
||||||
0x10, 0xc6, 0x89, 0x13, 0x3b, 0xe3, 0xf4, 0xce, 0x2c, 0xc7, 0xe1, 0xe3, 0x24, 0x88, 0x8c, 0x10,
|
0x10, 0xc6, 0x89, 0x13, 0x3b, 0xe3, 0xdc, 0xd5, 0x2c, 0xa5, 0xb8, 0x54, 0x82, 0xc8, 0x08, 0x91,
|
||||||
0x39, 0x90, 0x52, 0x70, 0x1e, 0x28, 0xbc, 0x95, 0xb4, 0xa2, 0x56, 0xdb, 0xb4, 0x72, 0x68, 0x2a,
|
0x82, 0x94, 0x82, 0xf3, 0x40, 0xe1, 0xad, 0xa4, 0x27, 0x6a, 0xf5, 0x9a, 0xab, 0x1c, 0x2e, 0x95,
|
||||||
0x21, 0x21, 0xcb, 0x5d, 0xaf, 0x93, 0x55, 0x1c, 0xdb, 0xda, 0x75, 0x5d, 0xfc, 0x1f, 0xf1, 0x0f,
|
0x90, 0x90, 0xe5, 0x5b, 0xaf, 0x93, 0x55, 0x1c, 0xdb, 0xda, 0x75, 0x5c, 0xfc, 0x27, 0xf2, 0x07,
|
||||||
0xf2, 0x8e, 0x76, 0xbd, 0x4e, 0x93, 0x8a, 0x97, 0x7b, 0xdb, 0x99, 0xef, 0xf3, 0x7c, 0xf3, 0xcb,
|
0xf1, 0x8e, 0xf6, 0x87, 0x73, 0x49, 0xc5, 0x4b, 0xdf, 0x76, 0xe6, 0xfb, 0x3c, 0xdf, 0x37, 0xbb,
|
||||||
0x03, 0x0e, 0x2b, 0xf0, 0x31, 0xce, 0xb7, 0xdb, 0x3c, 0x3b, 0xe6, 0x84, 0x55, 0x14, 0x93, 0x49,
|
0xe3, 0x01, 0x8f, 0x55, 0xf8, 0x19, 0x2e, 0xf7, 0xfb, 0xb2, 0x78, 0xc6, 0x09, 0x6b, 0x28, 0x26,
|
||||||
0xc1, 0xf2, 0x32, 0x47, 0xc3, 0x92, 0xd1, 0xaa, 0x9e, 0x34, 0x98, 0xfb, 0x23, 0x74, 0x6e, 0x16,
|
0xb3, 0x8a, 0x95, 0x75, 0x89, 0xc6, 0x35, 0xa3, 0x4d, 0x3b, 0x53, 0x98, 0xff, 0x23, 0xf4, 0x6e,
|
||||||
0xe8, 0x2d, 0xf4, 0x93, 0x68, 0x4b, 0xd3, 0xda, 0xd1, 0x46, 0xda, 0x78, 0x10, 0x28, 0x0b, 0x21,
|
0x56, 0xe8, 0x11, 0x0c, 0xb3, 0x64, 0x4f, 0xf3, 0xd6, 0x33, 0x26, 0xc6, 0x74, 0x14, 0xe9, 0x08,
|
||||||
0xd0, 0xb3, 0x68, 0x4b, 0x9c, 0x8e, 0xf4, 0xca, 0xb7, 0xfb, 0x17, 0x58, 0xb7, 0x11, 0xde, 0x44,
|
0x21, 0x30, 0x8b, 0x64, 0x4f, 0xbc, 0x9e, 0xcc, 0xca, 0xb3, 0xff, 0x17, 0x38, 0x6f, 0x13, 0xbc,
|
||||||
0x2b, 0xe2, 0x67, 0x49, 0x8e, 0xde, 0xc3, 0x20, 0xa1, 0x29, 0x09, 0x8b, 0xa8, 0x5c, 0xab, 0xaf,
|
0x4b, 0x36, 0x24, 0x2c, 0xb2, 0x12, 0x3d, 0x81, 0x51, 0x46, 0x73, 0x12, 0x57, 0x49, 0xbd, 0xd5,
|
||||||
0x4d, 0xe1, 0xb8, 0x8d, 0xca, 0x35, 0xfa, 0x09, 0xcc, 0xa2, 0xe1, 0x72, 0xa7, 0x33, 0xea, 0x8e,
|
0x5f, 0xdb, 0x22, 0xf1, 0x36, 0xa9, 0xb7, 0xe8, 0x27, 0xb0, 0x2b, 0xc5, 0xe5, 0x5e, 0x6f, 0xd2,
|
||||||
0x2d, 0xef, 0xf3, 0xc9, 0xbe, 0xfc, 0x44, 0x45, 0x0a, 0x76, 0x34, 0x97, 0x83, 0x75, 0x5a, 0x14,
|
0x9f, 0x3a, 0xc1, 0xe7, 0xb3, 0x53, 0xf9, 0x99, 0xae, 0x14, 0x1d, 0x69, 0x3e, 0x07, 0xe7, 0x45,
|
||||||
0x29, 0xc5, 0x51, 0x49, 0xf3, 0x4c, 0x64, 0x50, 0xd6, 0x05, 0x51, 0x91, 0xe5, 0xfb, 0x50, 0xb2,
|
0x55, 0xe5, 0x14, 0x27, 0x35, 0x2d, 0x0b, 0xe1, 0xa0, 0x6e, 0x2b, 0xa2, 0x2b, 0xcb, 0xf3, 0xb9,
|
||||||
0xf3, 0x42, 0x72, 0x0a, 0x83, 0x94, 0x3e, 0xb0, 0x88, 0x51, 0xc2, 0x9d, 0xee, 0xff, 0x69, 0x5e,
|
0x64, 0xef, 0x03, 0xc9, 0x39, 0x8c, 0x72, 0x7a, 0xc7, 0x12, 0x46, 0x09, 0xf7, 0xfa, 0xff, 0xa7,
|
||||||
0x49, 0xb8, 0x0e, 0x9e, 0x79, 0xee, 0xbf, 0x1a, 0x18, 0x2a, 0x95, 0x5d, 0xcd, 0xda, 0x73, 0xcd,
|
0x79, 0x2d, 0xe1, 0x36, 0xba, 0xe7, 0xf9, 0xff, 0x1a, 0x60, 0x69, 0x2b, 0xc7, 0x9e, 0x8d, 0xfb,
|
||||||
0xc8, 0x01, 0xa3, 0x22, 0x8c, 0xd3, 0x3c, 0x53, 0x7a, 0xad, 0x29, 0x10, 0x46, 0x52, 0x12, 0x71,
|
0x9e, 0x91, 0x07, 0x56, 0x43, 0x18, 0xa7, 0x65, 0xa1, 0xf5, 0xba, 0x50, 0x20, 0x8c, 0xe4, 0x24,
|
||||||
0xe2, 0x74, 0x1b, 0x44, 0x99, 0xe8, 0x0d, 0xf4, 0x48, 0x91, 0xe3, 0xb5, 0xa3, 0x8f, 0xb4, 0x71,
|
0xe1, 0xc4, 0xeb, 0x2b, 0x44, 0x87, 0xe8, 0x21, 0x0c, 0x48, 0x55, 0xe2, 0xad, 0x67, 0x4e, 0x8c,
|
||||||
0x2f, 0x68, 0x0c, 0x11, 0x3d, 0x62, 0x78, 0xed, 0xf4, 0x9a, 0xe8, 0xe2, 0x8d, 0xde, 0x81, 0xc9,
|
0xe9, 0x20, 0x52, 0x81, 0xa8, 0x9e, 0x30, 0xbc, 0xf5, 0x06, 0xaa, 0xba, 0x38, 0xa3, 0xc7, 0x60,
|
||||||
0x19, 0x0e, 0xa5, 0x6a, 0xbf, 0x09, 0xc2, 0x19, 0x9e, 0x0b, 0xe1, 0xaf, 0xc1, 0x12, 0x50, 0x2b,
|
0x73, 0x86, 0x63, 0xa9, 0x3a, 0x54, 0x45, 0x38, 0xc3, 0x4b, 0x21, 0xfc, 0x35, 0x38, 0x02, 0xea,
|
||||||
0x6e, 0x48, 0x14, 0x38, 0xc3, 0x4b, 0xa5, 0xaf, 0x08, 0x6d, 0x0e, 0xe6, 0x8e, 0x10, 0xa8, 0x34,
|
0xc4, 0x2d, 0x89, 0x02, 0x67, 0x78, 0xad, 0xf5, 0x35, 0xa1, 0xf3, 0x60, 0x1f, 0x09, 0x91, 0xb6,
|
||||||
0xde, 0xc3, 0x40, 0x10, 0x9a, 0x54, 0x06, 0x32, 0x15, 0xa1, 0x76, 0x2e, 0x6c, 0xf7, 0x67, 0x30,
|
0xf1, 0x04, 0x46, 0x82, 0xa0, 0xac, 0x8c, 0xa4, 0x15, 0xa1, 0x76, 0x25, 0x62, 0xff, 0x67, 0xb0,
|
||||||
0x54, 0x37, 0x3e, 0xae, 0x6c, 0xf7, 0x1f, 0x1d, 0x8e, 0x96, 0x8f, 0x69, 0x46, 0x58, 0xf4, 0x40,
|
0xf4, 0x6d, 0x7c, 0x5c, 0xdb, 0xfe, 0x3f, 0x26, 0x5c, 0xac, 0x0f, 0x79, 0x41, 0x58, 0x72, 0x47,
|
||||||
0x53, 0x5a, 0xd6, 0xe8, 0x03, 0xd8, 0xd5, 0xbe, 0x23, 0xa4, 0xb1, 0x8a, 0xf5, 0xfa, 0xc0, 0xef,
|
0x73, 0x5a, 0xb7, 0xe8, 0x29, 0xb8, 0xcd, 0x69, 0x22, 0xa6, 0xa9, 0xae, 0xf5, 0xe0, 0x2c, 0x1f,
|
||||||
0xc7, 0xa2, 0xde, 0x62, 0xb3, 0x0a, 0xf7, 0x36, 0xcb, 0x28, 0x36, 0x2b, 0x59, 0xef, 0x0f, 0xf0,
|
0xa6, 0xa2, 0xdf, 0x6a, 0xb7, 0x89, 0x4f, 0x26, 0xcb, 0xaa, 0x76, 0x1b, 0xd9, 0xef, 0x0f, 0xf0,
|
||||||
0x29, 0xcd, 0x78, 0x19, 0xa5, 0x29, 0x89, 0x77, 0x55, 0x37, 0x8d, 0xb5, 0x77, 0x40, 0x5b, 0xfb,
|
0x29, 0x2d, 0x78, 0x9d, 0xe4, 0x39, 0x49, 0x8f, 0x5d, 0xab, 0x8b, 0x75, 0x8f, 0x40, 0xd7, 0xfb,
|
||||||
0x37, 0x70, 0x94, 0xd0, 0xbf, 0xf7, 0x88, 0xba, 0x24, 0x0e, 0xa5, 0xb3, 0x25, 0xbd, 0x81, 0x5e,
|
0x37, 0x70, 0x91, 0xd1, 0xbf, 0x4f, 0x88, 0xa6, 0x24, 0x8e, 0x65, 0xb2, 0x23, 0x3d, 0x84, 0x41,
|
||||||
0x49, 0xcb, 0x94, 0xa8, 0x8e, 0x37, 0x06, 0x1a, 0x81, 0x15, 0x13, 0x8e, 0x19, 0x2d, 0xc4, 0x96,
|
0x4d, 0xeb, 0x9c, 0xe8, 0x1b, 0x57, 0x01, 0x9a, 0x80, 0x93, 0x12, 0x8e, 0x19, 0xad, 0xc4, 0x94,
|
||||||
0xa9, 0xae, 0xef, 0xbb, 0x90, 0x07, 0x26, 0x27, 0x15, 0x61, 0xb4, 0xac, 0x65, 0xdb, 0x5f, 0x79,
|
0xe9, 0x5b, 0x3f, 0x4d, 0xa1, 0x00, 0x6c, 0x4e, 0x1a, 0xc2, 0x68, 0xdd, 0xca, 0x6b, 0xbf, 0x0c,
|
||||||
0x6f, 0x0f, 0xd7, 0x68, 0xa1, 0xd0, 0x60, 0xc7, 0x43, 0x5f, 0x01, 0x30, 0x92, 0x10, 0x46, 0x32,
|
0x1e, 0x9d, 0x8f, 0xd1, 0x4a, 0xa3, 0xd1, 0x91, 0x87, 0xbe, 0x02, 0x60, 0x24, 0x23, 0x8c, 0x14,
|
||||||
0x4c, 0xb8, 0x63, 0x8e, 0xba, 0x62, 0x16, 0xcf, 0x1e, 0xf4, 0x01, 0x7a, 0x69, 0x54, 0x13, 0xe6,
|
0x98, 0x70, 0xcf, 0x9e, 0xf4, 0xc5, 0x5b, 0xdc, 0x67, 0xd0, 0x53, 0x18, 0xe4, 0x49, 0x4b, 0x98,
|
||||||
0xc0, 0x48, 0x1b, 0x5b, 0xde, 0x67, 0x2f, 0xf6, 0x52, 0x40, 0x41, 0xc3, 0x40, 0xdf, 0xc1, 0xeb,
|
0x07, 0x13, 0x63, 0xea, 0x04, 0x9f, 0x7d, 0x30, 0x97, 0x02, 0x8a, 0x14, 0x03, 0x7d, 0x07, 0x0f,
|
||||||
0x36, 0x6c, 0xc8, 0xf3, 0x47, 0x86, 0x89, 0x63, 0xc9, 0x24, 0x5f, 0xb5, 0xee, 0x85, 0xf4, 0xa2,
|
0xba, 0xb2, 0x31, 0x2f, 0x0f, 0x0c, 0x13, 0xcf, 0x91, 0x26, 0x2f, 0xbb, 0xf4, 0x4a, 0x66, 0xd1,
|
||||||
0x5f, 0x40, 0xc7, 0x15, 0xe7, 0xce, 0x50, 0xae, 0xfa, 0xb7, 0x87, 0x21, 0x0f, 0x46, 0x34, 0x99,
|
0x2f, 0x60, 0xe2, 0x86, 0x73, 0x6f, 0x2c, 0x47, 0xfd, 0xdb, 0xf3, 0x92, 0x67, 0x4f, 0x34, 0x5b,
|
||||||
0x55, 0x9c, 0x9f, 0x67, 0x25, 0xab, 0x03, 0xf9, 0x09, 0xfa, 0x02, 0x0c, 0xfc, 0x44, 0x42, 0x1a,
|
0x34, 0x9c, 0x5f, 0x15, 0x35, 0x6b, 0x23, 0xf9, 0x09, 0xfa, 0x02, 0x2c, 0xfc, 0x9e, 0xc4, 0x34,
|
||||||
0x73, 0xe7, 0x48, 0xe6, 0xda, 0xc7, 0x4f, 0xc4, 0x8f, 0xf9, 0x97, 0x97, 0x30, 0xd8, 0x71, 0x91,
|
0xe5, 0xde, 0x85, 0xf4, 0x3a, 0xc4, 0xef, 0x49, 0x98, 0x72, 0x31, 0x54, 0x15, 0xa3, 0xfb, 0x84,
|
||||||
0x0d, 0xdd, 0x0d, 0x69, 0x0f, 0x83, 0x78, 0xa2, 0x31, 0xf4, 0xaa, 0x28, 0x7d, 0x6c, 0x86, 0x67,
|
0xb5, 0xf1, 0x81, 0xe5, 0xde, 0xa5, 0x1a, 0x2a, 0x9d, 0xba, 0x65, 0xf9, 0x97, 0xaf, 0x61, 0x74,
|
||||||
0x79, 0xe8, 0x50, 0x73, 0xb6, 0x5c, 0x2c, 0x82, 0x86, 0xf0, 0x6b, 0xe7, 0x44, 0x73, 0x4f, 0xa0,
|
0x2c, 0x86, 0x5c, 0xe8, 0xef, 0x48, 0xb7, 0x39, 0xc4, 0x11, 0x4d, 0x61, 0xd0, 0x24, 0xf9, 0x41,
|
||||||
0x27, 0x2b, 0x13, 0x47, 0x26, 0xa6, 0x2b, 0xc2, 0xcb, 0xf6, 0xc8, 0x34, 0x96, 0x48, 0x23, 0xa6,
|
0xbd, 0xae, 0x13, 0xa0, 0x73, 0x53, 0x8b, 0xf5, 0x6a, 0x15, 0x29, 0xc2, 0xaf, 0xbd, 0xe7, 0x86,
|
||||||
0x49, 0x22, 0x16, 0xa6, 0xd3, 0x02, 0x49, 0xe2, 0xc7, 0x6e, 0x05, 0xba, 0x08, 0x26, 0x56, 0xb8,
|
0xff, 0x1c, 0x06, 0xb2, 0x75, 0xb1, 0x85, 0x52, 0xba, 0x21, 0xbc, 0xee, 0xb6, 0x90, 0x8a, 0x84,
|
||||||
0xf2, 0xc2, 0x8a, 0xe0, 0x32, 0x67, 0xed, 0x89, 0xa9, 0xbc, 0xa5, 0xb4, 0x25, 0x38, 0x6d, 0x41,
|
0xcf, 0x94, 0x66, 0x99, 0x98, 0xa8, 0x5e, 0x07, 0x64, 0x59, 0x98, 0xfa, 0x0d, 0x98, 0xa2, 0x98,
|
||||||
0x75, 0x0c, 0xaa, 0xa9, 0x02, 0xdf, 0x81, 0x59, 0x79, 0x21, 0xc7, 0x39, 0x6b, 0x7e, 0x4f, 0x2d,
|
0x98, 0xf1, 0x26, 0x88, 0x1b, 0x82, 0xeb, 0x92, 0x75, 0x3b, 0xa8, 0x09, 0xd6, 0x32, 0x96, 0xe0,
|
||||||
0x30, 0x2a, 0x6f, 0x21, 0x4c, 0x09, 0x4d, 0x15, 0xa4, 0x2b, 0x68, 0x2a, 0xa1, 0xef, 0xcf, 0xc0,
|
0xbc, 0x03, 0xf5, 0xb6, 0x68, 0xe6, 0x1a, 0x7c, 0x0c, 0x76, 0x13, 0xc4, 0x1c, 0x97, 0x4c, 0xfd,
|
||||||
0x6c, 0x87, 0x8b, 0x2c, 0x30, 0xee, 0xe6, 0x97, 0xf3, 0x9b, 0xfb, 0xb9, 0xfd, 0x09, 0x32, 0xa0,
|
0xbf, 0x46, 0x64, 0x35, 0xc1, 0x4a, 0x84, 0x12, 0x9a, 0x6b, 0xc8, 0xd4, 0xd0, 0x5c, 0x42, 0xdf,
|
||||||
0x7b, 0x75, 0x73, 0x6f, 0x6b, 0x08, 0xa0, 0x7f, 0x7d, 0x7e, 0xe6, 0xdf, 0x5d, 0xdb, 0x1d, 0x64,
|
0xbf, 0x04, 0xbb, 0x7b, 0x7d, 0xe4, 0x80, 0x75, 0xbb, 0x7c, 0xbd, 0xbc, 0x79, 0xb7, 0x74, 0x3f,
|
||||||
0x82, 0x7e, 0xe1, 0xff, 0x7e, 0x61, 0x77, 0xd1, 0x10, 0xcc, 0x59, 0xe0, 0xff, 0xe1, 0xcf, 0x4e,
|
0x41, 0x16, 0xf4, 0xaf, 0x6f, 0xde, 0xb9, 0x06, 0x02, 0x18, 0xbe, 0xb9, 0x7a, 0x19, 0xde, 0xbe,
|
||||||
0xaf, 0x6c, 0xfd, 0x37, 0xf3, 0xcf, 0x7e, 0xd3, 0x91, 0x87, 0xbe, 0x3c, 0xbc, 0xd3, 0xff, 0x02,
|
0x71, 0x7b, 0xc8, 0x06, 0xf3, 0x55, 0xf8, 0xfb, 0x2b, 0xb7, 0x8f, 0xc6, 0x60, 0x2f, 0xa2, 0xf0,
|
||||||
0x00, 0x00, 0xff, 0xff, 0x38, 0x0b, 0xe8, 0x0f, 0x94, 0x05, 0x00, 0x00,
|
0x8f, 0x70, 0xf1, 0xe2, 0xda, 0x35, 0x7f, 0xb3, 0xff, 0x1c, 0xaa, 0x1b, 0xb9, 0x1b, 0xca, 0xcd,
|
||||||
|
0x3c, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x77, 0x90, 0x19, 0xab, 0xb5, 0x05, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ message Vulnerability {
|
|||||||
string severity_source = 11;
|
string severity_source = 11;
|
||||||
map<string, CVSS> cvss = 12;
|
map<string, CVSS> cvss = 12;
|
||||||
repeated string cwe_ids = 13;
|
repeated string cwe_ids = 13;
|
||||||
|
string primary_url = 14;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Layer {
|
message Layer {
|
||||||
|
|||||||
Reference in New Issue
Block a user