diff --git a/advisories/github-reviewed/2022/05/GHSA-c9jp-244j-vh78/GHSA-c9jp-244j-vh78.json b/advisories/github-reviewed/2022/05/GHSA-c9jp-244j-vh78/GHSA-c9jp-244j-vh78.json index 42f5b626dcb..80b6c782422 100644 --- a/advisories/github-reviewed/2022/05/GHSA-c9jp-244j-vh78/GHSA-c9jp-244j-vh78.json +++ b/advisories/github-reviewed/2022/05/GHSA-c9jp-244j-vh78/GHSA-c9jp-244j-vh78.json @@ -8,9 +8,7 @@ ], "summary": "Moodle cross-site scripting (XSS) vulnerability", "details": "Cross-site scripting (XSS) vulnerability in user/profile.php in Moodle through 2.3.11, 2.4.x before 2.4.11, 2.5.x before 2.5.7, 2.6.x before 2.6.4, and 2.7.x before 2.7.1 allows remote authenticated users to inject arbitrary web script or HTML via the Skype ID profile field.", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { diff --git a/advisories/github-reviewed/2022/05/GHSA-f66h-6mj2-rwj2/GHSA-f66h-6mj2-rwj2.json b/advisories/github-reviewed/2022/05/GHSA-f66h-6mj2-rwj2/GHSA-f66h-6mj2-rwj2.json index cee1004b26a..8b0d4f091c6 100644 --- a/advisories/github-reviewed/2022/05/GHSA-f66h-6mj2-rwj2/GHSA-f66h-6mj2-rwj2.json +++ b/advisories/github-reviewed/2022/05/GHSA-f66h-6mj2-rwj2/GHSA-f66h-6mj2-rwj2.json @@ -8,9 +8,7 @@ ], "summary": "Moodle multiple cross-site scripting (XSS) vulnerabilities", "details": "Multiple cross-site scripting (XSS) vulnerabilities in Moodle through 2.3.11, 2.4.x before 2.4.11, 2.5.x before 2.5.7, 2.6.x before 2.6.4, and 2.7.x before 2.7.1 allow remote attackers to inject arbitrary web script or HTML via vectors that trigger an AJAX exception dialog.", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { diff --git a/advisories/github-reviewed/2024/08/GHSA-6jrj-vc65-c983/GHSA-6jrj-vc65-c983.json b/advisories/github-reviewed/2024/08/GHSA-6jrj-vc65-c983/GHSA-6jrj-vc65-c983.json index 651e6a9844d..dc190d6943a 100644 --- a/advisories/github-reviewed/2024/08/GHSA-6jrj-vc65-c983/GHSA-6jrj-vc65-c983.json +++ b/advisories/github-reviewed/2024/08/GHSA-6jrj-vc65-c983/GHSA-6jrj-vc65-c983.json @@ -3,9 +3,7 @@ "id": "GHSA-6jrj-vc65-c983", "modified": "2024-08-26T15:17:40Z", "published": "2024-08-26T15:17:40Z", - "aliases": [ - - ], + "aliases": [], "summary": "unzip-stream allows Arbitrary File Write via artifact extraction", "details": "### Impact\n\nWhen using the `Extract()` method of unzip-stream, malicious zip files were able to write to paths they shouldn't be allowed to.\n\n### Patches\n\nFixed in 0.3.2\n\n### References\n\n- https://snyk.io/research/zip-slip-vulnerability\n- https://github.com/mhr3/unzip-stream/compare/v0.3.1...v0.3.2\n\n### Credits\n\nJustin Taft from Google", "severity": [ diff --git a/advisories/github-reviewed/2024/08/GHSA-xmrp-424f-vfpx/GHSA-xmrp-424f-vfpx.json b/advisories/github-reviewed/2024/08/GHSA-xmrp-424f-vfpx/GHSA-xmrp-424f-vfpx.json index abf6e655c32..dabd939112d 100644 --- a/advisories/github-reviewed/2024/08/GHSA-xmrp-424f-vfpx/GHSA-xmrp-424f-vfpx.json +++ b/advisories/github-reviewed/2024/08/GHSA-xmrp-424f-vfpx/GHSA-xmrp-424f-vfpx.json @@ -3,14 +3,10 @@ "id": "GHSA-xmrp-424f-vfpx", "modified": "2024-08-26T14:12:11Z", "published": "2024-08-19T16:02:04Z", - "aliases": [ - - ], + "aliases": [], "summary": "SQLx Binary Protocol Misinterpretation caused by Truncating or Overflowing Casts", "details": "The following presentation at this year's DEF CON was brought to our attention on the SQLx Discord:\n\n> SQL Injection isn't Dead: Smuggling Queries at the Protocol Level \n> \n> (Archive link for posterity.)\n\nEssentially, encoding a value larger than 4GiB can cause the length prefix in the protocol to overflow, \ncausing the server to interpret the rest of the string as binary protocol commands or other data.\n\nIt appears SQLx _does_ perform truncating casts in a way that could be problematic, \nfor example: \n\nThis code has existed essentially since the beginning, \nso it is reasonable to assume that all published versions `<= 0.8.0` are affected.\n\n## Mitigation\n\nAs always, you should make sure your application is validating untrustworthy user input. \nReject any input over 4 GiB, or any input that could _encode_ to a string longer than 4 GiB. \nDynamically built queries are also potentially problematic if it pushes the message size over this 4 GiB bound.\n\n[`Encode::size_hint()`](https://docs.rs/sqlx/latest/sqlx/trait.Encode.html#method.size_hint) \ncan be used for sanity checks, but do not assume that the size returned is accurate. \nFor example, the `Json` and `Text` adapters have no reasonable way to predict or estimate the final encoded size, \nso they just return `size_of::()` instead.\n\nFor web application backends, consider adding some middleware that limits the size of request bodies by default.\n\n## Resolution\n\nWork has started on a branch to add `#[deny]` directives for the following Clippy lints:\n\n* [`cast_possible_truncation`](https://rust-lang.github.io/rust-clippy/master/#/cast_possible_truncation)\n* [`cast_possible_wrap`](https://rust-lang.github.io/rust-clippy/master/#/cast_possible_wrap)\n* [`cast_sign_loss`](https://rust-lang.github.io/rust-clippy/master/#/cast_sign_loss)\n\nand to manually audit the code that they flag.\n\nA fix is expected to be included in the `0.8.1` release (still WIP as of writing).\n", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { @@ -54,9 +50,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": true, "github_reviewed_at": "2024-08-19T16:02:04Z", diff --git a/advisories/unreviewed/2021/11/GHSA-wxwj-m72v-qhcr/GHSA-wxwj-m72v-qhcr.json b/advisories/unreviewed/2021/11/GHSA-wxwj-m72v-qhcr/GHSA-wxwj-m72v-qhcr.json index 9fbb9927805..30e4ebbabaa 100644 --- a/advisories/unreviewed/2021/11/GHSA-wxwj-m72v-qhcr/GHSA-wxwj-m72v-qhcr.json +++ b/advisories/unreviewed/2021/11/GHSA-wxwj-m72v-qhcr/GHSA-wxwj-m72v-qhcr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2021/12/GHSA-3p9w-pv5h-crrp/GHSA-3p9w-pv5h-crrp.json b/advisories/unreviewed/2021/12/GHSA-3p9w-pv5h-crrp/GHSA-3p9w-pv5h-crrp.json index 85797160234..9b8ea076aab 100644 --- a/advisories/unreviewed/2021/12/GHSA-3p9w-pv5h-crrp/GHSA-3p9w-pv5h-crrp.json +++ b/advisories/unreviewed/2021/12/GHSA-3p9w-pv5h-crrp/GHSA-3p9w-pv5h-crrp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2021/12/GHSA-96g6-83p3-m784/GHSA-96g6-83p3-m784.json b/advisories/unreviewed/2021/12/GHSA-96g6-83p3-m784/GHSA-96g6-83p3-m784.json index 4ae3ebcd534..a6419c21cf8 100644 --- a/advisories/unreviewed/2021/12/GHSA-96g6-83p3-m784/GHSA-96g6-83p3-m784.json +++ b/advisories/unreviewed/2021/12/GHSA-96g6-83p3-m784/GHSA-96g6-83p3-m784.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/01/GHSA-gfrv-96fc-6fhx/GHSA-gfrv-96fc-6fhx.json b/advisories/unreviewed/2022/01/GHSA-gfrv-96fc-6fhx/GHSA-gfrv-96fc-6fhx.json index 8b46ddc86a4..74e47f1f5df 100644 --- a/advisories/unreviewed/2022/01/GHSA-gfrv-96fc-6fhx/GHSA-gfrv-96fc-6fhx.json +++ b/advisories/unreviewed/2022/01/GHSA-gfrv-96fc-6fhx/GHSA-gfrv-96fc-6fhx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/01/GHSA-xjqw-8fp3-69c2/GHSA-xjqw-8fp3-69c2.json b/advisories/unreviewed/2022/01/GHSA-xjqw-8fp3-69c2/GHSA-xjqw-8fp3-69c2.json index c9610791cdf..bd0adde2050 100644 --- a/advisories/unreviewed/2022/01/GHSA-xjqw-8fp3-69c2/GHSA-xjqw-8fp3-69c2.json +++ b/advisories/unreviewed/2022/01/GHSA-xjqw-8fp3-69c2/GHSA-xjqw-8fp3-69c2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-7g8j-9jf2-66wx/GHSA-7g8j-9jf2-66wx.json b/advisories/unreviewed/2022/04/GHSA-7g8j-9jf2-66wx/GHSA-7g8j-9jf2-66wx.json index 2d4d8551573..68152cf2043 100644 --- a/advisories/unreviewed/2022/04/GHSA-7g8j-9jf2-66wx/GHSA-7g8j-9jf2-66wx.json +++ b/advisories/unreviewed/2022/04/GHSA-7g8j-9jf2-66wx/GHSA-7g8j-9jf2-66wx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-q36f-8454-r4h2/GHSA-q36f-8454-r4h2.json b/advisories/unreviewed/2022/04/GHSA-q36f-8454-r4h2/GHSA-q36f-8454-r4h2.json index 6f57642b610..667a6eff2ca 100644 --- a/advisories/unreviewed/2022/04/GHSA-q36f-8454-r4h2/GHSA-q36f-8454-r4h2.json +++ b/advisories/unreviewed/2022/04/GHSA-q36f-8454-r4h2/GHSA-q36f-8454-r4h2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-x77v-4m7v-7fgv/GHSA-x77v-4m7v-7fgv.json b/advisories/unreviewed/2022/04/GHSA-x77v-4m7v-7fgv/GHSA-x77v-4m7v-7fgv.json index c6d8736e10a..2ad905c9130 100644 --- a/advisories/unreviewed/2022/04/GHSA-x77v-4m7v-7fgv/GHSA-x77v-4m7v-7fgv.json +++ b/advisories/unreviewed/2022/04/GHSA-x77v-4m7v-7fgv/GHSA-x77v-4m7v-7fgv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-22jq-crhx-w9j5/GHSA-22jq-crhx-w9j5.json b/advisories/unreviewed/2022/05/GHSA-22jq-crhx-w9j5/GHSA-22jq-crhx-w9j5.json index c67657027b0..4f1db269f35 100644 --- a/advisories/unreviewed/2022/05/GHSA-22jq-crhx-w9j5/GHSA-22jq-crhx-w9j5.json +++ b/advisories/unreviewed/2022/05/GHSA-22jq-crhx-w9j5/GHSA-22jq-crhx-w9j5.json @@ -7,12 +7,8 @@ "CVE-2015-5961" ], "details": "The COPPA error page in the Accounts setup dialog in Mozilla Firefox OS before 2.2 embeds content from an external web server URL into the System process, which allows man-in-the-middle attackers to bypass intended access restrictions by spoofing that server.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-22mx-9r92-42g8/GHSA-22mx-9r92-42g8.json b/advisories/unreviewed/2022/05/GHSA-22mx-9r92-42g8/GHSA-22mx-9r92-42g8.json index 8aa717d68ee..930e4d39730 100644 --- a/advisories/unreviewed/2022/05/GHSA-22mx-9r92-42g8/GHSA-22mx-9r92-42g8.json +++ b/advisories/unreviewed/2022/05/GHSA-22mx-9r92-42g8/GHSA-22mx-9r92-42g8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-22p9-vg4g-45mc/GHSA-22p9-vg4g-45mc.json b/advisories/unreviewed/2022/05/GHSA-22p9-vg4g-45mc/GHSA-22p9-vg4g-45mc.json index 14b944f878c..52566bf88e1 100644 --- a/advisories/unreviewed/2022/05/GHSA-22p9-vg4g-45mc/GHSA-22p9-vg4g-45mc.json +++ b/advisories/unreviewed/2022/05/GHSA-22p9-vg4g-45mc/GHSA-22p9-vg4g-45mc.json @@ -7,12 +7,8 @@ "CVE-2015-0127" ], "details": "IBM Leads 7.x, 8.1.0 before 8.1.0.14, 8.2, 8.5.0 before 8.5.0.7.3, 8.6.0 before 8.6.0.8.1, 9.0.0 through 9.0.0.4, 9.1.0 before 9.1.0.6.1, and 9.1.1 before 9.1.1.0.2 does not properly restrict use of FRAME elements, which allows remote authenticated users to conduct phishing attacks via a crafted web site.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2472-r3qx-5cf2/GHSA-2472-r3qx-5cf2.json b/advisories/unreviewed/2022/05/GHSA-2472-r3qx-5cf2/GHSA-2472-r3qx-5cf2.json index 568da3c491a..fcbdbbb3db7 100644 --- a/advisories/unreviewed/2022/05/GHSA-2472-r3qx-5cf2/GHSA-2472-r3qx-5cf2.json +++ b/advisories/unreviewed/2022/05/GHSA-2472-r3qx-5cf2/GHSA-2472-r3qx-5cf2.json @@ -7,12 +7,8 @@ "CVE-2015-5685" ], "details": "The lazy_bdecode function in BitTorrent DHT bootstrap server (bootstrap-dht ) allows remote attackers to execute arbitrary code via a crafted packet, related to \"improper indexing.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-24c2-gvwg-5p45/GHSA-24c2-gvwg-5p45.json b/advisories/unreviewed/2022/05/GHSA-24c2-gvwg-5p45/GHSA-24c2-gvwg-5p45.json index 31b4b7bf404..eabec49c029 100644 --- a/advisories/unreviewed/2022/05/GHSA-24c2-gvwg-5p45/GHSA-24c2-gvwg-5p45.json +++ b/advisories/unreviewed/2022/05/GHSA-24c2-gvwg-5p45/GHSA-24c2-gvwg-5p45.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-264q-ch9j-7v9c/GHSA-264q-ch9j-7v9c.json b/advisories/unreviewed/2022/05/GHSA-264q-ch9j-7v9c/GHSA-264q-ch9j-7v9c.json index 6ca22791d36..12c4a4f01ed 100644 --- a/advisories/unreviewed/2022/05/GHSA-264q-ch9j-7v9c/GHSA-264q-ch9j-7v9c.json +++ b/advisories/unreviewed/2022/05/GHSA-264q-ch9j-7v9c/GHSA-264q-ch9j-7v9c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-26rc-pv36-f3pg/GHSA-26rc-pv36-f3pg.json b/advisories/unreviewed/2022/05/GHSA-26rc-pv36-f3pg/GHSA-26rc-pv36-f3pg.json index a9997b5b01a..98962db9dfe 100644 --- a/advisories/unreviewed/2022/05/GHSA-26rc-pv36-f3pg/GHSA-26rc-pv36-f3pg.json +++ b/advisories/unreviewed/2022/05/GHSA-26rc-pv36-f3pg/GHSA-26rc-pv36-f3pg.json @@ -7,12 +7,8 @@ "CVE-2015-5369" ], "details": "Pulse Connect Secure (aka PCS and formerly Juniper PCS) PSC6000, PCS6500, and MAG PSC360 8.1 before 8.1r5, 8.0 before 8.0r13, 7.4 before 7.4r13.5, and 7.1 before 7.1r22.2 and PPS 5.1 before 5.1R5 and 5.0 before 5.0R13, when Hardware Acceleration is enabled, does not properly validate the Finished TLS handshake message, which makes it easier for remote attackers to conduct man-in-the-middle attacks via a crafted Finished message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-27cf-g4w9-cqwp/GHSA-27cf-g4w9-cqwp.json b/advisories/unreviewed/2022/05/GHSA-27cf-g4w9-cqwp/GHSA-27cf-g4w9-cqwp.json index eb95a627c19..68af21f4085 100644 --- a/advisories/unreviewed/2022/05/GHSA-27cf-g4w9-cqwp/GHSA-27cf-g4w9-cqwp.json +++ b/advisories/unreviewed/2022/05/GHSA-27cf-g4w9-cqwp/GHSA-27cf-g4w9-cqwp.json @@ -7,12 +7,8 @@ "CVE-2014-4515" ], "details": "Cross-site scripting (XSS) vulnerability in mce_anyfont/dialog.php in the AnyFont plugin 2.2.3 and earlier for WordPress allows remote attackers to inject arbitrary web script or HTML via the text parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-27r3-f3mg-fxp8/GHSA-27r3-f3mg-fxp8.json b/advisories/unreviewed/2022/05/GHSA-27r3-f3mg-fxp8/GHSA-27r3-f3mg-fxp8.json index 4d6fdf5e263..793273904f2 100644 --- a/advisories/unreviewed/2022/05/GHSA-27r3-f3mg-fxp8/GHSA-27r3-f3mg-fxp8.json +++ b/advisories/unreviewed/2022/05/GHSA-27r3-f3mg-fxp8/GHSA-27r3-f3mg-fxp8.json @@ -7,12 +7,8 @@ "CVE-2014-2670" ], "details": "Cross-site scripting (XSS) vulnerability in Properties.do in ZOHO ManageEngine OpStor before build 8500 allows remote authenticated users to inject arbitrary web script or HTML via the name parameter, a different vulnerability than CVE-2014-0344.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-28pc-8r63-2vcq/GHSA-28pc-8r63-2vcq.json b/advisories/unreviewed/2022/05/GHSA-28pc-8r63-2vcq/GHSA-28pc-8r63-2vcq.json index 238df66aaee..4730f89fc07 100644 --- a/advisories/unreviewed/2022/05/GHSA-28pc-8r63-2vcq/GHSA-28pc-8r63-2vcq.json +++ b/advisories/unreviewed/2022/05/GHSA-28pc-8r63-2vcq/GHSA-28pc-8r63-2vcq.json @@ -7,12 +7,8 @@ "CVE-2014-5408" ], "details": "Cross-site scripting (XSS) vulnerability in the login script in the Wind Farm Portal on Nordex Control 2 (NC2) SCADA devices 15 and earlier allows remote attackers to inject arbitrary web script or HTML via the username parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-29ch-f7xh-hrh2/GHSA-29ch-f7xh-hrh2.json b/advisories/unreviewed/2022/05/GHSA-29ch-f7xh-hrh2/GHSA-29ch-f7xh-hrh2.json index 84459276617..f025c626cb9 100644 --- a/advisories/unreviewed/2022/05/GHSA-29ch-f7xh-hrh2/GHSA-29ch-f7xh-hrh2.json +++ b/advisories/unreviewed/2022/05/GHSA-29ch-f7xh-hrh2/GHSA-29ch-f7xh-hrh2.json @@ -7,12 +7,8 @@ "CVE-2013-4300" ], "details": "The scm_check_creds function in net/core/scm.c in the Linux kernel before 3.11 performs a capability check in an incorrect namespace, which allows local users to gain privileges via PID spoofing.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -52,9 +48,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-29fm-h5wx-rm6q/GHSA-29fm-h5wx-rm6q.json b/advisories/unreviewed/2022/05/GHSA-29fm-h5wx-rm6q/GHSA-29fm-h5wx-rm6q.json index e08eac56baf..43568439433 100644 --- a/advisories/unreviewed/2022/05/GHSA-29fm-h5wx-rm6q/GHSA-29fm-h5wx-rm6q.json +++ b/advisories/unreviewed/2022/05/GHSA-29fm-h5wx-rm6q/GHSA-29fm-h5wx-rm6q.json @@ -7,12 +7,8 @@ "CVE-2015-4346" ], "details": "Cross-site scripting (XSS) vulnerability in the SMS Framework module 6.x-1.x before 6.x-1.1 for Drupal, when the \"Send to phone\" submodule is enabled, allows remote attackers to inject arbitrary web script or HTML via unspecified vectors related to message previews.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-29p3-gxfx-6jvv/GHSA-29p3-gxfx-6jvv.json b/advisories/unreviewed/2022/05/GHSA-29p3-gxfx-6jvv/GHSA-29p3-gxfx-6jvv.json index 13710a6766c..b461160b0b2 100644 --- a/advisories/unreviewed/2022/05/GHSA-29p3-gxfx-6jvv/GHSA-29p3-gxfx-6jvv.json +++ b/advisories/unreviewed/2022/05/GHSA-29p3-gxfx-6jvv/GHSA-29p3-gxfx-6jvv.json @@ -7,12 +7,8 @@ "CVE-2014-4875" ], "details": "CreateBossCredentials.jar in Toshiba CHEC before 6.6 build 4014 and 6.7 before build 4329 contains a hardcoded AES key, which allows attackers to discover Back Office System Server (BOSS) DB2 database credentials by leveraging knowledge of this key in conjunction with bossinfo.pro read access.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2c73-wh2v-m8hm/GHSA-2c73-wh2v-m8hm.json b/advisories/unreviewed/2022/05/GHSA-2c73-wh2v-m8hm/GHSA-2c73-wh2v-m8hm.json index 35696913cf1..b9a77aa29f7 100644 --- a/advisories/unreviewed/2022/05/GHSA-2c73-wh2v-m8hm/GHSA-2c73-wh2v-m8hm.json +++ b/advisories/unreviewed/2022/05/GHSA-2c73-wh2v-m8hm/GHSA-2c73-wh2v-m8hm.json @@ -7,12 +7,8 @@ "CVE-2015-1987" ], "details": "IBM MQ Light before 1.0.0.2 allows remote attackers to cause a denial of service (disk consumption) via a crafted byte sequence in authentication data, a different vulnerability than CVE-2015-1956 and CVE-2015-1958.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2crr-37jg-749x/GHSA-2crr-37jg-749x.json b/advisories/unreviewed/2022/05/GHSA-2crr-37jg-749x/GHSA-2crr-37jg-749x.json index 10401c66e64..c355ad66880 100644 --- a/advisories/unreviewed/2022/05/GHSA-2crr-37jg-749x/GHSA-2crr-37jg-749x.json +++ b/advisories/unreviewed/2022/05/GHSA-2crr-37jg-749x/GHSA-2crr-37jg-749x.json @@ -7,12 +7,8 @@ "CVE-2014-4569" ], "details": "Cross-site scripting (XSS) vulnerability in ls/vv_login.php in the VideoWhisper Live Streaming Integration plugin 4.27.2 and earlier for WordPress allows remote attackers to inject arbitrary web script or HTML via the room_name parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2f6h-8w7w-4q3g/GHSA-2f6h-8w7w-4q3g.json b/advisories/unreviewed/2022/05/GHSA-2f6h-8w7w-4q3g/GHSA-2f6h-8w7w-4q3g.json index e3d5c3e8ea2..9c7811862d0 100644 --- a/advisories/unreviewed/2022/05/GHSA-2f6h-8w7w-4q3g/GHSA-2f6h-8w7w-4q3g.json +++ b/advisories/unreviewed/2022/05/GHSA-2f6h-8w7w-4q3g/GHSA-2f6h-8w7w-4q3g.json @@ -7,12 +7,8 @@ "CVE-2015-5520" ], "details": "Cross-site scripting (XSS) vulnerability in the Users module in Orchard 1.7.3 through 1.8.2 and 1.9.x before 1.9.1 allows remote attackers to inject arbitrary web script or HTML via the username when creating a new user account, which is not properly handled when deleting an account.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2fc6-449p-gv59/GHSA-2fc6-449p-gv59.json b/advisories/unreviewed/2022/05/GHSA-2fc6-449p-gv59/GHSA-2fc6-449p-gv59.json index 1a96c0bbb86..28b27abbb84 100644 --- a/advisories/unreviewed/2022/05/GHSA-2fc6-449p-gv59/GHSA-2fc6-449p-gv59.json +++ b/advisories/unreviewed/2022/05/GHSA-2fc6-449p-gv59/GHSA-2fc6-449p-gv59.json @@ -7,12 +7,8 @@ "CVE-2014-9201" ], "details": "Beckwith Electric M-6200 Digital Voltage Regulator Control with firmware before D-0198V04.07.00, M-6200A Digital Voltage Regulator Control with firmware before D-0228V02.01.07, M-2001D Digital Tapchanger Control with firmware before D-0214V01.10.04, M-6283A Three Phase Digital Capacitor Bank Control with firmware before D-0346V03.00.02, M-6280A Digital Capacitor Bank Control with firmware before D-0254V03.05.05, and M-6280 Digital Capacitor Bank Control do not properly generate TCP initial sequence number (ISN) values, which makes it easier for remote attackers to spoof TCP sessions by predicting an ISN value.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2fqh-mw2q-wr69/GHSA-2fqh-mw2q-wr69.json b/advisories/unreviewed/2022/05/GHSA-2fqh-mw2q-wr69/GHSA-2fqh-mw2q-wr69.json index 13ebb35c594..2eb1150d2a5 100644 --- a/advisories/unreviewed/2022/05/GHSA-2fqh-mw2q-wr69/GHSA-2fqh-mw2q-wr69.json +++ b/advisories/unreviewed/2022/05/GHSA-2fqh-mw2q-wr69/GHSA-2fqh-mw2q-wr69.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2g72-c9c4-mr3v/GHSA-2g72-c9c4-mr3v.json b/advisories/unreviewed/2022/05/GHSA-2g72-c9c4-mr3v/GHSA-2g72-c9c4-mr3v.json index eb359e76290..029340753da 100644 --- a/advisories/unreviewed/2022/05/GHSA-2g72-c9c4-mr3v/GHSA-2g72-c9c4-mr3v.json +++ b/advisories/unreviewed/2022/05/GHSA-2g72-c9c4-mr3v/GHSA-2g72-c9c4-mr3v.json @@ -7,12 +7,8 @@ "CVE-2015-0638" ], "details": "Cisco IOS 12.2, 12.4, 15.0, 15.2, and 15.3, when a VRF interface is configured, allows remote attackers to cause a denial of service (interface queue wedge) via crafted ICMPv4 packets, aka Bug ID CSCsi02145.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2gpv-g6wh-j3p9/GHSA-2gpv-g6wh-j3p9.json b/advisories/unreviewed/2022/05/GHSA-2gpv-g6wh-j3p9/GHSA-2gpv-g6wh-j3p9.json index 3d65c419265..39477246501 100644 --- a/advisories/unreviewed/2022/05/GHSA-2gpv-g6wh-j3p9/GHSA-2gpv-g6wh-j3p9.json +++ b/advisories/unreviewed/2022/05/GHSA-2gpv-g6wh-j3p9/GHSA-2gpv-g6wh-j3p9.json @@ -7,12 +7,8 @@ "CVE-2014-2092" ], "details": "Cross-site scripting (XSS) vulnerability in lib/filemanager/ImageManager/editorFrame.php in CMS Made Simple 1.11.10 allows remote attackers to inject arbitrary web script or HTML via the action parameter, a different issue than CVE-2014-0334. NOTE: the original disclosure also reported issues that may not cross privilege boundaries.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2h54-g4cf-fg9x/GHSA-2h54-g4cf-fg9x.json b/advisories/unreviewed/2022/05/GHSA-2h54-g4cf-fg9x/GHSA-2h54-g4cf-fg9x.json index 5d22db52379..3b92603df22 100644 --- a/advisories/unreviewed/2022/05/GHSA-2h54-g4cf-fg9x/GHSA-2h54-g4cf-fg9x.json +++ b/advisories/unreviewed/2022/05/GHSA-2h54-g4cf-fg9x/GHSA-2h54-g4cf-fg9x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2hmg-j5gm-vm6q/GHSA-2hmg-j5gm-vm6q.json b/advisories/unreviewed/2022/05/GHSA-2hmg-j5gm-vm6q/GHSA-2hmg-j5gm-vm6q.json index b3fa7b0c2e7..146f0aae2f0 100644 --- a/advisories/unreviewed/2022/05/GHSA-2hmg-j5gm-vm6q/GHSA-2hmg-j5gm-vm6q.json +++ b/advisories/unreviewed/2022/05/GHSA-2hmg-j5gm-vm6q/GHSA-2hmg-j5gm-vm6q.json @@ -7,12 +7,8 @@ "CVE-2015-1063" ], "details": "CoreTelephony in Apple iOS before 8.2 allows remote attackers to cause a denial of service (NULL pointer dereference and device restart) via a Class 0 SMS message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2j3f-mgwg-2gjh/GHSA-2j3f-mgwg-2gjh.json b/advisories/unreviewed/2022/05/GHSA-2j3f-mgwg-2gjh/GHSA-2j3f-mgwg-2gjh.json index 0ad1f176e3b..e1f443c42fc 100644 --- a/advisories/unreviewed/2022/05/GHSA-2j3f-mgwg-2gjh/GHSA-2j3f-mgwg-2gjh.json +++ b/advisories/unreviewed/2022/05/GHSA-2j3f-mgwg-2gjh/GHSA-2j3f-mgwg-2gjh.json @@ -7,12 +7,8 @@ "CVE-2015-0715" ], "details": "SQL injection vulnerability in the administrative web interface in Cisco Unified Communications Manager 11.0(0.98000.225) allows remote authenticated users to execute arbitrary SQL commands via unspecified vectors, aka Bug IDs CSCut33447 and CSCut33608.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2m3x-c3pv-g7qv/GHSA-2m3x-c3pv-g7qv.json b/advisories/unreviewed/2022/05/GHSA-2m3x-c3pv-g7qv/GHSA-2m3x-c3pv-g7qv.json index 3858baa72cf..81bed676b8d 100644 --- a/advisories/unreviewed/2022/05/GHSA-2m3x-c3pv-g7qv/GHSA-2m3x-c3pv-g7qv.json +++ b/advisories/unreviewed/2022/05/GHSA-2m3x-c3pv-g7qv/GHSA-2m3x-c3pv-g7qv.json @@ -7,12 +7,8 @@ "CVE-2015-4357" ], "details": "Cross-site scripting (XSS) vulnerability in the Webform module before 6.x-3.22, 7.x-3.x before 7.x-3.22, and 7.x-4.x before 7.x-4.4 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via a node title, which is used as the default title of a webform block.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2m5q-52fx-w72m/GHSA-2m5q-52fx-w72m.json b/advisories/unreviewed/2022/05/GHSA-2m5q-52fx-w72m/GHSA-2m5q-52fx-w72m.json index e9034e9d727..1ab519f88aa 100644 --- a/advisories/unreviewed/2022/05/GHSA-2m5q-52fx-w72m/GHSA-2m5q-52fx-w72m.json +++ b/advisories/unreviewed/2022/05/GHSA-2m5q-52fx-w72m/GHSA-2m5q-52fx-w72m.json @@ -7,12 +7,8 @@ "CVE-2015-4290" ], "details": "The kernel extension in Cisco AnyConnect Secure Mobility Client 4.0(2049) on OS X allows local users to cause a denial of service (panic) via vectors involving contiguous memory locations, aka Bug ID CSCut12255.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2mp6-6cqc-j393/GHSA-2mp6-6cqc-j393.json b/advisories/unreviewed/2022/05/GHSA-2mp6-6cqc-j393/GHSA-2mp6-6cqc-j393.json index 8f31c33ce3c..275680441e7 100644 --- a/advisories/unreviewed/2022/05/GHSA-2mp6-6cqc-j393/GHSA-2mp6-6cqc-j393.json +++ b/advisories/unreviewed/2022/05/GHSA-2mp6-6cqc-j393/GHSA-2mp6-6cqc-j393.json @@ -7,12 +7,8 @@ "CVE-2014-9734" ], "details": "Directory traversal vulnerability in the Slider Revolution (revslider) plugin before 4.2 for WordPress allows remote attackers to read arbitrary files via a .. (dot dot) in the img parameter in a revslider_show_image action to wp-admin/admin-ajax.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2mvr-x656-xc89/GHSA-2mvr-x656-xc89.json b/advisories/unreviewed/2022/05/GHSA-2mvr-x656-xc89/GHSA-2mvr-x656-xc89.json index e1d7f0a7d90..7b5df6f60ef 100644 --- a/advisories/unreviewed/2022/05/GHSA-2mvr-x656-xc89/GHSA-2mvr-x656-xc89.json +++ b/advisories/unreviewed/2022/05/GHSA-2mvr-x656-xc89/GHSA-2mvr-x656-xc89.json @@ -7,12 +7,8 @@ "CVE-2014-3976" ], "details": "Buffer overflow in A10 Networks Advanced Core Operating System (ACOS) before 2.7.0-p6 and 2.7.1 before 2.7.1-P1_55 allows remote attackers to cause a denial of service (crash) and possibly execute arbitrary code via a long session id in the URI to sys_reboot.html. NOTE: some of these details are obtained from third party information.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2p4q-pg24-pmp6/GHSA-2p4q-pg24-pmp6.json b/advisories/unreviewed/2022/05/GHSA-2p4q-pg24-pmp6/GHSA-2p4q-pg24-pmp6.json index a4e757e9fb2..dcab8b6b6cf 100644 --- a/advisories/unreviewed/2022/05/GHSA-2p4q-pg24-pmp6/GHSA-2p4q-pg24-pmp6.json +++ b/advisories/unreviewed/2022/05/GHSA-2p4q-pg24-pmp6/GHSA-2p4q-pg24-pmp6.json @@ -7,12 +7,8 @@ "CVE-2015-6557" ], "details": "IBM Tivoli Storage Manager for Databases: Data Protection for Microsoft SQL Server 5.5 before 5.5.6.1, 6.3 before 6.3.1.5, 6.4 before 6.4.1.7, and 7.1 before 7.1.2; Tivoli Storage Manager for Mail: Data Protection for Microsoft Exchange Server 5.5 before 5.5.1.1, 6.1 before 6.1.3.7, 6.3 before 6.3.1.5, 6.4 before 6.4.1.7, and 7.1 before 7.1.2; and Tivoli Storage FlashCopy Manager 3.1 before 3.1.1.5, 3.2 before 3.2.1.7, and 4.1 before 4.1.2, when application tracing is used, place cleartext passwords in exception messages, which allows physically proximate attackers to obtain sensitive information by reading trace output, a different vulnerability than CVE-2015-4949.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2phc-gpx4-h876/GHSA-2phc-gpx4-h876.json b/advisories/unreviewed/2022/05/GHSA-2phc-gpx4-h876/GHSA-2phc-gpx4-h876.json index 79b88a598d6..93be29d6aae 100644 --- a/advisories/unreviewed/2022/05/GHSA-2phc-gpx4-h876/GHSA-2phc-gpx4-h876.json +++ b/advisories/unreviewed/2022/05/GHSA-2phc-gpx4-h876/GHSA-2phc-gpx4-h876.json @@ -7,12 +7,8 @@ "CVE-2015-5681" ], "details": "Unrestricted file upload vulnerability in upload.php in the Powerplay Gallery plugin 3.3 for WordPress allows remote attackers to execute arbitrary code by uploading a file with an executable extension, then accessing it via a direct request to the file in *_uploadfolder/big/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -40,9 +36,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2rmv-q4gp-w43q/GHSA-2rmv-q4gp-w43q.json b/advisories/unreviewed/2022/05/GHSA-2rmv-q4gp-w43q/GHSA-2rmv-q4gp-w43q.json index 12219550169..338374f980f 100644 --- a/advisories/unreviewed/2022/05/GHSA-2rmv-q4gp-w43q/GHSA-2rmv-q4gp-w43q.json +++ b/advisories/unreviewed/2022/05/GHSA-2rmv-q4gp-w43q/GHSA-2rmv-q4gp-w43q.json @@ -7,12 +7,8 @@ "CVE-2015-6587" ], "details": "The vlserver in OpenAFS before 1.6.13 allows remote authenticated users to cause a denial of service (out-of-bounds read and crash) via a crafted regular expression in a VL_ListAttributesN2 RPC.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2rpr-pf46-4w2m/GHSA-2rpr-pf46-4w2m.json b/advisories/unreviewed/2022/05/GHSA-2rpr-pf46-4w2m/GHSA-2rpr-pf46-4w2m.json index 0e7a0e0fb81..bd7eefa6663 100644 --- a/advisories/unreviewed/2022/05/GHSA-2rpr-pf46-4w2m/GHSA-2rpr-pf46-4w2m.json +++ b/advisories/unreviewed/2022/05/GHSA-2rpr-pf46-4w2m/GHSA-2rpr-pf46-4w2m.json @@ -7,12 +7,8 @@ "CVE-2015-4354" ], "details": "Cross-site scripting (XSS) vulnerability in the Ubercart Webform Integration module before 6.x-1.8 and 7.x before 7.x-2.4 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2v7g-8jvx-2wfc/GHSA-2v7g-8jvx-2wfc.json b/advisories/unreviewed/2022/05/GHSA-2v7g-8jvx-2wfc/GHSA-2v7g-8jvx-2wfc.json index a16b82b83e2..fe70e7d79a0 100644 --- a/advisories/unreviewed/2022/05/GHSA-2v7g-8jvx-2wfc/GHSA-2v7g-8jvx-2wfc.json +++ b/advisories/unreviewed/2022/05/GHSA-2v7g-8jvx-2wfc/GHSA-2v7g-8jvx-2wfc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2vf4-9qc5-m6pf/GHSA-2vf4-9qc5-m6pf.json b/advisories/unreviewed/2022/05/GHSA-2vf4-9qc5-m6pf/GHSA-2vf4-9qc5-m6pf.json index c7c4b9e9a6f..45189133abf 100644 --- a/advisories/unreviewed/2022/05/GHSA-2vf4-9qc5-m6pf/GHSA-2vf4-9qc5-m6pf.json +++ b/advisories/unreviewed/2022/05/GHSA-2vf4-9qc5-m6pf/GHSA-2vf4-9qc5-m6pf.json @@ -7,12 +7,8 @@ "CVE-2015-0156" ], "details": "Cross-site scripting (XSS) vulnerability in IBM Business Process Manager (BPM) 7.5.x through 7.5.1.2, 8.0.x through 8.0.1.3, and 8.5.x through 8.5.6.0 and WebSphere Lombardi Edition (WLE) 7.2.x through 7.2.0.5 allows remote authenticated users to inject arbitrary web script or HTML via a crafted URL.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2vrc-r3cm-r6h6/GHSA-2vrc-r3cm-r6h6.json b/advisories/unreviewed/2022/05/GHSA-2vrc-r3cm-r6h6/GHSA-2vrc-r3cm-r6h6.json index 1084321ca48..5f0c8063bdc 100644 --- a/advisories/unreviewed/2022/05/GHSA-2vrc-r3cm-r6h6/GHSA-2vrc-r3cm-r6h6.json +++ b/advisories/unreviewed/2022/05/GHSA-2vrc-r3cm-r6h6/GHSA-2vrc-r3cm-r6h6.json @@ -7,12 +7,8 @@ "CVE-2014-5330" ], "details": "Cross-site scripting (XSS) vulnerability in BirdBlog allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2w3j-7x55-5cx2/GHSA-2w3j-7x55-5cx2.json b/advisories/unreviewed/2022/05/GHSA-2w3j-7x55-5cx2/GHSA-2w3j-7x55-5cx2.json index 6f9c0a8a4aa..4c00b61f47b 100644 --- a/advisories/unreviewed/2022/05/GHSA-2w3j-7x55-5cx2/GHSA-2w3j-7x55-5cx2.json +++ b/advisories/unreviewed/2022/05/GHSA-2w3j-7x55-5cx2/GHSA-2w3j-7x55-5cx2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2w4j-r5v6-3vgr/GHSA-2w4j-r5v6-3vgr.json b/advisories/unreviewed/2022/05/GHSA-2w4j-r5v6-3vgr/GHSA-2w4j-r5v6-3vgr.json index 9167fd9dbce..81890c53e21 100644 --- a/advisories/unreviewed/2022/05/GHSA-2w4j-r5v6-3vgr/GHSA-2w4j-r5v6-3vgr.json +++ b/advisories/unreviewed/2022/05/GHSA-2w4j-r5v6-3vgr/GHSA-2w4j-r5v6-3vgr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2wc6-h889-742q/GHSA-2wc6-h889-742q.json b/advisories/unreviewed/2022/05/GHSA-2wc6-h889-742q/GHSA-2wc6-h889-742q.json index 8260649d6e9..f3c3425f42e 100644 --- a/advisories/unreviewed/2022/05/GHSA-2wc6-h889-742q/GHSA-2wc6-h889-742q.json +++ b/advisories/unreviewed/2022/05/GHSA-2wc6-h889-742q/GHSA-2wc6-h889-742q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2wjf-pfwq-m2xp/GHSA-2wjf-pfwq-m2xp.json b/advisories/unreviewed/2022/05/GHSA-2wjf-pfwq-m2xp/GHSA-2wjf-pfwq-m2xp.json index 6a16bd54ccc..c66dd5189bb 100644 --- a/advisories/unreviewed/2022/05/GHSA-2wjf-pfwq-m2xp/GHSA-2wjf-pfwq-m2xp.json +++ b/advisories/unreviewed/2022/05/GHSA-2wjf-pfwq-m2xp/GHSA-2wjf-pfwq-m2xp.json @@ -7,12 +7,8 @@ "CVE-2015-4365" ], "details": "Cross-site scripting (XSS) vulnerability in the Taxonomy Accordion module for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via vectors related to taxonomy terms.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2wp8-8f56-4p9g/GHSA-2wp8-8f56-4p9g.json b/advisories/unreviewed/2022/05/GHSA-2wp8-8f56-4p9g/GHSA-2wp8-8f56-4p9g.json index 9231ef50d30..2e632002119 100644 --- a/advisories/unreviewed/2022/05/GHSA-2wp8-8f56-4p9g/GHSA-2wp8-8f56-4p9g.json +++ b/advisories/unreviewed/2022/05/GHSA-2wp8-8f56-4p9g/GHSA-2wp8-8f56-4p9g.json @@ -7,12 +7,8 @@ "CVE-2015-4291" ], "details": "Cisco IOS XE 2.x before 2.4.3 and 2.5.x before 2.5.1 on ASR 1000 devices allows remote attackers to cause a denial of service (Embedded Services Processor crash) via a crafted series of fragmented (1) IPv4 or (2) IPv6 packets, aka Bug ID CSCtd72617.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2x2q-5mcv-v852/GHSA-2x2q-5mcv-v852.json b/advisories/unreviewed/2022/05/GHSA-2x2q-5mcv-v852/GHSA-2x2q-5mcv-v852.json index 68e2c504b73..566b964d79a 100644 --- a/advisories/unreviewed/2022/05/GHSA-2x2q-5mcv-v852/GHSA-2x2q-5mcv-v852.json +++ b/advisories/unreviewed/2022/05/GHSA-2x2q-5mcv-v852/GHSA-2x2q-5mcv-v852.json @@ -7,12 +7,8 @@ "CVE-2015-6753" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the Quick Edit module 7.x-1.x before 7.x-1.2 for Drupal allow remote authenticated users with certain permissions to inject arbitrary web script or HTML via an (1) entity title, related to in-place editing, or a (2) node title.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2xx5-rm9h-fw44/GHSA-2xx5-rm9h-fw44.json b/advisories/unreviewed/2022/05/GHSA-2xx5-rm9h-fw44/GHSA-2xx5-rm9h-fw44.json index 035f88cc6ae..3f43cd6b6a6 100644 --- a/advisories/unreviewed/2022/05/GHSA-2xx5-rm9h-fw44/GHSA-2xx5-rm9h-fw44.json +++ b/advisories/unreviewed/2022/05/GHSA-2xx5-rm9h-fw44/GHSA-2xx5-rm9h-fw44.json @@ -7,12 +7,8 @@ "CVE-2011-1763" ], "details": "The get_free_port function in Xen allows local authenticated DomU users to cause a denial of service or possibly gain privileges via unspecified vectors involving a new event channel port.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3383-444j-3cv6/GHSA-3383-444j-3cv6.json b/advisories/unreviewed/2022/05/GHSA-3383-444j-3cv6/GHSA-3383-444j-3cv6.json index b611ff0f142..865ccda8acc 100644 --- a/advisories/unreviewed/2022/05/GHSA-3383-444j-3cv6/GHSA-3383-444j-3cv6.json +++ b/advisories/unreviewed/2022/05/GHSA-3383-444j-3cv6/GHSA-3383-444j-3cv6.json @@ -7,12 +7,8 @@ "CVE-2015-5519" ], "details": "Cross-site scripting (XSS) vulnerability in the applyConvolution demo in WideImage 11.02.19 allows remote attackers to inject arbitrary web script or HTML via the matrix parameter to demo/index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-34h9-j269-66p2/GHSA-34h9-j269-66p2.json b/advisories/unreviewed/2022/05/GHSA-34h9-j269-66p2/GHSA-34h9-j269-66p2.json index 9d49891b35b..aad98dfb22a 100644 --- a/advisories/unreviewed/2022/05/GHSA-34h9-j269-66p2/GHSA-34h9-j269-66p2.json +++ b/advisories/unreviewed/2022/05/GHSA-34h9-j269-66p2/GHSA-34h9-j269-66p2.json @@ -7,12 +7,8 @@ "CVE-2015-1550" ], "details": "Directory traversal vulnerability in Aruba Networks ClearPass Policy Manager (CPPM) before 6.4.5 allows remote administrators to execute arbitrary files via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-359f-64m6-vf7p/GHSA-359f-64m6-vf7p.json b/advisories/unreviewed/2022/05/GHSA-359f-64m6-vf7p/GHSA-359f-64m6-vf7p.json index 882df144183..a935119c947 100644 --- a/advisories/unreviewed/2022/05/GHSA-359f-64m6-vf7p/GHSA-359f-64m6-vf7p.json +++ b/advisories/unreviewed/2022/05/GHSA-359f-64m6-vf7p/GHSA-359f-64m6-vf7p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-35j3-xgpv-8g44/GHSA-35j3-xgpv-8g44.json b/advisories/unreviewed/2022/05/GHSA-35j3-xgpv-8g44/GHSA-35j3-xgpv-8g44.json index 9fc86752c44..ad6a423c14c 100644 --- a/advisories/unreviewed/2022/05/GHSA-35j3-xgpv-8g44/GHSA-35j3-xgpv-8g44.json +++ b/advisories/unreviewed/2022/05/GHSA-35j3-xgpv-8g44/GHSA-35j3-xgpv-8g44.json @@ -7,12 +7,8 @@ "CVE-2015-5500" ], "details": "Cross-site scripting (XSS) vulnerability in the Navigate module for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3672-p885-v7rv/GHSA-3672-p885-v7rv.json b/advisories/unreviewed/2022/05/GHSA-3672-p885-v7rv/GHSA-3672-p885-v7rv.json index a388447a562..f79fe4328c9 100644 --- a/advisories/unreviewed/2022/05/GHSA-3672-p885-v7rv/GHSA-3672-p885-v7rv.json +++ b/advisories/unreviewed/2022/05/GHSA-3672-p885-v7rv/GHSA-3672-p885-v7rv.json @@ -7,12 +7,8 @@ "CVE-2015-4348" ], "details": "SQL injection vulnerability in the Spider Contacts module for Drupal allows remote authenticated users with the \"access Spider Contacts category administration\" permission to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3749-7fcp-r85v/GHSA-3749-7fcp-r85v.json b/advisories/unreviewed/2022/05/GHSA-3749-7fcp-r85v/GHSA-3749-7fcp-r85v.json index 8caf2ae04af..04824c56710 100644 --- a/advisories/unreviewed/2022/05/GHSA-3749-7fcp-r85v/GHSA-3749-7fcp-r85v.json +++ b/advisories/unreviewed/2022/05/GHSA-3749-7fcp-r85v/GHSA-3749-7fcp-r85v.json @@ -7,12 +7,8 @@ "CVE-2015-5474" ], "details": "BitTorrent and uTorrent allow remote attackers to inject command line parameters and execute arbitrary commands via a crafted URL using the (1) bittorrent or (2) magnet protocol.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-37wj-c2wj-xrjh/GHSA-37wj-c2wj-xrjh.json b/advisories/unreviewed/2022/05/GHSA-37wj-c2wj-xrjh/GHSA-37wj-c2wj-xrjh.json index 6b5e97c1681..0293cbf4eb3 100644 --- a/advisories/unreviewed/2022/05/GHSA-37wj-c2wj-xrjh/GHSA-37wj-c2wj-xrjh.json +++ b/advisories/unreviewed/2022/05/GHSA-37wj-c2wj-xrjh/GHSA-37wj-c2wj-xrjh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-38fp-9j49-g4gm/GHSA-38fp-9j49-g4gm.json b/advisories/unreviewed/2022/05/GHSA-38fp-9j49-g4gm/GHSA-38fp-9j49-g4gm.json index 6682b871594..bbc5dcfed4d 100644 --- a/advisories/unreviewed/2022/05/GHSA-38fp-9j49-g4gm/GHSA-38fp-9j49-g4gm.json +++ b/advisories/unreviewed/2022/05/GHSA-38fp-9j49-g4gm/GHSA-38fp-9j49-g4gm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-38xp-wffc-82cj/GHSA-38xp-wffc-82cj.json b/advisories/unreviewed/2022/05/GHSA-38xp-wffc-82cj/GHSA-38xp-wffc-82cj.json index 0887e872c85..863cd76a082 100644 --- a/advisories/unreviewed/2022/05/GHSA-38xp-wffc-82cj/GHSA-38xp-wffc-82cj.json +++ b/advisories/unreviewed/2022/05/GHSA-38xp-wffc-82cj/GHSA-38xp-wffc-82cj.json @@ -7,12 +7,8 @@ "CVE-2015-0196" ], "details": "CRLF injection vulnerability in IBM WebSphere Commerce 6.0 through 6.0.0.11 and 7.0 before 7.0.0.8 Cumulative iFix 2 allows remote attackers to inject arbitrary HTTP headers and conduct HTTP response splitting attacks via a crafted URL.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3fpr-96rf-fw9f/GHSA-3fpr-96rf-fw9f.json b/advisories/unreviewed/2022/05/GHSA-3fpr-96rf-fw9f/GHSA-3fpr-96rf-fw9f.json index d2d55df9e84..3bbe2af2425 100644 --- a/advisories/unreviewed/2022/05/GHSA-3fpr-96rf-fw9f/GHSA-3fpr-96rf-fw9f.json +++ b/advisories/unreviewed/2022/05/GHSA-3fpr-96rf-fw9f/GHSA-3fpr-96rf-fw9f.json @@ -7,12 +7,8 @@ "CVE-2015-2870" ], "details": "Cross-site scripting (XSS) vulnerability on Chiyu BF-630, BF-630W, and BF-660C fingerprint access-control devices allows remote attackers to inject arbitrary web script or HTML via a SCRIPT element.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3gqq-5q23-3xww/GHSA-3gqq-5q23-3xww.json b/advisories/unreviewed/2022/05/GHSA-3gqq-5q23-3xww/GHSA-3gqq-5q23-3xww.json index 09b796c4827..c357b7602ac 100644 --- a/advisories/unreviewed/2022/05/GHSA-3gqq-5q23-3xww/GHSA-3gqq-5q23-3xww.json +++ b/advisories/unreviewed/2022/05/GHSA-3gqq-5q23-3xww/GHSA-3gqq-5q23-3xww.json @@ -7,12 +7,8 @@ "CVE-2015-4139" ], "details": "Cross-site scripting (XSS) vulnerability in smilies4wp.php in the WP Smiley plugin 1.4.1 for WordPress allows remote authenticated users to inject arbitrary web script or HTML via the s4w-more parameter to wp-admin/options-general.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3jq8-4x2x-fr2h/GHSA-3jq8-4x2x-fr2h.json b/advisories/unreviewed/2022/05/GHSA-3jq8-4x2x-fr2h/GHSA-3jq8-4x2x-fr2h.json index 009f78b225a..cd98ac964dd 100644 --- a/advisories/unreviewed/2022/05/GHSA-3jq8-4x2x-fr2h/GHSA-3jq8-4x2x-fr2h.json +++ b/advisories/unreviewed/2022/05/GHSA-3jq8-4x2x-fr2h/GHSA-3jq8-4x2x-fr2h.json @@ -7,12 +7,8 @@ "CVE-2014-4865" ], "details": "Cross-site request forgery (CSRF) vulnerability in gui/password-wadmin.apl in CacheGuard OS 5.7.7 allows remote attackers to hijack the authentication of arbitrary users.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3jrq-q9gq-vqpx/GHSA-3jrq-q9gq-vqpx.json b/advisories/unreviewed/2022/05/GHSA-3jrq-q9gq-vqpx/GHSA-3jrq-q9gq-vqpx.json index 9b09bd2daae..a01ce1793e2 100644 --- a/advisories/unreviewed/2022/05/GHSA-3jrq-q9gq-vqpx/GHSA-3jrq-q9gq-vqpx.json +++ b/advisories/unreviewed/2022/05/GHSA-3jrq-q9gq-vqpx/GHSA-3jrq-q9gq-vqpx.json @@ -7,12 +7,8 @@ "CVE-2015-0170" ], "details": "IBM Security SiteProtector System 3.0 before 3.0.0.7, 3.1 before 3.1.0.4, and 3.1.1 before 3.1.1.2 allows local users to obtain sensitive information by reading cached data.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3m9c-63xg-96rx/GHSA-3m9c-63xg-96rx.json b/advisories/unreviewed/2022/05/GHSA-3m9c-63xg-96rx/GHSA-3m9c-63xg-96rx.json index 302d8ff5676..0bcbdaf7ec3 100644 --- a/advisories/unreviewed/2022/05/GHSA-3m9c-63xg-96rx/GHSA-3m9c-63xg-96rx.json +++ b/advisories/unreviewed/2022/05/GHSA-3m9c-63xg-96rx/GHSA-3m9c-63xg-96rx.json @@ -7,12 +7,8 @@ "CVE-2014-4543" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in payper/payper.php in the Pay Per Media Player plugin 1.24 and earlier for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) fcolor, (2) links, (3) stitle, (4) height, (5) width, (6) host, (7) bcolor, (8) msg, (9) id, or (10) size parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3p2c-v2vr-8p3x/GHSA-3p2c-v2vr-8p3x.json b/advisories/unreviewed/2022/05/GHSA-3p2c-v2vr-8p3x/GHSA-3p2c-v2vr-8p3x.json index ffc1a3b0a2c..bb4c587bd7e 100644 --- a/advisories/unreviewed/2022/05/GHSA-3p2c-v2vr-8p3x/GHSA-3p2c-v2vr-8p3x.json +++ b/advisories/unreviewed/2022/05/GHSA-3p2c-v2vr-8p3x/GHSA-3p2c-v2vr-8p3x.json @@ -7,12 +7,8 @@ "CVE-2015-4637" ], "details": "The REST API in F5 BIG-IQ Cloud, Device, and Security 4.4.0 and 4.5.0 before HF2 and ADC 4.5.0 before HF2, when configured for LDAP remote authentication and the LDAP server allows anonymous BIND operations, allows remote attackers to obtain an authentication token for arbitrary users by guessing an LDAP user account name.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3p8j-x56c-55cf/GHSA-3p8j-x56c-55cf.json b/advisories/unreviewed/2022/05/GHSA-3p8j-x56c-55cf/GHSA-3p8j-x56c-55cf.json index 22771a4c020..655543ba50d 100644 --- a/advisories/unreviewed/2022/05/GHSA-3p8j-x56c-55cf/GHSA-3p8j-x56c-55cf.json +++ b/advisories/unreviewed/2022/05/GHSA-3p8j-x56c-55cf/GHSA-3p8j-x56c-55cf.json @@ -7,12 +7,8 @@ "CVE-2015-2636" ], "details": "Unspecified vulnerability in the Oracle Data Integrator component in Oracle Fusion Middleware 11.1.1.3.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Data Quality based on Trillium, a different vulnerability than CVE-2015-0443, CVE-2015-0444, CVE-2015-0445, CVE-2015-0446, CVE-2015-2634, CVE-2015-2635, CVE-2015-4758, and CVE-2015-4759.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3pfm-j22q-53jv/GHSA-3pfm-j22q-53jv.json b/advisories/unreviewed/2022/05/GHSA-3pfm-j22q-53jv/GHSA-3pfm-j22q-53jv.json index 2e07f32ca3f..131f2828d2a 100644 --- a/advisories/unreviewed/2022/05/GHSA-3pfm-j22q-53jv/GHSA-3pfm-j22q-53jv.json +++ b/advisories/unreviewed/2022/05/GHSA-3pfm-j22q-53jv/GHSA-3pfm-j22q-53jv.json @@ -7,12 +7,8 @@ "CVE-2015-5362" ], "details": "The BFD daemon in Juniper Junos OS 12.1X44 before 12.1X44-D50, 12.1X46 before 12.1X46-D35, 12.1X47 before 12.1X47-D25, 12.3 before 12.3R10, 12.3X48 before 12.3X48-D15, 13.2 before 13.2R8, 13.3 before 13.3R6, 14.1 before 14.1R5, 14.1X50 before 14.1X50-D85, 14.1X55 before 14.1X55-D20, 14.2 before 14.2R3, 15.1 before 15.1R1, and 15.1X49 before 15.1X49-D10 allows remote attackers to cause a denial of service (bfdd crash and restart) or execute arbitrary code via a crafted BFD packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3pg8-3336-w32h/GHSA-3pg8-3336-w32h.json b/advisories/unreviewed/2022/05/GHSA-3pg8-3336-w32h/GHSA-3pg8-3336-w32h.json index cb656a239ae..9d32b392e95 100644 --- a/advisories/unreviewed/2022/05/GHSA-3pg8-3336-w32h/GHSA-3pg8-3336-w32h.json +++ b/advisories/unreviewed/2022/05/GHSA-3pg8-3336-w32h/GHSA-3pg8-3336-w32h.json @@ -7,12 +7,8 @@ "CVE-2010-5323" ], "details": "Directory traversal vulnerability in UploadServlet in the Remote Management component in Novell ZENworks Configuration Management (ZCM) 10 before 10.3 allows remote attackers to execute arbitrary code via a crafted WAR pathname in the filename parameter in conjunction with WAR content in the POST data, a different vulnerability than CVE-2010-5324.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3phw-gjj5-pgh6/GHSA-3phw-gjj5-pgh6.json b/advisories/unreviewed/2022/05/GHSA-3phw-gjj5-pgh6/GHSA-3phw-gjj5-pgh6.json index df0f710378e..610f5e6b941 100644 --- a/advisories/unreviewed/2022/05/GHSA-3phw-gjj5-pgh6/GHSA-3phw-gjj5-pgh6.json +++ b/advisories/unreviewed/2022/05/GHSA-3phw-gjj5-pgh6/GHSA-3phw-gjj5-pgh6.json @@ -7,12 +7,8 @@ "CVE-2015-0115" ], "details": "Cross-site request forgery (CSRF) vulnerability in IBM Leads 7.x, 8.1.0 before 8.1.0.14, 8.2, 8.5.0 before 8.5.0.7.3, 8.6.0 before 8.6.0.8.1, 9.0.0 through 9.0.0.4, 9.1.0 before 9.1.0.6.1, and 9.1.1 before 9.1.1.0.2 allows remote authenticated users to hijack the authentication of customer accounts.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3q6p-xqh5-xhx5/GHSA-3q6p-xqh5-xhx5.json b/advisories/unreviewed/2022/05/GHSA-3q6p-xqh5-xhx5/GHSA-3q6p-xqh5-xhx5.json index b9fb7223b2d..4f3dfb3788b 100644 --- a/advisories/unreviewed/2022/05/GHSA-3q6p-xqh5-xhx5/GHSA-3q6p-xqh5-xhx5.json +++ b/advisories/unreviewed/2022/05/GHSA-3q6p-xqh5-xhx5/GHSA-3q6p-xqh5-xhx5.json @@ -7,12 +7,8 @@ "CVE-2015-4788" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect integrity and availability via unknown vectors, a different vulnerability than CVE-2015-4774 and CVE-2015-4779.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3qmr-hmpr-mv37/GHSA-3qmr-hmpr-mv37.json b/advisories/unreviewed/2022/05/GHSA-3qmr-hmpr-mv37/GHSA-3qmr-hmpr-mv37.json index bd338d42e35..e3d5c93f1ea 100644 --- a/advisories/unreviewed/2022/05/GHSA-3qmr-hmpr-mv37/GHSA-3qmr-hmpr-mv37.json +++ b/advisories/unreviewed/2022/05/GHSA-3qmr-hmpr-mv37/GHSA-3qmr-hmpr-mv37.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3qrr-m24q-j9qm/GHSA-3qrr-m24q-j9qm.json b/advisories/unreviewed/2022/05/GHSA-3qrr-m24q-j9qm/GHSA-3qrr-m24q-j9qm.json index 568cae20a87..49d42d77408 100644 --- a/advisories/unreviewed/2022/05/GHSA-3qrr-m24q-j9qm/GHSA-3qrr-m24q-j9qm.json +++ b/advisories/unreviewed/2022/05/GHSA-3qrr-m24q-j9qm/GHSA-3qrr-m24q-j9qm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3r3f-hp6h-c44j/GHSA-3r3f-hp6h-c44j.json b/advisories/unreviewed/2022/05/GHSA-3r3f-hp6h-c44j/GHSA-3r3f-hp6h-c44j.json index 52aef2feae1..b3afa1c3de3 100644 --- a/advisories/unreviewed/2022/05/GHSA-3r3f-hp6h-c44j/GHSA-3r3f-hp6h-c44j.json +++ b/advisories/unreviewed/2022/05/GHSA-3r3f-hp6h-c44j/GHSA-3r3f-hp6h-c44j.json @@ -7,12 +7,8 @@ "CVE-2015-0522" ], "details": "Cross-site scripting (XSS) vulnerability in EMC RSA Certificate Manager (RCM) before 6.9 build 558 and RSA Registration Manager (RRM) before 6.9 build 558 allows remote attackers to inject arbitrary web script or HTML via vectors related to the email address parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3r74-3v78-7856/GHSA-3r74-3v78-7856.json b/advisories/unreviewed/2022/05/GHSA-3r74-3v78-7856/GHSA-3r74-3v78-7856.json index cc067b2ccb3..9fe5ee71ba9 100644 --- a/advisories/unreviewed/2022/05/GHSA-3r74-3v78-7856/GHSA-3r74-3v78-7856.json +++ b/advisories/unreviewed/2022/05/GHSA-3r74-3v78-7856/GHSA-3r74-3v78-7856.json @@ -7,12 +7,8 @@ "CVE-2015-4064" ], "details": "SQL injection vulnerability in modules/module.ab-testing.php in the Landing Pages plugin before 1.8.5 for WordPress allows remote authenticated users to execute arbitrary SQL commands via the post parameter in an edit delete-variation action to wp-admin/post.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3r87-7296-4j6w/GHSA-3r87-7296-4j6w.json b/advisories/unreviewed/2022/05/GHSA-3r87-7296-4j6w/GHSA-3r87-7296-4j6w.json index dd15ec4a550..4f5be0e30aa 100644 --- a/advisories/unreviewed/2022/05/GHSA-3r87-7296-4j6w/GHSA-3r87-7296-4j6w.json +++ b/advisories/unreviewed/2022/05/GHSA-3r87-7296-4j6w/GHSA-3r87-7296-4j6w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -67,9 +65,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3r8c-j3rv-xw2p/GHSA-3r8c-j3rv-xw2p.json b/advisories/unreviewed/2022/05/GHSA-3r8c-j3rv-xw2p/GHSA-3r8c-j3rv-xw2p.json index 1cc1078ac29..c030b0998b3 100644 --- a/advisories/unreviewed/2022/05/GHSA-3r8c-j3rv-xw2p/GHSA-3r8c-j3rv-xw2p.json +++ b/advisories/unreviewed/2022/05/GHSA-3r8c-j3rv-xw2p/GHSA-3r8c-j3rv-xw2p.json @@ -7,12 +7,8 @@ "CVE-2015-5493" ], "details": "The Entityform Block module 7.x-1.x before 7.x-1.3 for Drupal does not properly check permissions when a form is locked to a role, which allows remote attackers to obtain access to certain entityforms via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3rjr-c6q9-jm9c/GHSA-3rjr-c6q9-jm9c.json b/advisories/unreviewed/2022/05/GHSA-3rjr-c6q9-jm9c/GHSA-3rjr-c6q9-jm9c.json index 4ac4fd6ddf0..189c06438c1 100644 --- a/advisories/unreviewed/2022/05/GHSA-3rjr-c6q9-jm9c/GHSA-3rjr-c6q9-jm9c.json +++ b/advisories/unreviewed/2022/05/GHSA-3rjr-c6q9-jm9c/GHSA-3rjr-c6q9-jm9c.json @@ -7,12 +7,8 @@ "CVE-2015-0540" ], "details": "SQL injection vulnerability in the xAdmin interface in EMC Document Sciences xPression 4.2 before P44 and 4.5 SP1 before P03 allows remote authenticated users to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3rqr-2pp7-2956/GHSA-3rqr-2pp7-2956.json b/advisories/unreviewed/2022/05/GHSA-3rqr-2pp7-2956/GHSA-3rqr-2pp7-2956.json index b33617618f8..eaf2d84a26c 100644 --- a/advisories/unreviewed/2022/05/GHSA-3rqr-2pp7-2956/GHSA-3rqr-2pp7-2956.json +++ b/advisories/unreviewed/2022/05/GHSA-3rqr-2pp7-2956/GHSA-3rqr-2pp7-2956.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3v2q-6r8m-3j96/GHSA-3v2q-6r8m-3j96.json b/advisories/unreviewed/2022/05/GHSA-3v2q-6r8m-3j96/GHSA-3v2q-6r8m-3j96.json index 48d873f3d6e..f55ec8e52da 100644 --- a/advisories/unreviewed/2022/05/GHSA-3v2q-6r8m-3j96/GHSA-3v2q-6r8m-3j96.json +++ b/advisories/unreviewed/2022/05/GHSA-3v2q-6r8m-3j96/GHSA-3v2q-6r8m-3j96.json @@ -7,12 +7,8 @@ "CVE-2014-1843" ], "details": "Directory traversal vulnerability in the web interface in Titan FTP Server before 10.40 build 1829 allows remote attackers to obtain the property information of an arbitrary home folder via a Properties action with a .. (dot dot) in the src parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3w2w-73h7-hq3v/GHSA-3w2w-73h7-hq3v.json b/advisories/unreviewed/2022/05/GHSA-3w2w-73h7-hq3v/GHSA-3w2w-73h7-hq3v.json index 8fa3de1309c..280163b17ea 100644 --- a/advisories/unreviewed/2022/05/GHSA-3w2w-73h7-hq3v/GHSA-3w2w-73h7-hq3v.json +++ b/advisories/unreviewed/2022/05/GHSA-3w2w-73h7-hq3v/GHSA-3w2w-73h7-hq3v.json @@ -7,12 +7,8 @@ "CVE-2014-0987" ], "details": "Stack-based buffer overflow in Advantech WebAccess (formerly BroadWin WebAccess) 7.2 allows remote attackers to execute arbitrary code via the NodeName2 parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3wxg-vvf7-x9pf/GHSA-3wxg-vvf7-x9pf.json b/advisories/unreviewed/2022/05/GHSA-3wxg-vvf7-x9pf/GHSA-3wxg-vvf7-x9pf.json index 1ca6a68612d..6ca7cad5745 100644 --- a/advisories/unreviewed/2022/05/GHSA-3wxg-vvf7-x9pf/GHSA-3wxg-vvf7-x9pf.json +++ b/advisories/unreviewed/2022/05/GHSA-3wxg-vvf7-x9pf/GHSA-3wxg-vvf7-x9pf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-43hf-r4f6-553p/GHSA-43hf-r4f6-553p.json b/advisories/unreviewed/2022/05/GHSA-43hf-r4f6-553p/GHSA-43hf-r4f6-553p.json index 4d5a8314385..82e24bea18e 100644 --- a/advisories/unreviewed/2022/05/GHSA-43hf-r4f6-553p/GHSA-43hf-r4f6-553p.json +++ b/advisories/unreviewed/2022/05/GHSA-43hf-r4f6-553p/GHSA-43hf-r4f6-553p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-45f9-3r26-9qwh/GHSA-45f9-3r26-9qwh.json b/advisories/unreviewed/2022/05/GHSA-45f9-3r26-9qwh/GHSA-45f9-3r26-9qwh.json index 302d2d4cd00..43256cee93e 100644 --- a/advisories/unreviewed/2022/05/GHSA-45f9-3r26-9qwh/GHSA-45f9-3r26-9qwh.json +++ b/advisories/unreviewed/2022/05/GHSA-45f9-3r26-9qwh/GHSA-45f9-3r26-9qwh.json @@ -7,12 +7,8 @@ "CVE-2014-8508" ], "details": "Cross-site scripting (XSS) vulnerability in s_network.asp in the Denon AVR-3313CI audio/video receiver allows remote attackers to inject arbitrary web script or HTML via unspecified parameters, related to Friendlyname.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-45ff-6jrg-vc97/GHSA-45ff-6jrg-vc97.json b/advisories/unreviewed/2022/05/GHSA-45ff-6jrg-vc97/GHSA-45ff-6jrg-vc97.json index 95c34ba663a..8e836321e75 100644 --- a/advisories/unreviewed/2022/05/GHSA-45ff-6jrg-vc97/GHSA-45ff-6jrg-vc97.json +++ b/advisories/unreviewed/2022/05/GHSA-45ff-6jrg-vc97/GHSA-45ff-6jrg-vc97.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-468q-4q83-jpv2/GHSA-468q-4q83-jpv2.json b/advisories/unreviewed/2022/05/GHSA-468q-4q83-jpv2/GHSA-468q-4q83-jpv2.json index 84f470b94de..034b644c889 100644 --- a/advisories/unreviewed/2022/05/GHSA-468q-4q83-jpv2/GHSA-468q-4q83-jpv2.json +++ b/advisories/unreviewed/2022/05/GHSA-468q-4q83-jpv2/GHSA-468q-4q83-jpv2.json @@ -7,12 +7,8 @@ "CVE-2015-5359" ], "details": "Juniper Junos OS 12.1X44 before 12.1X44-D50, 12.1X46 before 12.1X46-D35, 12.1X47 before 12.1X47-D25, 12.3 before 12.3R9, 12.3X48 before 12.3X48-D10, 13.2 before 13.2R7, 13.3 before 13.3R5, 14.1R3 before 14.1R3-S2, 14.1 before 14.1R4, 14.2 before 14.2R2, and 15.1 before 15.1R1 allows remote attackers to cause a denial of service (NULL pointer dereference and RDP crash) via a large number of BGP-VPLS advertisements with updated BGP local preference values.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-46w6-2r33-982j/GHSA-46w6-2r33-982j.json b/advisories/unreviewed/2022/05/GHSA-46w6-2r33-982j/GHSA-46w6-2r33-982j.json index cf105203712..b0b9b377e45 100644 --- a/advisories/unreviewed/2022/05/GHSA-46w6-2r33-982j/GHSA-46w6-2r33-982j.json +++ b/advisories/unreviewed/2022/05/GHSA-46w6-2r33-982j/GHSA-46w6-2r33-982j.json @@ -7,12 +7,8 @@ "CVE-2015-4789" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-47r4-gvw9-7fw7/GHSA-47r4-gvw9-7fw7.json b/advisories/unreviewed/2022/05/GHSA-47r4-gvw9-7fw7/GHSA-47r4-gvw9-7fw7.json index ca43f50d058..1c868f9e032 100644 --- a/advisories/unreviewed/2022/05/GHSA-47r4-gvw9-7fw7/GHSA-47r4-gvw9-7fw7.json +++ b/advisories/unreviewed/2022/05/GHSA-47r4-gvw9-7fw7/GHSA-47r4-gvw9-7fw7.json @@ -7,12 +7,8 @@ "CVE-2014-4349" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in phpMyAdmin 4.1.x before 4.1.14.1 and 4.2.x before 4.2.4 allow remote authenticated users to inject arbitrary web script or HTML via a crafted table name that is improperly handled after a (1) hide or (2) unhide action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4834-vc2f-m7rj/GHSA-4834-vc2f-m7rj.json b/advisories/unreviewed/2022/05/GHSA-4834-vc2f-m7rj/GHSA-4834-vc2f-m7rj.json index 3337fc21dcf..67ee6dee45c 100644 --- a/advisories/unreviewed/2022/05/GHSA-4834-vc2f-m7rj/GHSA-4834-vc2f-m7rj.json +++ b/advisories/unreviewed/2022/05/GHSA-4834-vc2f-m7rj/GHSA-4834-vc2f-m7rj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-49q3-9xm4-cpj5/GHSA-49q3-9xm4-cpj5.json b/advisories/unreviewed/2022/05/GHSA-49q3-9xm4-cpj5/GHSA-49q3-9xm4-cpj5.json index cf1b75a35f9..43bfeb35073 100644 --- a/advisories/unreviewed/2022/05/GHSA-49q3-9xm4-cpj5/GHSA-49q3-9xm4-cpj5.json +++ b/advisories/unreviewed/2022/05/GHSA-49q3-9xm4-cpj5/GHSA-49q3-9xm4-cpj5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-49r7-w8p8-xgc3/GHSA-49r7-w8p8-xgc3.json b/advisories/unreviewed/2022/05/GHSA-49r7-w8p8-xgc3/GHSA-49r7-w8p8-xgc3.json index 7523e337c4e..49ca581b039 100644 --- a/advisories/unreviewed/2022/05/GHSA-49r7-w8p8-xgc3/GHSA-49r7-w8p8-xgc3.json +++ b/advisories/unreviewed/2022/05/GHSA-49r7-w8p8-xgc3/GHSA-49r7-w8p8-xgc3.json @@ -7,12 +7,8 @@ "CVE-2015-0779" ], "details": "Directory traversal vulnerability in UploadServlet in Novell ZENworks Configuration Management (ZCM) 10 and 11 before 11.3.2 allows remote attackers to execute arbitrary code via a crafted directory name in the uid parameter, in conjunction with a WAR filename in the filename parameter and WAR content in the POST data, a different vulnerability than CVE-2010-5323 and CVE-2010-5324.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4f55-7mx5-m3x8/GHSA-4f55-7mx5-m3x8.json b/advisories/unreviewed/2022/05/GHSA-4f55-7mx5-m3x8/GHSA-4f55-7mx5-m3x8.json index b6947830c3d..32b509fc11e 100644 --- a/advisories/unreviewed/2022/05/GHSA-4f55-7mx5-m3x8/GHSA-4f55-7mx5-m3x8.json +++ b/advisories/unreviewed/2022/05/GHSA-4f55-7mx5-m3x8/GHSA-4f55-7mx5-m3x8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4f5v-4r5w-g4x3/GHSA-4f5v-4r5w-g4x3.json b/advisories/unreviewed/2022/05/GHSA-4f5v-4r5w-g4x3/GHSA-4f5v-4r5w-g4x3.json index 9d6042967fb..2a142fa7526 100644 --- a/advisories/unreviewed/2022/05/GHSA-4f5v-4r5w-g4x3/GHSA-4f5v-4r5w-g4x3.json +++ b/advisories/unreviewed/2022/05/GHSA-4f5v-4r5w-g4x3/GHSA-4f5v-4r5w-g4x3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4fcx-828w-699v/GHSA-4fcx-828w-699v.json b/advisories/unreviewed/2022/05/GHSA-4fcx-828w-699v/GHSA-4fcx-828w-699v.json index 31b562250d1..67e5e18ade5 100644 --- a/advisories/unreviewed/2022/05/GHSA-4fcx-828w-699v/GHSA-4fcx-828w-699v.json +++ b/advisories/unreviewed/2022/05/GHSA-4fcx-828w-699v/GHSA-4fcx-828w-699v.json @@ -7,12 +7,8 @@ "CVE-2014-4570" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the VideoWhisper Video Presentation plugin before 3.31 for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) room_name parameter to c_login.php or (2) room parameter to index.php in vp/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4gmc-62g5-x8wf/GHSA-4gmc-62g5-x8wf.json b/advisories/unreviewed/2022/05/GHSA-4gmc-62g5-x8wf/GHSA-4gmc-62g5-x8wf.json index bd0225bf2c7..41756e40270 100644 --- a/advisories/unreviewed/2022/05/GHSA-4gmc-62g5-x8wf/GHSA-4gmc-62g5-x8wf.json +++ b/advisories/unreviewed/2022/05/GHSA-4gmc-62g5-x8wf/GHSA-4gmc-62g5-x8wf.json @@ -7,12 +7,8 @@ "CVE-2015-5497" ], "details": "Cross-site scripting (XSS) vulnerability in the Web Links module 6.x-2.x before 6.x-2.6 and 7.x-1.x before 7.x-1.0 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4grj-7gv3-r7f2/GHSA-4grj-7gv3-r7f2.json b/advisories/unreviewed/2022/05/GHSA-4grj-7gv3-r7f2/GHSA-4grj-7gv3-r7f2.json index 3f377e3983f..ddb1a7db20f 100644 --- a/advisories/unreviewed/2022/05/GHSA-4grj-7gv3-r7f2/GHSA-4grj-7gv3-r7f2.json +++ b/advisories/unreviewed/2022/05/GHSA-4grj-7gv3-r7f2/GHSA-4grj-7gv3-r7f2.json @@ -7,12 +7,8 @@ "CVE-2014-8887" ], "details": "IBM Marketing Operations 7.x and 8.x before 8.5.0.7.2, 8.6.x before 8.6.0.8, 9.0.x before 9.0.0.4.1, 9.1.0.x before 9.1.0.5, and 9.1.1.x before 9.1.1.2 allows remote authenticated users to upload arbitrary GIFAR files, and consequently modify data, via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4j66-p54h-vx6c/GHSA-4j66-p54h-vx6c.json b/advisories/unreviewed/2022/05/GHSA-4j66-p54h-vx6c/GHSA-4j66-p54h-vx6c.json index f93c274fa10..bba967ded56 100644 --- a/advisories/unreviewed/2022/05/GHSA-4j66-p54h-vx6c/GHSA-4j66-p54h-vx6c.json +++ b/advisories/unreviewed/2022/05/GHSA-4j66-p54h-vx6c/GHSA-4j66-p54h-vx6c.json @@ -7,12 +7,8 @@ "CVE-2015-4358" ], "details": "Cross-site scripting (XSS) vulnerability in unspecified administration pages in the Ubercart Discount Coupons module 6.x-1.x before 6.x-1.8 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via vectors related to taxonomy terms.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4mwm-4c7j-p3c2/GHSA-4mwm-4c7j-p3c2.json b/advisories/unreviewed/2022/05/GHSA-4mwm-4c7j-p3c2/GHSA-4mwm-4c7j-p3c2.json index aa341d4bb87..d36a435533a 100644 --- a/advisories/unreviewed/2022/05/GHSA-4mwm-4c7j-p3c2/GHSA-4mwm-4c7j-p3c2.json +++ b/advisories/unreviewed/2022/05/GHSA-4mwm-4c7j-p3c2/GHSA-4mwm-4c7j-p3c2.json @@ -7,12 +7,8 @@ "CVE-2015-5150" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in Zoho ManageEngine SupportCenter Plus 7.90 allow remote authenticated users to inject arbitrary web script or HTML via the (1) query parameter in the run_query_editor_query module to CustomReportHandler.do, (2) compAcct parameter to jsp/ResetADPwd.jsp, or (3) redirectTo parameter to jsp/CacheScreenWidth.jsp.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4mxv-mpj8-xphx/GHSA-4mxv-mpj8-xphx.json b/advisories/unreviewed/2022/05/GHSA-4mxv-mpj8-xphx/GHSA-4mxv-mpj8-xphx.json index fd5bd036573..8fadb5611b7 100644 --- a/advisories/unreviewed/2022/05/GHSA-4mxv-mpj8-xphx/GHSA-4mxv-mpj8-xphx.json +++ b/advisories/unreviewed/2022/05/GHSA-4mxv-mpj8-xphx/GHSA-4mxv-mpj8-xphx.json @@ -7,12 +7,8 @@ "CVE-2014-6175" ], "details": "Cross-site scripting (XSS) vulnerability in IBM Marketing Operations 7.x and 8.x before 8.5.0.7.2, 8.6.x before 8.6.0.8, 9.0.x before 9.0.0.4.1, 9.1.0.x before 9.1.0.5, and 9.1.1.x before 9.1.1.2 allows remote authenticated users to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4p2h-jggv-23jg/GHSA-4p2h-jggv-23jg.json b/advisories/unreviewed/2022/05/GHSA-4p2h-jggv-23jg/GHSA-4p2h-jggv-23jg.json index d4b9c7c03a4..4215406217b 100644 --- a/advisories/unreviewed/2022/05/GHSA-4p2h-jggv-23jg/GHSA-4p2h-jggv-23jg.json +++ b/advisories/unreviewed/2022/05/GHSA-4p2h-jggv-23jg/GHSA-4p2h-jggv-23jg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4p9p-g6c8-9x7p/GHSA-4p9p-g6c8-9x7p.json b/advisories/unreviewed/2022/05/GHSA-4p9p-g6c8-9x7p/GHSA-4p9p-g6c8-9x7p.json index c9b622b28cc..7078980add2 100644 --- a/advisories/unreviewed/2022/05/GHSA-4p9p-g6c8-9x7p/GHSA-4p9p-g6c8-9x7p.json +++ b/advisories/unreviewed/2022/05/GHSA-4p9p-g6c8-9x7p/GHSA-4p9p-g6c8-9x7p.json @@ -7,12 +7,8 @@ "CVE-2015-6809" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in BEdita before 3.6.0 allow remote attackers to inject arbitrary web script or HTML via the (1) cfg[projectName] parameter to index.php/admin/saveConfig, the (2) data[stats_provider_url] parameter to index.php/areas/saveArea, or the (3) data[description] parameter to index.php/areas/saveSection.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4pq5-rr9x-8h3g/GHSA-4pq5-rr9x-8h3g.json b/advisories/unreviewed/2022/05/GHSA-4pq5-rr9x-8h3g/GHSA-4pq5-rr9x-8h3g.json index 352479d4a9e..50a235695b6 100644 --- a/advisories/unreviewed/2022/05/GHSA-4pq5-rr9x-8h3g/GHSA-4pq5-rr9x-8h3g.json +++ b/advisories/unreviewed/2022/05/GHSA-4pq5-rr9x-8h3g/GHSA-4pq5-rr9x-8h3g.json @@ -7,12 +7,8 @@ "CVE-2015-4742" ], "details": "Unspecified vulnerability in the Oracle JDeveloper component in Oracle Fusion Middleware 11.1.1.7.0, 11.1.2.4.0, 12.1.2.0.0, and 12.1.3.0.0 allows remote attackers to affect availability via vectors related to ADF Faces.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4pw7-wf99-mgcj/GHSA-4pw7-wf99-mgcj.json b/advisories/unreviewed/2022/05/GHSA-4pw7-wf99-mgcj/GHSA-4pw7-wf99-mgcj.json index 7dac77f5ec6..a36dee96182 100644 --- a/advisories/unreviewed/2022/05/GHSA-4pw7-wf99-mgcj/GHSA-4pw7-wf99-mgcj.json +++ b/advisories/unreviewed/2022/05/GHSA-4pw7-wf99-mgcj/GHSA-4pw7-wf99-mgcj.json @@ -7,12 +7,8 @@ "CVE-2014-8605" ], "details": "The XCloner plugin 3.1.1 for WordPress and 3.5.1 for Joomla! stores database backup files with predictable names under the web root with insufficient access control, which allows remote attackers to obtain sensitive information via a direct request to a backup file in administrators/backups/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4qcj-6h5p-qffv/GHSA-4qcj-6h5p-qffv.json b/advisories/unreviewed/2022/05/GHSA-4qcj-6h5p-qffv/GHSA-4qcj-6h5p-qffv.json index 6ed31b51d35..7a941b8fb58 100644 --- a/advisories/unreviewed/2022/05/GHSA-4qcj-6h5p-qffv/GHSA-4qcj-6h5p-qffv.json +++ b/advisories/unreviewed/2022/05/GHSA-4qcj-6h5p-qffv/GHSA-4qcj-6h5p-qffv.json @@ -7,12 +7,8 @@ "CVE-2015-5491" ], "details": "The Dynamic display block module 7.x-1.x before 7.x-1.1 for Drupal allows remote authenticated users to bypass intended access restrictions and read sensitive titles by leveraging the \"administer ddblock\" permission.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4r4f-w2v4-7wwr/GHSA-4r4f-w2v4-7wwr.json b/advisories/unreviewed/2022/05/GHSA-4r4f-w2v4-7wwr/GHSA-4r4f-w2v4-7wwr.json index 7039ccf244d..9b715f08729 100644 --- a/advisories/unreviewed/2022/05/GHSA-4r4f-w2v4-7wwr/GHSA-4r4f-w2v4-7wwr.json +++ b/advisories/unreviewed/2022/05/GHSA-4r4f-w2v4-7wwr/GHSA-4r4f-w2v4-7wwr.json @@ -7,12 +7,8 @@ "CVE-2015-0126" ], "details": "IBM Leads 7.x, 8.1.0 before 8.1.0.14, 8.2, 8.5.0 before 8.5.0.7.3, 8.6.0 before 8.6.0.8.1, 9.0.0 through 9.0.0.4, 9.1.0 before 9.1.0.6.1, and 9.1.1 before 9.1.1.0.2 allows remote authenticated users to bypass intended file-upload restrictions via a modified extension.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4vjq-x3w2-238g/GHSA-4vjq-x3w2-238g.json b/advisories/unreviewed/2022/05/GHSA-4vjq-x3w2-238g/GHSA-4vjq-x3w2-238g.json index 48bac1791a1..2fc1750b5cc 100644 --- a/advisories/unreviewed/2022/05/GHSA-4vjq-x3w2-238g/GHSA-4vjq-x3w2-238g.json +++ b/advisories/unreviewed/2022/05/GHSA-4vjq-x3w2-238g/GHSA-4vjq-x3w2-238g.json @@ -7,12 +7,8 @@ "CVE-2014-0989" ], "details": "Stack-based buffer overflow in Advantech WebAccess (formerly BroadWin WebAccess) 7.2 allows remote attackers to execute arbitrary code via the AccessCode2 parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4vxw-fr2r-cwgh/GHSA-4vxw-fr2r-cwgh.json b/advisories/unreviewed/2022/05/GHSA-4vxw-fr2r-cwgh/GHSA-4vxw-fr2r-cwgh.json index e1701ea02a2..17a0d8ca565 100644 --- a/advisories/unreviewed/2022/05/GHSA-4vxw-fr2r-cwgh/GHSA-4vxw-fr2r-cwgh.json +++ b/advisories/unreviewed/2022/05/GHSA-4vxw-fr2r-cwgh/GHSA-4vxw-fr2r-cwgh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -55,9 +53,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4w9q-747g-jf2q/GHSA-4w9q-747g-jf2q.json b/advisories/unreviewed/2022/05/GHSA-4w9q-747g-jf2q/GHSA-4w9q-747g-jf2q.json index 2078d79b09e..af355cbd65b 100644 --- a/advisories/unreviewed/2022/05/GHSA-4w9q-747g-jf2q/GHSA-4w9q-747g-jf2q.json +++ b/advisories/unreviewed/2022/05/GHSA-4w9q-747g-jf2q/GHSA-4w9q-747g-jf2q.json @@ -7,12 +7,8 @@ "CVE-2015-1970" ], "details": "The IBM WebSphere DataPower XC10 appliance 2.1 through 2.1.0.3 and 2.5 through 2.5.0.4 retains data on SSD cards, which might allow physically proximate attackers to obtain sensitive information by extracting a card and attaching it elsewhere.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4wf3-99hw-86r6/GHSA-4wf3-99hw-86r6.json b/advisories/unreviewed/2022/05/GHSA-4wf3-99hw-86r6/GHSA-4wf3-99hw-86r6.json index 181d31f07d2..e936db7cc9c 100644 --- a/advisories/unreviewed/2022/05/GHSA-4wf3-99hw-86r6/GHSA-4wf3-99hw-86r6.json +++ b/advisories/unreviewed/2022/05/GHSA-4wf3-99hw-86r6/GHSA-4wf3-99hw-86r6.json @@ -7,12 +7,8 @@ "CVE-2015-1955" ], "details": "IBM MQ Light before 1.0.0.2 allows remote attackers to cause a denial of service (CPU consumption) via a crafted byte sequence in authentication data.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4x5w-wj77-jppr/GHSA-4x5w-wj77-jppr.json b/advisories/unreviewed/2022/05/GHSA-4x5w-wj77-jppr/GHSA-4x5w-wj77-jppr.json index 7006734cc45..ef6b5d27afe 100644 --- a/advisories/unreviewed/2022/05/GHSA-4x5w-wj77-jppr/GHSA-4x5w-wj77-jppr.json +++ b/advisories/unreviewed/2022/05/GHSA-4x5w-wj77-jppr/GHSA-4x5w-wj77-jppr.json @@ -7,12 +7,8 @@ "CVE-2012-3507" ], "details": "Cross-site scripting (XSS) vulnerability in program/steps/mail/func.inc in RoundCube Webmail before 0.8.0, when using the Larry skin, allows remote attackers to inject arbitrary web script or HTML via the email message subject.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4xqj-gmj4-778q/GHSA-4xqj-gmj4-778q.json b/advisories/unreviewed/2022/05/GHSA-4xqj-gmj4-778q/GHSA-4xqj-gmj4-778q.json index 5775e496a1f..1049aabe6bf 100644 --- a/advisories/unreviewed/2022/05/GHSA-4xqj-gmj4-778q/GHSA-4xqj-gmj4-778q.json +++ b/advisories/unreviewed/2022/05/GHSA-4xqj-gmj4-778q/GHSA-4xqj-gmj4-778q.json @@ -7,12 +7,8 @@ "CVE-2014-0740" ], "details": "Cross-site request forgery (CSRF) vulnerability in the Call Detail Records Analysis and Reporting (CAR) interface in the OS Administration component in Cisco Unified Communications Manager (Unified CM) 10.0(1) and earlier allows remote attackers to hijack the authentication of administrators for requests that make administrative changes, aka Bug ID CSCun00701.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4xvx-mxhx-9w6x/GHSA-4xvx-mxhx-9w6x.json b/advisories/unreviewed/2022/05/GHSA-4xvx-mxhx-9w6x/GHSA-4xvx-mxhx-9w6x.json index ef1629bb1e7..74d46549e2b 100644 --- a/advisories/unreviewed/2022/05/GHSA-4xvx-mxhx-9w6x/GHSA-4xvx-mxhx-9w6x.json +++ b/advisories/unreviewed/2022/05/GHSA-4xvx-mxhx-9w6x/GHSA-4xvx-mxhx-9w6x.json @@ -7,12 +7,8 @@ "CVE-2015-3621" ], "details": "Untrusted search path vulnerability in SAP Enterprise Central Component (ECC) allows local users to gain privileges via a Trojan horse program.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-52cr-4965-wfwp/GHSA-52cr-4965-wfwp.json b/advisories/unreviewed/2022/05/GHSA-52cr-4965-wfwp/GHSA-52cr-4965-wfwp.json index 14d094debac..cb3f9facba8 100644 --- a/advisories/unreviewed/2022/05/GHSA-52cr-4965-wfwp/GHSA-52cr-4965-wfwp.json +++ b/advisories/unreviewed/2022/05/GHSA-52cr-4965-wfwp/GHSA-52cr-4965-wfwp.json @@ -7,12 +7,8 @@ "CVE-2014-0741" ], "details": "The certificate-import feature in the Certificate Authority Proxy Function (CAPF) CLI implementation in Cisco Unified Communications Manager (Unified CM) 10.0(1) and earlier allows local users to read or modify arbitrary files via a crafted command, aka Bug ID CSCum95461.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-52xg-w6c8-rp56/GHSA-52xg-w6c8-rp56.json b/advisories/unreviewed/2022/05/GHSA-52xg-w6c8-rp56/GHSA-52xg-w6c8-rp56.json index e01119f0c45..823980cbb21 100644 --- a/advisories/unreviewed/2022/05/GHSA-52xg-w6c8-rp56/GHSA-52xg-w6c8-rp56.json +++ b/advisories/unreviewed/2022/05/GHSA-52xg-w6c8-rp56/GHSA-52xg-w6c8-rp56.json @@ -7,12 +7,8 @@ "CVE-2014-2244" ], "details": "Cross-site scripting (XSS) vulnerability in the formatHTML function in includes/api/ApiFormatBase.php in MediaWiki before 1.19.12, 1.20.x and 1.21.x before 1.21.6, and 1.22.x before 1.22.3 allows remote attackers to inject arbitrary web script or HTML via a crafted string located after http:// in the text parameter to api.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5369-8rcx-xh7w/GHSA-5369-8rcx-xh7w.json b/advisories/unreviewed/2022/05/GHSA-5369-8rcx-xh7w/GHSA-5369-8rcx-xh7w.json index 0bf97c9ba85..658cd1cc56c 100644 --- a/advisories/unreviewed/2022/05/GHSA-5369-8rcx-xh7w/GHSA-5369-8rcx-xh7w.json +++ b/advisories/unreviewed/2022/05/GHSA-5369-8rcx-xh7w/GHSA-5369-8rcx-xh7w.json @@ -7,12 +7,8 @@ "CVE-2014-0812" ], "details": "Cross-site scripting (XSS) vulnerability in KENT-WEB Joyful Note 2.8 and earlier, when Internet Explorer 7 or earlier is used, allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-53j4-7365-vjr4/GHSA-53j4-7365-vjr4.json b/advisories/unreviewed/2022/05/GHSA-53j4-7365-vjr4/GHSA-53j4-7365-vjr4.json index 123b0a02def..2c20b8f798f 100644 --- a/advisories/unreviewed/2022/05/GHSA-53j4-7365-vjr4/GHSA-53j4-7365-vjr4.json +++ b/advisories/unreviewed/2022/05/GHSA-53j4-7365-vjr4/GHSA-53j4-7365-vjr4.json @@ -7,12 +7,8 @@ "CVE-2014-2210" ], "details": "Multiple directory traversal vulnerabilities in CA ERwin Web Portal 9.5 allow remote attackers to obtain sensitive information, bypass intended access restrictions, cause a denial of service, or possibly execute arbitrary code via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-54h3-wgmg-cg52/GHSA-54h3-wgmg-cg52.json b/advisories/unreviewed/2022/05/GHSA-54h3-wgmg-cg52/GHSA-54h3-wgmg-cg52.json index 882634376b4..8848e66efdc 100644 --- a/advisories/unreviewed/2022/05/GHSA-54h3-wgmg-cg52/GHSA-54h3-wgmg-cg52.json +++ b/advisories/unreviewed/2022/05/GHSA-54h3-wgmg-cg52/GHSA-54h3-wgmg-cg52.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-55fq-93v7-cmq6/GHSA-55fq-93v7-cmq6.json b/advisories/unreviewed/2022/05/GHSA-55fq-93v7-cmq6/GHSA-55fq-93v7-cmq6.json index 30395f870f9..37ead53e0a9 100644 --- a/advisories/unreviewed/2022/05/GHSA-55fq-93v7-cmq6/GHSA-55fq-93v7-cmq6.json +++ b/advisories/unreviewed/2022/05/GHSA-55fq-93v7-cmq6/GHSA-55fq-93v7-cmq6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -63,9 +61,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-55mm-gwv2-2mm5/GHSA-55mm-gwv2-2mm5.json b/advisories/unreviewed/2022/05/GHSA-55mm-gwv2-2mm5/GHSA-55mm-gwv2-2mm5.json index 53d323e69c4..4030496728a 100644 --- a/advisories/unreviewed/2022/05/GHSA-55mm-gwv2-2mm5/GHSA-55mm-gwv2-2mm5.json +++ b/advisories/unreviewed/2022/05/GHSA-55mm-gwv2-2mm5/GHSA-55mm-gwv2-2mm5.json @@ -7,12 +7,8 @@ "CVE-2014-4768" ], "details": "IBM Unified Extensible Firmware Interface (UEFI) on Flex System x880 X6, System x3850 X6, and System x3950 X6 devices allows remote authenticated users to cause an unspecified temporary denial of service by using privileged access to enable a legacy boot mode.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-573p-3w7c-mcjh/GHSA-573p-3w7c-mcjh.json b/advisories/unreviewed/2022/05/GHSA-573p-3w7c-mcjh/GHSA-573p-3w7c-mcjh.json index 10419fe94b0..433967d93a0 100644 --- a/advisories/unreviewed/2022/05/GHSA-573p-3w7c-mcjh/GHSA-573p-3w7c-mcjh.json +++ b/advisories/unreviewed/2022/05/GHSA-573p-3w7c-mcjh/GHSA-573p-3w7c-mcjh.json @@ -7,12 +7,8 @@ "CVE-2014-4549" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in pages/3DComplete.php in the WooCommerce SagePay Direct Payment Gateway plugin before 0.1.6.7 for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) MD or (2) PARes parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-573w-86fx-gf5p/GHSA-573w-86fx-gf5p.json b/advisories/unreviewed/2022/05/GHSA-573w-86fx-gf5p/GHSA-573w-86fx-gf5p.json index 5e7eeb060b8..ff89c3d62d3 100644 --- a/advisories/unreviewed/2022/05/GHSA-573w-86fx-gf5p/GHSA-573w-86fx-gf5p.json +++ b/advisories/unreviewed/2022/05/GHSA-573w-86fx-gf5p/GHSA-573w-86fx-gf5p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-57j2-g68f-h7m9/GHSA-57j2-g68f-h7m9.json b/advisories/unreviewed/2022/05/GHSA-57j2-g68f-h7m9/GHSA-57j2-g68f-h7m9.json index b3aa74fdf37..2a93b4a160a 100644 --- a/advisories/unreviewed/2022/05/GHSA-57j2-g68f-h7m9/GHSA-57j2-g68f-h7m9.json +++ b/advisories/unreviewed/2022/05/GHSA-57j2-g68f-h7m9/GHSA-57j2-g68f-h7m9.json @@ -7,12 +7,8 @@ "CVE-2014-6214" ], "details": "Cross-site request forgery (CSRF) vulnerability in IBM WebSphere Portal 8.0.0 through 8.0.0.1 CF15 and 8.5.0 before CF05 allows remote attackers to hijack the authentication of arbitrary users for requests that insert XSS sequences.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-57jc-p7pw-gpx8/GHSA-57jc-p7pw-gpx8.json b/advisories/unreviewed/2022/05/GHSA-57jc-p7pw-gpx8/GHSA-57jc-p7pw-gpx8.json index 45f05ae1cb2..1bbeed59206 100644 --- a/advisories/unreviewed/2022/05/GHSA-57jc-p7pw-gpx8/GHSA-57jc-p7pw-gpx8.json +++ b/advisories/unreviewed/2022/05/GHSA-57jc-p7pw-gpx8/GHSA-57jc-p7pw-gpx8.json @@ -7,12 +7,8 @@ "CVE-2015-3213" ], "details": "The gesture handling code in Clutter before 1.16.2 allows physically proximate attackers to bypass the lock screen via certain (1) mouse or (2) touch gestures.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-57v2-hjg8-f728/GHSA-57v2-hjg8-f728.json b/advisories/unreviewed/2022/05/GHSA-57v2-hjg8-f728/GHSA-57v2-hjg8-f728.json index b0fd40d4005..f9291593477 100644 --- a/advisories/unreviewed/2022/05/GHSA-57v2-hjg8-f728/GHSA-57v2-hjg8-f728.json +++ b/advisories/unreviewed/2022/05/GHSA-57v2-hjg8-f728/GHSA-57v2-hjg8-f728.json @@ -7,12 +7,8 @@ "CVE-2014-9736" ], "details": "GE Healthcare Centricity Clinical Archive Audit Trail Repository has a default password of initinit for the (1) SSL key manager and (2) server keystore; (3) keystore_password for the server truststore; and atna for the (4) primary storage database and (5) archive storage database, which has unspecified impact and attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-58gq-pfvp-f697/GHSA-58gq-pfvp-f697.json b/advisories/unreviewed/2022/05/GHSA-58gq-pfvp-f697/GHSA-58gq-pfvp-f697.json index 8e75db17e3e..09db1b30a17 100644 --- a/advisories/unreviewed/2022/05/GHSA-58gq-pfvp-f697/GHSA-58gq-pfvp-f697.json +++ b/advisories/unreviewed/2022/05/GHSA-58gq-pfvp-f697/GHSA-58gq-pfvp-f697.json @@ -7,12 +7,8 @@ "CVE-2015-2607" ], "details": "Unspecified vulnerability in the Oracle Commerce Guided Search / Oracle Commerce Experience Manager component in Oracle Commerce Platform 3.0.2, 3.1.1, 3.1.2, 11.0, and 11.1 allows remote attackers to affect confidentiality via unknown vectors related to Content Acquisition System.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-58hw-c565-3q2c/GHSA-58hw-c565-3q2c.json b/advisories/unreviewed/2022/05/GHSA-58hw-c565-3q2c/GHSA-58hw-c565-3q2c.json index ddfc117c071..f945f243dfc 100644 --- a/advisories/unreviewed/2022/05/GHSA-58hw-c565-3q2c/GHSA-58hw-c565-3q2c.json +++ b/advisories/unreviewed/2022/05/GHSA-58hw-c565-3q2c/GHSA-58hw-c565-3q2c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-59rf-fq39-rh6x/GHSA-59rf-fq39-rh6x.json b/advisories/unreviewed/2022/05/GHSA-59rf-fq39-rh6x/GHSA-59rf-fq39-rh6x.json index 8b879c400c2..a9ac8588d5e 100644 --- a/advisories/unreviewed/2022/05/GHSA-59rf-fq39-rh6x/GHSA-59rf-fq39-rh6x.json +++ b/advisories/unreviewed/2022/05/GHSA-59rf-fq39-rh6x/GHSA-59rf-fq39-rh6x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5c8v-7273-f4pm/GHSA-5c8v-7273-f4pm.json b/advisories/unreviewed/2022/05/GHSA-5c8v-7273-f4pm/GHSA-5c8v-7273-f4pm.json index 6c27befffe3..7e2a1036f98 100644 --- a/advisories/unreviewed/2022/05/GHSA-5c8v-7273-f4pm/GHSA-5c8v-7273-f4pm.json +++ b/advisories/unreviewed/2022/05/GHSA-5c8v-7273-f4pm/GHSA-5c8v-7273-f4pm.json @@ -7,12 +7,8 @@ "CVE-2014-6222" ], "details": "Directory traversal vulnerability in IBM Marketing Operations 7.x and 8.x before 8.5.0.7.2, 8.6.x before 8.6.0.8, 9.0.x before 9.0.0.4.1, 9.1.0.x before 9.1.0.5, and 9.1.1.x before 9.1.1.2 allows remote authenticated users to read arbitrary files via a .. (dot dot) in a URL.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5cc3-g726-g82v/GHSA-5cc3-g726-g82v.json b/advisories/unreviewed/2022/05/GHSA-5cc3-g726-g82v/GHSA-5cc3-g726-g82v.json index 2823fa104a0..2ec52b472a4 100644 --- a/advisories/unreviewed/2022/05/GHSA-5cc3-g726-g82v/GHSA-5cc3-g726-g82v.json +++ b/advisories/unreviewed/2022/05/GHSA-5cc3-g726-g82v/GHSA-5cc3-g726-g82v.json @@ -7,12 +7,8 @@ "CVE-2015-4356" ], "details": "Cross-site scripting (XSS) vulnerability in the view-based webform results table in the Webform module 7.x-4.x before 7.x-4.4 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via a webform.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5ccp-vh42-cfx3/GHSA-5ccp-vh42-cfx3.json b/advisories/unreviewed/2022/05/GHSA-5ccp-vh42-cfx3/GHSA-5ccp-vh42-cfx3.json index 94c1fef9616..e5b95dc5c7a 100644 --- a/advisories/unreviewed/2022/05/GHSA-5ccp-vh42-cfx3/GHSA-5ccp-vh42-cfx3.json +++ b/advisories/unreviewed/2022/05/GHSA-5ccp-vh42-cfx3/GHSA-5ccp-vh42-cfx3.json @@ -7,12 +7,8 @@ "CVE-2014-3415" ], "details": "SQL injection vulnerability in Sharetronix before 3.4 allows remote authenticated users to execute arbitrary SQL commands via the invite_users[] parameter to the /invite page for a group.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5cp6-m9h7-hx26/GHSA-5cp6-m9h7-hx26.json b/advisories/unreviewed/2022/05/GHSA-5cp6-m9h7-hx26/GHSA-5cp6-m9h7-hx26.json index f5c079a5b8a..e001d4a4714 100644 --- a/advisories/unreviewed/2022/05/GHSA-5cp6-m9h7-hx26/GHSA-5cp6-m9h7-hx26.json +++ b/advisories/unreviewed/2022/05/GHSA-5cp6-m9h7-hx26/GHSA-5cp6-m9h7-hx26.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5cwr-528x-3vwc/GHSA-5cwr-528x-3vwc.json b/advisories/unreviewed/2022/05/GHSA-5cwr-528x-3vwc/GHSA-5cwr-528x-3vwc.json index c703d3b8ba8..3f2f128de5d 100644 --- a/advisories/unreviewed/2022/05/GHSA-5cwr-528x-3vwc/GHSA-5cwr-528x-3vwc.json +++ b/advisories/unreviewed/2022/05/GHSA-5cwr-528x-3vwc/GHSA-5cwr-528x-3vwc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5f9h-8xg4-pgmx/GHSA-5f9h-8xg4-pgmx.json b/advisories/unreviewed/2022/05/GHSA-5f9h-8xg4-pgmx/GHSA-5f9h-8xg4-pgmx.json index 958d19618ef..e19cfcd55af 100644 --- a/advisories/unreviewed/2022/05/GHSA-5f9h-8xg4-pgmx/GHSA-5f9h-8xg4-pgmx.json +++ b/advisories/unreviewed/2022/05/GHSA-5f9h-8xg4-pgmx/GHSA-5f9h-8xg4-pgmx.json @@ -7,12 +7,8 @@ "CVE-2015-0639" ], "details": "The Common Flow Table (CFT) feature in Cisco IOS XE 3.6 and 3.7 before 3.7.1S, 3.8 before 3.8.0S, 3.9 before 3.9.0S, 3.10 before 3.10.0S, 3.11 before 3.11.0S, 3.12 before 3.12.0S, 3.13 before 3.13.0S, 3.14 before 3.14.0S, and 3.15 before 3.15.0S, when MMON or NBAR is enabled, allows remote attackers to cause a denial of service (device reload) via malformed IPv6 packets with IPv4 UDP encapsulation, aka Bug ID CSCua79665.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5fmg-x3vm-cm8v/GHSA-5fmg-x3vm-cm8v.json b/advisories/unreviewed/2022/05/GHSA-5fmg-x3vm-cm8v/GHSA-5fmg-x3vm-cm8v.json index 5d769a00501..6a9b57fb735 100644 --- a/advisories/unreviewed/2022/05/GHSA-5fmg-x3vm-cm8v/GHSA-5fmg-x3vm-cm8v.json +++ b/advisories/unreviewed/2022/05/GHSA-5fmg-x3vm-cm8v/GHSA-5fmg-x3vm-cm8v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5g6p-jp4c-37q4/GHSA-5g6p-jp4c-37q4.json b/advisories/unreviewed/2022/05/GHSA-5g6p-jp4c-37q4/GHSA-5g6p-jp4c-37q4.json index 8886bb796bf..650f920a3f3 100644 --- a/advisories/unreviewed/2022/05/GHSA-5g6p-jp4c-37q4/GHSA-5g6p-jp4c-37q4.json +++ b/advisories/unreviewed/2022/05/GHSA-5g6p-jp4c-37q4/GHSA-5g6p-jp4c-37q4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5h8q-vxqh-pm9w/GHSA-5h8q-vxqh-pm9w.json b/advisories/unreviewed/2022/05/GHSA-5h8q-vxqh-pm9w/GHSA-5h8q-vxqh-pm9w.json index 61e47895d16..8bb842a28d5 100644 --- a/advisories/unreviewed/2022/05/GHSA-5h8q-vxqh-pm9w/GHSA-5h8q-vxqh-pm9w.json +++ b/advisories/unreviewed/2022/05/GHSA-5h8q-vxqh-pm9w/GHSA-5h8q-vxqh-pm9w.json @@ -7,12 +7,8 @@ "CVE-2013-6038" ], "details": "Stack-based buffer overflow in Trimble SketchUp Viewer 13.0.4124 allows remote attackers to execute arbitrary code via a crafted .SKP file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5j76-69xc-rg6j/GHSA-5j76-69xc-rg6j.json b/advisories/unreviewed/2022/05/GHSA-5j76-69xc-rg6j/GHSA-5j76-69xc-rg6j.json index e21be27b326..c5b6b2b1590 100644 --- a/advisories/unreviewed/2022/05/GHSA-5j76-69xc-rg6j/GHSA-5j76-69xc-rg6j.json +++ b/advisories/unreviewed/2022/05/GHSA-5j76-69xc-rg6j/GHSA-5j76-69xc-rg6j.json @@ -7,12 +7,8 @@ "CVE-2015-5498" ], "details": "The Shipwire API module 7.x-1.x before 7.x-1.03 for Drupal does not check the view permission for the shipments overview (admin/shipwire/shipments), which allows remote attackers to obtain sensitive information via a request to the page.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5jmw-rjr2-cj2c/GHSA-5jmw-rjr2-cj2c.json b/advisories/unreviewed/2022/05/GHSA-5jmw-rjr2-cj2c/GHSA-5jmw-rjr2-cj2c.json index e7f1ecb3ff5..91eab91147a 100644 --- a/advisories/unreviewed/2022/05/GHSA-5jmw-rjr2-cj2c/GHSA-5jmw-rjr2-cj2c.json +++ b/advisories/unreviewed/2022/05/GHSA-5jmw-rjr2-cj2c/GHSA-5jmw-rjr2-cj2c.json @@ -7,12 +7,8 @@ "CVE-2015-3235" ], "details": "Foreman before 1.9.0 allows remote authenticated users with the edit_users permission to edit administrator users and change their passwords via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -44,9 +40,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5jxf-j9mp-2pj5/GHSA-5jxf-j9mp-2pj5.json b/advisories/unreviewed/2022/05/GHSA-5jxf-j9mp-2pj5/GHSA-5jxf-j9mp-2pj5.json index 69f479d1e27..50ca73bf3c6 100644 --- a/advisories/unreviewed/2022/05/GHSA-5jxf-j9mp-2pj5/GHSA-5jxf-j9mp-2pj5.json +++ b/advisories/unreviewed/2022/05/GHSA-5jxf-j9mp-2pj5/GHSA-5jxf-j9mp-2pj5.json @@ -7,12 +7,8 @@ "CVE-2015-0133" ], "details": "IBM WebSphere Commerce 7.0 Feature Pack 4 through 8 allows remote attackers to read arbitrary files and possibly obtain administrative privileges via an XML external entity declaration in conjunction with an entity reference, related to an XML External Entity (XXE) issue.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5m5g-hpcx-fhwg/GHSA-5m5g-hpcx-fhwg.json b/advisories/unreviewed/2022/05/GHSA-5m5g-hpcx-fhwg/GHSA-5m5g-hpcx-fhwg.json index a7af25b7291..4a11d6aa183 100644 --- a/advisories/unreviewed/2022/05/GHSA-5m5g-hpcx-fhwg/GHSA-5m5g-hpcx-fhwg.json +++ b/advisories/unreviewed/2022/05/GHSA-5m5g-hpcx-fhwg/GHSA-5m5g-hpcx-fhwg.json @@ -7,12 +7,8 @@ "CVE-2014-9743" ], "details": "Cross-site scripting (XSS) vulnerability in the httpd_HtmlError function in network/httpd.c in the web interface in VideoLAN VLC Media Player before 2.2.0 allows remote attackers to inject arbitrary web script or HTML via the path info.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5mrw-gf6v-xxgp/GHSA-5mrw-gf6v-xxgp.json b/advisories/unreviewed/2022/05/GHSA-5mrw-gf6v-xxgp/GHSA-5mrw-gf6v-xxgp.json index e3febb6982f..7269fb34298 100644 --- a/advisories/unreviewed/2022/05/GHSA-5mrw-gf6v-xxgp/GHSA-5mrw-gf6v-xxgp.json +++ b/advisories/unreviewed/2022/05/GHSA-5mrw-gf6v-xxgp/GHSA-5mrw-gf6v-xxgp.json @@ -7,12 +7,8 @@ "CVE-2015-0118" ], "details": "IBM WebSphere Message Broker Toolkit 7 before 7007 IF2 and 8 before 8005 IF1 and Integration Toolkit 9 before 9003 IF1 are distributed with MQ client JAR files that support only weak TLS ciphers, which might make it easier for remote attackers to obtain sensitive information by sniffing the network during a connection to an Integration Bus node.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5phm-p285-63ff/GHSA-5phm-p285-63ff.json b/advisories/unreviewed/2022/05/GHSA-5phm-p285-63ff/GHSA-5phm-p285-63ff.json index 4c037998ae0..41e24a41a1f 100644 --- a/advisories/unreviewed/2022/05/GHSA-5phm-p285-63ff/GHSA-5phm-p285-63ff.json +++ b/advisories/unreviewed/2022/05/GHSA-5phm-p285-63ff/GHSA-5phm-p285-63ff.json @@ -7,12 +7,8 @@ "CVE-2015-4367" ], "details": "Cross-site scripting (XSS) vulnerability in the Simple Subscription module before 6.x-1.1 and 7.x-1.x before 7.x-1.1 for Drupal allows remote authenticated users with the \"administer blocks\" permission to inject arbitrary web script or HTML via vectors related to block content.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5pxj-qr99-j4r2/GHSA-5pxj-qr99-j4r2.json b/advisories/unreviewed/2022/05/GHSA-5pxj-qr99-j4r2/GHSA-5pxj-qr99-j4r2.json index a39c9e5e16f..b8cbad16a78 100644 --- a/advisories/unreviewed/2022/05/GHSA-5pxj-qr99-j4r2/GHSA-5pxj-qr99-j4r2.json +++ b/advisories/unreviewed/2022/05/GHSA-5pxj-qr99-j4r2/GHSA-5pxj-qr99-j4r2.json @@ -7,12 +7,8 @@ "CVE-2015-5530" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in Free Reprintables ArticleFR 3.0.6 allow remote attackers to hijack the authentication of administrators for requests that add an administrator account via a request to dashboard/users/create/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5pxw-cvrf-mpjv/GHSA-5pxw-cvrf-mpjv.json b/advisories/unreviewed/2022/05/GHSA-5pxw-cvrf-mpjv/GHSA-5pxw-cvrf-mpjv.json index 2b4a427f1c8..dbbf878889e 100644 --- a/advisories/unreviewed/2022/05/GHSA-5pxw-cvrf-mpjv/GHSA-5pxw-cvrf-mpjv.json +++ b/advisories/unreviewed/2022/05/GHSA-5pxw-cvrf-mpjv/GHSA-5pxw-cvrf-mpjv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5qh4-f2hp-wrvj/GHSA-5qh4-f2hp-wrvj.json b/advisories/unreviewed/2022/05/GHSA-5qh4-f2hp-wrvj/GHSA-5qh4-f2hp-wrvj.json index 66963f72a78..3f094729102 100644 --- a/advisories/unreviewed/2022/05/GHSA-5qh4-f2hp-wrvj/GHSA-5qh4-f2hp-wrvj.json +++ b/advisories/unreviewed/2022/05/GHSA-5qh4-f2hp-wrvj/GHSA-5qh4-f2hp-wrvj.json @@ -7,12 +7,8 @@ "CVE-2013-6173" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in EMC Document Sciences xPression 4.1 SP1 before Patch 47, 4.2 before Patch 26, and 4.5 before Patch 05, as used in Documentum Edition, Enterprise Edition Publish Engine, and Enterprise Edition Compuset Engine, allow remote attackers to hijack the authentication of administrators for requests that perform administrative actions in (1) xAdmin or (2) xDashboard.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5qxw-j77f-h5wp/GHSA-5qxw-j77f-h5wp.json b/advisories/unreviewed/2022/05/GHSA-5qxw-j77f-h5wp/GHSA-5qxw-j77f-h5wp.json index deefece9043..35c447494f6 100644 --- a/advisories/unreviewed/2022/05/GHSA-5qxw-j77f-h5wp/GHSA-5qxw-j77f-h5wp.json +++ b/advisories/unreviewed/2022/05/GHSA-5qxw-j77f-h5wp/GHSA-5qxw-j77f-h5wp.json @@ -7,12 +7,8 @@ "CVE-2015-4494" ], "details": "Mozilla Firefox OS before 2.2 does not require the wifi-manage privilege for reading a Wi-Fi system message, which allows attackers to obtain potentially sensitive information via a crafted app.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5r94-8g6m-q6vg/GHSA-5r94-8g6m-q6vg.json b/advisories/unreviewed/2022/05/GHSA-5r94-8g6m-q6vg/GHSA-5r94-8g6m-q6vg.json index d1f54632a74..6cb178f0963 100644 --- a/advisories/unreviewed/2022/05/GHSA-5r94-8g6m-q6vg/GHSA-5r94-8g6m-q6vg.json +++ b/advisories/unreviewed/2022/05/GHSA-5r94-8g6m-q6vg/GHSA-5r94-8g6m-q6vg.json @@ -7,12 +7,8 @@ "CVE-2015-6513" ], "details": "Multiple SQL injection vulnerabilities in the J2Store (com_j2store) extension before 3.1.7 for Joomla! allow remote attackers to execute arbitrary SQL commands via the (1) sortby or (2) manufacturer_ids[] parameter to index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5rgh-fvf3-hjmm/GHSA-5rgh-fvf3-hjmm.json b/advisories/unreviewed/2022/05/GHSA-5rgh-fvf3-hjmm/GHSA-5rgh-fvf3-hjmm.json index d7e3982ec96..de208b22c63 100644 --- a/advisories/unreviewed/2022/05/GHSA-5rgh-fvf3-hjmm/GHSA-5rgh-fvf3-hjmm.json +++ b/advisories/unreviewed/2022/05/GHSA-5rgh-fvf3-hjmm/GHSA-5rgh-fvf3-hjmm.json @@ -7,12 +7,8 @@ "CVE-2015-5513" ], "details": "Cross-site scripting (XSS) vulnerability in the Shibboleth authentication module 6.x-4.x before 6.x-4.2 and 7.x-4.x before 7.x-4.2 for Drupal allows remote authenticated users with the \"Administer blocks\" permission to inject arbitrary web script or HTML via unspecified vectors related to a login link.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5rh4-w9mq-q4mq/GHSA-5rh4-w9mq-q4mq.json b/advisories/unreviewed/2022/05/GHSA-5rh4-w9mq-q4mq/GHSA-5rh4-w9mq-q4mq.json index 51817cc98fe..24513790fd0 100644 --- a/advisories/unreviewed/2022/05/GHSA-5rh4-w9mq-q4mq/GHSA-5rh4-w9mq-q4mq.json +++ b/advisories/unreviewed/2022/05/GHSA-5rh4-w9mq-q4mq/GHSA-5rh4-w9mq-q4mq.json @@ -7,12 +7,8 @@ "CVE-2015-6747" ], "details": "Basware Banking (Maksuliikenne) 8.90.07.X does not properly prevent access to private keys, which allows remote attackers to spoof communications with banks via unspecified vectors. NOTE: this identifier was SPLIT from CVE-2015-0942 per ADT2 due to different vulnerability types. NOTE: this vulnerability exists because of an incorrect fix for CVE-2015-6746.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5w9g-9xc2-mxwq/GHSA-5w9g-9xc2-mxwq.json b/advisories/unreviewed/2022/05/GHSA-5w9g-9xc2-mxwq/GHSA-5w9g-9xc2-mxwq.json index f6ee95cea06..82587ee60f6 100644 --- a/advisories/unreviewed/2022/05/GHSA-5w9g-9xc2-mxwq/GHSA-5w9g-9xc2-mxwq.json +++ b/advisories/unreviewed/2022/05/GHSA-5w9g-9xc2-mxwq/GHSA-5w9g-9xc2-mxwq.json @@ -7,12 +7,8 @@ "CVE-2015-4018" ], "details": "SQL injection vulnerability in feedwordpresssyndicationpage.class.php in the FeedWordPress plugin before 2015.0514 for WordPress allows remote authenticated users to execute arbitrary SQL commands via the link_ids[] parameter in an Update action in the syndication.php page to wp-admin/admin.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5xjh-6prp-fjgx/GHSA-5xjh-6prp-fjgx.json b/advisories/unreviewed/2022/05/GHSA-5xjh-6prp-fjgx/GHSA-5xjh-6prp-fjgx.json index d19fdc0376f..a4ac2f4c580 100644 --- a/advisories/unreviewed/2022/05/GHSA-5xjh-6prp-fjgx/GHSA-5xjh-6prp-fjgx.json +++ b/advisories/unreviewed/2022/05/GHSA-5xjh-6prp-fjgx/GHSA-5xjh-6prp-fjgx.json @@ -7,12 +7,8 @@ "CVE-2014-0334" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in CMS Made Simple allow remote authenticated users to inject arbitrary web script or HTML via (1) the group parameter to admin/addgroup.php, (2) the htmlblob parameter to admin/addhtmlblob.php, the (3) title or (4) url parameter to admin/addbookmark.php, (5) the stylesheet_name parameter to admin/copystylesheet.php, (6) the template_name parameter to admin/copytemplate.php, the (7) title or (8) url parameter to admin/editbookmark.php, (9) the template parameter to admin/listtemplates.php, or (10) the css_name parameter to admin/listcss.php, a different issue than CVE-2014-2092.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5xph-62q2-pxff/GHSA-5xph-62q2-pxff.json b/advisories/unreviewed/2022/05/GHSA-5xph-62q2-pxff/GHSA-5xph-62q2-pxff.json index 537f0ec6eaf..06434812c73 100644 --- a/advisories/unreviewed/2022/05/GHSA-5xph-62q2-pxff/GHSA-5xph-62q2-pxff.json +++ b/advisories/unreviewed/2022/05/GHSA-5xph-62q2-pxff/GHSA-5xph-62q2-pxff.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5xq2-mchq-v8pj/GHSA-5xq2-mchq-v8pj.json b/advisories/unreviewed/2022/05/GHSA-5xq2-mchq-v8pj/GHSA-5xq2-mchq-v8pj.json index 509718069f4..8214a2bb8dc 100644 --- a/advisories/unreviewed/2022/05/GHSA-5xq2-mchq-v8pj/GHSA-5xq2-mchq-v8pj.json +++ b/advisories/unreviewed/2022/05/GHSA-5xq2-mchq-v8pj/GHSA-5xq2-mchq-v8pj.json @@ -7,12 +7,8 @@ "CVE-2014-1973" ], "details": "Directory traversal vulnerability in the NextApp File Explorer application before 2.1.0.3 for Android allows remote attackers to overwrite or create arbitrary files via a crafted filename.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-62pg-hjc9-8wrw/GHSA-62pg-hjc9-8wrw.json b/advisories/unreviewed/2022/05/GHSA-62pg-hjc9-8wrw/GHSA-62pg-hjc9-8wrw.json index bdcdebf079f..1778409e86e 100644 --- a/advisories/unreviewed/2022/05/GHSA-62pg-hjc9-8wrw/GHSA-62pg-hjc9-8wrw.json +++ b/advisories/unreviewed/2022/05/GHSA-62pg-hjc9-8wrw/GHSA-62pg-hjc9-8wrw.json @@ -7,12 +7,8 @@ "CVE-2013-4440" ], "details": "Password Generator (aka Pwgen) before 2.07 generates weak non-tty passwords, which makes it easier for context-dependent attackers to guess the password via a brute-force attack.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -52,9 +48,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-63g4-9329-q5x4/GHSA-63g4-9329-q5x4.json b/advisories/unreviewed/2022/05/GHSA-63g4-9329-q5x4/GHSA-63g4-9329-q5x4.json index 85e3fe4a9ea..fe2a115029d 100644 --- a/advisories/unreviewed/2022/05/GHSA-63g4-9329-q5x4/GHSA-63g4-9329-q5x4.json +++ b/advisories/unreviewed/2022/05/GHSA-63g4-9329-q5x4/GHSA-63g4-9329-q5x4.json @@ -7,12 +7,8 @@ "CVE-2013-1886" ], "details": "Format string vulnerability in the token processing system (pki-tps) in Red Hat Certificate System (RHCS) 8.1 and possibly Dogtag Certificate System 9 and 10 allows remote authenticated users to cause a denial of service (crash) and possibly execute arbitrary code via format string specifiers in unspecified vectors, related to viewing certificates.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-63m6-fqgg-rv45/GHSA-63m6-fqgg-rv45.json b/advisories/unreviewed/2022/05/GHSA-63m6-fqgg-rv45/GHSA-63m6-fqgg-rv45.json index 50f35a5d708..d2a04238ff1 100644 --- a/advisories/unreviewed/2022/05/GHSA-63m6-fqgg-rv45/GHSA-63m6-fqgg-rv45.json +++ b/advisories/unreviewed/2022/05/GHSA-63m6-fqgg-rv45/GHSA-63m6-fqgg-rv45.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6485-6vxr-f5v8/GHSA-6485-6vxr-f5v8.json b/advisories/unreviewed/2022/05/GHSA-6485-6vxr-f5v8/GHSA-6485-6vxr-f5v8.json index 278aa35b4e8..029744a1bb0 100644 --- a/advisories/unreviewed/2022/05/GHSA-6485-6vxr-f5v8/GHSA-6485-6vxr-f5v8.json +++ b/advisories/unreviewed/2022/05/GHSA-6485-6vxr-f5v8/GHSA-6485-6vxr-f5v8.json @@ -7,12 +7,8 @@ "CVE-2014-2316" ], "details": "SQL injection vulnerability in se_search_default in the Search Everything plugin before 7.0.3 for WordPress allows remote attackers to execute arbitrary SQL commands via the s parameter to index.php. NOTE: some of these details are obtained from third party information.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-64gm-j8rj-qrxj/GHSA-64gm-j8rj-qrxj.json b/advisories/unreviewed/2022/05/GHSA-64gm-j8rj-qrxj/GHSA-64gm-j8rj-qrxj.json index 5ce3b4c8b0c..64d2f3f1167 100644 --- a/advisories/unreviewed/2022/05/GHSA-64gm-j8rj-qrxj/GHSA-64gm-j8rj-qrxj.json +++ b/advisories/unreviewed/2022/05/GHSA-64gm-j8rj-qrxj/GHSA-64gm-j8rj-qrxj.json @@ -7,12 +7,8 @@ "CVE-2015-6464" ], "details": "The administrative web interface on Moxa EDS-405A and EDS-408A switches with firmware before 3.6 allows remote authenticated users to bypass a read-only protection mechanism by using Firefox with a web-developer plugin.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-65x8-3j2p-m8x9/GHSA-65x8-3j2p-m8x9.json b/advisories/unreviewed/2022/05/GHSA-65x8-3j2p-m8x9/GHSA-65x8-3j2p-m8x9.json index f3517ecc101..f1442a3e5f7 100644 --- a/advisories/unreviewed/2022/05/GHSA-65x8-3j2p-m8x9/GHSA-65x8-3j2p-m8x9.json +++ b/advisories/unreviewed/2022/05/GHSA-65x8-3j2p-m8x9/GHSA-65x8-3j2p-m8x9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6694-j64w-gpfc/GHSA-6694-j64w-gpfc.json b/advisories/unreviewed/2022/05/GHSA-6694-j64w-gpfc/GHSA-6694-j64w-gpfc.json index 6e251f167db..ae18e12bb6c 100644 --- a/advisories/unreviewed/2022/05/GHSA-6694-j64w-gpfc/GHSA-6694-j64w-gpfc.json +++ b/advisories/unreviewed/2022/05/GHSA-6694-j64w-gpfc/GHSA-6694-j64w-gpfc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-66mr-xvvj-95jm/GHSA-66mr-xvvj-95jm.json b/advisories/unreviewed/2022/05/GHSA-66mr-xvvj-95jm/GHSA-66mr-xvvj-95jm.json index ee9a396124a..dc01e8a4a80 100644 --- a/advisories/unreviewed/2022/05/GHSA-66mr-xvvj-95jm/GHSA-66mr-xvvj-95jm.json +++ b/advisories/unreviewed/2022/05/GHSA-66mr-xvvj-95jm/GHSA-66mr-xvvj-95jm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-66rg-hrjv-v265/GHSA-66rg-hrjv-v265.json b/advisories/unreviewed/2022/05/GHSA-66rg-hrjv-v265/GHSA-66rg-hrjv-v265.json index d1353a8baaa..0ba4bae6d43 100644 --- a/advisories/unreviewed/2022/05/GHSA-66rg-hrjv-v265/GHSA-66rg-hrjv-v265.json +++ b/advisories/unreviewed/2022/05/GHSA-66rg-hrjv-v265/GHSA-66rg-hrjv-v265.json @@ -7,12 +7,8 @@ "CVE-2015-5176" ], "details": "The PortletRequestDispatcher in PortletBridge, as used in Red Hat JBoss Portal 6.2.0, does not properly enforce the security constraints of servlets, which allows remote attackers to gain access to resources via a request that asks to render a non-JSF resource.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-677g-x5rm-h62c/GHSA-677g-x5rm-h62c.json b/advisories/unreviewed/2022/05/GHSA-677g-x5rm-h62c/GHSA-677g-x5rm-h62c.json index a7aab636ec3..9deec881a3c 100644 --- a/advisories/unreviewed/2022/05/GHSA-677g-x5rm-h62c/GHSA-677g-x5rm-h62c.json +++ b/advisories/unreviewed/2022/05/GHSA-677g-x5rm-h62c/GHSA-677g-x5rm-h62c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-67r2-78g2-6xw9/GHSA-67r2-78g2-6xw9.json b/advisories/unreviewed/2022/05/GHSA-67r2-78g2-6xw9/GHSA-67r2-78g2-6xw9.json index b8f7ee051ff..63a6e4e837a 100644 --- a/advisories/unreviewed/2022/05/GHSA-67r2-78g2-6xw9/GHSA-67r2-78g2-6xw9.json +++ b/advisories/unreviewed/2022/05/GHSA-67r2-78g2-6xw9/GHSA-67r2-78g2-6xw9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-67r7-56w9-5p37/GHSA-67r7-56w9-5p37.json b/advisories/unreviewed/2022/05/GHSA-67r7-56w9-5p37/GHSA-67r7-56w9-5p37.json index e2d9f883be4..db0a2a7b819 100644 --- a/advisories/unreviewed/2022/05/GHSA-67r7-56w9-5p37/GHSA-67r7-56w9-5p37.json +++ b/advisories/unreviewed/2022/05/GHSA-67r7-56w9-5p37/GHSA-67r7-56w9-5p37.json @@ -7,12 +7,8 @@ "CVE-2014-0746" ], "details": "The disaster recovery system (DRS) in Cisco Unified Contact Center Express (Unified CCX) allows remote authenticated users to obtain sensitive information by reading extraneous fields in an HTML document, aka Bug ID CSCum95536.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-683w-fmw9-jrgg/GHSA-683w-fmw9-jrgg.json b/advisories/unreviewed/2022/05/GHSA-683w-fmw9-jrgg/GHSA-683w-fmw9-jrgg.json index a1514615c29..7a7dde4a684 100644 --- a/advisories/unreviewed/2022/05/GHSA-683w-fmw9-jrgg/GHSA-683w-fmw9-jrgg.json +++ b/advisories/unreviewed/2022/05/GHSA-683w-fmw9-jrgg/GHSA-683w-fmw9-jrgg.json @@ -7,12 +7,8 @@ "CVE-2015-5386" ], "details": "Siemens SICAM MIC devices with firmware before 2404 allow remote attackers to bypass authentication and obtain administrative access via unspecified HTTP requests.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-689v-55v7-867w/GHSA-689v-55v7-867w.json b/advisories/unreviewed/2022/05/GHSA-689v-55v7-867w/GHSA-689v-55v7-867w.json index eb56bc1aeb4..867eb134339 100644 --- a/advisories/unreviewed/2022/05/GHSA-689v-55v7-867w/GHSA-689v-55v7-867w.json +++ b/advisories/unreviewed/2022/05/GHSA-689v-55v7-867w/GHSA-689v-55v7-867w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-68qw-7m23-9m49/GHSA-68qw-7m23-9m49.json b/advisories/unreviewed/2022/05/GHSA-68qw-7m23-9m49/GHSA-68qw-7m23-9m49.json index 64fbcdf8ea9..068ce85ffee 100644 --- a/advisories/unreviewed/2022/05/GHSA-68qw-7m23-9m49/GHSA-68qw-7m23-9m49.json +++ b/advisories/unreviewed/2022/05/GHSA-68qw-7m23-9m49/GHSA-68qw-7m23-9m49.json @@ -7,12 +7,8 @@ "CVE-2015-5403" ], "details": "HP Systems Insight Manager (SIM) before 7.5.0, as used in HP Matrix Operating Environment before 7.5.0 and other products, allows remote authenticated users to obtain sensitive information via unspecified vectors, a different vulnerability than CVE-2015-2139.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-69rc-qfx4-h683/GHSA-69rc-qfx4-h683.json b/advisories/unreviewed/2022/05/GHSA-69rc-qfx4-h683/GHSA-69rc-qfx4-h683.json index b9f05555121..870bd3056c1 100644 --- a/advisories/unreviewed/2022/05/GHSA-69rc-qfx4-h683/GHSA-69rc-qfx4-h683.json +++ b/advisories/unreviewed/2022/05/GHSA-69rc-qfx4-h683/GHSA-69rc-qfx4-h683.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6c3h-6fcx-rwmv/GHSA-6c3h-6fcx-rwmv.json b/advisories/unreviewed/2022/05/GHSA-6c3h-6fcx-rwmv/GHSA-6c3h-6fcx-rwmv.json index 6f1fc8f14de..92de7d5591a 100644 --- a/advisories/unreviewed/2022/05/GHSA-6c3h-6fcx-rwmv/GHSA-6c3h-6fcx-rwmv.json +++ b/advisories/unreviewed/2022/05/GHSA-6c3h-6fcx-rwmv/GHSA-6c3h-6fcx-rwmv.json @@ -7,12 +7,8 @@ "CVE-2015-1958" ], "details": "IBM MQ Light before 1.0.0.2 allows remote attackers to cause a denial of service (disk consumption) via a crafted byte sequence in authentication data, a different vulnerability than CVE-2015-1956 and CVE-2015-1987.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6c72-xp63-q5vp/GHSA-6c72-xp63-q5vp.json b/advisories/unreviewed/2022/05/GHSA-6c72-xp63-q5vp/GHSA-6c72-xp63-q5vp.json index 8ce19c21c35..565ef3545c0 100644 --- a/advisories/unreviewed/2022/05/GHSA-6c72-xp63-q5vp/GHSA-6c72-xp63-q5vp.json +++ b/advisories/unreviewed/2022/05/GHSA-6c72-xp63-q5vp/GHSA-6c72-xp63-q5vp.json @@ -7,12 +7,8 @@ "CVE-2014-4954" ], "details": "Cross-site scripting (XSS) vulnerability in the PMA_getHtmlForActionLinks function in libraries/structure.lib.php in phpMyAdmin 4.2.x before 4.2.6 allows remote authenticated users to inject arbitrary web script or HTML via a crafted table comment that is improperly handled during construction of a database structure page.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6c88-fwg8-4qhh/GHSA-6c88-fwg8-4qhh.json b/advisories/unreviewed/2022/05/GHSA-6c88-fwg8-4qhh/GHSA-6c88-fwg8-4qhh.json index f4472fc67e3..0467ee01600 100644 --- a/advisories/unreviewed/2022/05/GHSA-6c88-fwg8-4qhh/GHSA-6c88-fwg8-4qhh.json +++ b/advisories/unreviewed/2022/05/GHSA-6c88-fwg8-4qhh/GHSA-6c88-fwg8-4qhh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -39,9 +37,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6cxg-j5f8-h5v4/GHSA-6cxg-j5f8-h5v4.json b/advisories/unreviewed/2022/05/GHSA-6cxg-j5f8-h5v4/GHSA-6cxg-j5f8-h5v4.json index 34d45aed4b9..23c862fd7c7 100644 --- a/advisories/unreviewed/2022/05/GHSA-6cxg-j5f8-h5v4/GHSA-6cxg-j5f8-h5v4.json +++ b/advisories/unreviewed/2022/05/GHSA-6cxg-j5f8-h5v4/GHSA-6cxg-j5f8-h5v4.json @@ -7,12 +7,8 @@ "CVE-2015-2871" ], "details": "Chiyu BF-660C fingerprint access-control devices allow remote attackers to bypass authentication and (1) read or (2) modify communication configuration settings via a request to net.htm, a different vulnerability than CVE-2015-5618.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6g28-hrvg-3vrq/GHSA-6g28-hrvg-3vrq.json b/advisories/unreviewed/2022/05/GHSA-6g28-hrvg-3vrq/GHSA-6g28-hrvg-3vrq.json index 71081581274..9d2338e1d7f 100644 --- a/advisories/unreviewed/2022/05/GHSA-6g28-hrvg-3vrq/GHSA-6g28-hrvg-3vrq.json +++ b/advisories/unreviewed/2022/05/GHSA-6g28-hrvg-3vrq/GHSA-6g28-hrvg-3vrq.json @@ -7,12 +7,8 @@ "CVE-2015-2966" ], "details": "Directory traversal vulnerability in the Droidware UK Explorer+ File Manager application before 2.3.3 for Android allows remote attackers to write to arbitrary files via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6g44-m4cj-w693/GHSA-6g44-m4cj-w693.json b/advisories/unreviewed/2022/05/GHSA-6g44-m4cj-w693/GHSA-6g44-m4cj-w693.json index 80066906200..9613c600c3a 100644 --- a/advisories/unreviewed/2022/05/GHSA-6g44-m4cj-w693/GHSA-6g44-m4cj-w693.json +++ b/advisories/unreviewed/2022/05/GHSA-6g44-m4cj-w693/GHSA-6g44-m4cj-w693.json @@ -7,12 +7,8 @@ "CVE-2014-8507" ], "details": "Multiple SQL injection vulnerabilities in the queryLastApp method in packages/WAPPushManager/src/com/android/smspush/WapPushManager.java in the WAPPushManager module in Android before 5.0.0 allow remote attackers to execute arbitrary SQL commands, and consequently launch an activity or service, via the (1) wapAppId or (2) contentType field of a PDU for a malformed WAPPush message, aka Bug 17969135.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6g7h-pghg-7423/GHSA-6g7h-pghg-7423.json b/advisories/unreviewed/2022/05/GHSA-6g7h-pghg-7423/GHSA-6g7h-pghg-7423.json index 11bbbedf1f5..bdc11c76eb5 100644 --- a/advisories/unreviewed/2022/05/GHSA-6g7h-pghg-7423/GHSA-6g7h-pghg-7423.json +++ b/advisories/unreviewed/2022/05/GHSA-6g7h-pghg-7423/GHSA-6g7h-pghg-7423.json @@ -7,12 +7,8 @@ "CVE-2015-4388" ], "details": "Cross-site scripting (XSS) vulnerability in the Current Search Links module 7.x-1.x before 7.x-1.1 for Drupal, when the \"Append the keywords passed by the user to the list\" option is disabled, allows remote attackers to inject arbitrary web script or HTML via a crafted search query.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6jjc-xw3g-g8wg/GHSA-6jjc-xw3g-g8wg.json b/advisories/unreviewed/2022/05/GHSA-6jjc-xw3g-g8wg/GHSA-6jjc-xw3g-g8wg.json index 95e1df35ea4..3dd37e0845a 100644 --- a/advisories/unreviewed/2022/05/GHSA-6jjc-xw3g-g8wg/GHSA-6jjc-xw3g-g8wg.json +++ b/advisories/unreviewed/2022/05/GHSA-6jjc-xw3g-g8wg/GHSA-6jjc-xw3g-g8wg.json @@ -7,12 +7,8 @@ "CVE-2014-4603" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in yupdates_application.php in the Yahoo! Updates for WordPress plugin 1.0 and earlier for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) secret, (2) key, or (3) appid parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6jvx-grfr-632g/GHSA-6jvx-grfr-632g.json b/advisories/unreviewed/2022/05/GHSA-6jvx-grfr-632g/GHSA-6jvx-grfr-632g.json index 8d3b60e0651..55d8b669f2b 100644 --- a/advisories/unreviewed/2022/05/GHSA-6jvx-grfr-632g/GHSA-6jvx-grfr-632g.json +++ b/advisories/unreviewed/2022/05/GHSA-6jvx-grfr-632g/GHSA-6jvx-grfr-632g.json @@ -7,12 +7,8 @@ "CVE-2013-7405" ], "details": "The Ad Hoc Reporting feature in GE Healthcare Centricity DMS 4.2 has a password of Never!Mind for the Administrator user, which has unspecified impact and attack vectors. NOTE: it is not clear whether this password is default, hardcoded, or dependent on another system or product that requires a fixed value.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6m6g-jfj8-2gh7/GHSA-6m6g-jfj8-2gh7.json b/advisories/unreviewed/2022/05/GHSA-6m6g-jfj8-2gh7/GHSA-6m6g-jfj8-2gh7.json index 7854e01bf66..9f09247d69a 100644 --- a/advisories/unreviewed/2022/05/GHSA-6m6g-jfj8-2gh7/GHSA-6m6g-jfj8-2gh7.json +++ b/advisories/unreviewed/2022/05/GHSA-6m6g-jfj8-2gh7/GHSA-6m6g-jfj8-2gh7.json @@ -7,12 +7,8 @@ "CVE-2014-1879" ], "details": "Cross-site scripting (XSS) vulnerability in import.php in phpMyAdmin before 4.1.7 allows remote authenticated users to inject arbitrary web script or HTML via a crafted filename in an import action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6p39-ww4v-4pwc/GHSA-6p39-ww4v-4pwc.json b/advisories/unreviewed/2022/05/GHSA-6p39-ww4v-4pwc/GHSA-6p39-ww4v-4pwc.json index 5852e4f7307..67451ae0cc2 100644 --- a/advisories/unreviewed/2022/05/GHSA-6p39-ww4v-4pwc/GHSA-6p39-ww4v-4pwc.json +++ b/advisories/unreviewed/2022/05/GHSA-6p39-ww4v-4pwc/GHSA-6p39-ww4v-4pwc.json @@ -7,12 +7,8 @@ "CVE-2015-4295" ], "details": "The Prime Collaboration Deployment component in Cisco Unified Communications Manager 10.5(3.10000.9) allows remote authenticated users to discover root credentials via a direct request to an unspecified URL, aka Bug ID CSCuv21819.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6vg6-w796-xw75/GHSA-6vg6-w796-xw75.json b/advisories/unreviewed/2022/05/GHSA-6vg6-w796-xw75/GHSA-6vg6-w796-xw75.json index bbb61c66a94..1c4d604a228 100644 --- a/advisories/unreviewed/2022/05/GHSA-6vg6-w796-xw75/GHSA-6vg6-w796-xw75.json +++ b/advisories/unreviewed/2022/05/GHSA-6vg6-w796-xw75/GHSA-6vg6-w796-xw75.json @@ -7,12 +7,8 @@ "CVE-2014-2329" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in Check_MK before 1.2.2p3 and 1.2.3x before 1.2.3i5 allow remote authenticated users to inject arbitrary web script or HTML via the (1) agent string for a check_mk agent, a (2) crafted request to a monitored host, which is not properly handled by the logwatch module, or other unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6vwm-p7vv-6mcx/GHSA-6vwm-p7vv-6mcx.json b/advisories/unreviewed/2022/05/GHSA-6vwm-p7vv-6mcx/GHSA-6vwm-p7vv-6mcx.json index 86c8b2cc095..c606ca29d5d 100644 --- a/advisories/unreviewed/2022/05/GHSA-6vwm-p7vv-6mcx/GHSA-6vwm-p7vv-6mcx.json +++ b/advisories/unreviewed/2022/05/GHSA-6vwm-p7vv-6mcx/GHSA-6vwm-p7vv-6mcx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6whr-q3cf-r2r5/GHSA-6whr-q3cf-r2r5.json b/advisories/unreviewed/2022/05/GHSA-6whr-q3cf-r2r5/GHSA-6whr-q3cf-r2r5.json index 974c74ce6c9..ea48536b0fc 100644 --- a/advisories/unreviewed/2022/05/GHSA-6whr-q3cf-r2r5/GHSA-6whr-q3cf-r2r5.json +++ b/advisories/unreviewed/2022/05/GHSA-6whr-q3cf-r2r5/GHSA-6whr-q3cf-r2r5.json @@ -7,12 +7,8 @@ "CVE-2014-5331" ], "details": "Cross-site scripting (XSS) vulnerability in Aflax allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-72xh-4q4w-qmf4/GHSA-72xh-4q4w-qmf4.json b/advisories/unreviewed/2022/05/GHSA-72xh-4q4w-qmf4/GHSA-72xh-4q4w-qmf4.json index 81b5c7dd41d..0d044eb20a1 100644 --- a/advisories/unreviewed/2022/05/GHSA-72xh-4q4w-qmf4/GHSA-72xh-4q4w-qmf4.json +++ b/advisories/unreviewed/2022/05/GHSA-72xh-4q4w-qmf4/GHSA-72xh-4q4w-qmf4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-735p-x87r-mm45/GHSA-735p-x87r-mm45.json b/advisories/unreviewed/2022/05/GHSA-735p-x87r-mm45/GHSA-735p-x87r-mm45.json index 1ec766db8c2..145fb754c6b 100644 --- a/advisories/unreviewed/2022/05/GHSA-735p-x87r-mm45/GHSA-735p-x87r-mm45.json +++ b/advisories/unreviewed/2022/05/GHSA-735p-x87r-mm45/GHSA-735p-x87r-mm45.json @@ -7,12 +7,8 @@ "CVE-2015-0444" ], "details": "Unspecified vulnerability in the Oracle Data Integrator component in Oracle Fusion Middleware 11.1.1.3.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Data Quality based on Trillium, a different vulnerability than CVE-2015-0443, CVE-2015-0445, CVE-2015-0446, CVE-2015-2634, CVE-2015-2635, CVE-2015-2636, CVE-2015-4758, and CVE-2015-4759.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-73fc-22xj-hx85/GHSA-73fc-22xj-hx85.json b/advisories/unreviewed/2022/05/GHSA-73fc-22xj-hx85/GHSA-73fc-22xj-hx85.json index 87d784d7b86..96b5e9cb66c 100644 --- a/advisories/unreviewed/2022/05/GHSA-73fc-22xj-hx85/GHSA-73fc-22xj-hx85.json +++ b/advisories/unreviewed/2022/05/GHSA-73fc-22xj-hx85/GHSA-73fc-22xj-hx85.json @@ -7,12 +7,8 @@ "CVE-2015-2183" ], "details": "Multiple SQL injection vulnerabilities in the administrative backend in ZeusCart 4 allow remote administrators to execute arbitrary SQL commands via the id parameter in a (1) disporders detail or (2) subadminmgt edit action or (3) cid parameter in an editcurrency action to admin/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-73qq-h522-ff25/GHSA-73qq-h522-ff25.json b/advisories/unreviewed/2022/05/GHSA-73qq-h522-ff25/GHSA-73qq-h522-ff25.json index d51ea674318..dfb8997c97f 100644 --- a/advisories/unreviewed/2022/05/GHSA-73qq-h522-ff25/GHSA-73qq-h522-ff25.json +++ b/advisories/unreviewed/2022/05/GHSA-73qq-h522-ff25/GHSA-73qq-h522-ff25.json @@ -7,12 +7,8 @@ "CVE-2014-5456" ], "details": "Cross-site scripting (XSS) vulnerability in the Social Stats module before 7.x-1.5 for Drupal allows remote authenticated users with the \"[Content Type]: Create new content\" permission to inject arbitrary web script or HTML via vectors related to the configuration.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-75qx-cvqj-h92p/GHSA-75qx-cvqj-h92p.json b/advisories/unreviewed/2022/05/GHSA-75qx-cvqj-h92p/GHSA-75qx-cvqj-h92p.json index e6906a4c4a8..f59ae7738d5 100644 --- a/advisories/unreviewed/2022/05/GHSA-75qx-cvqj-h92p/GHSA-75qx-cvqj-h92p.json +++ b/advisories/unreviewed/2022/05/GHSA-75qx-cvqj-h92p/GHSA-75qx-cvqj-h92p.json @@ -7,12 +7,8 @@ "CVE-2015-1956" ], "details": "IBM MQ Light before 1.0.0.2 allows remote attackers to cause a denial of service (disk consumption) via a crafted byte sequence in authentication data, a different vulnerability than CVE-2015-1958 and CVE-2015-1987.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-7775-rc33-q3fr/GHSA-7775-rc33-q3fr.json b/advisories/unreviewed/2022/05/GHSA-7775-rc33-q3fr/GHSA-7775-rc33-q3fr.json index 8423f25f436..acd355b9eea 100644 --- a/advisories/unreviewed/2022/05/GHSA-7775-rc33-q3fr/GHSA-7775-rc33-q3fr.json +++ b/advisories/unreviewed/2022/05/GHSA-7775-rc33-q3fr/GHSA-7775-rc33-q3fr.json @@ -7,12 +7,8 @@ "CVE-2014-2283" ], "details": "epan/dissectors/packet-rlc in the RLC dissector in Wireshark 1.8.x before 1.8.13 and 1.10.x before 1.10.6 uses inconsistent memory-management approaches, which allows remote attackers to cause a denial of service (use-after-free error and application crash) via a crafted UMTS Radio Link Control packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -68,9 +64,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-79wh-37j3-h783/GHSA-79wh-37j3-h783.json b/advisories/unreviewed/2022/05/GHSA-79wh-37j3-h783/GHSA-79wh-37j3-h783.json index b386b9d5764..d87b856ff3b 100644 --- a/advisories/unreviewed/2022/05/GHSA-79wh-37j3-h783/GHSA-79wh-37j3-h783.json +++ b/advisories/unreviewed/2022/05/GHSA-79wh-37j3-h783/GHSA-79wh-37j3-h783.json @@ -7,12 +7,8 @@ "CVE-2015-0767" ], "details": "Cisco Edge 300 software 1.0 and 1.1 on Edge 340 devices allows local users to obtain root privileges via unspecified commands, aka Bug ID CSCur18132.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-7c68-jr35-q3c6/GHSA-7c68-jr35-q3c6.json b/advisories/unreviewed/2022/05/GHSA-7c68-jr35-q3c6/GHSA-7c68-jr35-q3c6.json index d19f23d6fdd..5db3e795150 100644 --- a/advisories/unreviewed/2022/05/GHSA-7c68-jr35-q3c6/GHSA-7c68-jr35-q3c6.json +++ b/advisories/unreviewed/2022/05/GHSA-7c68-jr35-q3c6/GHSA-7c68-jr35-q3c6.json @@ -7,12 +7,8 @@ "CVE-2015-6519" ], "details": "SQL injection vulnerability in Arab Portal 3 allows remote attackers to execute arbitrary SQL commands via the showemail parameter in a signup action to members.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7f4j-xr2p-4j8q/GHSA-7f4j-xr2p-4j8q.json b/advisories/unreviewed/2022/05/GHSA-7f4j-xr2p-4j8q/GHSA-7f4j-xr2p-4j8q.json index 055163e61a7..803f3cf44e5 100644 --- a/advisories/unreviewed/2022/05/GHSA-7f4j-xr2p-4j8q/GHSA-7f4j-xr2p-4j8q.json +++ b/advisories/unreviewed/2022/05/GHSA-7f4j-xr2p-4j8q/GHSA-7f4j-xr2p-4j8q.json @@ -7,12 +7,8 @@ "CVE-2014-3933" ], "details": "Cross-site scripting (XSS) vulnerability in the address components field formatter in the AddressField Tokens module 7.x-1.x before 7.x-1.4 for Drupal allows remote authenticated users to inject arbitrary web script or HTML via an address field.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7g34-3hcg-gwph/GHSA-7g34-3hcg-gwph.json b/advisories/unreviewed/2022/05/GHSA-7g34-3hcg-gwph/GHSA-7g34-3hcg-gwph.json index 65c40df54da..c0746efeb16 100644 --- a/advisories/unreviewed/2022/05/GHSA-7g34-3hcg-gwph/GHSA-7g34-3hcg-gwph.json +++ b/advisories/unreviewed/2022/05/GHSA-7g34-3hcg-gwph/GHSA-7g34-3hcg-gwph.json @@ -7,12 +7,8 @@ "CVE-2014-2190" ], "details": "Cross-site request forgery (CSRF) vulnerability in the web framework in Cisco Broadcast Access Center for Telco and Wireless (aka BAC-TW) allows remote attackers to hijack the authentication of arbitrary users for requests that make BAC-TW changes, aka Bug IDs CSCuo23804 and CSCuo26389.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7g79-5vjp-6w3f/GHSA-7g79-5vjp-6w3f.json b/advisories/unreviewed/2022/05/GHSA-7g79-5vjp-6w3f/GHSA-7g79-5vjp-6w3f.json index fc8c3147a96..03a835f662c 100644 --- a/advisories/unreviewed/2022/05/GHSA-7g79-5vjp-6w3f/GHSA-7g79-5vjp-6w3f.json +++ b/advisories/unreviewed/2022/05/GHSA-7g79-5vjp-6w3f/GHSA-7g79-5vjp-6w3f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7h4g-fv39-cwf4/GHSA-7h4g-fv39-cwf4.json b/advisories/unreviewed/2022/05/GHSA-7h4g-fv39-cwf4/GHSA-7h4g-fv39-cwf4.json index 0a84e407e19..d357cca912e 100644 --- a/advisories/unreviewed/2022/05/GHSA-7h4g-fv39-cwf4/GHSA-7h4g-fv39-cwf4.json +++ b/advisories/unreviewed/2022/05/GHSA-7h4g-fv39-cwf4/GHSA-7h4g-fv39-cwf4.json @@ -7,12 +7,8 @@ "CVE-2014-5417" ], "details": "Cross-site scripting (XSS) vulnerability in Meinberg NTP Server firmware on LANTIME M-Series devices 6.15.019 and earlier allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7hf6-hcxg-35gw/GHSA-7hf6-hcxg-35gw.json b/advisories/unreviewed/2022/05/GHSA-7hf6-hcxg-35gw/GHSA-7hf6-hcxg-35gw.json index 9250e960abf..ff97569fff6 100644 --- a/advisories/unreviewed/2022/05/GHSA-7hf6-hcxg-35gw/GHSA-7hf6-hcxg-35gw.json +++ b/advisories/unreviewed/2022/05/GHSA-7hf6-hcxg-35gw/GHSA-7hf6-hcxg-35gw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-7hj4-83j2-59hw/GHSA-7hj4-83j2-59hw.json b/advisories/unreviewed/2022/05/GHSA-7hj4-83j2-59hw/GHSA-7hj4-83j2-59hw.json index b76d0c63a26..e3d8ddf137f 100644 --- a/advisories/unreviewed/2022/05/GHSA-7hj4-83j2-59hw/GHSA-7hj4-83j2-59hw.json +++ b/advisories/unreviewed/2022/05/GHSA-7hj4-83j2-59hw/GHSA-7hj4-83j2-59hw.json @@ -7,12 +7,8 @@ "CVE-2015-2653" ], "details": "Unspecified vulnerability in the Oracle Commerce Guided Search / Oracle Commerce Experience Manager component in Oracle Commerce Platform 3.1.1, 3.1.2, 11.0, and 11.1 allows remote attackers to affect confidentiality and integrity via unknown vectors related to Content Acquisition System.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-7mrf-5phq-8x3g/GHSA-7mrf-5phq-8x3g.json b/advisories/unreviewed/2022/05/GHSA-7mrf-5phq-8x3g/GHSA-7mrf-5phq-8x3g.json index 0cbb1571479..569f183d383 100644 --- a/advisories/unreviewed/2022/05/GHSA-7mrf-5phq-8x3g/GHSA-7mrf-5phq-8x3g.json +++ b/advisories/unreviewed/2022/05/GHSA-7mrf-5phq-8x3g/GHSA-7mrf-5phq-8x3g.json @@ -7,12 +7,8 @@ "CVE-2014-1899" ], "details": "Cross-site scripting (XSS) vulnerability in Citrix NetScaler Gateway (formerly Citrix Access Gateway Enterprise Edition) 9.x before 9.3.66.5 and 10.x before 10.1.123.9 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7q6f-67mh-6q6q/GHSA-7q6f-67mh-6q6q.json b/advisories/unreviewed/2022/05/GHSA-7q6f-67mh-6q6q/GHSA-7q6f-67mh-6q6q.json index 4a1af27b031..8fef62f5d7e 100644 --- a/advisories/unreviewed/2022/05/GHSA-7q6f-67mh-6q6q/GHSA-7q6f-67mh-6q6q.json +++ b/advisories/unreviewed/2022/05/GHSA-7q6f-67mh-6q6q/GHSA-7q6f-67mh-6q6q.json @@ -7,12 +7,8 @@ "CVE-2015-5405" ], "details": "HP Systems Insight Manager (SIM) before 7.5.0, as used in HP Matrix Operating Environment before 7.5.0 and other products, allows remote authenticated users to obtain sensitive information, modify data, or cause a denial of service via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-7qjr-qph2-rjqv/GHSA-7qjr-qph2-rjqv.json b/advisories/unreviewed/2022/05/GHSA-7qjr-qph2-rjqv/GHSA-7qjr-qph2-rjqv.json index 87afd7d7834..0ae84766ec2 100644 --- a/advisories/unreviewed/2022/05/GHSA-7qjr-qph2-rjqv/GHSA-7qjr-qph2-rjqv.json +++ b/advisories/unreviewed/2022/05/GHSA-7qjr-qph2-rjqv/GHSA-7qjr-qph2-rjqv.json @@ -7,12 +7,8 @@ "CVE-2015-4387" ], "details": "Cross-site scripting (XSS) vulnerability in unspecified administration pages in the Password Policy module 6.x-1.x before 6.x-1.11 and 7.x-1.x before 7.x-1.11 for Drupal, when a site has a policy that uses the username constraint, allows remote attackers to inject arbitrary web script or HTML via a crafted username that is imported from an external source.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7qpm-cp88-fc7h/GHSA-7qpm-cp88-fc7h.json b/advisories/unreviewed/2022/05/GHSA-7qpm-cp88-fc7h/GHSA-7qpm-cp88-fc7h.json index e8ca1641642..c0d6ed999d6 100644 --- a/advisories/unreviewed/2022/05/GHSA-7qpm-cp88-fc7h/GHSA-7qpm-cp88-fc7h.json +++ b/advisories/unreviewed/2022/05/GHSA-7qpm-cp88-fc7h/GHSA-7qpm-cp88-fc7h.json @@ -7,12 +7,8 @@ "CVE-2014-1975" ], "details": "Directory traversal vulnerability in the R-Company Unzipper application 1.0.1 and earlier for Android allows remote attackers to overwrite or create arbitrary files via a crafted filename.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7qxv-9465-xvp7/GHSA-7qxv-9465-xvp7.json b/advisories/unreviewed/2022/05/GHSA-7qxv-9465-xvp7/GHSA-7qxv-9465-xvp7.json index ce03246174c..5af4c0c13a4 100644 --- a/advisories/unreviewed/2022/05/GHSA-7qxv-9465-xvp7/GHSA-7qxv-9465-xvp7.json +++ b/advisories/unreviewed/2022/05/GHSA-7qxv-9465-xvp7/GHSA-7qxv-9465-xvp7.json @@ -7,12 +7,8 @@ "CVE-2014-3115" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in the web administration console in Fortinet FortiWeb before 5.2.0 allow remote attackers to hijack the authentication of administrators via system/config/adminadd and other unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7vgh-hp65-g3xx/GHSA-7vgh-hp65-g3xx.json b/advisories/unreviewed/2022/05/GHSA-7vgh-hp65-g3xx/GHSA-7vgh-hp65-g3xx.json index 5df81911901..d4fe0706a2f 100644 --- a/advisories/unreviewed/2022/05/GHSA-7vgh-hp65-g3xx/GHSA-7vgh-hp65-g3xx.json +++ b/advisories/unreviewed/2022/05/GHSA-7vgh-hp65-g3xx/GHSA-7vgh-hp65-g3xx.json @@ -7,12 +7,8 @@ "CVE-2014-2332" ], "details": "Check_MK before 1.2.2p3 and 1.2.3x before 1.2.3i5 allows remote authenticated users to delete arbitrary files via a request to an unspecified link, related to \"Insecure Direct Object References.\" NOTE: this can be exploited by remote attackers by leveraging CVE-2014-2330.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7w8r-q58w-5wcr/GHSA-7w8r-q58w-5wcr.json b/advisories/unreviewed/2022/05/GHSA-7w8r-q58w-5wcr/GHSA-7w8r-q58w-5wcr.json index 50ab2451aad..8a0d449858b 100644 --- a/advisories/unreviewed/2022/05/GHSA-7w8r-q58w-5wcr/GHSA-7w8r-q58w-5wcr.json +++ b/advisories/unreviewed/2022/05/GHSA-7w8r-q58w-5wcr/GHSA-7w8r-q58w-5wcr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7wg9-jmf6-4wpg/GHSA-7wg9-jmf6-4wpg.json b/advisories/unreviewed/2022/05/GHSA-7wg9-jmf6-4wpg/GHSA-7wg9-jmf6-4wpg.json index 043a30f0971..523c6a1e6d1 100644 --- a/advisories/unreviewed/2022/05/GHSA-7wg9-jmf6-4wpg/GHSA-7wg9-jmf6-4wpg.json +++ b/advisories/unreviewed/2022/05/GHSA-7wg9-jmf6-4wpg/GHSA-7wg9-jmf6-4wpg.json @@ -7,12 +7,8 @@ "CVE-2015-5404" ], "details": "HP Systems Insight Manager (SIM) before 7.5.0, as used in HP Matrix Operating Environment before 7.5.0 and other products, allows remote attackers to obtain sensitive information or modify data via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-7x63-m5g9-3fh8/GHSA-7x63-m5g9-3fh8.json b/advisories/unreviewed/2022/05/GHSA-7x63-m5g9-3fh8/GHSA-7x63-m5g9-3fh8.json index b4c3d7971a8..d27f963b22e 100644 --- a/advisories/unreviewed/2022/05/GHSA-7x63-m5g9-3fh8/GHSA-7x63-m5g9-3fh8.json +++ b/advisories/unreviewed/2022/05/GHSA-7x63-m5g9-3fh8/GHSA-7x63-m5g9-3fh8.json @@ -7,12 +7,8 @@ "CVE-2014-0639" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in EMC RSA Archer 5.x before GRC 5.4 SP1 P3 allow remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7x7q-c2vw-c5qh/GHSA-7x7q-c2vw-c5qh.json b/advisories/unreviewed/2022/05/GHSA-7x7q-c2vw-c5qh/GHSA-7x7q-c2vw-c5qh.json index 1e802f72874..3e5211dceeb 100644 --- a/advisories/unreviewed/2022/05/GHSA-7x7q-c2vw-c5qh/GHSA-7x7q-c2vw-c5qh.json +++ b/advisories/unreviewed/2022/05/GHSA-7x7q-c2vw-c5qh/GHSA-7x7q-c2vw-c5qh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7xq3-42gv-rc2r/GHSA-7xq3-42gv-rc2r.json b/advisories/unreviewed/2022/05/GHSA-7xq3-42gv-rc2r/GHSA-7xq3-42gv-rc2r.json index 537ab160885..c613adc7a85 100644 --- a/advisories/unreviewed/2022/05/GHSA-7xq3-42gv-rc2r/GHSA-7xq3-42gv-rc2r.json +++ b/advisories/unreviewed/2022/05/GHSA-7xq3-42gv-rc2r/GHSA-7xq3-42gv-rc2r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7xqw-49vx-86cm/GHSA-7xqw-49vx-86cm.json b/advisories/unreviewed/2022/05/GHSA-7xqw-49vx-86cm/GHSA-7xqw-49vx-86cm.json index 4cdab6eb25f..ebd8f9169b9 100644 --- a/advisories/unreviewed/2022/05/GHSA-7xqw-49vx-86cm/GHSA-7xqw-49vx-86cm.json +++ b/advisories/unreviewed/2022/05/GHSA-7xqw-49vx-86cm/GHSA-7xqw-49vx-86cm.json @@ -7,12 +7,8 @@ "CVE-2014-2314" ], "details": "Directory traversal vulnerability in the Issue Collector plugin in Atlassian JIRA before 6.0.4 allows remote attackers to create arbitrary files via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8272-fxcj-x484/GHSA-8272-fxcj-x484.json b/advisories/unreviewed/2022/05/GHSA-8272-fxcj-x484/GHSA-8272-fxcj-x484.json index 5f565d82b79..86b0bdea7c4 100644 --- a/advisories/unreviewed/2022/05/GHSA-8272-fxcj-x484/GHSA-8272-fxcj-x484.json +++ b/advisories/unreviewed/2022/05/GHSA-8272-fxcj-x484/GHSA-8272-fxcj-x484.json @@ -7,12 +7,8 @@ "CVE-2015-5514" ], "details": "Cross-site scripting (XSS) vulnerability in the Migrate module 7.x-2.x before 7.x-2.8 for Drupal, when the migrate_ui submodule is enabled, allows user-assisted remote attackers to inject arbitrary web script or HTML via a destination field label.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-82cc-q8p5-6m2c/GHSA-82cc-q8p5-6m2c.json b/advisories/unreviewed/2022/05/GHSA-82cc-q8p5-6m2c/GHSA-82cc-q8p5-6m2c.json index 4c79baa47b9..19895d71ab2 100644 --- a/advisories/unreviewed/2022/05/GHSA-82cc-q8p5-6m2c/GHSA-82cc-q8p5-6m2c.json +++ b/advisories/unreviewed/2022/05/GHSA-82cc-q8p5-6m2c/GHSA-82cc-q8p5-6m2c.json @@ -7,12 +7,8 @@ "CVE-2014-1407" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities on the Conceptronic C54APM access point with runtime code 1.26 allow remote attackers to inject arbitrary web script or HTML via (1) the submit-url parameter in a Refresh action to goform/formWlSiteSurvey or (2) the wlan-url parameter to goform/formWlanSetup.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-82cw-3945-mp3r/GHSA-82cw-3945-mp3r.json b/advisories/unreviewed/2022/05/GHSA-82cw-3945-mp3r/GHSA-82cw-3945-mp3r.json index 530bfcc3735..6d4889336c2 100644 --- a/advisories/unreviewed/2022/05/GHSA-82cw-3945-mp3r/GHSA-82cw-3945-mp3r.json +++ b/advisories/unreviewed/2022/05/GHSA-82cw-3945-mp3r/GHSA-82cw-3945-mp3r.json @@ -7,12 +7,8 @@ "CVE-2015-5429" ], "details": "HP Matrix Operating Environment before 7.5.0 allows remote attackers to obtain sensitive information or modify data via unspecified vectors, a different vulnerability than CVE-2015-5427 and CVE-2015-5428.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-833m-299m-6gvp/GHSA-833m-299m-6gvp.json b/advisories/unreviewed/2022/05/GHSA-833m-299m-6gvp/GHSA-833m-299m-6gvp.json index d8ed5da22e5..6fe7483a155 100644 --- a/advisories/unreviewed/2022/05/GHSA-833m-299m-6gvp/GHSA-833m-299m-6gvp.json +++ b/advisories/unreviewed/2022/05/GHSA-833m-299m-6gvp/GHSA-833m-299m-6gvp.json @@ -7,12 +7,8 @@ "CVE-2015-4337" ], "details": "Cross-site scripting (XSS) vulnerability in the XCloner plugin 3.1.2 for WordPress allows remote authenticated users to inject arbitrary web script or HTML via the excl_manual parameter in the xcloner_show page to wpadmin/plugins.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-843w-mxvc-g5pp/GHSA-843w-mxvc-g5pp.json b/advisories/unreviewed/2022/05/GHSA-843w-mxvc-g5pp/GHSA-843w-mxvc-g5pp.json index fc8648b9f9a..822d42550b9 100644 --- a/advisories/unreviewed/2022/05/GHSA-843w-mxvc-g5pp/GHSA-843w-mxvc-g5pp.json +++ b/advisories/unreviewed/2022/05/GHSA-843w-mxvc-g5pp/GHSA-843w-mxvc-g5pp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-86gr-3c6p-69c4/GHSA-86gr-3c6p-69c4.json b/advisories/unreviewed/2022/05/GHSA-86gr-3c6p-69c4/GHSA-86gr-3c6p-69c4.json index 0fcb9eb104d..219a6b46347 100644 --- a/advisories/unreviewed/2022/05/GHSA-86gr-3c6p-69c4/GHSA-86gr-3c6p-69c4.json +++ b/advisories/unreviewed/2022/05/GHSA-86gr-3c6p-69c4/GHSA-86gr-3c6p-69c4.json @@ -7,12 +7,8 @@ "CVE-2015-4764" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-86wp-278v-h7vp/GHSA-86wp-278v-h7vp.json b/advisories/unreviewed/2022/05/GHSA-86wp-278v-h7vp/GHSA-86wp-278v-h7vp.json index 001208f8fd8..27ff4581721 100644 --- a/advisories/unreviewed/2022/05/GHSA-86wp-278v-h7vp/GHSA-86wp-278v-h7vp.json +++ b/advisories/unreviewed/2022/05/GHSA-86wp-278v-h7vp/GHSA-86wp-278v-h7vp.json @@ -7,12 +7,8 @@ "CVE-2015-5962" ], "details": "Integer signedness error in the SharedBufferManagerParent::RecvAllocateGrallocBuffer function in the buffer-management implementation in the graphics layer in Mozilla Firefox OS before 2.2 might allow attackers to cause a denial of service (memory corruption) via a negative value of a size parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-875p-6x4g-fjc2/GHSA-875p-6x4g-fjc2.json b/advisories/unreviewed/2022/05/GHSA-875p-6x4g-fjc2/GHSA-875p-6x4g-fjc2.json index 6e2ccf4054c..6048fb493ef 100644 --- a/advisories/unreviewed/2022/05/GHSA-875p-6x4g-fjc2/GHSA-875p-6x4g-fjc2.json +++ b/advisories/unreviewed/2022/05/GHSA-875p-6x4g-fjc2/GHSA-875p-6x4g-fjc2.json @@ -7,12 +7,8 @@ "CVE-2012-2123" ], "details": "The cap_bprm_set_creds function in security/commoncap.c in the Linux kernel before 3.3.3 does not properly handle the use of file system capabilities (aka fcaps) for implementing a privileged executable file, which allows local users to bypass intended personality restrictions via a crafted application, as demonstrated by an attack that uses a parent process to disable ASLR.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -68,9 +64,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-8795-rjrm-xjf7/GHSA-8795-rjrm-xjf7.json b/advisories/unreviewed/2022/05/GHSA-8795-rjrm-xjf7/GHSA-8795-rjrm-xjf7.json index 0326835443a..15ff5335420 100644 --- a/advisories/unreviewed/2022/05/GHSA-8795-rjrm-xjf7/GHSA-8795-rjrm-xjf7.json +++ b/advisories/unreviewed/2022/05/GHSA-8795-rjrm-xjf7/GHSA-8795-rjrm-xjf7.json @@ -7,12 +7,8 @@ "CVE-2013-6780" ], "details": "Cross-site scripting (XSS) vulnerability in uploader.swf in the Uploader component in Yahoo! YUI 2.5.0 through 2.9.0 allows remote attackers to inject arbitrary web script or HTML via the allowedDomain parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-87qj-mcq2-mp5m/GHSA-87qj-mcq2-mp5m.json b/advisories/unreviewed/2022/05/GHSA-87qj-mcq2-mp5m/GHSA-87qj-mcq2-mp5m.json index 3d4da702117..743eddfcf69 100644 --- a/advisories/unreviewed/2022/05/GHSA-87qj-mcq2-mp5m/GHSA-87qj-mcq2-mp5m.json +++ b/advisories/unreviewed/2022/05/GHSA-87qj-mcq2-mp5m/GHSA-87qj-mcq2-mp5m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8929-hgm8-969q/GHSA-8929-hgm8-969q.json b/advisories/unreviewed/2022/05/GHSA-8929-hgm8-969q/GHSA-8929-hgm8-969q.json index f2ccaf07460..d7c42cb807b 100644 --- a/advisories/unreviewed/2022/05/GHSA-8929-hgm8-969q/GHSA-8929-hgm8-969q.json +++ b/advisories/unreviewed/2022/05/GHSA-8929-hgm8-969q/GHSA-8929-hgm8-969q.json @@ -7,12 +7,8 @@ "CVE-2015-4790" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, and CVE-2015-4789.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-89qw-6g6w-269q/GHSA-89qw-6g6w-269q.json b/advisories/unreviewed/2022/05/GHSA-89qw-6g6w-269q/GHSA-89qw-6g6w-269q.json index bf25b35cc0c..f70ec7a4d2c 100644 --- a/advisories/unreviewed/2022/05/GHSA-89qw-6g6w-269q/GHSA-89qw-6g6w-269q.json +++ b/advisories/unreviewed/2022/05/GHSA-89qw-6g6w-269q/GHSA-89qw-6g6w-269q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8c3j-6rq2-9h32/GHSA-8c3j-6rq2-9h32.json b/advisories/unreviewed/2022/05/GHSA-8c3j-6rq2-9h32/GHSA-8c3j-6rq2-9h32.json index e78a82ada5d..4dd96d3e70e 100644 --- a/advisories/unreviewed/2022/05/GHSA-8c3j-6rq2-9h32/GHSA-8c3j-6rq2-9h32.json +++ b/advisories/unreviewed/2022/05/GHSA-8c3j-6rq2-9h32/GHSA-8c3j-6rq2-9h32.json @@ -7,12 +7,8 @@ "CVE-2015-2847" ], "details": "Honeywell Tuxedo Touch before 5.2.19.0_VA relies on client-side authentication involving JavaScript, which allows remote attackers to bypass intended access restrictions by removing USERACCT requests from the client-server data stream.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8c6w-p9fg-6fwf/GHSA-8c6w-p9fg-6fwf.json b/advisories/unreviewed/2022/05/GHSA-8c6w-p9fg-6fwf/GHSA-8c6w-p9fg-6fwf.json index 28a17519607..eb2e07f28f8 100644 --- a/advisories/unreviewed/2022/05/GHSA-8c6w-p9fg-6fwf/GHSA-8c6w-p9fg-6fwf.json +++ b/advisories/unreviewed/2022/05/GHSA-8c6w-p9fg-6fwf/GHSA-8c6w-p9fg-6fwf.json @@ -7,12 +7,8 @@ "CVE-2015-4349" ], "details": "Cross-site request forgery (CSRF) vulnerability in the Spider Contacts module for Drupal allows remote attackers to hijack the authentication of administrators for requests that delete contact categories via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8c9c-rccv-p938/GHSA-8c9c-rccv-p938.json b/advisories/unreviewed/2022/05/GHSA-8c9c-rccv-p938/GHSA-8c9c-rccv-p938.json index 32fb81c701e..8baa0af492e 100644 --- a/advisories/unreviewed/2022/05/GHSA-8c9c-rccv-p938/GHSA-8c9c-rccv-p938.json +++ b/advisories/unreviewed/2022/05/GHSA-8c9c-rccv-p938/GHSA-8c9c-rccv-p938.json @@ -7,12 +7,8 @@ "CVE-2015-4374" ], "details": "Cross-site scripting (XSS) vulnerability in the Webform module before 6.x-3.23, 7.x-3.x before 7.x-3.23, and 7.x-4.x before 7.x-4.5 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via a component name in the recipient (To) address of an email.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8cf4-hxfr-hf4h/GHSA-8cf4-hxfr-hf4h.json b/advisories/unreviewed/2022/05/GHSA-8cf4-hxfr-hf4h/GHSA-8cf4-hxfr-hf4h.json index 83742a34c54..4418a9fdef0 100644 --- a/advisories/unreviewed/2022/05/GHSA-8cf4-hxfr-hf4h/GHSA-8cf4-hxfr-hf4h.json +++ b/advisories/unreviewed/2022/05/GHSA-8cf4-hxfr-hf4h/GHSA-8cf4-hxfr-hf4h.json @@ -7,12 +7,8 @@ "CVE-2015-6807" ], "details": "Cross-site scripting (XSS) vulnerability in the Mass Contact module 6.x-1.x before 6.x-1.6 and 7.x-1.x before 7.x-1.1 for Drupal allows remote authenticated users with the \"administer mass contact\" permission to inject arbitrary web script or HTML via a category label.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8fcq-rj79-2g5w/GHSA-8fcq-rj79-2g5w.json b/advisories/unreviewed/2022/05/GHSA-8fcq-rj79-2g5w/GHSA-8fcq-rj79-2g5w.json index f0ab5b418dc..6c28449ef84 100644 --- a/advisories/unreviewed/2022/05/GHSA-8fcq-rj79-2g5w/GHSA-8fcq-rj79-2g5w.json +++ b/advisories/unreviewed/2022/05/GHSA-8fcq-rj79-2g5w/GHSA-8fcq-rj79-2g5w.json @@ -7,12 +7,8 @@ "CVE-2015-5618" ], "details": "Chiyu BF-630 and BF-630W fingerprint access-control devices allow remote attackers to bypass authentication and (1) read or (2) modify (a) Voice Time Set configuration settings via a request to voice.htm or (b) UniFinger configuration settings via a request to bf.htm, a different vulnerability than CVE-2015-2871.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-8fcr-4grw-v7r7/GHSA-8fcr-4grw-v7r7.json b/advisories/unreviewed/2022/05/GHSA-8fcr-4grw-v7r7/GHSA-8fcr-4grw-v7r7.json index fde9f7c49d2..4adc0b811c3 100644 --- a/advisories/unreviewed/2022/05/GHSA-8fcr-4grw-v7r7/GHSA-8fcr-4grw-v7r7.json +++ b/advisories/unreviewed/2022/05/GHSA-8fcr-4grw-v7r7/GHSA-8fcr-4grw-v7r7.json @@ -7,12 +7,8 @@ "CVE-2015-2972" ], "details": "Multiple SQL injection vulnerabilities in Sysphonic Thetis before 2.3.0 allow remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8fjf-xxrg-6332/GHSA-8fjf-xxrg-6332.json b/advisories/unreviewed/2022/05/GHSA-8fjf-xxrg-6332/GHSA-8fjf-xxrg-6332.json index b3be9a14643..df3e51df48e 100644 --- a/advisories/unreviewed/2022/05/GHSA-8fjf-xxrg-6332/GHSA-8fjf-xxrg-6332.json +++ b/advisories/unreviewed/2022/05/GHSA-8fjf-xxrg-6332/GHSA-8fjf-xxrg-6332.json @@ -7,12 +7,8 @@ "CVE-2014-4846" ], "details": "Cross-site scripting (XSS) vulnerability in the Meta Slider (ml-slider) plugin 2.5 for WordPress allows remote attackers to inject arbitrary web script or HTML via the id parameter to wp-admin/admin.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8gqc-j7wm-6g58/GHSA-8gqc-j7wm-6g58.json b/advisories/unreviewed/2022/05/GHSA-8gqc-j7wm-6g58/GHSA-8gqc-j7wm-6g58.json index 9a971f6821d..3033c5b159c 100644 --- a/advisories/unreviewed/2022/05/GHSA-8gqc-j7wm-6g58/GHSA-8gqc-j7wm-6g58.json +++ b/advisories/unreviewed/2022/05/GHSA-8gqc-j7wm-6g58/GHSA-8gqc-j7wm-6g58.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:N/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8j23-rqhr-c294/GHSA-8j23-rqhr-c294.json b/advisories/unreviewed/2022/05/GHSA-8j23-rqhr-c294/GHSA-8j23-rqhr-c294.json index a5c9a345742..f5b3cb2d072 100644 --- a/advisories/unreviewed/2022/05/GHSA-8j23-rqhr-c294/GHSA-8j23-rqhr-c294.json +++ b/advisories/unreviewed/2022/05/GHSA-8j23-rqhr-c294/GHSA-8j23-rqhr-c294.json @@ -7,12 +7,8 @@ "CVE-2015-4140" ], "details": "Cross-site request forgery (CSRF) vulnerability in the WP Smiley plugin 1.4.1 for WordPress allows remote attackers to hijack the authentication of editors for requests that conduct cross-site scripting (XSS) attacks via the s4w-more parameter to the smilies4wp.php page to wp-admin/options-general.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8mm5-hrpr-4v3x/GHSA-8mm5-hrpr-4v3x.json b/advisories/unreviewed/2022/05/GHSA-8mm5-hrpr-4v3x/GHSA-8mm5-hrpr-4v3x.json index 038f20b67b8..b78caefb0e5 100644 --- a/advisories/unreviewed/2022/05/GHSA-8mm5-hrpr-4v3x/GHSA-8mm5-hrpr-4v3x.json +++ b/advisories/unreviewed/2022/05/GHSA-8mm5-hrpr-4v3x/GHSA-8mm5-hrpr-4v3x.json @@ -7,12 +7,8 @@ "CVE-2015-2634" ], "details": "Unspecified vulnerability in the Oracle Data Integrator component in Oracle Fusion Middleware 11.1.1.3.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Data Quality based on Trillium, a different vulnerability than CVE-2015-0443, CVE-2015-0444, CVE-2015-0445, CVE-2015-0446, CVE-2015-2635, CVE-2015-2636, CVE-2015-4758, and CVE-2015-4759.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-8mvm-qvc9-qrc9/GHSA-8mvm-qvc9-qrc9.json b/advisories/unreviewed/2022/05/GHSA-8mvm-qvc9-qrc9/GHSA-8mvm-qvc9-qrc9.json index e059bc228ee..d42d51337eb 100644 --- a/advisories/unreviewed/2022/05/GHSA-8mvm-qvc9-qrc9/GHSA-8mvm-qvc9-qrc9.json +++ b/advisories/unreviewed/2022/05/GHSA-8mvm-qvc9-qrc9/GHSA-8mvm-qvc9-qrc9.json @@ -7,12 +7,8 @@ "CVE-2015-4336" ], "details": "cloner.functions.php in the XCloner plugin 3.1.2 for WordPress allows remote authenticated users to execute arbitrary commands via a file containing filenames with shell metacharacters, as demonstrated by using the backup comments feature to create the file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8pmx-2fwr-jp92/GHSA-8pmx-2fwr-jp92.json b/advisories/unreviewed/2022/05/GHSA-8pmx-2fwr-jp92/GHSA-8pmx-2fwr-jp92.json index 67df7fca0f8..3a82d0c13a9 100644 --- a/advisories/unreviewed/2022/05/GHSA-8pmx-2fwr-jp92/GHSA-8pmx-2fwr-jp92.json +++ b/advisories/unreviewed/2022/05/GHSA-8pmx-2fwr-jp92/GHSA-8pmx-2fwr-jp92.json @@ -7,12 +7,8 @@ "CVE-2014-1842" ], "details": "Directory traversal vulnerability in the web interface in Titan FTP Server before 10.40 build 1829 allows remote attackers to list all usernames via a Go action with a .. (dot dot) in the search-bar value.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8pv9-44qx-h8x3/GHSA-8pv9-44qx-h8x3.json b/advisories/unreviewed/2022/05/GHSA-8pv9-44qx-h8x3/GHSA-8pv9-44qx-h8x3.json index 15e00b250c6..f22312b6f3b 100644 --- a/advisories/unreviewed/2022/05/GHSA-8pv9-44qx-h8x3/GHSA-8pv9-44qx-h8x3.json +++ b/advisories/unreviewed/2022/05/GHSA-8pv9-44qx-h8x3/GHSA-8pv9-44qx-h8x3.json @@ -7,12 +7,8 @@ "CVE-2015-0527" ], "details": "EMC Documentum xCelerated Management System (xMS) 1.1 before P14 stores cleartext Windows Service credentials in a batch file during Documentum Platform and xCelerated Composition Platform (xCP) provisioning, which allows local users to obtain sensitive information by reading a file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8qxr-j2hq-fwvv/GHSA-8qxr-j2hq-fwvv.json b/advisories/unreviewed/2022/05/GHSA-8qxr-j2hq-fwvv/GHSA-8qxr-j2hq-fwvv.json index c88864ab51f..fa32ec67c12 100644 --- a/advisories/unreviewed/2022/05/GHSA-8qxr-j2hq-fwvv/GHSA-8qxr-j2hq-fwvv.json +++ b/advisories/unreviewed/2022/05/GHSA-8qxr-j2hq-fwvv/GHSA-8qxr-j2hq-fwvv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8rf3-hmq9-9qqj/GHSA-8rf3-hmq9-9qqj.json b/advisories/unreviewed/2022/05/GHSA-8rf3-hmq9-9qqj/GHSA-8rf3-hmq9-9qqj.json index a69293f81a3..846355adafd 100644 --- a/advisories/unreviewed/2022/05/GHSA-8rf3-hmq9-9qqj/GHSA-8rf3-hmq9-9qqj.json +++ b/advisories/unreviewed/2022/05/GHSA-8rf3-hmq9-9qqj/GHSA-8rf3-hmq9-9qqj.json @@ -7,12 +7,8 @@ "CVE-2015-4785" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-8rp4-6hc9-cphq/GHSA-8rp4-6hc9-cphq.json b/advisories/unreviewed/2022/05/GHSA-8rp4-6hc9-cphq/GHSA-8rp4-6hc9-cphq.json index 78ffc39061b..3ef221ee39a 100644 --- a/advisories/unreviewed/2022/05/GHSA-8rp4-6hc9-cphq/GHSA-8rp4-6hc9-cphq.json +++ b/advisories/unreviewed/2022/05/GHSA-8rp4-6hc9-cphq/GHSA-8rp4-6hc9-cphq.json @@ -7,12 +7,8 @@ "CVE-2013-6174" ], "details": "Multiple open redirect vulnerabilities in xAdmin in EMC Document Sciences xPression 4.1 SP1 before Patch 47, 4.2 before Patch 26, and 4.5 before Patch 05, as used in Documentum Edition, Enterprise Edition Publish Engine, and Enterprise Edition Compuset Engine, allow remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via unspecified parameters.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8rpg-6749-w237/GHSA-8rpg-6749-w237.json b/advisories/unreviewed/2022/05/GHSA-8rpg-6749-w237/GHSA-8rpg-6749-w237.json index 84f2fc62b92..0893dd681bc 100644 --- a/advisories/unreviewed/2022/05/GHSA-8rpg-6749-w237/GHSA-8rpg-6749-w237.json +++ b/advisories/unreviewed/2022/05/GHSA-8rpg-6749-w237/GHSA-8rpg-6749-w237.json @@ -7,12 +7,8 @@ "CVE-2015-4751" ], "details": "Unspecified vulnerability in the Oracle Access Manager component in Oracle Fusion Middleware 11.1.1.7 and 11.1.2.2 allows remote attackers to affect availability via unknown vectors related to Authentication Engine.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-8v99-p42h-x6rx/GHSA-8v99-p42h-x6rx.json b/advisories/unreviewed/2022/05/GHSA-8v99-p42h-x6rx/GHSA-8v99-p42h-x6rx.json index b09947545de..3282f3d658b 100644 --- a/advisories/unreviewed/2022/05/GHSA-8v99-p42h-x6rx/GHSA-8v99-p42h-x6rx.json +++ b/advisories/unreviewed/2022/05/GHSA-8v99-p42h-x6rx/GHSA-8v99-p42h-x6rx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8xf9-j29q-cj5f/GHSA-8xf9-j29q-cj5f.json b/advisories/unreviewed/2022/05/GHSA-8xf9-j29q-cj5f/GHSA-8xf9-j29q-cj5f.json index 7dab49bb20d..9c4cfe87ee1 100644 --- a/advisories/unreviewed/2022/05/GHSA-8xf9-j29q-cj5f/GHSA-8xf9-j29q-cj5f.json +++ b/advisories/unreviewed/2022/05/GHSA-8xf9-j29q-cj5f/GHSA-8xf9-j29q-cj5f.json @@ -7,12 +7,8 @@ "CVE-2014-4571" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in vncal.js.php in the VN-Calendar plugin 1.0 and earlier for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) fs or (2) w parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8xmq-9rgw-vxxv/GHSA-8xmq-9rgw-vxxv.json b/advisories/unreviewed/2022/05/GHSA-8xmq-9rgw-vxxv/GHSA-8xmq-9rgw-vxxv.json index 13d747dec6c..b4714dd6310 100644 --- a/advisories/unreviewed/2022/05/GHSA-8xmq-9rgw-vxxv/GHSA-8xmq-9rgw-vxxv.json +++ b/advisories/unreviewed/2022/05/GHSA-8xmq-9rgw-vxxv/GHSA-8xmq-9rgw-vxxv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9283-64xm-984q/GHSA-9283-64xm-984q.json b/advisories/unreviewed/2022/05/GHSA-9283-64xm-984q/GHSA-9283-64xm-984q.json index bfc1debda4d..f97a3478eec 100644 --- a/advisories/unreviewed/2022/05/GHSA-9283-64xm-984q/GHSA-9283-64xm-984q.json +++ b/advisories/unreviewed/2022/05/GHSA-9283-64xm-984q/GHSA-9283-64xm-984q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-94wm-9j29-vhm4/GHSA-94wm-9j29-vhm4.json b/advisories/unreviewed/2022/05/GHSA-94wm-9j29-vhm4/GHSA-94wm-9j29-vhm4.json index 0b2b78917eb..a002d6e3f54 100644 --- a/advisories/unreviewed/2022/05/GHSA-94wm-9j29-vhm4/GHSA-94wm-9j29-vhm4.json +++ b/advisories/unreviewed/2022/05/GHSA-94wm-9j29-vhm4/GHSA-94wm-9j29-vhm4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -75,9 +73,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-959j-52g8-pxx9/GHSA-959j-52g8-pxx9.json b/advisories/unreviewed/2022/05/GHSA-959j-52g8-pxx9/GHSA-959j-52g8-pxx9.json index 8873b907ffa..454a9afea1c 100644 --- a/advisories/unreviewed/2022/05/GHSA-959j-52g8-pxx9/GHSA-959j-52g8-pxx9.json +++ b/advisories/unreviewed/2022/05/GHSA-959j-52g8-pxx9/GHSA-959j-52g8-pxx9.json @@ -7,12 +7,8 @@ "CVE-2014-0990" ], "details": "Stack-based buffer overflow in Advantech WebAccess (formerly BroadWin WebAccess) 7.2 allows remote attackers to execute arbitrary code via the UserName parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-963g-gc86-62cp/GHSA-963g-gc86-62cp.json b/advisories/unreviewed/2022/05/GHSA-963g-gc86-62cp/GHSA-963g-gc86-62cp.json index df46ec3df9f..851d9b9df0a 100644 --- a/advisories/unreviewed/2022/05/GHSA-963g-gc86-62cp/GHSA-963g-gc86-62cp.json +++ b/advisories/unreviewed/2022/05/GHSA-963g-gc86-62cp/GHSA-963g-gc86-62cp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-96cj-23g7-5gr2/GHSA-96cj-23g7-5gr2.json b/advisories/unreviewed/2022/05/GHSA-96cj-23g7-5gr2/GHSA-96cj-23g7-5gr2.json index 54255395b62..789491264f1 100644 --- a/advisories/unreviewed/2022/05/GHSA-96cj-23g7-5gr2/GHSA-96cj-23g7-5gr2.json +++ b/advisories/unreviewed/2022/05/GHSA-96cj-23g7-5gr2/GHSA-96cj-23g7-5gr2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-975f-fvhv-8mhx/GHSA-975f-fvhv-8mhx.json b/advisories/unreviewed/2022/05/GHSA-975f-fvhv-8mhx/GHSA-975f-fvhv-8mhx.json index 86b9a1863c3..202ad6a4115 100644 --- a/advisories/unreviewed/2022/05/GHSA-975f-fvhv-8mhx/GHSA-975f-fvhv-8mhx.json +++ b/advisories/unreviewed/2022/05/GHSA-975f-fvhv-8mhx/GHSA-975f-fvhv-8mhx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-98hj-2r8v-vv66/GHSA-98hj-2r8v-vv66.json b/advisories/unreviewed/2022/05/GHSA-98hj-2r8v-vv66/GHSA-98hj-2r8v-vv66.json index 36322cac8e8..462475d535a 100644 --- a/advisories/unreviewed/2022/05/GHSA-98hj-2r8v-vv66/GHSA-98hj-2r8v-vv66.json +++ b/advisories/unreviewed/2022/05/GHSA-98hj-2r8v-vv66/GHSA-98hj-2r8v-vv66.json @@ -7,12 +7,8 @@ "CVE-2015-5148" ], "details": "SQL injection vulnerability in LivelyCart 1.2.0 allows remote attackers to execute arbitrary SQL commands via the search_query parameter to product/search.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-98mx-wqjg-hhx2/GHSA-98mx-wqjg-hhx2.json b/advisories/unreviewed/2022/05/GHSA-98mx-wqjg-hhx2/GHSA-98mx-wqjg-hhx2.json index f6217af381c..333f8adeb7a 100644 --- a/advisories/unreviewed/2022/05/GHSA-98mx-wqjg-hhx2/GHSA-98mx-wqjg-hhx2.json +++ b/advisories/unreviewed/2022/05/GHSA-98mx-wqjg-hhx2/GHSA-98mx-wqjg-hhx2.json @@ -7,12 +7,8 @@ "CVE-2014-0743" ], "details": "The Certificate Authority Proxy Function (CAPF) component in Cisco Unified Communications Manager (Unified CM) 10.0(1) and earlier allows remote attackers to bypass authentication and modify registered-device information via crafted data, aka Bug ID CSCum95468.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-98wh-cwv9-rc7q/GHSA-98wh-cwv9-rc7q.json b/advisories/unreviewed/2022/05/GHSA-98wh-cwv9-rc7q/GHSA-98wh-cwv9-rc7q.json index a47740654f5..09ad78bb864 100644 --- a/advisories/unreviewed/2022/05/GHSA-98wh-cwv9-rc7q/GHSA-98wh-cwv9-rc7q.json +++ b/advisories/unreviewed/2022/05/GHSA-98wh-cwv9-rc7q/GHSA-98wh-cwv9-rc7q.json @@ -7,12 +7,8 @@ "CVE-2014-8607" ], "details": "The XCloner plugin 3.1.1 for WordPress and 3.5.1 for Joomla! provides the MySQL username and password on the command line, which allows local users to obtain sensitive information via the ps command.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-995x-vcgv-4rcv/GHSA-995x-vcgv-4rcv.json b/advisories/unreviewed/2022/05/GHSA-995x-vcgv-4rcv/GHSA-995x-vcgv-4rcv.json index 18051636650..91f9fd8aef3 100644 --- a/advisories/unreviewed/2022/05/GHSA-995x-vcgv-4rcv/GHSA-995x-vcgv-4rcv.json +++ b/advisories/unreviewed/2022/05/GHSA-995x-vcgv-4rcv/GHSA-995x-vcgv-4rcv.json @@ -7,12 +7,8 @@ "CVE-2015-2745" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the Search app in Gaia in Mozilla Firefox OS before 2.2 allow remote attackers to inject arbitrary HTML via the (1) name or (2) title field in card content associated with a search link that is mishandled after a HOME button press or a Show Windows action, as demonstrated by embedding an arbitrary application or spoofing the account-creation page.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-99cg-fq8g-hrc9/GHSA-99cg-fq8g-hrc9.json b/advisories/unreviewed/2022/05/GHSA-99cg-fq8g-hrc9/GHSA-99cg-fq8g-hrc9.json index eb81dad035f..f30c737216e 100644 --- a/advisories/unreviewed/2022/05/GHSA-99cg-fq8g-hrc9/GHSA-99cg-fq8g-hrc9.json +++ b/advisories/unreviewed/2022/05/GHSA-99cg-fq8g-hrc9/GHSA-99cg-fq8g-hrc9.json @@ -7,12 +7,8 @@ "CVE-2015-5433" ], "details": "HP Virtual Connect Enterprise Manager (VCEM) SDK before 7.5.0, as used in HP Matrix Operating Environment before 7.5.0 and other products, allows remote authenticated users to obtain sensitive information via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-99w4-659f-342w/GHSA-99w4-659f-342w.json b/advisories/unreviewed/2022/05/GHSA-99w4-659f-342w/GHSA-99w4-659f-342w.json index 1153b8662f4..eb861ade144 100644 --- a/advisories/unreviewed/2022/05/GHSA-99w4-659f-342w/GHSA-99w4-659f-342w.json +++ b/advisories/unreviewed/2022/05/GHSA-99w4-659f-342w/GHSA-99w4-659f-342w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9cmf-7pgf-j9g9/GHSA-9cmf-7pgf-j9g9.json b/advisories/unreviewed/2022/05/GHSA-9cmf-7pgf-j9g9/GHSA-9cmf-7pgf-j9g9.json index b826ebadda5..249809db218 100644 --- a/advisories/unreviewed/2022/05/GHSA-9cmf-7pgf-j9g9/GHSA-9cmf-7pgf-j9g9.json +++ b/advisories/unreviewed/2022/05/GHSA-9cmf-7pgf-j9g9/GHSA-9cmf-7pgf-j9g9.json @@ -7,12 +7,8 @@ "CVE-2014-0763" ], "details": "Multiple SQL injection vulnerabilities in DBVisitor.dll in Advantech WebAccess before 7.2 allow remote attackers to execute arbitrary SQL commands via SOAP requests to unspecified functions.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9cpv-2w33-4r7c/GHSA-9cpv-2w33-4r7c.json b/advisories/unreviewed/2022/05/GHSA-9cpv-2w33-4r7c/GHSA-9cpv-2w33-4r7c.json index d678823ba83..e416a687aab 100644 --- a/advisories/unreviewed/2022/05/GHSA-9cpv-2w33-4r7c/GHSA-9cpv-2w33-4r7c.json +++ b/advisories/unreviewed/2022/05/GHSA-9cpv-2w33-4r7c/GHSA-9cpv-2w33-4r7c.json @@ -7,12 +7,8 @@ "CVE-2015-5189" ], "details": "Race condition in pcsd in PCS 0.9.139 and earlier uses a global variable to validate usernames, which allows remote authenticated users to gain privileges by sending a command that is checked for security after another user is authenticated.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9f4f-4qr3-8cr7/GHSA-9f4f-4qr3-8cr7.json b/advisories/unreviewed/2022/05/GHSA-9f4f-4qr3-8cr7/GHSA-9f4f-4qr3-8cr7.json index 71382e8ddf1..8ad01b9d64e 100644 --- a/advisories/unreviewed/2022/05/GHSA-9f4f-4qr3-8cr7/GHSA-9f4f-4qr3-8cr7.json +++ b/advisories/unreviewed/2022/05/GHSA-9f4f-4qr3-8cr7/GHSA-9f4f-4qr3-8cr7.json @@ -7,12 +7,8 @@ "CVE-2015-4425" ], "details": "Directory traversal vulnerability in pimcore before build 3473 allows remote authenticated users with the \"assets\" permission to create or write to arbitrary files via a .. (dot dot) in the dir parameter to admin/asset/add-asset-compatibility.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9fcv-4956-x8m5/GHSA-9fcv-4956-x8m5.json b/advisories/unreviewed/2022/05/GHSA-9fcv-4956-x8m5/GHSA-9fcv-4956-x8m5.json index 01b1b7bce29..ed18f23e27c 100644 --- a/advisories/unreviewed/2022/05/GHSA-9fcv-4956-x8m5/GHSA-9fcv-4956-x8m5.json +++ b/advisories/unreviewed/2022/05/GHSA-9fcv-4956-x8m5/GHSA-9fcv-4956-x8m5.json @@ -7,12 +7,8 @@ "CVE-2014-3996" ], "details": "SQL injection vulnerability in the LinkViewFetchServlet servlet in ManageEngine Desktop Central (DC) and Desktop Central Managed Service Providers (MSP) edition before 9 build 90043, Password Manager Pro (PMP) and Password Manager Pro Managed Service Providers (MSP) edition before 7 build 7003, IT360 and IT360 Managed Service Providers (MSP) edition before 10.3.3 build 10330, and possibly other ManageEngine products, allows remote attackers or remote authenticated users to execute arbitrary SQL commands via the sv parameter to LinkViewFetchServlet.dat.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9fj4-p49h-qwx5/GHSA-9fj4-p49h-qwx5.json b/advisories/unreviewed/2022/05/GHSA-9fj4-p49h-qwx5/GHSA-9fj4-p49h-qwx5.json index e96efbbd801..5b92d591b2e 100644 --- a/advisories/unreviewed/2022/05/GHSA-9fj4-p49h-qwx5/GHSA-9fj4-p49h-qwx5.json +++ b/advisories/unreviewed/2022/05/GHSA-9fj4-p49h-qwx5/GHSA-9fj4-p49h-qwx5.json @@ -7,12 +7,8 @@ "CVE-2015-4288" ], "details": "The LDAP implementation on the Cisco Web Security Appliance (WSA) 8.5.0-000, Email Security Appliance (ESA) 8.5.7-042, and Content Security Management Appliance (SMA) 8.3.6-048 does not verify X.509 certificates from SSL servers, which allows man-in-the-middle attackers to spoof servers and obtain sensitive information via a crafted certificate, aka Bug IDs CSCuo29561, CSCuv40466, and CSCuv40470.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9gw2-f522-3m5q/GHSA-9gw2-f522-3m5q.json b/advisories/unreviewed/2022/05/GHSA-9gw2-f522-3m5q/GHSA-9gw2-f522-3m5q.json index 4cdb132893c..3749254e757 100644 --- a/advisories/unreviewed/2022/05/GHSA-9gw2-f522-3m5q/GHSA-9gw2-f522-3m5q.json +++ b/advisories/unreviewed/2022/05/GHSA-9gw2-f522-3m5q/GHSA-9gw2-f522-3m5q.json @@ -7,12 +7,8 @@ "CVE-2015-4397" ], "details": "Cross-site request forgery (CSRF) vulnerability in the Node Template module for Drupal allows remote attackers to hijack the authentication of users with the \"access node template\" permission for requests that delete node templates via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9gx3-9j25-7h5c/GHSA-9gx3-9j25-7h5c.json b/advisories/unreviewed/2022/05/GHSA-9gx3-9j25-7h5c/GHSA-9gx3-9j25-7h5c.json index 078c12dc5dd..d91d03c2ac0 100644 --- a/advisories/unreviewed/2022/05/GHSA-9gx3-9j25-7h5c/GHSA-9gx3-9j25-7h5c.json +++ b/advisories/unreviewed/2022/05/GHSA-9gx3-9j25-7h5c/GHSA-9gx3-9j25-7h5c.json @@ -7,12 +7,8 @@ "CVE-2013-7444" ], "details": "The Special:Contributions page in MediaWiki before 1.22.0 allows remote attackers to determine if an IP is autoblocked via the \"Change block\" text.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9h6c-p2fm-j5qx/GHSA-9h6c-p2fm-j5qx.json b/advisories/unreviewed/2022/05/GHSA-9h6c-p2fm-j5qx/GHSA-9h6c-p2fm-j5qx.json index fbca6dd9385..53d37f0ffd0 100644 --- a/advisories/unreviewed/2022/05/GHSA-9h6c-p2fm-j5qx/GHSA-9h6c-p2fm-j5qx.json +++ b/advisories/unreviewed/2022/05/GHSA-9h6c-p2fm-j5qx/GHSA-9h6c-p2fm-j5qx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9h9c-jj99-8f53/GHSA-9h9c-jj99-8f53.json b/advisories/unreviewed/2022/05/GHSA-9h9c-jj99-8f53/GHSA-9h9c-jj99-8f53.json index 8e5c597f437..9e082b20db5 100644 --- a/advisories/unreviewed/2022/05/GHSA-9h9c-jj99-8f53/GHSA-9h9c-jj99-8f53.json +++ b/advisories/unreviewed/2022/05/GHSA-9h9c-jj99-8f53/GHSA-9h9c-jj99-8f53.json @@ -7,12 +7,8 @@ "CVE-2015-4778" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9mmf-xj4r-6vrq/GHSA-9mmf-xj4r-6vrq.json b/advisories/unreviewed/2022/05/GHSA-9mmf-xj4r-6vrq/GHSA-9mmf-xj4r-6vrq.json index a17aa8a6084..a1afdf80ed3 100644 --- a/advisories/unreviewed/2022/05/GHSA-9mmf-xj4r-6vrq/GHSA-9mmf-xj4r-6vrq.json +++ b/advisories/unreviewed/2022/05/GHSA-9mmf-xj4r-6vrq/GHSA-9mmf-xj4r-6vrq.json @@ -7,12 +7,8 @@ "CVE-2014-8604" ], "details": "The XCloner plugin 3.1.1 for WordPress and 3.5.1 for Joomla! returns the MySQL password in cleartext to a text box in the configuration panel, which allows remote attackers to obtain sensitive information via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9p34-5rg6-chhg/GHSA-9p34-5rg6-chhg.json b/advisories/unreviewed/2022/05/GHSA-9p34-5rg6-chhg/GHSA-9p34-5rg6-chhg.json index 682cff3e81a..80d70be645c 100644 --- a/advisories/unreviewed/2022/05/GHSA-9p34-5rg6-chhg/GHSA-9p34-5rg6-chhg.json +++ b/advisories/unreviewed/2022/05/GHSA-9p34-5rg6-chhg/GHSA-9p34-5rg6-chhg.json @@ -7,12 +7,8 @@ "CVE-2014-4189" ], "details": "Cross-site scripting (XSS) vulnerability in Hitachi Tuning Manager before 7.6.1-06 and 8.x before 8.0.0-04 and JP1/Performance Management - Manager Web Option 07-00 through 07-54 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9p56-7pxg-5qpx/GHSA-9p56-7pxg-5qpx.json b/advisories/unreviewed/2022/05/GHSA-9p56-7pxg-5qpx/GHSA-9p56-7pxg-5qpx.json index d613c3cae7b..544b61a8ea6 100644 --- a/advisories/unreviewed/2022/05/GHSA-9p56-7pxg-5qpx/GHSA-9p56-7pxg-5qpx.json +++ b/advisories/unreviewed/2022/05/GHSA-9p56-7pxg-5qpx/GHSA-9p56-7pxg-5qpx.json @@ -7,12 +7,8 @@ "CVE-2015-5428" ], "details": "HP Matrix Operating Environment before 7.5.0 allows remote attackers to obtain sensitive information or modify data via unspecified vectors, a different vulnerability than CVE-2015-5427 and CVE-2015-5429.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9pc6-6rgp-4p27/GHSA-9pc6-6rgp-4p27.json b/advisories/unreviewed/2022/05/GHSA-9pc6-6rgp-4p27/GHSA-9pc6-6rgp-4p27.json index 973a6a8e3d6..017911400d8 100644 --- a/advisories/unreviewed/2022/05/GHSA-9pc6-6rgp-4p27/GHSA-9pc6-6rgp-4p27.json +++ b/advisories/unreviewed/2022/05/GHSA-9pc6-6rgp-4p27/GHSA-9pc6-6rgp-4p27.json @@ -7,12 +7,8 @@ "CVE-2014-4502" ], "details": "Multiple heap-based buffer overflows in the parse_notify function in sgminer before 4.2.2, cgminer before 4.3.5, and BFGMiner before 4.1.0 allow remote pool servers to have unspecified impact via a (1) large or (2) negative value in the Extranonc2_size parameter in a mining.subscribe response and a crafted mining.notify request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9q26-4qw9-g46v/GHSA-9q26-4qw9-g46v.json b/advisories/unreviewed/2022/05/GHSA-9q26-4qw9-g46v/GHSA-9q26-4qw9-g46v.json index 4bce5b8f785..48a0ecc9e4d 100644 --- a/advisories/unreviewed/2022/05/GHSA-9q26-4qw9-g46v/GHSA-9q26-4qw9-g46v.json +++ b/advisories/unreviewed/2022/05/GHSA-9q26-4qw9-g46v/GHSA-9q26-4qw9-g46v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9qgp-fmvv-fh32/GHSA-9qgp-fmvv-fh32.json b/advisories/unreviewed/2022/05/GHSA-9qgp-fmvv-fh32/GHSA-9qgp-fmvv-fh32.json index 4017db69eab..a7acfe7689e 100644 --- a/advisories/unreviewed/2022/05/GHSA-9qgp-fmvv-fh32/GHSA-9qgp-fmvv-fh32.json +++ b/advisories/unreviewed/2022/05/GHSA-9qgp-fmvv-fh32/GHSA-9qgp-fmvv-fh32.json @@ -7,12 +7,8 @@ "CVE-2015-0445" ], "details": "Unspecified vulnerability in the Oracle Data Integrator component in Oracle Fusion Middleware 11.1.1.3.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Data Quality based on Trillium, a different vulnerability than CVE-2015-0443, CVE-2015-0444, CVE-2015-0446, CVE-2015-2634, CVE-2015-2635, CVE-2015-2636, CVE-2015-4758, and CVE-2015-4759.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9qp6-gqfr-4j3m/GHSA-9qp6-gqfr-4j3m.json b/advisories/unreviewed/2022/05/GHSA-9qp6-gqfr-4j3m/GHSA-9qp6-gqfr-4j3m.json index 2314e886ef3..dae6b567a39 100644 --- a/advisories/unreviewed/2022/05/GHSA-9qp6-gqfr-4j3m/GHSA-9qp6-gqfr-4j3m.json +++ b/advisories/unreviewed/2022/05/GHSA-9qp6-gqfr-4j3m/GHSA-9qp6-gqfr-4j3m.json @@ -7,12 +7,8 @@ "CVE-2015-4381" ], "details": "Cross-site scripting (XSS) vulnerability in the Invoice module 6.x-1.x before 6.x-1.2 and 7.x-1.x before 7.x-1.3 for Drupal allows remote authenticated users with the \"Administer own invoices\" permission to inject arbitrary web script or HTML via unspecified vectors involving nodes of the \"Invoice\" content type.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9r6h-78r4-2rm5/GHSA-9r6h-78r4-2rm5.json b/advisories/unreviewed/2022/05/GHSA-9r6h-78r4-2rm5/GHSA-9r6h-78r4-2rm5.json index 428b3d166d2..6653c390af6 100644 --- a/advisories/unreviewed/2022/05/GHSA-9r6h-78r4-2rm5/GHSA-9r6h-78r4-2rm5.json +++ b/advisories/unreviewed/2022/05/GHSA-9r6h-78r4-2rm5/GHSA-9r6h-78r4-2rm5.json @@ -7,12 +7,8 @@ "CVE-2014-0820" ], "details": "Directory traversal vulnerability in the download feature in Cybozu Garoon 2.x through 2.5.4 and 3.x through 3.7 SP3 allows remote authenticated users to read arbitrary files via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9rgq-2f3r-j439/GHSA-9rgq-2f3r-j439.json b/advisories/unreviewed/2022/05/GHSA-9rgq-2f3r-j439/GHSA-9rgq-2f3r-j439.json index 253dbd7db6a..51d8c32f93e 100644 --- a/advisories/unreviewed/2022/05/GHSA-9rgq-2f3r-j439/GHSA-9rgq-2f3r-j439.json +++ b/advisories/unreviewed/2022/05/GHSA-9rgq-2f3r-j439/GHSA-9rgq-2f3r-j439.json @@ -7,12 +7,8 @@ "CVE-2014-5319" ], "details": "Directory traversal vulnerability in the S-Link SLFileManager application 1.2.5 and earlier for Android allows remote attackers to write to files via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9rmr-v76m-g3pp/GHSA-9rmr-v76m-g3pp.json b/advisories/unreviewed/2022/05/GHSA-9rmr-v76m-g3pp/GHSA-9rmr-v76m-g3pp.json index f8e7b697e7e..1340dfd1955 100644 --- a/advisories/unreviewed/2022/05/GHSA-9rmr-v76m-g3pp/GHSA-9rmr-v76m-g3pp.json +++ b/advisories/unreviewed/2022/05/GHSA-9rmr-v76m-g3pp/GHSA-9rmr-v76m-g3pp.json @@ -7,12 +7,8 @@ "CVE-2015-3966" ], "details": "The IPsec SA establishment process on Innominate mGuard devices with firmware 8.x before 8.1.7 allows remote authenticated users to cause a denial of service (VPN service restart) by leveraging a peer relationship to send a crafted configuration with compression.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9vf2-2mrh-qg3j/GHSA-9vf2-2mrh-qg3j.json b/advisories/unreviewed/2022/05/GHSA-9vf2-2mrh-qg3j/GHSA-9vf2-2mrh-qg3j.json index 0bd04984f04..64a67f05ef7 100644 --- a/advisories/unreviewed/2022/05/GHSA-9vf2-2mrh-qg3j/GHSA-9vf2-2mrh-qg3j.json +++ b/advisories/unreviewed/2022/05/GHSA-9vf2-2mrh-qg3j/GHSA-9vf2-2mrh-qg3j.json @@ -7,12 +7,8 @@ "CVE-2015-0652" ], "details": "The Session Description Protocol (SDP) implementation in Cisco TelePresence Video Communication Server (VCS) and Cisco Expressway before X8.2 and Cisco TelePresence Conductor before XC2.4 allows remote attackers to cause a denial of service (mishandled exception and device reload) via a crafted media description, aka Bug IDs CSCus96593 and CSCun73192.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9vr2-rw9r-6rxp/GHSA-9vr2-rw9r-6rxp.json b/advisories/unreviewed/2022/05/GHSA-9vr2-rw9r-6rxp/GHSA-9vr2-rw9r-6rxp.json index 7da92d2369f..46948ed0236 100644 --- a/advisories/unreviewed/2022/05/GHSA-9vr2-rw9r-6rxp/GHSA-9vr2-rw9r-6rxp.json +++ b/advisories/unreviewed/2022/05/GHSA-9vr2-rw9r-6rxp/GHSA-9vr2-rw9r-6rxp.json @@ -7,12 +7,8 @@ "CVE-2015-4465" ], "details": "Cross-site scripting (XSS) vulnerability in the zM Ajax Login & Register plugin before 1.1.0 for WordPress allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9w4h-vx37-jfcx/GHSA-9w4h-vx37-jfcx.json b/advisories/unreviewed/2022/05/GHSA-9w4h-vx37-jfcx/GHSA-9w4h-vx37-jfcx.json index db6349203b2..d5d185741a5 100644 --- a/advisories/unreviewed/2022/05/GHSA-9w4h-vx37-jfcx/GHSA-9w4h-vx37-jfcx.json +++ b/advisories/unreviewed/2022/05/GHSA-9w4h-vx37-jfcx/GHSA-9w4h-vx37-jfcx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9w5x-83gj-hg53/GHSA-9w5x-83gj-hg53.json b/advisories/unreviewed/2022/05/GHSA-9w5x-83gj-hg53/GHSA-9w5x-83gj-hg53.json index b5c75c44924..768f7320762 100644 --- a/advisories/unreviewed/2022/05/GHSA-9w5x-83gj-hg53/GHSA-9w5x-83gj-hg53.json +++ b/advisories/unreviewed/2022/05/GHSA-9w5x-83gj-hg53/GHSA-9w5x-83gj-hg53.json @@ -7,12 +7,8 @@ "CVE-2015-2593" ], "details": "Unspecified vulnerability in the Oracle Access Manager component in Oracle Fusion Middleware 11.1.2.2 allows remote authenticated users to affect confidentiality and integrity via unknown vectors related to Configuration Service.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9x3f-v6cg-jgwj/GHSA-9x3f-v6cg-jgwj.json b/advisories/unreviewed/2022/05/GHSA-9x3f-v6cg-jgwj/GHSA-9x3f-v6cg-jgwj.json index cfb2884ad9f..e2fb48f3256 100644 --- a/advisories/unreviewed/2022/05/GHSA-9x3f-v6cg-jgwj/GHSA-9x3f-v6cg-jgwj.json +++ b/advisories/unreviewed/2022/05/GHSA-9x3f-v6cg-jgwj/GHSA-9x3f-v6cg-jgwj.json @@ -7,12 +7,8 @@ "CVE-2014-3414" ], "details": "Cross-site request forgery (CSRF) vulnerability in Sharetronix before 3.4 allows remote attackers to hijack the authentication of administrators for requests that add administrative privileges to a user via the admin parameter to admin/administrators.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9xgh-5rj6-r7rh/GHSA-9xgh-5rj6-r7rh.json b/advisories/unreviewed/2022/05/GHSA-9xgh-5rj6-r7rh/GHSA-9xgh-5rj6-r7rh.json index f9e5f42e5ba..37340eacf6d 100644 --- a/advisories/unreviewed/2022/05/GHSA-9xgh-5rj6-r7rh/GHSA-9xgh-5rj6-r7rh.json +++ b/advisories/unreviewed/2022/05/GHSA-9xgh-5rj6-r7rh/GHSA-9xgh-5rj6-r7rh.json @@ -7,12 +7,8 @@ "CVE-2015-5492" ], "details": "Cross-site scripting (XSS) vulnerability in the Video Consultation module for Drupal allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c3gc-q6xc-6hv4/GHSA-c3gc-q6xc-6hv4.json b/advisories/unreviewed/2022/05/GHSA-c3gc-q6xc-6hv4/GHSA-c3gc-q6xc-6hv4.json index 76eba4f5e6f..8887fb7779d 100644 --- a/advisories/unreviewed/2022/05/GHSA-c3gc-q6xc-6hv4/GHSA-c3gc-q6xc-6hv4.json +++ b/advisories/unreviewed/2022/05/GHSA-c3gc-q6xc-6hv4/GHSA-c3gc-q6xc-6hv4.json @@ -7,12 +7,8 @@ "CVE-2014-2281" ], "details": "The nfs_name_snoop_add_name function in epan/dissectors/packet-nfs.c in the NFS dissector in Wireshark 1.8.x before 1.8.13 and 1.10.x before 1.10.6 does not validate a certain length value, which allows remote attackers to cause a denial of service (memory corruption and application crash) via a crafted NFS packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c3gx-j29w-p5pp/GHSA-c3gx-j29w-p5pp.json b/advisories/unreviewed/2022/05/GHSA-c3gx-j29w-p5pp/GHSA-c3gx-j29w-p5pp.json index ecfec1b03f6..b1443253931 100644 --- a/advisories/unreviewed/2022/05/GHSA-c3gx-j29w-p5pp/GHSA-c3gx-j29w-p5pp.json +++ b/advisories/unreviewed/2022/05/GHSA-c3gx-j29w-p5pp/GHSA-c3gx-j29w-p5pp.json @@ -7,12 +7,8 @@ "CVE-2015-0972" ], "details": "Pearson ProctorCache before 2015.1.17 uses the same hardcoded password across different customers' installations, which allows remote attackers to modify test metadata or cause a denial of service (test disruption) by leveraging knowledge of this password.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-c65f-cv67-j42h/GHSA-c65f-cv67-j42h.json b/advisories/unreviewed/2022/05/GHSA-c65f-cv67-j42h/GHSA-c65f-cv67-j42h.json index 43ceda3c238..123fbf33c96 100644 --- a/advisories/unreviewed/2022/05/GHSA-c65f-cv67-j42h/GHSA-c65f-cv67-j42h.json +++ b/advisories/unreviewed/2022/05/GHSA-c65f-cv67-j42h/GHSA-c65f-cv67-j42h.json @@ -7,12 +7,8 @@ "CVE-2012-5964" ], "details": "Stack-based buffer overflow in the unique_service_name function in ssdp/ssdp_server.c in the SSDP parser in the portable SDK for UPnP Devices (aka libupnp, formerly the Intel SDK for UPnP devices) 1.3.1 allows remote attackers to execute arbitrary code via a long ServiceType (aka urn service) field in a UDP packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c7m8-2h47-48wc/GHSA-c7m8-2h47-48wc.json b/advisories/unreviewed/2022/05/GHSA-c7m8-2h47-48wc/GHSA-c7m8-2h47-48wc.json index a3cb3e93f95..0c7ae075c1a 100644 --- a/advisories/unreviewed/2022/05/GHSA-c7m8-2h47-48wc/GHSA-c7m8-2h47-48wc.json +++ b/advisories/unreviewed/2022/05/GHSA-c7m8-2h47-48wc/GHSA-c7m8-2h47-48wc.json @@ -7,12 +7,8 @@ "CVE-2014-4158" ], "details": "Stack-based buffer overflow in Kolibri 2.0 allows remote attackers to execute arbitrary code via a long URI in a GET request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c7pf-gfcw-v5h4/GHSA-c7pf-gfcw-v5h4.json b/advisories/unreviewed/2022/05/GHSA-c7pf-gfcw-v5h4/GHSA-c7pf-gfcw-v5h4.json index e7b5e6526a0..6b9dcf94935 100644 --- a/advisories/unreviewed/2022/05/GHSA-c7pf-gfcw-v5h4/GHSA-c7pf-gfcw-v5h4.json +++ b/advisories/unreviewed/2022/05/GHSA-c7pf-gfcw-v5h4/GHSA-c7pf-gfcw-v5h4.json @@ -7,12 +7,8 @@ "CVE-2015-2598" ], "details": "Unspecified vulnerability in the mobile app in Oracle Business Intelligence Enterprise Edition in Oracle Fusion Middleware before 11.1.1.7.0 (11.6.39) allows remote authenticated users to affect integrity via unknown vectors related to Mobile - iPad.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-c82j-j7c2-cx75/GHSA-c82j-j7c2-cx75.json b/advisories/unreviewed/2022/05/GHSA-c82j-j7c2-cx75/GHSA-c82j-j7c2-cx75.json index 5d0c697cc76..5d3264323fe 100644 --- a/advisories/unreviewed/2022/05/GHSA-c82j-j7c2-cx75/GHSA-c82j-j7c2-cx75.json +++ b/advisories/unreviewed/2022/05/GHSA-c82j-j7c2-cx75/GHSA-c82j-j7c2-cx75.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c862-pfgc-5rp7/GHSA-c862-pfgc-5rp7.json b/advisories/unreviewed/2022/05/GHSA-c862-pfgc-5rp7/GHSA-c862-pfgc-5rp7.json index 3b240984547..c352e3d80a4 100644 --- a/advisories/unreviewed/2022/05/GHSA-c862-pfgc-5rp7/GHSA-c862-pfgc-5rp7.json +++ b/advisories/unreviewed/2022/05/GHSA-c862-pfgc-5rp7/GHSA-c862-pfgc-5rp7.json @@ -7,12 +7,8 @@ "CVE-2015-2974" ], "details": "LEMON-S PHP Gazou BBS plus before 2.36 allows remote attackers to upload arbitrary HTML documents via vectors involving a crafted image file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c8mx-c96m-rh89/GHSA-c8mx-c96m-rh89.json b/advisories/unreviewed/2022/05/GHSA-c8mx-c96m-rh89/GHSA-c8mx-c96m-rh89.json index b7ad0ff4c13..2cf78da77c9 100644 --- a/advisories/unreviewed/2022/05/GHSA-c8mx-c96m-rh89/GHSA-c8mx-c96m-rh89.json +++ b/advisories/unreviewed/2022/05/GHSA-c8mx-c96m-rh89/GHSA-c8mx-c96m-rh89.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c9vr-v843-qp6r/GHSA-c9vr-v843-qp6r.json b/advisories/unreviewed/2022/05/GHSA-c9vr-v843-qp6r/GHSA-c9vr-v843-qp6r.json index a0679c7c3c4..10afaf2a0f7 100644 --- a/advisories/unreviewed/2022/05/GHSA-c9vr-v843-qp6r/GHSA-c9vr-v843-qp6r.json +++ b/advisories/unreviewed/2022/05/GHSA-c9vr-v843-qp6r/GHSA-c9vr-v843-qp6r.json @@ -7,12 +7,8 @@ "CVE-2015-4936" ], "details": "Unspecified vulnerability in IBM WebSphere eXtreme Scale 8.6 through 8.6.0.8 allows remote attackers to cause a denial of service via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cc8j-v8pg-h6jg/GHSA-cc8j-v8pg-h6jg.json b/advisories/unreviewed/2022/05/GHSA-cc8j-v8pg-h6jg/GHSA-cc8j-v8pg-h6jg.json index fa29bf2d64b..93f54095f57 100644 --- a/advisories/unreviewed/2022/05/GHSA-cc8j-v8pg-h6jg/GHSA-cc8j-v8pg-h6jg.json +++ b/advisories/unreviewed/2022/05/GHSA-cc8j-v8pg-h6jg/GHSA-cc8j-v8pg-h6jg.json @@ -7,12 +7,8 @@ "CVE-2015-2977" ], "details": "Webservice-DIC yoyaku_v41 allows remote attackers to create arbitrary files, and consequently execute arbitrary code, via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cc8r-2q55-6c87/GHSA-cc8r-2q55-6c87.json b/advisories/unreviewed/2022/05/GHSA-cc8r-2q55-6c87/GHSA-cc8r-2q55-6c87.json index a32af87fd02..79fa5707442 100644 --- a/advisories/unreviewed/2022/05/GHSA-cc8r-2q55-6c87/GHSA-cc8r-2q55-6c87.json +++ b/advisories/unreviewed/2022/05/GHSA-cc8r-2q55-6c87/GHSA-cc8r-2q55-6c87.json @@ -7,12 +7,8 @@ "CVE-2015-6254" ], "details": "The (1) Service Provider (SP) and (2) Identity Provider (IdP) in PicketLink before 2.7.0 does not ensure that the Destination attribute in a Response element in a SAML assertion matches the location from which the message was received, which allows remote attackers to have unspecified impact via unknown vectors. NOTE: this identifier was SPLIT from CVE-2015-0277 per ADT2 due to different vulnerability types.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -44,9 +40,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-ccvx-w7fm-q75c/GHSA-ccvx-w7fm-q75c.json b/advisories/unreviewed/2022/05/GHSA-ccvx-w7fm-q75c/GHSA-ccvx-w7fm-q75c.json index 6e89d5e7cc9..a027e9548d5 100644 --- a/advisories/unreviewed/2022/05/GHSA-ccvx-w7fm-q75c/GHSA-ccvx-w7fm-q75c.json +++ b/advisories/unreviewed/2022/05/GHSA-ccvx-w7fm-q75c/GHSA-ccvx-w7fm-q75c.json @@ -7,12 +7,8 @@ "CVE-2015-4783" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cf2v-pgc5-8668/GHSA-cf2v-pgc5-8668.json b/advisories/unreviewed/2022/05/GHSA-cf2v-pgc5-8668/GHSA-cf2v-pgc5-8668.json index 157405f2e19..97be6724ae9 100644 --- a/advisories/unreviewed/2022/05/GHSA-cf2v-pgc5-8668/GHSA-cf2v-pgc5-8668.json +++ b/advisories/unreviewed/2022/05/GHSA-cf2v-pgc5-8668/GHSA-cf2v-pgc5-8668.json @@ -7,12 +7,8 @@ "CVE-2015-4727" ], "details": "Unspecified vulnerability in Oracle Virtualization Sun Ray Software before 5.4.4 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Web Console.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cgvg-mhc8-qmcr/GHSA-cgvg-mhc8-qmcr.json b/advisories/unreviewed/2022/05/GHSA-cgvg-mhc8-qmcr/GHSA-cgvg-mhc8-qmcr.json index 8502e7b3ffe..cfde4e6d71c 100644 --- a/advisories/unreviewed/2022/05/GHSA-cgvg-mhc8-qmcr/GHSA-cgvg-mhc8-qmcr.json +++ b/advisories/unreviewed/2022/05/GHSA-cgvg-mhc8-qmcr/GHSA-cgvg-mhc8-qmcr.json @@ -7,12 +7,8 @@ "CVE-2015-4784" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-ch24-8hv8-9rmv/GHSA-ch24-8hv8-9rmv.json b/advisories/unreviewed/2022/05/GHSA-ch24-8hv8-9rmv/GHSA-ch24-8hv8-9rmv.json index f60b8b84eb9..857a8025f3c 100644 --- a/advisories/unreviewed/2022/05/GHSA-ch24-8hv8-9rmv/GHSA-ch24-8hv8-9rmv.json +++ b/advisories/unreviewed/2022/05/GHSA-ch24-8hv8-9rmv/GHSA-ch24-8hv8-9rmv.json @@ -7,12 +7,8 @@ "CVE-2014-7295" ], "details": "The (1) Special:Preferences and (2) Special:UserLogin pages in MediaWiki before 1.19.20, 1.22.x before 1.22.12 and 1.23.x before 1.23.5 allows remote authenticated users to conduct cross-site scripting (XSS) attacks or have unspecified other impact via crafted CSS, as demonstrated by modifying MediaWiki:Common.css.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-chcf-g86f-3m87/GHSA-chcf-g86f-3m87.json b/advisories/unreviewed/2022/05/GHSA-chcf-g86f-3m87/GHSA-chcf-g86f-3m87.json index 472ba21ad31..8886b74263d 100644 --- a/advisories/unreviewed/2022/05/GHSA-chcf-g86f-3m87/GHSA-chcf-g86f-3m87.json +++ b/advisories/unreviewed/2022/05/GHSA-chcf-g86f-3m87/GHSA-chcf-g86f-3m87.json @@ -7,12 +7,8 @@ "CVE-2015-4363" ], "details": "Open redirect vulnerability in the finder_form_goto function in the Finder module for Drupal allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-chp3-564g-qgg2/GHSA-chp3-564g-qgg2.json b/advisories/unreviewed/2022/05/GHSA-chp3-564g-qgg2/GHSA-chp3-564g-qgg2.json index 8c25c68b51c..e9476e229a1 100644 --- a/advisories/unreviewed/2022/05/GHSA-chp3-564g-qgg2/GHSA-chp3-564g-qgg2.json +++ b/advisories/unreviewed/2022/05/GHSA-chp3-564g-qgg2/GHSA-chp3-564g-qgg2.json @@ -7,12 +7,8 @@ "CVE-2015-4786" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cj6r-fr66-xm8j/GHSA-cj6r-fr66-xm8j.json b/advisories/unreviewed/2022/05/GHSA-cj6r-fr66-xm8j/GHSA-cj6r-fr66-xm8j.json index 77fcec3de14..64b198a611d 100644 --- a/advisories/unreviewed/2022/05/GHSA-cj6r-fr66-xm8j/GHSA-cj6r-fr66-xm8j.json +++ b/advisories/unreviewed/2022/05/GHSA-cj6r-fr66-xm8j/GHSA-cj6r-fr66-xm8j.json @@ -7,12 +7,8 @@ "CVE-2014-0344" ], "details": "Properties.do in ZOHO ManageEngine OpStor before build 8500 does not properly check privilege levels, which allows remote authenticated users to obtain Admin access by using the name parameter in conjunction with a true value of the edit parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cmgp-h7vh-95w3/GHSA-cmgp-h7vh-95w3.json b/advisories/unreviewed/2022/05/GHSA-cmgp-h7vh-95w3/GHSA-cmgp-h7vh-95w3.json index 40f4506464d..65c69a09446 100644 --- a/advisories/unreviewed/2022/05/GHSA-cmgp-h7vh-95w3/GHSA-cmgp-h7vh-95w3.json +++ b/advisories/unreviewed/2022/05/GHSA-cmgp-h7vh-95w3/GHSA-cmgp-h7vh-95w3.json @@ -7,12 +7,8 @@ "CVE-2015-6750" ], "details": "Buffer overflow in Ricoh DL FTP Server 1.1.0.6 and earlier allows remote attackers to execute arbitrary code via a long USER command.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cpj2-hhj8-vfgh/GHSA-cpj2-hhj8-vfgh.json b/advisories/unreviewed/2022/05/GHSA-cpj2-hhj8-vfgh/GHSA-cpj2-hhj8-vfgh.json index 6dee2dae811..a55c482d213 100644 --- a/advisories/unreviewed/2022/05/GHSA-cpj2-hhj8-vfgh/GHSA-cpj2-hhj8-vfgh.json +++ b/advisories/unreviewed/2022/05/GHSA-cpj2-hhj8-vfgh/GHSA-cpj2-hhj8-vfgh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cq2f-mgf9-68xr/GHSA-cq2f-mgf9-68xr.json b/advisories/unreviewed/2022/05/GHSA-cq2f-mgf9-68xr/GHSA-cq2f-mgf9-68xr.json index d703801438f..f9d3ec56abe 100644 --- a/advisories/unreviewed/2022/05/GHSA-cq2f-mgf9-68xr/GHSA-cq2f-mgf9-68xr.json +++ b/advisories/unreviewed/2022/05/GHSA-cq2f-mgf9-68xr/GHSA-cq2f-mgf9-68xr.json @@ -7,12 +7,8 @@ "CVE-2015-0710" ], "details": "The Overlay Transport Virtualization (OTV) implementation in Cisco IOS XE 3.10S allows remote attackers to cause a denial of service (device reload) via a series of packets that are considered oversized and trigger improper fragmentation handling, aka Bug IDs CSCup37676 and CSCup30335.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cq4v-593f-gw93/GHSA-cq4v-593f-gw93.json b/advisories/unreviewed/2022/05/GHSA-cq4v-593f-gw93/GHSA-cq4v-593f-gw93.json index 9b46c5a2003..a89981262aa 100644 --- a/advisories/unreviewed/2022/05/GHSA-cq4v-593f-gw93/GHSA-cq4v-593f-gw93.json +++ b/advisories/unreviewed/2022/05/GHSA-cq4v-593f-gw93/GHSA-cq4v-593f-gw93.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -47,9 +45,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cqw2-48m6-4gfh/GHSA-cqw2-48m6-4gfh.json b/advisories/unreviewed/2022/05/GHSA-cqw2-48m6-4gfh/GHSA-cqw2-48m6-4gfh.json index c5b2917ac31..667f86a69b6 100644 --- a/advisories/unreviewed/2022/05/GHSA-cqw2-48m6-4gfh/GHSA-cqw2-48m6-4gfh.json +++ b/advisories/unreviewed/2022/05/GHSA-cqw2-48m6-4gfh/GHSA-cqw2-48m6-4gfh.json @@ -7,12 +7,8 @@ "CVE-2015-5402" ], "details": "HP Systems Insight Manager (SIM) before 7.5.0, as used in HP Matrix Operating Environment before 7.5.0 and other products, allows local users to gain privileges, and consequently obtain sensitive information, modify data, or cause a denial of service, via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cr7h-75cf-wm8x/GHSA-cr7h-75cf-wm8x.json b/advisories/unreviewed/2022/05/GHSA-cr7h-75cf-wm8x/GHSA-cr7h-75cf-wm8x.json index 1b9a9501552..1f8c15defd7 100644 --- a/advisories/unreviewed/2022/05/GHSA-cr7h-75cf-wm8x/GHSA-cr7h-75cf-wm8x.json +++ b/advisories/unreviewed/2022/05/GHSA-cr7h-75cf-wm8x/GHSA-cr7h-75cf-wm8x.json @@ -7,12 +7,8 @@ "CVE-2015-5190" ], "details": "The pcsd web UI in PCS 0.9.139 and earlier allows remote authenticated users to execute arbitrary commands via \"escape characters\" in a URL.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cvrh-vhwc-w6wr/GHSA-cvrh-vhwc-w6wr.json b/advisories/unreviewed/2022/05/GHSA-cvrh-vhwc-w6wr/GHSA-cvrh-vhwc-w6wr.json index f331c10fe4d..80f88cfd72d 100644 --- a/advisories/unreviewed/2022/05/GHSA-cvrh-vhwc-w6wr/GHSA-cvrh-vhwc-w6wr.json +++ b/advisories/unreviewed/2022/05/GHSA-cvrh-vhwc-w6wr/GHSA-cvrh-vhwc-w6wr.json @@ -7,12 +7,8 @@ "CVE-2013-6021" ], "details": "Buffer overflow in WGagent in WatchGuard WSM and Fireware before 11.8 allows remote attackers to execute arbitrary code via a long sessionid value in a cookie.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cwm8-xj6v-vqwj/GHSA-cwm8-xj6v-vqwj.json b/advisories/unreviewed/2022/05/GHSA-cwm8-xj6v-vqwj/GHSA-cwm8-xj6v-vqwj.json index b311f60ea8f..9ebf415ae14 100644 --- a/advisories/unreviewed/2022/05/GHSA-cwm8-xj6v-vqwj/GHSA-cwm8-xj6v-vqwj.json +++ b/advisories/unreviewed/2022/05/GHSA-cwm8-xj6v-vqwj/GHSA-cwm8-xj6v-vqwj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cx36-fw6h-83fh/GHSA-cx36-fw6h-83fh.json b/advisories/unreviewed/2022/05/GHSA-cx36-fw6h-83fh/GHSA-cx36-fw6h-83fh.json index ab11e96adb4..1865c74d910 100644 --- a/advisories/unreviewed/2022/05/GHSA-cx36-fw6h-83fh/GHSA-cx36-fw6h-83fh.json +++ b/advisories/unreviewed/2022/05/GHSA-cx36-fw6h-83fh/GHSA-cx36-fw6h-83fh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cx3q-6fpx-362x/GHSA-cx3q-6fpx-362x.json b/advisories/unreviewed/2022/05/GHSA-cx3q-6fpx-362x/GHSA-cx3q-6fpx-362x.json index d2d184cd379..aae5c54c6af 100644 --- a/advisories/unreviewed/2022/05/GHSA-cx3q-6fpx-362x/GHSA-cx3q-6fpx-362x.json +++ b/advisories/unreviewed/2022/05/GHSA-cx3q-6fpx-362x/GHSA-cx3q-6fpx-362x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cx9f-9g5f-369f/GHSA-cx9f-9g5f-369f.json b/advisories/unreviewed/2022/05/GHSA-cx9f-9g5f-369f/GHSA-cx9f-9g5f-369f.json index b52ab0d33e1..468fe98624d 100644 --- a/advisories/unreviewed/2022/05/GHSA-cx9f-9g5f-369f/GHSA-cx9f-9g5f-369f.json +++ b/advisories/unreviewed/2022/05/GHSA-cx9f-9g5f-369f/GHSA-cx9f-9g5f-369f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cxc7-m7pw-q6p7/GHSA-cxc7-m7pw-q6p7.json b/advisories/unreviewed/2022/05/GHSA-cxc7-m7pw-q6p7/GHSA-cxc7-m7pw-q6p7.json index 9d2e4fa476c..3a47592aba0 100644 --- a/advisories/unreviewed/2022/05/GHSA-cxc7-m7pw-q6p7/GHSA-cxc7-m7pw-q6p7.json +++ b/advisories/unreviewed/2022/05/GHSA-cxc7-m7pw-q6p7/GHSA-cxc7-m7pw-q6p7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cxfp-vg93-5g2w/GHSA-cxfp-vg93-5g2w.json b/advisories/unreviewed/2022/05/GHSA-cxfp-vg93-5g2w/GHSA-cxfp-vg93-5g2w.json index f470dc04c7c..e97832957f9 100644 --- a/advisories/unreviewed/2022/05/GHSA-cxfp-vg93-5g2w/GHSA-cxfp-vg93-5g2w.json +++ b/advisories/unreviewed/2022/05/GHSA-cxfp-vg93-5g2w/GHSA-cxfp-vg93-5g2w.json @@ -7,12 +7,8 @@ "CVE-2015-1125" ], "details": "The touch-events implementation in WebKit in Apple iOS before 8.3 allows remote attackers to trigger an association between a tap and an unintended web resource via a crafted web site.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cxg2-664m-h86j/GHSA-cxg2-664m-h86j.json b/advisories/unreviewed/2022/05/GHSA-cxg2-664m-h86j/GHSA-cxg2-664m-h86j.json index 1841356e36f..711ceeb350d 100644 --- a/advisories/unreviewed/2022/05/GHSA-cxg2-664m-h86j/GHSA-cxg2-664m-h86j.json +++ b/advisories/unreviewed/2022/05/GHSA-cxg2-664m-h86j/GHSA-cxg2-664m-h86j.json @@ -7,12 +7,8 @@ "CVE-2015-4376" ], "details": "Cross-site scripting (XSS) vulnerability in the Profile2 Privacy module 7.x-1.x before 7.x-1.5 for Drupal allows remote authenticated users with the \"Administer Profile2 Privacy Levels\" permission to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cxwq-372h-pr95/GHSA-cxwq-372h-pr95.json b/advisories/unreviewed/2022/05/GHSA-cxwq-372h-pr95/GHSA-cxwq-372h-pr95.json index 0d508b4c8e5..bf3a5be8178 100644 --- a/advisories/unreviewed/2022/05/GHSA-cxwq-372h-pr95/GHSA-cxwq-372h-pr95.json +++ b/advisories/unreviewed/2022/05/GHSA-cxwq-372h-pr95/GHSA-cxwq-372h-pr95.json @@ -7,12 +7,8 @@ "CVE-2015-6810" ], "details": "Cross-site scripting (XSS) vulnerability in Invision Power Services IPS Community Suite (aka Invision Power Board, IPB, or Power Board) 4.x before 4.0.12.1 allows remote authenticated users to inject arbitrary web script or HTML via the event_location[address] array parameter to calendar/submit/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f28m-wg9w-jf39/GHSA-f28m-wg9w-jf39.json b/advisories/unreviewed/2022/05/GHSA-f28m-wg9w-jf39/GHSA-f28m-wg9w-jf39.json index 152437fe37a..ff2eb28fca7 100644 --- a/advisories/unreviewed/2022/05/GHSA-f28m-wg9w-jf39/GHSA-f28m-wg9w-jf39.json +++ b/advisories/unreviewed/2022/05/GHSA-f28m-wg9w-jf39/GHSA-f28m-wg9w-jf39.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f33f-rhvc-q7r2/GHSA-f33f-rhvc-q7r2.json b/advisories/unreviewed/2022/05/GHSA-f33f-rhvc-q7r2/GHSA-f33f-rhvc-q7r2.json index 5bae4e99f96..92cac1f54a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-f33f-rhvc-q7r2/GHSA-f33f-rhvc-q7r2.json +++ b/advisories/unreviewed/2022/05/GHSA-f33f-rhvc-q7r2/GHSA-f33f-rhvc-q7r2.json @@ -7,12 +7,8 @@ "CVE-2013-6674" ], "details": "Cross-site scripting (XSS) vulnerability in Mozilla Thunderbird 17.x through 17.0.8, Thunderbird ESR 17.x through 17.0.10, and SeaMonkey before 2.20 allows user-assisted remote attackers to inject arbitrary web script or HTML via an e-mail message containing a data: URL in an IFRAME element, a related issue to CVE-2014-2018.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f3hv-vqcr-9qp7/GHSA-f3hv-vqcr-9qp7.json b/advisories/unreviewed/2022/05/GHSA-f3hv-vqcr-9qp7/GHSA-f3hv-vqcr-9qp7.json index 2ca3dcc715a..1f9e04ba7c1 100644 --- a/advisories/unreviewed/2022/05/GHSA-f3hv-vqcr-9qp7/GHSA-f3hv-vqcr-9qp7.json +++ b/advisories/unreviewed/2022/05/GHSA-f3hv-vqcr-9qp7/GHSA-f3hv-vqcr-9qp7.json @@ -7,12 +7,8 @@ "CVE-2012-1978" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in Simple PHP Agenda 2.2.8 and earlier allow remote attackers to hijack the authentication of administrators for requests that (1) add an administrator via a request to auth/process.php, (2) delete an administrator via a request to auth/admin/adminprocess.php, (3) add an event via a request to engine/new_event.php, or (4) delete an event via a request to phpagenda/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f3jr-rvxv-mh4w/GHSA-f3jr-rvxv-mh4w.json b/advisories/unreviewed/2022/05/GHSA-f3jr-rvxv-mh4w/GHSA-f3jr-rvxv-mh4w.json index 0998e7b41cd..46c17bf1a60 100644 --- a/advisories/unreviewed/2022/05/GHSA-f3jr-rvxv-mh4w/GHSA-f3jr-rvxv-mh4w.json +++ b/advisories/unreviewed/2022/05/GHSA-f3jr-rvxv-mh4w/GHSA-f3jr-rvxv-mh4w.json @@ -7,12 +7,8 @@ "CVE-2015-1392" ], "details": "Multiple SQL injection vulnerabilities in Aruba Networks ClearPass Policy Manager (CPPM) before 6.4.5 allow remote administrators to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f3q3-qwfv-hrff/GHSA-f3q3-qwfv-hrff.json b/advisories/unreviewed/2022/05/GHSA-f3q3-qwfv-hrff/GHSA-f3q3-qwfv-hrff.json index 82b82434645..c883f88e1c8 100644 --- a/advisories/unreviewed/2022/05/GHSA-f3q3-qwfv-hrff/GHSA-f3q3-qwfv-hrff.json +++ b/advisories/unreviewed/2022/05/GHSA-f3q3-qwfv-hrff/GHSA-f3q3-qwfv-hrff.json @@ -7,12 +7,8 @@ "CVE-2012-5963" ], "details": "Stack-based buffer overflow in the unique_service_name function in ssdp/ssdp_server.c in the SSDP parser in the portable SDK for UPnP Devices (aka libupnp, formerly the Intel SDK for UPnP devices) 1.3.1 allows remote attackers to execute arbitrary code via a long UDN (aka uuid) field within a string that lacks a :: (colon colon) in a UDP packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f5vp-j99x-4jc3/GHSA-f5vp-j99x-4jc3.json b/advisories/unreviewed/2022/05/GHSA-f5vp-j99x-4jc3/GHSA-f5vp-j99x-4jc3.json index da58108448c..2eed1273976 100644 --- a/advisories/unreviewed/2022/05/GHSA-f5vp-j99x-4jc3/GHSA-f5vp-j99x-4jc3.json +++ b/advisories/unreviewed/2022/05/GHSA-f5vp-j99x-4jc3/GHSA-f5vp-j99x-4jc3.json @@ -7,12 +7,8 @@ "CVE-2014-4037" ], "details": "Cross-site scripting (XSS) vulnerability in editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php in FCKeditor before 2.6.11 and earlier allows remote attackers to inject arbitrary web script or HTML via an array key in the textinputs[] parameter, a different issue than CVE-2012-4000.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f6x9-6r77-9cvr/GHSA-f6x9-6r77-9cvr.json b/advisories/unreviewed/2022/05/GHSA-f6x9-6r77-9cvr/GHSA-f6x9-6r77-9cvr.json index ce0417df638..4155fc64b67 100644 --- a/advisories/unreviewed/2022/05/GHSA-f6x9-6r77-9cvr/GHSA-f6x9-6r77-9cvr.json +++ b/advisories/unreviewed/2022/05/GHSA-f6x9-6r77-9cvr/GHSA-f6x9-6r77-9cvr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f722-5j58-xr93/GHSA-f722-5j58-xr93.json b/advisories/unreviewed/2022/05/GHSA-f722-5j58-xr93/GHSA-f722-5j58-xr93.json index a485ee773c4..426acf25102 100644 --- a/advisories/unreviewed/2022/05/GHSA-f722-5j58-xr93/GHSA-f722-5j58-xr93.json +++ b/advisories/unreviewed/2022/05/GHSA-f722-5j58-xr93/GHSA-f722-5j58-xr93.json @@ -7,12 +7,8 @@ "CVE-2015-4385" ], "details": "Cross-site scripting (XSS) vulnerability in unspecified administration pages in the Imagefield Info module 7.x-1.x before 7.x-1.2 for Drupal allows remote authenticated users with the \"Administer image styles\" permission to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f72j-hf57-7h84/GHSA-f72j-hf57-7h84.json b/advisories/unreviewed/2022/05/GHSA-f72j-hf57-7h84/GHSA-f72j-hf57-7h84.json index e7974b939dc..82f8604927e 100644 --- a/advisories/unreviewed/2022/05/GHSA-f72j-hf57-7h84/GHSA-f72j-hf57-7h84.json +++ b/advisories/unreviewed/2022/05/GHSA-f72j-hf57-7h84/GHSA-f72j-hf57-7h84.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f76x-65j4-28x3/GHSA-f76x-65j4-28x3.json b/advisories/unreviewed/2022/05/GHSA-f76x-65j4-28x3/GHSA-f76x-65j4-28x3.json index b8417e339bc..935539127e3 100644 --- a/advisories/unreviewed/2022/05/GHSA-f76x-65j4-28x3/GHSA-f76x-65j4-28x3.json +++ b/advisories/unreviewed/2022/05/GHSA-f76x-65j4-28x3/GHSA-f76x-65j4-28x3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f77r-rqc9-53hh/GHSA-f77r-rqc9-53hh.json b/advisories/unreviewed/2022/05/GHSA-f77r-rqc9-53hh/GHSA-f77r-rqc9-53hh.json index 98c6d0e75d0..d1dd1c68a03 100644 --- a/advisories/unreviewed/2022/05/GHSA-f77r-rqc9-53hh/GHSA-f77r-rqc9-53hh.json +++ b/advisories/unreviewed/2022/05/GHSA-f77r-rqc9-53hh/GHSA-f77r-rqc9-53hh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f863-pmcq-8c6w/GHSA-f863-pmcq-8c6w.json b/advisories/unreviewed/2022/05/GHSA-f863-pmcq-8c6w/GHSA-f863-pmcq-8c6w.json index 21005239787..e9a001b4802 100644 --- a/advisories/unreviewed/2022/05/GHSA-f863-pmcq-8c6w/GHSA-f863-pmcq-8c6w.json +++ b/advisories/unreviewed/2022/05/GHSA-f863-pmcq-8c6w/GHSA-f863-pmcq-8c6w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f86g-x5mj-qg95/GHSA-f86g-x5mj-qg95.json b/advisories/unreviewed/2022/05/GHSA-f86g-x5mj-qg95/GHSA-f86g-x5mj-qg95.json index aa5fbfb5fee..8d2db52b283 100644 --- a/advisories/unreviewed/2022/05/GHSA-f86g-x5mj-qg95/GHSA-f86g-x5mj-qg95.json +++ b/advisories/unreviewed/2022/05/GHSA-f86g-x5mj-qg95/GHSA-f86g-x5mj-qg95.json @@ -7,12 +7,8 @@ "CVE-2015-0654" ], "details": "Race condition in the TLS implementation in MainApp in the management interface in Cisco Intrusion Prevention System (IPS) Software before 7.3(3)E4 allows remote attackers to cause a denial of service (process hang) by establishing many HTTPS sessions, aka Bug ID CSCuq40652.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f8cc-jp4v-xmgp/GHSA-f8cc-jp4v-xmgp.json b/advisories/unreviewed/2022/05/GHSA-f8cc-jp4v-xmgp/GHSA-f8cc-jp4v-xmgp.json index 97ed93513cf..7f1d54c8006 100644 --- a/advisories/unreviewed/2022/05/GHSA-f8cc-jp4v-xmgp/GHSA-f8cc-jp4v-xmgp.json +++ b/advisories/unreviewed/2022/05/GHSA-f8cc-jp4v-xmgp/GHSA-f8cc-jp4v-xmgp.json @@ -7,12 +7,8 @@ "CVE-2014-5322" ], "details": "Cross-site scripting (XSS) vulnerability in the Instant Web Publish function in FileMaker Pro before 13 and Pro Advanced before 13 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors. NOTE: this vulnerability exists because of an incorrect fix for CVE-2013-3640.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f937-gh67-6x56/GHSA-f937-gh67-6x56.json b/advisories/unreviewed/2022/05/GHSA-f937-gh67-6x56/GHSA-f937-gh67-6x56.json index 18225be2638..a0af6b27bd1 100644 --- a/advisories/unreviewed/2022/05/GHSA-f937-gh67-6x56/GHSA-f937-gh67-6x56.json +++ b/advisories/unreviewed/2022/05/GHSA-f937-gh67-6x56/GHSA-f937-gh67-6x56.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f97q-qfwc-4xgr/GHSA-f97q-qfwc-4xgr.json b/advisories/unreviewed/2022/05/GHSA-f97q-qfwc-4xgr/GHSA-f97q-qfwc-4xgr.json index 226c266a70f..51c23739a21 100644 --- a/advisories/unreviewed/2022/05/GHSA-f97q-qfwc-4xgr/GHSA-f97q-qfwc-4xgr.json +++ b/advisories/unreviewed/2022/05/GHSA-f97q-qfwc-4xgr/GHSA-f97q-qfwc-4xgr.json @@ -7,12 +7,8 @@ "CVE-2014-2330" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in the Multisite GUI in Check_MK before 1.2.5i2 allow remote attackers to hijack the authentication of users for requests that (1) upload arbitrary snapshots, (2) delete arbitrary files, or possibly have other unspecified impact via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f9mj-hcwg-p3gf/GHSA-f9mj-hcwg-p3gf.json b/advisories/unreviewed/2022/05/GHSA-f9mj-hcwg-p3gf/GHSA-f9mj-hcwg-p3gf.json index dd7f74fbcdc..55fb26a2985 100644 --- a/advisories/unreviewed/2022/05/GHSA-f9mj-hcwg-p3gf/GHSA-f9mj-hcwg-p3gf.json +++ b/advisories/unreviewed/2022/05/GHSA-f9mj-hcwg-p3gf/GHSA-f9mj-hcwg-p3gf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fc72-22cx-9v8v/GHSA-fc72-22cx-9v8v.json b/advisories/unreviewed/2022/05/GHSA-fc72-22cx-9v8v/GHSA-fc72-22cx-9v8v.json index 0550379589f..b9cfb4c2b70 100644 --- a/advisories/unreviewed/2022/05/GHSA-fc72-22cx-9v8v/GHSA-fc72-22cx-9v8v.json +++ b/advisories/unreviewed/2022/05/GHSA-fc72-22cx-9v8v/GHSA-fc72-22cx-9v8v.json @@ -7,12 +7,8 @@ "CVE-2015-5495" ], "details": "Cross-site scripting (XSS) vulnerability in the Mobile sliding menu module 7.x-2.x before 7.x-2.1 for Drupal allows remote authenticated users with the \"administer menu\" permission to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-ffmh-x8xx-p5fq/GHSA-ffmh-x8xx-p5fq.json b/advisories/unreviewed/2022/05/GHSA-ffmh-x8xx-p5fq/GHSA-ffmh-x8xx-p5fq.json index 252dab8c3e1..77d6d1f5a45 100644 --- a/advisories/unreviewed/2022/05/GHSA-ffmh-x8xx-p5fq/GHSA-ffmh-x8xx-p5fq.json +++ b/advisories/unreviewed/2022/05/GHSA-ffmh-x8xx-p5fq/GHSA-ffmh-x8xx-p5fq.json @@ -7,12 +7,8 @@ "CVE-2015-4292" ], "details": "Cross-site scripting (XSS) vulnerability in the management interface in Cisco Prime Central for Hosted Collaboration Solution (PC4HCS) 10.6(2) allows remote attackers to inject arbitrary web script or HTML via an unspecified value, aka Bug ID CSCuv45818.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fg9r-qqxh-3wjw/GHSA-fg9r-qqxh-3wjw.json b/advisories/unreviewed/2022/05/GHSA-fg9r-qqxh-3wjw/GHSA-fg9r-qqxh-3wjw.json index 54c1f911607..bcfe761559b 100644 --- a/advisories/unreviewed/2022/05/GHSA-fg9r-qqxh-3wjw/GHSA-fg9r-qqxh-3wjw.json +++ b/advisories/unreviewed/2022/05/GHSA-fg9r-qqxh-3wjw/GHSA-fg9r-qqxh-3wjw.json @@ -7,12 +7,8 @@ "CVE-2015-4777" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fgc5-qjvv-cffv/GHSA-fgc5-qjvv-cffv.json b/advisories/unreviewed/2022/05/GHSA-fgc5-qjvv-cffv/GHSA-fgc5-qjvv-cffv.json index b79b74e381d..21163cafb90 100644 --- a/advisories/unreviewed/2022/05/GHSA-fgc5-qjvv-cffv/GHSA-fgc5-qjvv-cffv.json +++ b/advisories/unreviewed/2022/05/GHSA-fgc5-qjvv-cffv/GHSA-fgc5-qjvv-cffv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fgr3-j7rx-4hfv/GHSA-fgr3-j7rx-4hfv.json b/advisories/unreviewed/2022/05/GHSA-fgr3-j7rx-4hfv/GHSA-fgr3-j7rx-4hfv.json index c7c5b0356fc..58f6f08e152 100644 --- a/advisories/unreviewed/2022/05/GHSA-fgr3-j7rx-4hfv/GHSA-fgr3-j7rx-4hfv.json +++ b/advisories/unreviewed/2022/05/GHSA-fgr3-j7rx-4hfv/GHSA-fgr3-j7rx-4hfv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fh6q-fh77-8r3p/GHSA-fh6q-fh77-8r3p.json b/advisories/unreviewed/2022/05/GHSA-fh6q-fh77-8r3p/GHSA-fh6q-fh77-8r3p.json index 496c0bf53ae..9206e744dea 100644 --- a/advisories/unreviewed/2022/05/GHSA-fh6q-fh77-8r3p/GHSA-fh6q-fh77-8r3p.json +++ b/advisories/unreviewed/2022/05/GHSA-fh6q-fh77-8r3p/GHSA-fh6q-fh77-8r3p.json @@ -7,12 +7,8 @@ "CVE-2014-3913" ], "details": "Stack-based buffer overflow in AccessServer32.exe in Ericom AccessNow Server allows remote attackers to execute arbitrary code via a request for a non-existent file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fhmg-5gcw-wqfw/GHSA-fhmg-5gcw-wqfw.json b/advisories/unreviewed/2022/05/GHSA-fhmg-5gcw-wqfw/GHSA-fhmg-5gcw-wqfw.json index 6e3b2009c5a..d3ec129d65a 100644 --- a/advisories/unreviewed/2022/05/GHSA-fhmg-5gcw-wqfw/GHSA-fhmg-5gcw-wqfw.json +++ b/advisories/unreviewed/2022/05/GHSA-fhmg-5gcw-wqfw/GHSA-fhmg-5gcw-wqfw.json @@ -7,12 +7,8 @@ "CVE-2014-0784" ], "details": "Stack-based buffer overflow in BKBCopyD.exe in Yokogawa CENTUM CS 3000 R3.09.50 and earlier allows remote attackers to execute arbitrary code via a crafted TCP packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fhmm-j837-c8pq/GHSA-fhmm-j837-c8pq.json b/advisories/unreviewed/2022/05/GHSA-fhmm-j837-c8pq/GHSA-fhmm-j837-c8pq.json index 72d0d318cf2..b3323464eb9 100644 --- a/advisories/unreviewed/2022/05/GHSA-fhmm-j837-c8pq/GHSA-fhmm-j837-c8pq.json +++ b/advisories/unreviewed/2022/05/GHSA-fhmm-j837-c8pq/GHSA-fhmm-j837-c8pq.json @@ -7,12 +7,8 @@ "CVE-2013-2639" ], "details": "Cross-site scripting (XSS) vulnerability in CTERA Cloud Storage OS before 3.2.29.0, 3.2.42.0, and earlier allows remote attackers to inject arbitrary web script or HTML via the description in a project folder.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fm4q-8fww-vpwr/GHSA-fm4q-8fww-vpwr.json b/advisories/unreviewed/2022/05/GHSA-fm4q-8fww-vpwr/GHSA-fm4q-8fww-vpwr.json index 06ed43e7339..f8f0715f9ea 100644 --- a/advisories/unreviewed/2022/05/GHSA-fm4q-8fww-vpwr/GHSA-fm4q-8fww-vpwr.json +++ b/advisories/unreviewed/2022/05/GHSA-fm4q-8fww-vpwr/GHSA-fm4q-8fww-vpwr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fm5c-85q4-h37x/GHSA-fm5c-85q4-h37x.json b/advisories/unreviewed/2022/05/GHSA-fm5c-85q4-h37x/GHSA-fm5c-85q4-h37x.json index 95de5cd43b2..0cf7b52476b 100644 --- a/advisories/unreviewed/2022/05/GHSA-fm5c-85q4-h37x/GHSA-fm5c-85q4-h37x.json +++ b/advisories/unreviewed/2022/05/GHSA-fm5c-85q4-h37x/GHSA-fm5c-85q4-h37x.json @@ -7,12 +7,8 @@ "CVE-2015-4228" ], "details": "Cisco Digital Content Manager (DCM) 15.0.0 might allow remote ad servers to cause a denial of service (reboot) via malformed ad messages, aka Bug ID CSCur13999.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fmpj-8c4w-q47g/GHSA-fmpj-8c4w-q47g.json b/advisories/unreviewed/2022/05/GHSA-fmpj-8c4w-q47g/GHSA-fmpj-8c4w-q47g.json index 3908bb5188a..5f034064b56 100644 --- a/advisories/unreviewed/2022/05/GHSA-fmpj-8c4w-q47g/GHSA-fmpj-8c4w-q47g.json +++ b/advisories/unreviewed/2022/05/GHSA-fmpj-8c4w-q47g/GHSA-fmpj-8c4w-q47g.json @@ -7,12 +7,8 @@ "CVE-2014-0736" ], "details": "Cross-site request forgery (CSRF) vulnerability in the Call Detail Records Analysis and Reporting (CAR) page in Cisco Unified Communications Manager (Unified CM) 10.0(1) and earlier allows remote attackers to hijack the authentication of arbitrary users for requests that make CAR modifications, aka Bug ID CSCum46468.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fmxp-wjwm-hv67/GHSA-fmxp-wjwm-hv67.json b/advisories/unreviewed/2022/05/GHSA-fmxp-wjwm-hv67/GHSA-fmxp-wjwm-hv67.json index 7acc0e51bb7..c65d9092091 100644 --- a/advisories/unreviewed/2022/05/GHSA-fmxp-wjwm-hv67/GHSA-fmxp-wjwm-hv67.json +++ b/advisories/unreviewed/2022/05/GHSA-fmxp-wjwm-hv67/GHSA-fmxp-wjwm-hv67.json @@ -7,12 +7,8 @@ "CVE-2015-4780" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fp52-46r3-jwx9/GHSA-fp52-46r3-jwx9.json b/advisories/unreviewed/2022/05/GHSA-fp52-46r3-jwx9/GHSA-fp52-46r3-jwx9.json index 902be1e9383..b11cb5f5f1e 100644 --- a/advisories/unreviewed/2022/05/GHSA-fp52-46r3-jwx9/GHSA-fp52-46r3-jwx9.json +++ b/advisories/unreviewed/2022/05/GHSA-fp52-46r3-jwx9/GHSA-fp52-46r3-jwx9.json @@ -7,12 +7,8 @@ "CVE-2010-5308" ], "details": "GE Healthcare Optima MR360 does not require authentication for the HIPAA emergency login procedure, which allows physically proximate users to gain access via an arbitrary username in the Emergency Login screen. NOTE: this might not qualify for inclusion in CVE if unauthenticated emergency access is part of the intended security policy of the product, can be controlled by the system administrator, and is not enabled by default.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fpf6-h79m-m599/GHSA-fpf6-h79m-m599.json b/advisories/unreviewed/2022/05/GHSA-fpf6-h79m-m599/GHSA-fpf6-h79m-m599.json index ae313a20e40..9f24038042c 100644 --- a/advisories/unreviewed/2022/05/GHSA-fpf6-h79m-m599/GHSA-fpf6-h79m-m599.json +++ b/advisories/unreviewed/2022/05/GHSA-fpf6-h79m-m599/GHSA-fpf6-h79m-m599.json @@ -7,12 +7,8 @@ "CVE-2015-5489" ], "details": "Cross-site scripting (XSS) vulnerability in the Smart Trim module 7.x-1.x before 7.x-1.5 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via vectors involving the field settings form.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fq8v-7xvx-q6q2/GHSA-fq8v-7xvx-q6q2.json b/advisories/unreviewed/2022/05/GHSA-fq8v-7xvx-q6q2/GHSA-fq8v-7xvx-q6q2.json index f30bf4a8cbc..2f54de727c3 100644 --- a/advisories/unreviewed/2022/05/GHSA-fq8v-7xvx-q6q2/GHSA-fq8v-7xvx-q6q2.json +++ b/advisories/unreviewed/2022/05/GHSA-fq8v-7xvx-q6q2/GHSA-fq8v-7xvx-q6q2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fr2f-63rm-242x/GHSA-fr2f-63rm-242x.json b/advisories/unreviewed/2022/05/GHSA-fr2f-63rm-242x/GHSA-fr2f-63rm-242x.json index 579a8788761..532e776f25a 100644 --- a/advisories/unreviewed/2022/05/GHSA-fr2f-63rm-242x/GHSA-fr2f-63rm-242x.json +++ b/advisories/unreviewed/2022/05/GHSA-fr2f-63rm-242x/GHSA-fr2f-63rm-242x.json @@ -7,12 +7,8 @@ "CVE-2015-6744" ], "details": "Basware Banking (Maksuliikenne) before 8.90.07.X relies on the client to enforce (1) login verification, (2) audit trail creation, and (3) account locking, which allows remote attackers to \"disrupt security-critical functions\" by \"dropping network traffic.\" NOTE: this identifier was SPLIT from CVE-2015-0942 per ADT2 and ADT3 due to different vulnerability type and different affected versions.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fr34-7hpr-3v79/GHSA-fr34-7hpr-3v79.json b/advisories/unreviewed/2022/05/GHSA-fr34-7hpr-3v79/GHSA-fr34-7hpr-3v79.json index 81714b5a2df..7dca8d0da90 100644 --- a/advisories/unreviewed/2022/05/GHSA-fr34-7hpr-3v79/GHSA-fr34-7hpr-3v79.json +++ b/advisories/unreviewed/2022/05/GHSA-fr34-7hpr-3v79/GHSA-fr34-7hpr-3v79.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -39,9 +37,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fr5x-3698-x7mx/GHSA-fr5x-3698-x7mx.json b/advisories/unreviewed/2022/05/GHSA-fr5x-3698-x7mx/GHSA-fr5x-3698-x7mx.json index e17b6e1bbc2..3fc5b2977e3 100644 --- a/advisories/unreviewed/2022/05/GHSA-fr5x-3698-x7mx/GHSA-fr5x-3698-x7mx.json +++ b/advisories/unreviewed/2022/05/GHSA-fr5x-3698-x7mx/GHSA-fr5x-3698-x7mx.json @@ -7,12 +7,8 @@ "CVE-2013-6175" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in EMC Document Sciences xPression 4.1 SP1 before Patch 47, 4.2 before Patch 26, and 4.5 before Patch 05, as used in Documentum Edition, Enterprise Edition Publish Engine, and Enterprise Edition Compuset Engine, allow remote attackers to inject arbitrary web script or HTML via unspecified input to a (1) xAdmin or (2) xDashboard form.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-frcg-47mh-pj2g/GHSA-frcg-47mh-pj2g.json b/advisories/unreviewed/2022/05/GHSA-frcg-47mh-pj2g/GHSA-frcg-47mh-pj2g.json index c6f058fc9ff..5354b9a7839 100644 --- a/advisories/unreviewed/2022/05/GHSA-frcg-47mh-pj2g/GHSA-frcg-47mh-pj2g.json +++ b/advisories/unreviewed/2022/05/GHSA-frcg-47mh-pj2g/GHSA-frcg-47mh-pj2g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fwp9-f5c7-pvgj/GHSA-fwp9-f5c7-pvgj.json b/advisories/unreviewed/2022/05/GHSA-fwp9-f5c7-pvgj/GHSA-fwp9-f5c7-pvgj.json index 5d4b6f4355d..6e28821caee 100644 --- a/advisories/unreviewed/2022/05/GHSA-fwp9-f5c7-pvgj/GHSA-fwp9-f5c7-pvgj.json +++ b/advisories/unreviewed/2022/05/GHSA-fwp9-f5c7-pvgj/GHSA-fwp9-f5c7-pvgj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fx3w-hj7j-hfgf/GHSA-fx3w-hj7j-hfgf.json b/advisories/unreviewed/2022/05/GHSA-fx3w-hj7j-hfgf/GHSA-fx3w-hj7j-hfgf.json index f530b1bc13d..710df7a79c2 100644 --- a/advisories/unreviewed/2022/05/GHSA-fx3w-hj7j-hfgf/GHSA-fx3w-hj7j-hfgf.json +++ b/advisories/unreviewed/2022/05/GHSA-fx3w-hj7j-hfgf/GHSA-fx3w-hj7j-hfgf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fx44-vv59-vq78/GHSA-fx44-vv59-vq78.json b/advisories/unreviewed/2022/05/GHSA-fx44-vv59-vq78/GHSA-fx44-vv59-vq78.json index 92ae62ad67c..8a9eaa6aa47 100644 --- a/advisories/unreviewed/2022/05/GHSA-fx44-vv59-vq78/GHSA-fx44-vv59-vq78.json +++ b/advisories/unreviewed/2022/05/GHSA-fx44-vv59-vq78/GHSA-fx44-vv59-vq78.json @@ -7,12 +7,8 @@ "CVE-2015-6745" ], "details": "Basware Banking (Maksuliikenne) 8.90.07.X relies on the client to enforce account locking, which allows local users to bypass that security mechanism by deleting the entry from the locking table. NOTE: this identifier was SPLIT from CVE-2015-0942 per ADT2 and ADT3 due to different vulnerability type and different affected versions. NOTE: this vulnerability exists because of an incorrect fix for CVE-2015-6744.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fx7w-42hf-7jg6/GHSA-fx7w-42hf-7jg6.json b/advisories/unreviewed/2022/05/GHSA-fx7w-42hf-7jg6/GHSA-fx7w-42hf-7jg6.json index 1f5d25a7f61..807d7c4f933 100644 --- a/advisories/unreviewed/2022/05/GHSA-fx7w-42hf-7jg6/GHSA-fx7w-42hf-7jg6.json +++ b/advisories/unreviewed/2022/05/GHSA-fx7w-42hf-7jg6/GHSA-fx7w-42hf-7jg6.json @@ -7,12 +7,8 @@ "CVE-2015-4285" ], "details": "The Local Packet Transport Services (LPTS) implementation in Cisco IOS XR 5.1.2, 5.1.3, 5.2.1, and 5.2.2 on ASR9k devices makes incorrect decisions about the opening of TCP and UDP ports during the processing of flow base entries, which allows remote attackers to cause a denial of service (resource consumption) by sending traffic to these ports continuously, aka Bug ID CSCur88273.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fxv9-m588-rfp5/GHSA-fxv9-m588-rfp5.json b/advisories/unreviewed/2022/05/GHSA-fxv9-m588-rfp5/GHSA-fxv9-m588-rfp5.json index f6a42508bdf..74fd3d692fe 100644 --- a/advisories/unreviewed/2022/05/GHSA-fxv9-m588-rfp5/GHSA-fxv9-m588-rfp5.json +++ b/advisories/unreviewed/2022/05/GHSA-fxv9-m588-rfp5/GHSA-fxv9-m588-rfp5.json @@ -7,12 +7,8 @@ "CVE-2015-4370" ], "details": "Cross-site scripting (XSS) vulnerability in the Site Documentation module before 6.x-1.5 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via vectors related to taxonomy terms.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g26h-g3h8-pq5x/GHSA-g26h-g3h8-pq5x.json b/advisories/unreviewed/2022/05/GHSA-g26h-g3h8-pq5x/GHSA-g26h-g3h8-pq5x.json index bbe1bcdc8f6..5c9f7e766bc 100644 --- a/advisories/unreviewed/2022/05/GHSA-g26h-g3h8-pq5x/GHSA-g26h-g3h8-pq5x.json +++ b/advisories/unreviewed/2022/05/GHSA-g26h-g3h8-pq5x/GHSA-g26h-g3h8-pq5x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g273-57rw-vg75/GHSA-g273-57rw-vg75.json b/advisories/unreviewed/2022/05/GHSA-g273-57rw-vg75/GHSA-g273-57rw-vg75.json index cf7c83de97b..5197fc19ec2 100644 --- a/advisories/unreviewed/2022/05/GHSA-g273-57rw-vg75/GHSA-g273-57rw-vg75.json +++ b/advisories/unreviewed/2022/05/GHSA-g273-57rw-vg75/GHSA-g273-57rw-vg75.json @@ -7,12 +7,8 @@ "CVE-2014-3148" ], "details": "Cross-site scripting (XSS) vulnerability in libahttp/err.c in OkCupid OKWS (OK Web Server) allows remote attackers to inject arbitrary web script or HTML via the PATH_INFO to a non-existent page, which is not properly handled in a 404 error page.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g446-343g-jrpr/GHSA-g446-343g-jrpr.json b/advisories/unreviewed/2022/05/GHSA-g446-343g-jrpr/GHSA-g446-343g-jrpr.json index 915c836343f..cbe3efd00a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-g446-343g-jrpr/GHSA-g446-343g-jrpr.json +++ b/advisories/unreviewed/2022/05/GHSA-g446-343g-jrpr/GHSA-g446-343g-jrpr.json @@ -7,12 +7,8 @@ "CVE-2013-6334" ], "details": "IBM Atlas eDiscovery Process Management 6.0.1.5 and earlier and 6.0.2, Disposal and Governance Management for IT 6.0.1.5 and earlier and 6.0.2, and Global Retention Policy and Schedule Management 6.0.1.5 and earlier and 6.0.2 in IBM Atlas Suite (aka Atlas Policy Suite) do not properly validate sessions, which allows remote attackers to bypass intended access restrictions, and visit PolicyAtlas/ResponseDraftServlet (aka the Compliance Questionnaire Save Draft servlet), via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g464-rrx7-rpqx/GHSA-g464-rrx7-rpqx.json b/advisories/unreviewed/2022/05/GHSA-g464-rrx7-rpqx/GHSA-g464-rrx7-rpqx.json index 55e7c3d119c..8873c4bef2b 100644 --- a/advisories/unreviewed/2022/05/GHSA-g464-rrx7-rpqx/GHSA-g464-rrx7-rpqx.json +++ b/advisories/unreviewed/2022/05/GHSA-g464-rrx7-rpqx/GHSA-g464-rrx7-rpqx.json @@ -7,12 +7,8 @@ "CVE-2015-6515" ], "details": "Cross-site scripting (XSS) vulnerability in Splunk Web in Splunk Enterprise 6.2.x before 6.2.4, 6.1.x before 6.1.8, 6.0.x before 6.0.9, and 5.0.x before 5.0.13 and Splunk Light 6.2.x before 6.2.4 allows remote attackers to inject arbitrary web script or HTML via a header.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g4f7-79gf-m9f6/GHSA-g4f7-79gf-m9f6.json b/advisories/unreviewed/2022/05/GHSA-g4f7-79gf-m9f6/GHSA-g4f7-79gf-m9f6.json index b9482ae5c0a..32f3939dd5a 100644 --- a/advisories/unreviewed/2022/05/GHSA-g4f7-79gf-m9f6/GHSA-g4f7-79gf-m9f6.json +++ b/advisories/unreviewed/2022/05/GHSA-g4f7-79gf-m9f6/GHSA-g4f7-79gf-m9f6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g53w-qxj3-5ggh/GHSA-g53w-qxj3-5ggh.json b/advisories/unreviewed/2022/05/GHSA-g53w-qxj3-5ggh/GHSA-g53w-qxj3-5ggh.json index 8cfcffa9d89..a42df262282 100644 --- a/advisories/unreviewed/2022/05/GHSA-g53w-qxj3-5ggh/GHSA-g53w-qxj3-5ggh.json +++ b/advisories/unreviewed/2022/05/GHSA-g53w-qxj3-5ggh/GHSA-g53w-qxj3-5ggh.json @@ -7,12 +7,8 @@ "CVE-2015-5488" ], "details": "Cross-site scripting (XSS) vulnerability in the MailChimp Signup submodule in the MailChimp module 7.x-3.x before 7.x-3.3 for Drupal allows remote authenticated users with the \"administer mailchimp\" permission to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g56j-5qqv-7cxw/GHSA-g56j-5qqv-7cxw.json b/advisories/unreviewed/2022/05/GHSA-g56j-5qqv-7cxw/GHSA-g56j-5qqv-7cxw.json index fa3e5acc58c..bd6512eed00 100644 --- a/advisories/unreviewed/2022/05/GHSA-g56j-5qqv-7cxw/GHSA-g56j-5qqv-7cxw.json +++ b/advisories/unreviewed/2022/05/GHSA-g56j-5qqv-7cxw/GHSA-g56j-5qqv-7cxw.json @@ -7,12 +7,8 @@ "CVE-2012-6691" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in the admin panel in osCMax before 2.5.1 allow remote attackers to hijack the authentication of administrators for requests that conduct SQL injection attacks via the (1) status parameter to admin/stats_monthly_sales.php or (2) country parameter in a process action to admin/create_account_process.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g762-xhjq-x42p/GHSA-g762-xhjq-x42p.json b/advisories/unreviewed/2022/05/GHSA-g762-xhjq-x42p/GHSA-g762-xhjq-x42p.json index fa4e13d3885..2c9b7c1fa37 100644 --- a/advisories/unreviewed/2022/05/GHSA-g762-xhjq-x42p/GHSA-g762-xhjq-x42p.json +++ b/advisories/unreviewed/2022/05/GHSA-g762-xhjq-x42p/GHSA-g762-xhjq-x42p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g79g-mvpj-6cgv/GHSA-g79g-mvpj-6cgv.json b/advisories/unreviewed/2022/05/GHSA-g79g-mvpj-6cgv/GHSA-g79g-mvpj-6cgv.json index 42e51150d1d..440deb4c8f8 100644 --- a/advisories/unreviewed/2022/05/GHSA-g79g-mvpj-6cgv/GHSA-g79g-mvpj-6cgv.json +++ b/advisories/unreviewed/2022/05/GHSA-g79g-mvpj-6cgv/GHSA-g79g-mvpj-6cgv.json @@ -7,12 +7,8 @@ "CVE-2011-5323" ], "details": "GE Healthcare Centricity PACS-IW 3.7.3.7, 3.7.3.8, and possibly other versions has a password of A11enda1e for the sa SQL server user, which has unspecified impact and attack vectors. NOTE: it is not clear whether this password is default, hardcoded, or dependent on another system or product that requires a fixed value.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-g7gv-rfjx-h946/GHSA-g7gv-rfjx-h946.json b/advisories/unreviewed/2022/05/GHSA-g7gv-rfjx-h946/GHSA-g7gv-rfjx-h946.json index b2fad01cf3e..88c3dd173d0 100644 --- a/advisories/unreviewed/2022/05/GHSA-g7gv-rfjx-h946/GHSA-g7gv-rfjx-h946.json +++ b/advisories/unreviewed/2022/05/GHSA-g7gv-rfjx-h946/GHSA-g7gv-rfjx-h946.json @@ -7,12 +7,8 @@ "CVE-2014-0338" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the firewall policy management pages in WatchGuard Fireware XTM before 11.8.3 allow remote attackers to inject arbitrary web script or HTML via the pol_name parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g7px-gfpq-5hgf/GHSA-g7px-gfpq-5hgf.json b/advisories/unreviewed/2022/05/GHSA-g7px-gfpq-5hgf/GHSA-g7px-gfpq-5hgf.json index 2a085c441d9..864818a2873 100644 --- a/advisories/unreviewed/2022/05/GHSA-g7px-gfpq-5hgf/GHSA-g7px-gfpq-5hgf.json +++ b/advisories/unreviewed/2022/05/GHSA-g7px-gfpq-5hgf/GHSA-g7px-gfpq-5hgf.json @@ -7,12 +7,8 @@ "CVE-2014-4188" ], "details": "Cross-site request forgery (CSRF) vulnerability in Hitachi Tuning Manager before 7.6.1-06 and 8.x before 8.0.0-04 and JP1/Performance Management - Manager Web Option 07-00 through 07-54 allows remote attackers to hijack the authentication of unspecified victims via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g8gv-c9mg-4wv9/GHSA-g8gv-c9mg-4wv9.json b/advisories/unreviewed/2022/05/GHSA-g8gv-c9mg-4wv9/GHSA-g8gv-c9mg-4wv9.json index 3432d31b9d4..c42f857475c 100644 --- a/advisories/unreviewed/2022/05/GHSA-g8gv-c9mg-4wv9/GHSA-g8gv-c9mg-4wv9.json +++ b/advisories/unreviewed/2022/05/GHSA-g8gv-c9mg-4wv9/GHSA-g8gv-c9mg-4wv9.json @@ -7,12 +7,8 @@ "CVE-2015-5960" ], "details": "Mozilla Firefox OS before 2.2 allows physically proximate attackers to bypass the pass-code protection mechanism and access USB Mass Storage (UMS) media volumes by using the USB interface for a mount operation.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g9fg-m4x9-vq3m/GHSA-g9fg-m4x9-vq3m.json b/advisories/unreviewed/2022/05/GHSA-g9fg-m4x9-vq3m/GHSA-g9fg-m4x9-vq3m.json index b359ca73249..a7233fe0f50 100644 --- a/advisories/unreviewed/2022/05/GHSA-g9fg-m4x9-vq3m/GHSA-g9fg-m4x9-vq3m.json +++ b/advisories/unreviewed/2022/05/GHSA-g9fg-m4x9-vq3m/GHSA-g9fg-m4x9-vq3m.json @@ -7,12 +7,8 @@ "CVE-2015-4366" ], "details": "Cross-site scripting (XSS) vulnerability in the Mover module 6.x-1.0 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gfvr-2wmm-32h7/GHSA-gfvr-2wmm-32h7.json b/advisories/unreviewed/2022/05/GHSA-gfvr-2wmm-32h7/GHSA-gfvr-2wmm-32h7.json index eb22c0c9fdf..62cf79d1111 100644 --- a/advisories/unreviewed/2022/05/GHSA-gfvr-2wmm-32h7/GHSA-gfvr-2wmm-32h7.json +++ b/advisories/unreviewed/2022/05/GHSA-gfvr-2wmm-32h7/GHSA-gfvr-2wmm-32h7.json @@ -7,12 +7,8 @@ "CVE-2015-2640" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gfx4-cf3g-8q5m/GHSA-gfx4-cf3g-8q5m.json b/advisories/unreviewed/2022/05/GHSA-gfx4-cf3g-8q5m/GHSA-gfx4-cf3g-8q5m.json index 00ff6747402..fa355f5cb89 100644 --- a/advisories/unreviewed/2022/05/GHSA-gfx4-cf3g-8q5m/GHSA-gfx4-cf3g-8q5m.json +++ b/advisories/unreviewed/2022/05/GHSA-gfx4-cf3g-8q5m/GHSA-gfx4-cf3g-8q5m.json @@ -7,12 +7,8 @@ "CVE-2013-4442" ], "details": "Password Generator (aka Pwgen) before 2.07 uses weak pseudo generated numbers when /dev/urandom is unavailable, which makes it easier for context-dependent attackers to guess the numbers.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -56,9 +52,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gh24-phrx-r279/GHSA-gh24-phrx-r279.json b/advisories/unreviewed/2022/05/GHSA-gh24-phrx-r279/GHSA-gh24-phrx-r279.json index 5573883963a..f93812d7642 100644 --- a/advisories/unreviewed/2022/05/GHSA-gh24-phrx-r279/GHSA-gh24-phrx-r279.json +++ b/advisories/unreviewed/2022/05/GHSA-gh24-phrx-r279/GHSA-gh24-phrx-r279.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-ghwg-p489-8pgp/GHSA-ghwg-p489-8pgp.json b/advisories/unreviewed/2022/05/GHSA-ghwg-p489-8pgp/GHSA-ghwg-p489-8pgp.json index af7763680e2..dca71e2f556 100644 --- a/advisories/unreviewed/2022/05/GHSA-ghwg-p489-8pgp/GHSA-ghwg-p489-8pgp.json +++ b/advisories/unreviewed/2022/05/GHSA-ghwg-p489-8pgp/GHSA-ghwg-p489-8pgp.json @@ -7,12 +7,8 @@ "CVE-2015-5360" ], "details": "IPv6 sendd in Juniper Junos 12.1X44 before 12.1X44-D51, 12.1X46 before 12.1X46-D36, 12.1X46 before 12.1X46-D40, 12.1X47 before 12.1X47-D25, 12.3 before 12.3R10, 12.3X48 before 12.3X48-D20, 13.2 before 13.2R8, 13.3 before 13.3R6, 14.1 before 14.1R5, 14.2 before 14.2R3, 15.1 before 15.1R1, and 15.1X49 before 15.1X49-D20, when the \"set protocols neighbor-discovery secure security-level default\" option is configured, allows remote attackers to cause a denial of service (CPU consumption) via a crafted Secure Neighbor Discovery (SEND) Protocol packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gj89-qmxj-q494/GHSA-gj89-qmxj-q494.json b/advisories/unreviewed/2022/05/GHSA-gj89-qmxj-q494/GHSA-gj89-qmxj-q494.json index 7c948188030..4cd7ffa2896 100644 --- a/advisories/unreviewed/2022/05/GHSA-gj89-qmxj-q494/GHSA-gj89-qmxj-q494.json +++ b/advisories/unreviewed/2022/05/GHSA-gj89-qmxj-q494/GHSA-gj89-qmxj-q494.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gmcm-3fxg-fpm2/GHSA-gmcm-3fxg-fpm2.json b/advisories/unreviewed/2022/05/GHSA-gmcm-3fxg-fpm2/GHSA-gmcm-3fxg-fpm2.json index 54d0e231af1..7efae94369b 100644 --- a/advisories/unreviewed/2022/05/GHSA-gmcm-3fxg-fpm2/GHSA-gmcm-3fxg-fpm2.json +++ b/advisories/unreviewed/2022/05/GHSA-gmcm-3fxg-fpm2/GHSA-gmcm-3fxg-fpm2.json @@ -7,12 +7,8 @@ "CVE-2015-1013" ], "details": "OSIsoft PI AF 2.6 and 2.7 and PI SQL for AF 2.1.2.19 do not ensure that the PI SQL (AF) Trusted Users group lacks the Everyone account, which allows remote authenticated users to bypass intended command restrictions via SQL statements.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gmmj-pfw4-rp9r/GHSA-gmmj-pfw4-rp9r.json b/advisories/unreviewed/2022/05/GHSA-gmmj-pfw4-rp9r/GHSA-gmmj-pfw4-rp9r.json index c3b34e83097..53db111b48a 100644 --- a/advisories/unreviewed/2022/05/GHSA-gmmj-pfw4-rp9r/GHSA-gmmj-pfw4-rp9r.json +++ b/advisories/unreviewed/2022/05/GHSA-gmmj-pfw4-rp9r/GHSA-gmmj-pfw4-rp9r.json @@ -7,12 +7,8 @@ "CVE-2015-2980" ], "details": "The Yodobashi application 1.2.1.0 and earlier for Android allows remote attackers to execute arbitrary Java methods, and consequently obtain sensitive information or execute OS commands, via a crafted HTML document.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gp5f-mjv6-w2jc/GHSA-gp5f-mjv6-w2jc.json b/advisories/unreviewed/2022/05/GHSA-gp5f-mjv6-w2jc/GHSA-gp5f-mjv6-w2jc.json index 2f97c6f121d..260bd32316b 100644 --- a/advisories/unreviewed/2022/05/GHSA-gp5f-mjv6-w2jc/GHSA-gp5f-mjv6-w2jc.json +++ b/advisories/unreviewed/2022/05/GHSA-gp5f-mjv6-w2jc/GHSA-gp5f-mjv6-w2jc.json @@ -7,12 +7,8 @@ "CVE-2015-5430" ], "details": "HP Matrix Operating Environment before 7.5.0 allows remote attackers to obtain sensitive information via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gr9g-q7vr-6rvv/GHSA-gr9g-q7vr-6rvv.json b/advisories/unreviewed/2022/05/GHSA-gr9g-q7vr-6rvv/GHSA-gr9g-q7vr-6rvv.json index b4cc7f593ea..c5b704aa91d 100644 --- a/advisories/unreviewed/2022/05/GHSA-gr9g-q7vr-6rvv/GHSA-gr9g-q7vr-6rvv.json +++ b/advisories/unreviewed/2022/05/GHSA-gr9g-q7vr-6rvv/GHSA-gr9g-q7vr-6rvv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -63,9 +61,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-grc5-9gxr-3299/GHSA-grc5-9gxr-3299.json b/advisories/unreviewed/2022/05/GHSA-grc5-9gxr-3299/GHSA-grc5-9gxr-3299.json index 47ac7100f46..e7de7e4555c 100644 --- a/advisories/unreviewed/2022/05/GHSA-grc5-9gxr-3299/GHSA-grc5-9gxr-3299.json +++ b/advisories/unreviewed/2022/05/GHSA-grc5-9gxr-3299/GHSA-grc5-9gxr-3299.json @@ -7,12 +7,8 @@ "CVE-2014-3247" ], "details": "Cross-site scripting (XSS) vulnerability in Collabtive 1.2 allows remote authenticated users to inject arbitrary web script or HTML via the desc parameter in an Add project (addpro) action to admin.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-grgf-j3jj-cqpj/GHSA-grgf-j3jj-cqpj.json b/advisories/unreviewed/2022/05/GHSA-grgf-j3jj-cqpj/GHSA-grgf-j3jj-cqpj.json index 753f25ffd3c..99a2796b457 100644 --- a/advisories/unreviewed/2022/05/GHSA-grgf-j3jj-cqpj/GHSA-grgf-j3jj-cqpj.json +++ b/advisories/unreviewed/2022/05/GHSA-grgf-j3jj-cqpj/GHSA-grgf-j3jj-cqpj.json @@ -7,12 +7,8 @@ "CVE-2015-6752" ], "details": "Cross-site scripting (XSS) vulnerability in the Search API Autocomplete module 7.x-1.x before 7.x-1.3 for Drupal, when the search index is configured to use the HTML filter processor, allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via unspecified vectors, which are not properly handled in the returned suggestions.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gx2w-g9cv-hpp5/GHSA-gx2w-g9cv-hpp5.json b/advisories/unreviewed/2022/05/GHSA-gx2w-g9cv-hpp5/GHSA-gx2w-g9cv-hpp5.json index 005195a825f..00c5dc56775 100644 --- a/advisories/unreviewed/2022/05/GHSA-gx2w-g9cv-hpp5/GHSA-gx2w-g9cv-hpp5.json +++ b/advisories/unreviewed/2022/05/GHSA-gx2w-g9cv-hpp5/GHSA-gx2w-g9cv-hpp5.json @@ -7,12 +7,8 @@ "CVE-2015-0709" ], "details": "Cisco IOS 15.5S and IOS XE allow remote authenticated users to cause a denial of service (device crash) by leveraging knowledge of the RADIUS secret and sending crafted RADIUS packets, aka Bug ID CSCur21348.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gxgj-q4fv-gx77/GHSA-gxgj-q4fv-gx77.json b/advisories/unreviewed/2022/05/GHSA-gxgj-q4fv-gx77/GHSA-gxgj-q4fv-gx77.json index d7660e172d1..87d1fb8deb2 100644 --- a/advisories/unreviewed/2022/05/GHSA-gxgj-q4fv-gx77/GHSA-gxgj-q4fv-gx77.json +++ b/advisories/unreviewed/2022/05/GHSA-gxgj-q4fv-gx77/GHSA-gxgj-q4fv-gx77.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h2w9-fchx-p78j/GHSA-h2w9-fchx-p78j.json b/advisories/unreviewed/2022/05/GHSA-h2w9-fchx-p78j/GHSA-h2w9-fchx-p78j.json index 9ca1ff83c7e..7f295f7e581 100644 --- a/advisories/unreviewed/2022/05/GHSA-h2w9-fchx-p78j/GHSA-h2w9-fchx-p78j.json +++ b/advisories/unreviewed/2022/05/GHSA-h2w9-fchx-p78j/GHSA-h2w9-fchx-p78j.json @@ -7,12 +7,8 @@ "CVE-2015-4758" ], "details": "Unspecified vulnerability in the Oracle Data Integrator component in Oracle Fusion Middleware 11.1.1.3.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Data Quality based on Trillium, a different vulnerability than CVE-2015-0443, CVE-2015-0444, CVE-2015-0445, CVE-2015-0446, CVE-2015-2634, CVE-2015-2635, CVE-2015-2636, and CVE-2015-4759.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-h2x7-9hr9-34xw/GHSA-h2x7-9hr9-34xw.json b/advisories/unreviewed/2022/05/GHSA-h2x7-9hr9-34xw/GHSA-h2x7-9hr9-34xw.json index 65084c83435..d3ad699ad52 100644 --- a/advisories/unreviewed/2022/05/GHSA-h2x7-9hr9-34xw/GHSA-h2x7-9hr9-34xw.json +++ b/advisories/unreviewed/2022/05/GHSA-h2x7-9hr9-34xw/GHSA-h2x7-9hr9-34xw.json @@ -7,12 +7,8 @@ "CVE-2015-4287" ], "details": "Cisco Firepower Extensible Operating System 1.1(1.86) on Firepower 9000 devices allows remote attackers to bypass intended access restrictions and obtain sensitive device information by visiting an unspecified web page, aka Bug ID CSCuu82230.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-h39g-vhpw-8v8g/GHSA-h39g-vhpw-8v8g.json b/advisories/unreviewed/2022/05/GHSA-h39g-vhpw-8v8g/GHSA-h39g-vhpw-8v8g.json index 02b55ae79fe..498d8497969 100644 --- a/advisories/unreviewed/2022/05/GHSA-h39g-vhpw-8v8g/GHSA-h39g-vhpw-8v8g.json +++ b/advisories/unreviewed/2022/05/GHSA-h39g-vhpw-8v8g/GHSA-h39g-vhpw-8v8g.json @@ -7,12 +7,8 @@ "CVE-2015-4776" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-h4vr-mppx-f2fr/GHSA-h4vr-mppx-f2fr.json b/advisories/unreviewed/2022/05/GHSA-h4vr-mppx-f2fr/GHSA-h4vr-mppx-f2fr.json index 7144c5086c5..6e907674c1d 100644 --- a/advisories/unreviewed/2022/05/GHSA-h4vr-mppx-f2fr/GHSA-h4vr-mppx-f2fr.json +++ b/advisories/unreviewed/2022/05/GHSA-h4vr-mppx-f2fr/GHSA-h4vr-mppx-f2fr.json @@ -7,12 +7,8 @@ "CVE-2015-1066" ], "details": "Off-by-one error in IOAcceleratorFamily in Apple OS X through 10.10.2 allows attackers to execute arbitrary code in a privileged context via a crafted app.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-h4w9-5987-grq9/GHSA-h4w9-5987-grq9.json b/advisories/unreviewed/2022/05/GHSA-h4w9-5987-grq9/GHSA-h4w9-5987-grq9.json index 0b1edd396c7..5e0f032f7b9 100644 --- a/advisories/unreviewed/2022/05/GHSA-h4w9-5987-grq9/GHSA-h4w9-5987-grq9.json +++ b/advisories/unreviewed/2022/05/GHSA-h4w9-5987-grq9/GHSA-h4w9-5987-grq9.json @@ -7,12 +7,8 @@ "CVE-2015-5427" ], "details": "HP Matrix Operating Environment before 7.5.0 allows remote attackers to obtain sensitive information or modify data via unspecified vectors, a different vulnerability than CVE-2015-5428 and CVE-2015-5429.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-h57m-jqm8-q82f/GHSA-h57m-jqm8-q82f.json b/advisories/unreviewed/2022/05/GHSA-h57m-jqm8-q82f/GHSA-h57m-jqm8-q82f.json index 5e53a100cd4..6867ae08acf 100644 --- a/advisories/unreviewed/2022/05/GHSA-h57m-jqm8-q82f/GHSA-h57m-jqm8-q82f.json +++ b/advisories/unreviewed/2022/05/GHSA-h57m-jqm8-q82f/GHSA-h57m-jqm8-q82f.json @@ -7,12 +7,8 @@ "CVE-2015-2140" ], "details": "HP Systems Insight Manager (SIM) before 7.5.0, as used in HP Matrix Operating Environment before 7.5.0 and other products, allows remote authenticated users to obtain sensitive information or modify data via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h5f7-fgcg-w683/GHSA-h5f7-fgcg-w683.json b/advisories/unreviewed/2022/05/GHSA-h5f7-fgcg-w683/GHSA-h5f7-fgcg-w683.json index ff5369b6f6d..b66fa34dd31 100644 --- a/advisories/unreviewed/2022/05/GHSA-h5f7-fgcg-w683/GHSA-h5f7-fgcg-w683.json +++ b/advisories/unreviewed/2022/05/GHSA-h5f7-fgcg-w683/GHSA-h5f7-fgcg-w683.json @@ -7,12 +7,8 @@ "CVE-2014-2975" ], "details": "Cross-site scripting (XSS) vulnerability in php/user_account.php in Silver Peak VX before 6.2.4 allows remote attackers to inject arbitrary web script or HTML via the user_id parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h5p3-6ppq-r5h3/GHSA-h5p3-6ppq-r5h3.json b/advisories/unreviewed/2022/05/GHSA-h5p3-6ppq-r5h3/GHSA-h5p3-6ppq-r5h3.json index ef56ca05780..e970c16f891 100644 --- a/advisories/unreviewed/2022/05/GHSA-h5p3-6ppq-r5h3/GHSA-h5p3-6ppq-r5h3.json +++ b/advisories/unreviewed/2022/05/GHSA-h5p3-6ppq-r5h3/GHSA-h5p3-6ppq-r5h3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h655-555w-3pm8/GHSA-h655-555w-3pm8.json b/advisories/unreviewed/2022/05/GHSA-h655-555w-3pm8/GHSA-h655-555w-3pm8.json index 2fa7febd1b1..e423e07e3b6 100644 --- a/advisories/unreviewed/2022/05/GHSA-h655-555w-3pm8/GHSA-h655-555w-3pm8.json +++ b/advisories/unreviewed/2022/05/GHSA-h655-555w-3pm8/GHSA-h655-555w-3pm8.json @@ -7,12 +7,8 @@ "CVE-2015-2976" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in Research Artisan Lite before 1.18 allow remote attackers to inject arbitrary web script or HTML via (1) a crafted HTML document or (2) a crafted URL that is mishandled during access-log analysis.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h79r-6v3m-rwjv/GHSA-h79r-6v3m-rwjv.json b/advisories/unreviewed/2022/05/GHSA-h79r-6v3m-rwjv/GHSA-h79r-6v3m-rwjv.json index 57f5a7890a2..0af03b17d4f 100644 --- a/advisories/unreviewed/2022/05/GHSA-h79r-6v3m-rwjv/GHSA-h79r-6v3m-rwjv.json +++ b/advisories/unreviewed/2022/05/GHSA-h79r-6v3m-rwjv/GHSA-h79r-6v3m-rwjv.json @@ -7,12 +7,8 @@ "CVE-2015-4590" ], "details": "The extractFrom function in Internals/QuotedString.cpp in Arduino JSON before 4.5 allows remote attackers to cause a denial of service (crash) via a JSON string with a \\ (backslash) followed by a terminator, as demonstrated by \"\\\\\\0\", which triggers a buffer overflow and over-read.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h7h7-mgpq-r7gq/GHSA-h7h7-mgpq-r7gq.json b/advisories/unreviewed/2022/05/GHSA-h7h7-mgpq-r7gq/GHSA-h7h7-mgpq-r7gq.json index 4eac529cef1..b164d4327e6 100644 --- a/advisories/unreviewed/2022/05/GHSA-h7h7-mgpq-r7gq/GHSA-h7h7-mgpq-r7gq.json +++ b/advisories/unreviewed/2022/05/GHSA-h7h7-mgpq-r7gq/GHSA-h7h7-mgpq-r7gq.json @@ -7,12 +7,8 @@ "CVE-2014-5316" ], "details": "Cross-site scripting (XSS) vulnerability in Dotclear before 2.6.4 allows remote attackers to inject arbitrary web script or HTML via a crafted page.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h7rg-5f4j-cw3v/GHSA-h7rg-5f4j-cw3v.json b/advisories/unreviewed/2022/05/GHSA-h7rg-5f4j-cw3v/GHSA-h7rg-5f4j-cw3v.json index 20cceee71e2..bdc7b576e33 100644 --- a/advisories/unreviewed/2022/05/GHSA-h7rg-5f4j-cw3v/GHSA-h7rg-5f4j-cw3v.json +++ b/advisories/unreviewed/2022/05/GHSA-h7rg-5f4j-cw3v/GHSA-h7rg-5f4j-cw3v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h83x-38m4-m38j/GHSA-h83x-38m4-m38j.json b/advisories/unreviewed/2022/05/GHSA-h83x-38m4-m38j/GHSA-h83x-38m4-m38j.json index 8c18f506575..2992ca73fd6 100644 --- a/advisories/unreviewed/2022/05/GHSA-h83x-38m4-m38j/GHSA-h83x-38m4-m38j.json +++ b/advisories/unreviewed/2022/05/GHSA-h83x-38m4-m38j/GHSA-h83x-38m4-m38j.json @@ -7,12 +7,8 @@ "CVE-2015-4289" ], "details": "Directory traversal vulnerability in Cisco AnyConnect Secure Mobility Client 4.0(2049) allows remote head-end systems to write to arbitrary files via a crafted configuration attribute, aka Bug ID CSCut93920.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h888-5h22-5pfq/GHSA-h888-5h22-5pfq.json b/advisories/unreviewed/2022/05/GHSA-h888-5h22-5pfq/GHSA-h888-5h22-5pfq.json index ba47fae9103..6f67b50e532 100644 --- a/advisories/unreviewed/2022/05/GHSA-h888-5h22-5pfq/GHSA-h888-5h22-5pfq.json +++ b/advisories/unreviewed/2022/05/GHSA-h888-5h22-5pfq/GHSA-h888-5h22-5pfq.json @@ -7,12 +7,8 @@ "CVE-2015-2626" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-h8gj-rgqf-fpq3/GHSA-h8gj-rgqf-fpq3.json b/advisories/unreviewed/2022/05/GHSA-h8gj-rgqf-fpq3/GHSA-h8gj-rgqf-fpq3.json index 087f88eec4c..af978dabc86 100644 --- a/advisories/unreviewed/2022/05/GHSA-h8gj-rgqf-fpq3/GHSA-h8gj-rgqf-fpq3.json +++ b/advisories/unreviewed/2022/05/GHSA-h8gj-rgqf-fpq3/GHSA-h8gj-rgqf-fpq3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h9m2-392c-p78g/GHSA-h9m2-392c-p78g.json b/advisories/unreviewed/2022/05/GHSA-h9m2-392c-p78g/GHSA-h9m2-392c-p78g.json index b751bcdf9f7..571f752f287 100644 --- a/advisories/unreviewed/2022/05/GHSA-h9m2-392c-p78g/GHSA-h9m2-392c-p78g.json +++ b/advisories/unreviewed/2022/05/GHSA-h9m2-392c-p78g/GHSA-h9m2-392c-p78g.json @@ -7,12 +7,8 @@ "CVE-2015-1009" ], "details": "Schneider Electric InduSoft Web Studio before 7.1.3.5 Patch 5 and Wonderware InTouch Machine Edition through 7.1 SP3 Patch 4 use cleartext for project-window password storage, which allows local users to obtain sensitive information by reading a file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hcmx-443w-mr76/GHSA-hcmx-443w-mr76.json b/advisories/unreviewed/2022/05/GHSA-hcmx-443w-mr76/GHSA-hcmx-443w-mr76.json index 5cf9fd5a8a7..adf43f859a0 100644 --- a/advisories/unreviewed/2022/05/GHSA-hcmx-443w-mr76/GHSA-hcmx-443w-mr76.json +++ b/advisories/unreviewed/2022/05/GHSA-hcmx-443w-mr76/GHSA-hcmx-443w-mr76.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hcqc-vgvv-6qvv/GHSA-hcqc-vgvv-6qvv.json b/advisories/unreviewed/2022/05/GHSA-hcqc-vgvv-6qvv/GHSA-hcqc-vgvv-6qvv.json index 52cfc4c8823..a94aa1062ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-hcqc-vgvv-6qvv/GHSA-hcqc-vgvv-6qvv.json +++ b/advisories/unreviewed/2022/05/GHSA-hcqc-vgvv-6qvv/GHSA-hcqc-vgvv-6qvv.json @@ -7,12 +7,8 @@ "CVE-2014-8987" ], "details": "Cross-site scripting (XSS) vulnerability in the \"set configuration\" box in the Configuration Report page (adm_config_report.php) in MantisBT 1.2.13 through 1.2.17 allows remote administrators to inject arbitrary web script or HTML via the config_option parameter, a different vulnerability than CVE-2014-8986.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hf2v-h5xv-3j25/GHSA-hf2v-h5xv-3j25.json b/advisories/unreviewed/2022/05/GHSA-hf2v-h5xv-3j25/GHSA-hf2v-h5xv-3j25.json index 90908bd4dab..0092b2c682f 100644 --- a/advisories/unreviewed/2022/05/GHSA-hf2v-h5xv-3j25/GHSA-hf2v-h5xv-3j25.json +++ b/advisories/unreviewed/2022/05/GHSA-hf2v-h5xv-3j25/GHSA-hf2v-h5xv-3j25.json @@ -7,12 +7,8 @@ "CVE-2014-0341" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in PivotX before 2.3.9 allow remote authenticated users to inject arbitrary web script or HTML via the title field to (1) templates_internal/pages.tpl, (2) templates_internal/home.tpl, or (3) templates_internal/entries.tpl; (4) an event field to objects.php; or the (5) email or (6) nickname field to pages.php, related to templates_internal/users.tpl.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hf4r-6f6g-9rgp/GHSA-hf4r-6f6g-9rgp.json b/advisories/unreviewed/2022/05/GHSA-hf4r-6f6g-9rgp/GHSA-hf4r-6f6g-9rgp.json index c39e58aec34..5adb2678b17 100644 --- a/advisories/unreviewed/2022/05/GHSA-hf4r-6f6g-9rgp/GHSA-hf4r-6f6g-9rgp.json +++ b/advisories/unreviewed/2022/05/GHSA-hf4r-6f6g-9rgp/GHSA-hf4r-6f6g-9rgp.json @@ -7,12 +7,8 @@ "CVE-2015-0298" ], "details": "Cross-site scripting (XSS) vulnerability in the manager web interface in mod_cluster before 1.3.2.Alpha1 allows remote attackers to inject arbitrary web script or HTML via a crafted MCMP message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hf5m-9h24-wphr/GHSA-hf5m-9h24-wphr.json b/advisories/unreviewed/2022/05/GHSA-hf5m-9h24-wphr/GHSA-hf5m-9h24-wphr.json index 7a8880afb34..acab45374c2 100644 --- a/advisories/unreviewed/2022/05/GHSA-hf5m-9h24-wphr/GHSA-hf5m-9h24-wphr.json +++ b/advisories/unreviewed/2022/05/GHSA-hf5m-9h24-wphr/GHSA-hf5m-9h24-wphr.json @@ -7,12 +7,8 @@ "CVE-2014-2022" ], "details": "SQL injection vulnerability in includes/api/4/breadcrumbs_create.php in vBulletin 4.2.2, 4.2.1, 4.2.0 PL2, and earlier allows remote authenticated users to execute arbitrary SQL commands via the conceptid argument in an xmlrpc API request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hfhw-7f56-wvpg/GHSA-hfhw-7f56-wvpg.json b/advisories/unreviewed/2022/05/GHSA-hfhw-7f56-wvpg/GHSA-hfhw-7f56-wvpg.json index a0823d197d9..28a6831b5a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-hfhw-7f56-wvpg/GHSA-hfhw-7f56-wvpg.json +++ b/advisories/unreviewed/2022/05/GHSA-hfhw-7f56-wvpg/GHSA-hfhw-7f56-wvpg.json @@ -7,12 +7,8 @@ "CVE-2014-4645" ], "details": "Cross-site scripting (XSS) vulnerability in dhcpinfo.html in D-link DSL-2760U-E1 allows remote attackers to inject arbitrary web script or HTML via a hostname.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hg45-2x75-x75f/GHSA-hg45-2x75-x75f.json b/advisories/unreviewed/2022/05/GHSA-hg45-2x75-x75f/GHSA-hg45-2x75-x75f.json index 86359b4a6f1..9621760c905 100644 --- a/advisories/unreviewed/2022/05/GHSA-hg45-2x75-x75f/GHSA-hg45-2x75-x75f.json +++ b/advisories/unreviewed/2022/05/GHSA-hg45-2x75-x75f/GHSA-hg45-2x75-x75f.json @@ -7,12 +7,8 @@ "CVE-2014-3738" ], "details": "Cross-site scripting (XSS) vulnerability in Zenoss 4.2.5 allows remote attackers to inject arbitrary web script or HTML via the title of a device.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hgwj-r4jx-pr26/GHSA-hgwj-r4jx-pr26.json b/advisories/unreviewed/2022/05/GHSA-hgwj-r4jx-pr26/GHSA-hgwj-r4jx-pr26.json index cec2f94c5b0..2b451330c01 100644 --- a/advisories/unreviewed/2022/05/GHSA-hgwj-r4jx-pr26/GHSA-hgwj-r4jx-pr26.json +++ b/advisories/unreviewed/2022/05/GHSA-hgwj-r4jx-pr26/GHSA-hgwj-r4jx-pr26.json @@ -7,12 +7,8 @@ "CVE-2014-2235" ], "details": "Cross-site scripting (XSS) vulnerability in Askbot before 0.7.49 allows remote attackers to inject arbitrary web script or HTML via vectors related to the question search form.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hh5g-p7p2-7xqp/GHSA-hh5g-p7p2-7xqp.json b/advisories/unreviewed/2022/05/GHSA-hh5g-p7p2-7xqp/GHSA-hh5g-p7p2-7xqp.json index 03a37ee8c7c..327c3eaba67 100644 --- a/advisories/unreviewed/2022/05/GHSA-hh5g-p7p2-7xqp/GHSA-hh5g-p7p2-7xqp.json +++ b/advisories/unreviewed/2022/05/GHSA-hh5g-p7p2-7xqp/GHSA-hh5g-p7p2-7xqp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hhmg-2vxj-p78m/GHSA-hhmg-2vxj-p78m.json b/advisories/unreviewed/2022/05/GHSA-hhmg-2vxj-p78m/GHSA-hhmg-2vxj-p78m.json index b234419e490..8c368220cc8 100644 --- a/advisories/unreviewed/2022/05/GHSA-hhmg-2vxj-p78m/GHSA-hhmg-2vxj-p78m.json +++ b/advisories/unreviewed/2022/05/GHSA-hhmg-2vxj-p78m/GHSA-hhmg-2vxj-p78m.json @@ -7,12 +7,8 @@ "CVE-2015-5431" ], "details": "HP Matrix Operating Environment before 7.5.0 allows remote authenticated users to obtain sensitive information or modify data via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-hj78-295g-pjc3/GHSA-hj78-295g-pjc3.json b/advisories/unreviewed/2022/05/GHSA-hj78-295g-pjc3/GHSA-hj78-295g-pjc3.json index eab62dac215..e959ca11a7b 100644 --- a/advisories/unreviewed/2022/05/GHSA-hj78-295g-pjc3/GHSA-hj78-295g-pjc3.json +++ b/advisories/unreviewed/2022/05/GHSA-hj78-295g-pjc3/GHSA-hj78-295g-pjc3.json @@ -7,12 +7,8 @@ "CVE-2014-4587" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the WP GuestMap plugin 1.8 and earlier for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) zl, (2) mt, or (3) dc parameter to guest-locator.php; the (4) zl, (5) mt, (6) activate, or (7) dc parameter to online-tracker.php; the (8) zl, (9) mt, or (10) dc parameter to stats-map.php; or the (11) zl, (12) mt, (13) activate, or (14) dc parameter to weather-map.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hj7p-cfqg-6326/GHSA-hj7p-cfqg-6326.json b/advisories/unreviewed/2022/05/GHSA-hj7p-cfqg-6326/GHSA-hj7p-cfqg-6326.json index 9389d79d1f5..711df69dfdd 100644 --- a/advisories/unreviewed/2022/05/GHSA-hj7p-cfqg-6326/GHSA-hj7p-cfqg-6326.json +++ b/advisories/unreviewed/2022/05/GHSA-hj7p-cfqg-6326/GHSA-hj7p-cfqg-6326.json @@ -7,12 +7,8 @@ "CVE-2014-4847" ], "details": "Cross-site scripting (XSS) vulnerability in the Random Banner plugin 1.1.2.1 for WordPress allows remote attackers to inject arbitrary web script or HTML via the buffercode_RBanner_url_banner1 parameter in an update action to wp-admin/options.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hjj6-gq2r-v84q/GHSA-hjj6-gq2r-v84q.json b/advisories/unreviewed/2022/05/GHSA-hjj6-gq2r-v84q/GHSA-hjj6-gq2r-v84q.json index 73e93c9d78c..c1b42e829ca 100644 --- a/advisories/unreviewed/2022/05/GHSA-hjj6-gq2r-v84q/GHSA-hjj6-gq2r-v84q.json +++ b/advisories/unreviewed/2022/05/GHSA-hjj6-gq2r-v84q/GHSA-hjj6-gq2r-v84q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hpcx-4gwg-rjp5/GHSA-hpcx-4gwg-rjp5.json b/advisories/unreviewed/2022/05/GHSA-hpcx-4gwg-rjp5/GHSA-hpcx-4gwg-rjp5.json index 46ebd31ce04..3c6f193a18b 100644 --- a/advisories/unreviewed/2022/05/GHSA-hpcx-4gwg-rjp5/GHSA-hpcx-4gwg-rjp5.json +++ b/advisories/unreviewed/2022/05/GHSA-hpcx-4gwg-rjp5/GHSA-hpcx-4gwg-rjp5.json @@ -7,12 +7,8 @@ "CVE-2013-6321" ], "details": "SQL injection vulnerability in IBM Atlas eDiscovery Process Management 6.0.1.5 and earlier and 6.0.2, Disposal and Governance Management for IT 6.0.1.5 and earlier and 6.0.2, and Global Retention Policy and Schedule Management 6.0.1.5 and earlier and 6.0.2 in IBM Atlas Suite (aka Atlas Policy Suite) allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hpm2-jv2j-5jqq/GHSA-hpm2-jv2j-5jqq.json b/advisories/unreviewed/2022/05/GHSA-hpm2-jv2j-5jqq/GHSA-hpm2-jv2j-5jqq.json index 7343092a275..9591c5c9cdf 100644 --- a/advisories/unreviewed/2022/05/GHSA-hpm2-jv2j-5jqq/GHSA-hpm2-jv2j-5jqq.json +++ b/advisories/unreviewed/2022/05/GHSA-hpm2-jv2j-5jqq/GHSA-hpm2-jv2j-5jqq.json @@ -7,12 +7,8 @@ "CVE-2014-4545" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in pq_dialog.php in the Pro Quoter plugin 1.0 and earlier for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) leftorright or (2) author parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hpxf-p4cq-3843/GHSA-hpxf-p4cq-3843.json b/advisories/unreviewed/2022/05/GHSA-hpxf-p4cq-3843/GHSA-hpxf-p4cq-3843.json index af6c26e9064..8cf2531416a 100644 --- a/advisories/unreviewed/2022/05/GHSA-hpxf-p4cq-3843/GHSA-hpxf-p4cq-3843.json +++ b/advisories/unreviewed/2022/05/GHSA-hpxf-p4cq-3843/GHSA-hpxf-p4cq-3843.json @@ -7,12 +7,8 @@ "CVE-2014-0620" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in Technicolor (formerly Thomson) TC7200 STD6.01.12 allow remote attackers to inject arbitrary web script or HTML via the (1) ADDNewDomain parameter to parental/website-filters.asp or (2) VmTracerouteHost parameter to goform/status/diagnostics-route.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hq6m-8fcw-g2rc/GHSA-hq6m-8fcw-g2rc.json b/advisories/unreviewed/2022/05/GHSA-hq6m-8fcw-g2rc/GHSA-hq6m-8fcw-g2rc.json index 1c7dd4518eb..8dd6e0a5885 100644 --- a/advisories/unreviewed/2022/05/GHSA-hq6m-8fcw-g2rc/GHSA-hq6m-8fcw-g2rc.json +++ b/advisories/unreviewed/2022/05/GHSA-hq6m-8fcw-g2rc/GHSA-hq6m-8fcw-g2rc.json @@ -7,12 +7,8 @@ "CVE-2012-5965" ], "details": "Stack-based buffer overflow in the unique_service_name function in ssdp/ssdp_server.c in the SSDP parser in the portable SDK for UPnP Devices (aka libupnp, formerly the Intel SDK for UPnP devices) 1.3.1 allows remote attackers to execute arbitrary code via a long DeviceType (aka urn device) field in a UDP packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hqcv-x8w5-9578/GHSA-hqcv-x8w5-9578.json b/advisories/unreviewed/2022/05/GHSA-hqcv-x8w5-9578/GHSA-hqcv-x8w5-9578.json index 9f84b3d4b74..595b3127a2b 100644 --- a/advisories/unreviewed/2022/05/GHSA-hqcv-x8w5-9578/GHSA-hqcv-x8w5-9578.json +++ b/advisories/unreviewed/2022/05/GHSA-hqcv-x8w5-9578/GHSA-hqcv-x8w5-9578.json @@ -7,12 +7,8 @@ "CVE-2015-6921" ], "details": "Cross-site scripting (XSS) vulnerability in the Zendesk Feedback Tab module 7.x-1.x before 7.x-1.1 for Drupal allows remote administrators with the \"Configure Zendesk Feedback Tab\" permission to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hr23-r85w-j998/GHSA-hr23-r85w-j998.json b/advisories/unreviewed/2022/05/GHSA-hr23-r85w-j998/GHSA-hr23-r85w-j998.json index 2bb5361db8c..ec0bdaea2c1 100644 --- a/advisories/unreviewed/2022/05/GHSA-hr23-r85w-j998/GHSA-hr23-r85w-j998.json +++ b/advisories/unreviewed/2022/05/GHSA-hr23-r85w-j998/GHSA-hr23-r85w-j998.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hr68-cgxf-wrr4/GHSA-hr68-cgxf-wrr4.json b/advisories/unreviewed/2022/05/GHSA-hr68-cgxf-wrr4/GHSA-hr68-cgxf-wrr4.json index 4843a7c47c7..3726b0f479a 100644 --- a/advisories/unreviewed/2022/05/GHSA-hr68-cgxf-wrr4/GHSA-hr68-cgxf-wrr4.json +++ b/advisories/unreviewed/2022/05/GHSA-hr68-cgxf-wrr4/GHSA-hr68-cgxf-wrr4.json @@ -7,12 +7,8 @@ "CVE-2015-2905" ], "details": "Cross-site request forgery (CSRF) vulnerability on Actiontec GT784WN modems with firmware before NCS01-1.0.13 allows remote attackers to hijack the authentication or intranet connectivity of arbitrary users.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hv48-76w3-p5fp/GHSA-hv48-76w3-p5fp.json b/advisories/unreviewed/2022/05/GHSA-hv48-76w3-p5fp/GHSA-hv48-76w3-p5fp.json index cc077cc1bb9..8379e83d8c8 100644 --- a/advisories/unreviewed/2022/05/GHSA-hv48-76w3-p5fp/GHSA-hv48-76w3-p5fp.json +++ b/advisories/unreviewed/2022/05/GHSA-hv48-76w3-p5fp/GHSA-hv48-76w3-p5fp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hx2x-p3w3-x6vh/GHSA-hx2x-p3w3-x6vh.json b/advisories/unreviewed/2022/05/GHSA-hx2x-p3w3-x6vh/GHSA-hx2x-p3w3-x6vh.json index 25532ec1dfe..ca149ecbe83 100644 --- a/advisories/unreviewed/2022/05/GHSA-hx2x-p3w3-x6vh/GHSA-hx2x-p3w3-x6vh.json +++ b/advisories/unreviewed/2022/05/GHSA-hx2x-p3w3-x6vh/GHSA-hx2x-p3w3-x6vh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hx97-m8rh-4crv/GHSA-hx97-m8rh-4crv.json b/advisories/unreviewed/2022/05/GHSA-hx97-m8rh-4crv/GHSA-hx97-m8rh-4crv.json index 9a2a715112f..7411c7d87a6 100644 --- a/advisories/unreviewed/2022/05/GHSA-hx97-m8rh-4crv/GHSA-hx97-m8rh-4crv.json +++ b/advisories/unreviewed/2022/05/GHSA-hx97-m8rh-4crv/GHSA-hx97-m8rh-4crv.json @@ -7,12 +7,8 @@ "CVE-2015-6743" ], "details": "Basware Banking (Maksuliikenne) 8.90.07.X uses a hardcoded password for an unspecified account, which allows remote authenticated users to bypass intended access restrictions by leveraging knowledge of this password. NOTE: this identifier was SPLIT from CVE-2015-0942 per ADT2 and ADT3 due to different vulnerability types and different affected versions.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-hxjm-95v4-6qjj/GHSA-hxjm-95v4-6qjj.json b/advisories/unreviewed/2022/05/GHSA-hxjm-95v4-6qjj/GHSA-hxjm-95v4-6qjj.json index d1ab2ce18aa..deccca5eebb 100644 --- a/advisories/unreviewed/2022/05/GHSA-hxjm-95v4-6qjj/GHSA-hxjm-95v4-6qjj.json +++ b/advisories/unreviewed/2022/05/GHSA-hxjm-95v4-6qjj/GHSA-hxjm-95v4-6qjj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j28j-mmv9-g2wx/GHSA-j28j-mmv9-g2wx.json b/advisories/unreviewed/2022/05/GHSA-j28j-mmv9-g2wx/GHSA-j28j-mmv9-g2wx.json index df306b26337..d3c856d8387 100644 --- a/advisories/unreviewed/2022/05/GHSA-j28j-mmv9-g2wx/GHSA-j28j-mmv9-g2wx.json +++ b/advisories/unreviewed/2022/05/GHSA-j28j-mmv9-g2wx/GHSA-j28j-mmv9-g2wx.json @@ -7,12 +7,8 @@ "CVE-2012-4716" ], "details": "N-Tron 702-W Industrial Wireless Access Point devices use the same (1) SSH and (2) HTTPS private keys across different customers' installations, which makes it easier for remote attackers to defeat cryptographic protection mechanisms by leveraging knowledge of a key.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-j2rj-398q-h59m/GHSA-j2rj-398q-h59m.json b/advisories/unreviewed/2022/05/GHSA-j2rj-398q-h59m/GHSA-j2rj-398q-h59m.json index f5cf8408672..d4cd9ead517 100644 --- a/advisories/unreviewed/2022/05/GHSA-j2rj-398q-h59m/GHSA-j2rj-398q-h59m.json +++ b/advisories/unreviewed/2022/05/GHSA-j2rj-398q-h59m/GHSA-j2rj-398q-h59m.json @@ -7,12 +7,8 @@ "CVE-2015-0169" ], "details": "IBM Security SiteProtector System 3.0 before 3.0.0.7, 3.1 before 3.1.0.4, and 3.1.1 before 3.1.1.2 allows remote authenticated users to inject arguments via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j2x5-69mm-hfg9/GHSA-j2x5-69mm-hfg9.json b/advisories/unreviewed/2022/05/GHSA-j2x5-69mm-hfg9/GHSA-j2x5-69mm-hfg9.json index 1a8ef7d2d94..04d06e10a0b 100644 --- a/advisories/unreviewed/2022/05/GHSA-j2x5-69mm-hfg9/GHSA-j2x5-69mm-hfg9.json +++ b/advisories/unreviewed/2022/05/GHSA-j2x5-69mm-hfg9/GHSA-j2x5-69mm-hfg9.json @@ -7,12 +7,8 @@ "CVE-2014-0728" ], "details": "SQL injection vulnerability in the Java database interface in Cisco Unified Communications Manager (UCM) 10.0(1) and earlier allows remote attackers to execute arbitrary SQL commands via a crafted URL, aka Bug ID CSCum05313.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j352-5rrc-rrwv/GHSA-j352-5rrc-rrwv.json b/advisories/unreviewed/2022/05/GHSA-j352-5rrc-rrwv/GHSA-j352-5rrc-rrwv.json index af79b260b80..1439e7605d6 100644 --- a/advisories/unreviewed/2022/05/GHSA-j352-5rrc-rrwv/GHSA-j352-5rrc-rrwv.json +++ b/advisories/unreviewed/2022/05/GHSA-j352-5rrc-rrwv/GHSA-j352-5rrc-rrwv.json @@ -7,12 +7,8 @@ "CVE-2014-8761" ], "details": "inc/template.php in DokuWiki before 2014-05-05a only checks for access to the root namespace, which allows remote attackers to access arbitrary images via a media file details ajax call.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j5rf-f2r8-v4j5/GHSA-j5rf-f2r8-v4j5.json b/advisories/unreviewed/2022/05/GHSA-j5rf-f2r8-v4j5/GHSA-j5rf-f2r8-v4j5.json index 3487ae555f7..70f52875361 100644 --- a/advisories/unreviewed/2022/05/GHSA-j5rf-f2r8-v4j5/GHSA-j5rf-f2r8-v4j5.json +++ b/advisories/unreviewed/2022/05/GHSA-j5rf-f2r8-v4j5/GHSA-j5rf-f2r8-v4j5.json @@ -7,12 +7,8 @@ "CVE-2015-6746" ], "details": "Basware Banking (Maksuliikenne) before 8.90.07.X stores private keys in plaintext in the SQL database, which allows remote attackers to spoof communications with banks via unspecified vectors. NOTE: this identifier was SPLIT from CVE-2015-0942 per ADT2 due to different vulnerability types.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j5xf-xfvf-pjw6/GHSA-j5xf-xfvf-pjw6.json b/advisories/unreviewed/2022/05/GHSA-j5xf-xfvf-pjw6/GHSA-j5xf-xfvf-pjw6.json index a842bd66188..8e1e63ae343 100644 --- a/advisories/unreviewed/2022/05/GHSA-j5xf-xfvf-pjw6/GHSA-j5xf-xfvf-pjw6.json +++ b/advisories/unreviewed/2022/05/GHSA-j5xf-xfvf-pjw6/GHSA-j5xf-xfvf-pjw6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j639-c36q-pprv/GHSA-j639-c36q-pprv.json b/advisories/unreviewed/2022/05/GHSA-j639-c36q-pprv/GHSA-j639-c36q-pprv.json index 9321a243990..d1da70c0492 100644 --- a/advisories/unreviewed/2022/05/GHSA-j639-c36q-pprv/GHSA-j639-c36q-pprv.json +++ b/advisories/unreviewed/2022/05/GHSA-j639-c36q-pprv/GHSA-j639-c36q-pprv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-j68m-6r2h-f9q9/GHSA-j68m-6r2h-f9q9.json b/advisories/unreviewed/2022/05/GHSA-j68m-6r2h-f9q9/GHSA-j68m-6r2h-f9q9.json index e50bce1303b..cf4ca8be8ca 100644 --- a/advisories/unreviewed/2022/05/GHSA-j68m-6r2h-f9q9/GHSA-j68m-6r2h-f9q9.json +++ b/advisories/unreviewed/2022/05/GHSA-j68m-6r2h-f9q9/GHSA-j68m-6r2h-f9q9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-j77p-6wx9-cjqq/GHSA-j77p-6wx9-cjqq.json b/advisories/unreviewed/2022/05/GHSA-j77p-6wx9-cjqq/GHSA-j77p-6wx9-cjqq.json index e37e4eeba6f..a491edc074a 100644 --- a/advisories/unreviewed/2022/05/GHSA-j77p-6wx9-cjqq/GHSA-j77p-6wx9-cjqq.json +++ b/advisories/unreviewed/2022/05/GHSA-j77p-6wx9-cjqq/GHSA-j77p-6wx9-cjqq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j7fj-3fx3-pr27/GHSA-j7fj-3fx3-pr27.json b/advisories/unreviewed/2022/05/GHSA-j7fj-3fx3-pr27/GHSA-j7fj-3fx3-pr27.json index 7c224a098b7..8012c69e3d5 100644 --- a/advisories/unreviewed/2022/05/GHSA-j7fj-3fx3-pr27/GHSA-j7fj-3fx3-pr27.json +++ b/advisories/unreviewed/2022/05/GHSA-j7fj-3fx3-pr27/GHSA-j7fj-3fx3-pr27.json @@ -7,12 +7,8 @@ "CVE-2014-8488" ], "details": "Cross-site scripting (XSS) vulnerability in the administrator panel in Yourls 1.7 allows remote attackers to inject arbitrary web script or HTML via a URL that is processed by the Shorten functionality.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j7px-qrmw-j56r/GHSA-j7px-qrmw-j56r.json b/advisories/unreviewed/2022/05/GHSA-j7px-qrmw-j56r/GHSA-j7px-qrmw-j56r.json index 25618ff7007..43dda05258e 100644 --- a/advisories/unreviewed/2022/05/GHSA-j7px-qrmw-j56r/GHSA-j7px-qrmw-j56r.json +++ b/advisories/unreviewed/2022/05/GHSA-j7px-qrmw-j56r/GHSA-j7px-qrmw-j56r.json @@ -7,12 +7,8 @@ "CVE-2015-4360" ], "details": "Cross-site request forgery (CSRF) vulnerability in the Registration codes module before 6.x-1.6, 6.x-2.x before 6.x-2.8, and 7.x-1.x before 7.x-1.2 for Drupal allows remote attackers to hijack the authentication of administrators for requests that delete role-rules via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j973-jpjq-pcvp/GHSA-j973-jpjq-pcvp.json b/advisories/unreviewed/2022/05/GHSA-j973-jpjq-pcvp/GHSA-j973-jpjq-pcvp.json index 6238fdf01ae..832b8ed37c6 100644 --- a/advisories/unreviewed/2022/05/GHSA-j973-jpjq-pcvp/GHSA-j973-jpjq-pcvp.json +++ b/advisories/unreviewed/2022/05/GHSA-j973-jpjq-pcvp/GHSA-j973-jpjq-pcvp.json @@ -7,12 +7,8 @@ "CVE-2012-5559" ], "details": "Cross-site scripting (XSS) vulnerability in the page manager node view task in the Chaos tool suite (ctools) module 6.x-1.x before 6.x-1.10 for Drupal allows remote authenticated users with permissions to submit or edit nodes to inject arbitrary web script or HTML via the page title.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j9rw-93pg-vf76/GHSA-j9rw-93pg-vf76.json b/advisories/unreviewed/2022/05/GHSA-j9rw-93pg-vf76/GHSA-j9rw-93pg-vf76.json index 874b0c8c8c1..9401c87c022 100644 --- a/advisories/unreviewed/2022/05/GHSA-j9rw-93pg-vf76/GHSA-j9rw-93pg-vf76.json +++ b/advisories/unreviewed/2022/05/GHSA-j9rw-93pg-vf76/GHSA-j9rw-93pg-vf76.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jcf7-fmj5-hfw7/GHSA-jcf7-fmj5-hfw7.json b/advisories/unreviewed/2022/05/GHSA-jcf7-fmj5-hfw7/GHSA-jcf7-fmj5-hfw7.json index 089d222f6f8..f9835715caf 100644 --- a/advisories/unreviewed/2022/05/GHSA-jcf7-fmj5-hfw7/GHSA-jcf7-fmj5-hfw7.json +++ b/advisories/unreviewed/2022/05/GHSA-jcf7-fmj5-hfw7/GHSA-jcf7-fmj5-hfw7.json @@ -7,12 +7,8 @@ "CVE-2014-2947" ], "details": "Cross-site scripting (XSS) vulnerability in Login.aspx in Bizagi BPM Suite before 10.3 allows remote attackers to inject arbitrary web script or HTML via the txtUsername parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jf8j-hmx6-pcgf/GHSA-jf8j-hmx6-pcgf.json b/advisories/unreviewed/2022/05/GHSA-jf8j-hmx6-pcgf/GHSA-jf8j-hmx6-pcgf.json index cf76a56d799..a4ae45b845d 100644 --- a/advisories/unreviewed/2022/05/GHSA-jf8j-hmx6-pcgf/GHSA-jf8j-hmx6-pcgf.json +++ b/advisories/unreviewed/2022/05/GHSA-jf8j-hmx6-pcgf/GHSA-jf8j-hmx6-pcgf.json @@ -7,12 +7,8 @@ "CVE-2015-0664" ], "details": "The IPC channel in Cisco AnyConnect Secure Mobility Client 4.0(.00051) and earlier allows local users to write to arbitrary userspace memory locations, and consequently gain privileges, via crafted messages, aka Bug ID CSCus79195.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jfmx-372g-p92r/GHSA-jfmx-372g-p92r.json b/advisories/unreviewed/2022/05/GHSA-jfmx-372g-p92r/GHSA-jfmx-372g-p92r.json index 3d453fbd65e..df426c2ad37 100644 --- a/advisories/unreviewed/2022/05/GHSA-jfmx-372g-p92r/GHSA-jfmx-372g-p92r.json +++ b/advisories/unreviewed/2022/05/GHSA-jfmx-372g-p92r/GHSA-jfmx-372g-p92r.json @@ -7,12 +7,8 @@ "CVE-2014-4845" ], "details": "Cross-site scripting (XSS) vulnerability in the BannerMan plugin 0.2.4 for WordPress allows remote attackers to inject arbitrary web script or HTML via the bannerman_background parameter to wp-admin/options-general.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jh8x-p66q-m6jw/GHSA-jh8x-p66q-m6jw.json b/advisories/unreviewed/2022/05/GHSA-jh8x-p66q-m6jw/GHSA-jh8x-p66q-m6jw.json index 8dbdd48e558..57d3dae1dfb 100644 --- a/advisories/unreviewed/2022/05/GHSA-jh8x-p66q-m6jw/GHSA-jh8x-p66q-m6jw.json +++ b/advisories/unreviewed/2022/05/GHSA-jh8x-p66q-m6jw/GHSA-jh8x-p66q-m6jw.json @@ -7,12 +7,8 @@ "CVE-2015-2945" ], "details": "mt-phpincgi.php in Hajime Fujimoto mt-phpincgi before 2015-05-15 does not properly restrict URLs, which allows remote attackers to conduct PHP object injection attacks and execute arbitrary PHP code via a crafted request, as exploited in the wild in May 2015.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jhv6-qrhm-6rr4/GHSA-jhv6-qrhm-6rr4.json b/advisories/unreviewed/2022/05/GHSA-jhv6-qrhm-6rr4/GHSA-jhv6-qrhm-6rr4.json index e928c69768c..a81cb468482 100644 --- a/advisories/unreviewed/2022/05/GHSA-jhv6-qrhm-6rr4/GHSA-jhv6-qrhm-6rr4.json +++ b/advisories/unreviewed/2022/05/GHSA-jhv6-qrhm-6rr4/GHSA-jhv6-qrhm-6rr4.json @@ -7,12 +7,8 @@ "CVE-2014-4598" ], "details": "Cross-site scripting (XSS) vulnerability in wp-tmkm-amazon-search.php in the wp-tmkm-amazon plugin 1.5b and earlier for WordPress allows remote attackers to inject arbitrary web script or HTML via the AID parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jj26-p49h-743v/GHSA-jj26-p49h-743v.json b/advisories/unreviewed/2022/05/GHSA-jj26-p49h-743v/GHSA-jj26-p49h-743v.json index 5754cbaa64d..35049bb0ee6 100644 --- a/advisories/unreviewed/2022/05/GHSA-jj26-p49h-743v/GHSA-jj26-p49h-743v.json +++ b/advisories/unreviewed/2022/05/GHSA-jj26-p49h-743v/GHSA-jj26-p49h-743v.json @@ -7,12 +7,8 @@ "CVE-2013-6872" ], "details": "SQL injection vulnerability in managetimetracker.php in Collabtive before 1.2 allows remote authenticated users to execute arbitrary SQL commands via the id parameter in a projectpdf action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jjcj-2636-88q3/GHSA-jjcj-2636-88q3.json b/advisories/unreviewed/2022/05/GHSA-jjcj-2636-88q3/GHSA-jjcj-2636-88q3.json index cf8adc2bbbe..9fb1923f23c 100644 --- a/advisories/unreviewed/2022/05/GHSA-jjcj-2636-88q3/GHSA-jjcj-2636-88q3.json +++ b/advisories/unreviewed/2022/05/GHSA-jjcj-2636-88q3/GHSA-jjcj-2636-88q3.json @@ -7,12 +7,8 @@ "CVE-2015-4754" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-jmw3-7g66-4wqm/GHSA-jmw3-7g66-4wqm.json b/advisories/unreviewed/2022/05/GHSA-jmw3-7g66-4wqm/GHSA-jmw3-7g66-4wqm.json index c27042552f9..457fc2c0043 100644 --- a/advisories/unreviewed/2022/05/GHSA-jmw3-7g66-4wqm/GHSA-jmw3-7g66-4wqm.json +++ b/advisories/unreviewed/2022/05/GHSA-jmw3-7g66-4wqm/GHSA-jmw3-7g66-4wqm.json @@ -7,12 +7,8 @@ "CVE-2015-4527" ], "details": "Directory traversal vulnerability in EMC Avamar Server 7.x before 7.1.2 and Avamar Virtual Addition (AVE) 7.x before 7.1.2 allows remote attackers to read arbitrary files by using the Avamar Desktop/Laptop client interface to send crafted parameters.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jqp3-q77x-rwmj/GHSA-jqp3-q77x-rwmj.json b/advisories/unreviewed/2022/05/GHSA-jqp3-q77x-rwmj/GHSA-jqp3-q77x-rwmj.json index d16a188c13c..ebfd319d184 100644 --- a/advisories/unreviewed/2022/05/GHSA-jqp3-q77x-rwmj/GHSA-jqp3-q77x-rwmj.json +++ b/advisories/unreviewed/2022/05/GHSA-jqp3-q77x-rwmj/GHSA-jqp3-q77x-rwmj.json @@ -7,12 +7,8 @@ "CVE-2014-4520" ], "details": "Cross-site scripting (XSS) vulnerability in phprack.php in the DMCA WaterMarker plugin before 1.1 for WordPress allows remote attackers to inject arbitrary web script or HTML via the plugin_dir parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jqq3-xmgh-4v27/GHSA-jqq3-xmgh-4v27.json b/advisories/unreviewed/2022/05/GHSA-jqq3-xmgh-4v27/GHSA-jqq3-xmgh-4v27.json index 323fbc14efa..c6f20ff599b 100644 --- a/advisories/unreviewed/2022/05/GHSA-jqq3-xmgh-4v27/GHSA-jqq3-xmgh-4v27.json +++ b/advisories/unreviewed/2022/05/GHSA-jqq3-xmgh-4v27/GHSA-jqq3-xmgh-4v27.json @@ -7,12 +7,8 @@ "CVE-2015-2979" ], "details": "Webservice-DIC yoyaku_v41 allows remote attackers to execute arbitrary OS commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jr39-9jwj-h64g/GHSA-jr39-9jwj-h64g.json b/advisories/unreviewed/2022/05/GHSA-jr39-9jwj-h64g/GHSA-jr39-9jwj-h64g.json index 10630a0797e..12de98ddae2 100644 --- a/advisories/unreviewed/2022/05/GHSA-jr39-9jwj-h64g/GHSA-jr39-9jwj-h64g.json +++ b/advisories/unreviewed/2022/05/GHSA-jr39-9jwj-h64g/GHSA-jr39-9jwj-h64g.json @@ -7,12 +7,8 @@ "CVE-2015-2139" ], "details": "HP Systems Insight Manager (SIM) before 7.5.0, as used in HP Matrix Operating Environment before 7.5.0 and other products, allows remote authenticated users to obtain sensitive information via unspecified vectors, a different vulnerability than CVE-2015-5403.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jr66-9578-359v/GHSA-jr66-9578-359v.json b/advisories/unreviewed/2022/05/GHSA-jr66-9578-359v/GHSA-jr66-9578-359v.json index fb611ed9873..ad464e9f236 100644 --- a/advisories/unreviewed/2022/05/GHSA-jr66-9578-359v/GHSA-jr66-9578-359v.json +++ b/advisories/unreviewed/2022/05/GHSA-jr66-9578-359v/GHSA-jr66-9578-359v.json @@ -7,12 +7,8 @@ "CVE-2013-6177" ], "details": "Directory traversal vulnerability in EMC Document Sciences xPression 4.1 SP1 before Patch 47, 4.2 before Patch 26, and 4.5 before Patch 05, as used in Documentum Edition, Enterprise Edition Publish Engine, and Enterprise Edition Compuset Engine, allows remote authenticated users to read arbitrary files by leveraging xDashboard access.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jv44-4q8x-6c5f/GHSA-jv44-4q8x-6c5f.json b/advisories/unreviewed/2022/05/GHSA-jv44-4q8x-6c5f/GHSA-jv44-4q8x-6c5f.json index 2ec39a1845a..451a21edf11 100644 --- a/advisories/unreviewed/2022/05/GHSA-jv44-4q8x-6c5f/GHSA-jv44-4q8x-6c5f.json +++ b/advisories/unreviewed/2022/05/GHSA-jv44-4q8x-6c5f/GHSA-jv44-4q8x-6c5f.json @@ -7,12 +7,8 @@ "CVE-2015-4658" ], "details": "Multiple SQL injection vulnerabilities in admin/login.php in Milw0rm Clone Script 1.0 allow remote attackers to execute arbitrary SQL commands via the (1) usr or (2) pwd parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jv4c-q5cf-97rm/GHSA-jv4c-q5cf-97rm.json b/advisories/unreviewed/2022/05/GHSA-jv4c-q5cf-97rm/GHSA-jv4c-q5cf-97rm.json index 80604829658..23fbaa8d3a4 100644 --- a/advisories/unreviewed/2022/05/GHSA-jv4c-q5cf-97rm/GHSA-jv4c-q5cf-97rm.json +++ b/advisories/unreviewed/2022/05/GHSA-jv4c-q5cf-97rm/GHSA-jv4c-q5cf-97rm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jv4m-wpwv-6vxg/GHSA-jv4m-wpwv-6vxg.json b/advisories/unreviewed/2022/05/GHSA-jv4m-wpwv-6vxg/GHSA-jv4m-wpwv-6vxg.json index 1c5c10ac803..cff521e85fc 100644 --- a/advisories/unreviewed/2022/05/GHSA-jv4m-wpwv-6vxg/GHSA-jv4m-wpwv-6vxg.json +++ b/advisories/unreviewed/2022/05/GHSA-jv4m-wpwv-6vxg/GHSA-jv4m-wpwv-6vxg.json @@ -7,12 +7,8 @@ "CVE-2014-2080" ], "details": "Cross-site scripting (XSS) vulnerability in manager/templates/default/header.tpl in ModX Revolution before 2.2.11 allows remote attackers to inject arbitrary web script or HTML via the \"a\" parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jvgc-gpj2-53vh/GHSA-jvgc-gpj2-53vh.json b/advisories/unreviewed/2022/05/GHSA-jvgc-gpj2-53vh/GHSA-jvgc-gpj2-53vh.json index 7c3d9889571..b224c99042a 100644 --- a/advisories/unreviewed/2022/05/GHSA-jvgc-gpj2-53vh/GHSA-jvgc-gpj2-53vh.json +++ b/advisories/unreviewed/2022/05/GHSA-jvgc-gpj2-53vh/GHSA-jvgc-gpj2-53vh.json @@ -7,12 +7,8 @@ "CVE-2014-6284" ], "details": "SAP Adaptive Server Enterprise (ASE) before 15.7 SP132 and 16.0 before 16.0 SP01 allows remote attackers to bypass the challenge and response mechanism and obtain access to the probe account via a crafted response, aka SAP Security Note 2113995.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-jvx5-6596-c2vj/GHSA-jvx5-6596-c2vj.json b/advisories/unreviewed/2022/05/GHSA-jvx5-6596-c2vj/GHSA-jvx5-6596-c2vj.json index 639c2c059fd..51e364f68f5 100644 --- a/advisories/unreviewed/2022/05/GHSA-jvx5-6596-c2vj/GHSA-jvx5-6596-c2vj.json +++ b/advisories/unreviewed/2022/05/GHSA-jvx5-6596-c2vj/GHSA-jvx5-6596-c2vj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jwfh-687w-6qp5/GHSA-jwfh-687w-6qp5.json b/advisories/unreviewed/2022/05/GHSA-jwfh-687w-6qp5/GHSA-jwfh-687w-6qp5.json index 11a44dee132..a1eea926121 100644 --- a/advisories/unreviewed/2022/05/GHSA-jwfh-687w-6qp5/GHSA-jwfh-687w-6qp5.json +++ b/advisories/unreviewed/2022/05/GHSA-jwfh-687w-6qp5/GHSA-jwfh-687w-6qp5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jx5r-f949-99mv/GHSA-jx5r-f949-99mv.json b/advisories/unreviewed/2022/05/GHSA-jx5r-f949-99mv/GHSA-jx5r-f949-99mv.json index 7872c2fe3c6..ee6cb32efbe 100644 --- a/advisories/unreviewed/2022/05/GHSA-jx5r-f949-99mv/GHSA-jx5r-f949-99mv.json +++ b/advisories/unreviewed/2022/05/GHSA-jx5r-f949-99mv/GHSA-jx5r-f949-99mv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m266-xxp4-7r7h/GHSA-m266-xxp4-7r7h.json b/advisories/unreviewed/2022/05/GHSA-m266-xxp4-7r7h/GHSA-m266-xxp4-7r7h.json index ad910c0987f..e7c633a31c9 100644 --- a/advisories/unreviewed/2022/05/GHSA-m266-xxp4-7r7h/GHSA-m266-xxp4-7r7h.json +++ b/advisories/unreviewed/2022/05/GHSA-m266-xxp4-7r7h/GHSA-m266-xxp4-7r7h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -39,9 +37,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m2qw-w7xg-qcmf/GHSA-m2qw-w7xg-qcmf.json b/advisories/unreviewed/2022/05/GHSA-m2qw-w7xg-qcmf/GHSA-m2qw-w7xg-qcmf.json index 42f1aaf9d4b..51a677f55af 100644 --- a/advisories/unreviewed/2022/05/GHSA-m2qw-w7xg-qcmf/GHSA-m2qw-w7xg-qcmf.json +++ b/advisories/unreviewed/2022/05/GHSA-m2qw-w7xg-qcmf/GHSA-m2qw-w7xg-qcmf.json @@ -7,12 +7,8 @@ "CVE-2014-4023" ], "details": "Cross-site scripting (XSS) vulnerability in tmui/dashboard/echo.jsp in the Configuration utility in F5 BIG-IP LTM, APM, ASM, GTM, and Link Controller 11.0.0 before 11.6.0 and 10.1.0 through 10.2.4, AAM 11.4.0 before 11.6.0, AFM and PEM 11.3.0 before 11.6.0, Analytics 11.0.0 through 11.5.1, Edge Gateway, WebAccelerator, and WOM 11.0.0 through 11.3.0 and 10.1.0 through 10.2.4, and PSM 11.0.0 through 11.4.1 and 10.1.0 through 10.2.4 and Enterprise Manager 3.0.0 through 3.1.1 and 2.1.0 through 2.3.0 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m339-9c63-58m5/GHSA-m339-9c63-58m5.json b/advisories/unreviewed/2022/05/GHSA-m339-9c63-58m5/GHSA-m339-9c63-58m5.json index e1681da4136..27c89eaeb22 100644 --- a/advisories/unreviewed/2022/05/GHSA-m339-9c63-58m5/GHSA-m339-9c63-58m5.json +++ b/advisories/unreviewed/2022/05/GHSA-m339-9c63-58m5/GHSA-m339-9c63-58m5.json @@ -7,12 +7,8 @@ "CVE-2015-1010" ], "details": "Rockwell Automation RSView32 7.60.00 (aka CPR9 SR4) and earlier does not properly encrypt credentials, which allows local users to obtain sensitive information by reading a file and conducting a decryption attack.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m3j7-7x7f-j7pf/GHSA-m3j7-7x7f-j7pf.json b/advisories/unreviewed/2022/05/GHSA-m3j7-7x7f-j7pf/GHSA-m3j7-7x7f-j7pf.json index e25c3cbde41..1ad2a60cb91 100644 --- a/advisories/unreviewed/2022/05/GHSA-m3j7-7x7f-j7pf/GHSA-m3j7-7x7f-j7pf.json +++ b/advisories/unreviewed/2022/05/GHSA-m3j7-7x7f-j7pf/GHSA-m3j7-7x7f-j7pf.json @@ -7,12 +7,8 @@ "CVE-2014-5405" ], "details": "Hospira MedNet before 6.1 uses a hardcoded cleartext password to control SQL database authorization, which allows remote authenticated users to bypass intended access restrictions by leveraging knowledge of this password.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m454-8w4m-gmp5/GHSA-m454-8w4m-gmp5.json b/advisories/unreviewed/2022/05/GHSA-m454-8w4m-gmp5/GHSA-m454-8w4m-gmp5.json index 9afbf4638fa..abe667a29a8 100644 --- a/advisories/unreviewed/2022/05/GHSA-m454-8w4m-gmp5/GHSA-m454-8w4m-gmp5.json +++ b/advisories/unreviewed/2022/05/GHSA-m454-8w4m-gmp5/GHSA-m454-8w4m-gmp5.json @@ -7,12 +7,8 @@ "CVE-2015-0446" ], "details": "Unspecified vulnerability in the Oracle Data Integrator component in Oracle Fusion Middleware 11.1.1.3.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Data Quality based on Trillium, a different vulnerability than CVE-2015-0443, CVE-2015-0444, CVE-2015-0445, CVE-2015-2634, CVE-2015-2635, CVE-2015-2636, CVE-2015-4758, and CVE-2015-4759.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m462-97rg-rhrv/GHSA-m462-97rg-rhrv.json b/advisories/unreviewed/2022/05/GHSA-m462-97rg-rhrv/GHSA-m462-97rg-rhrv.json index 4d3e935e224..b91f5ea2f18 100644 --- a/advisories/unreviewed/2022/05/GHSA-m462-97rg-rhrv/GHSA-m462-97rg-rhrv.json +++ b/advisories/unreviewed/2022/05/GHSA-m462-97rg-rhrv/GHSA-m462-97rg-rhrv.json @@ -7,12 +7,8 @@ "CVE-2015-5630" ], "details": "Cross-site scripting (XSS) vulnerability in the NTT Broadband Platform Japan Connected-free Wi-Fi application 1.6.0 and earlier for Android and 1.0.2 and earlier for iOS allows remote attackers to inject arbitrary web script or HTML via a crafted SSID.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m4gq-xrvg-m4p7/GHSA-m4gq-xrvg-m4p7.json b/advisories/unreviewed/2022/05/GHSA-m4gq-xrvg-m4p7/GHSA-m4gq-xrvg-m4p7.json index 76d70d96a5a..0f13044c317 100644 --- a/advisories/unreviewed/2022/05/GHSA-m4gq-xrvg-m4p7/GHSA-m4gq-xrvg-m4p7.json +++ b/advisories/unreviewed/2022/05/GHSA-m4gq-xrvg-m4p7/GHSA-m4gq-xrvg-m4p7.json @@ -7,12 +7,8 @@ "CVE-2015-4779" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect integrity and availability via unknown vectors, a different vulnerability than CVE-2015-4774 and CVE-2015-4788.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m4q7-cf98-x26f/GHSA-m4q7-cf98-x26f.json b/advisories/unreviewed/2022/05/GHSA-m4q7-cf98-x26f/GHSA-m4q7-cf98-x26f.json index 59d4442b924..f5b3d76e1af 100644 --- a/advisories/unreviewed/2022/05/GHSA-m4q7-cf98-x26f/GHSA-m4q7-cf98-x26f.json +++ b/advisories/unreviewed/2022/05/GHSA-m4q7-cf98-x26f/GHSA-m4q7-cf98-x26f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m5cf-xm33-h35p/GHSA-m5cf-xm33-h35p.json b/advisories/unreviewed/2022/05/GHSA-m5cf-xm33-h35p/GHSA-m5cf-xm33-h35p.json index 46c668a8e58..90eafb4d689 100644 --- a/advisories/unreviewed/2022/05/GHSA-m5cf-xm33-h35p/GHSA-m5cf-xm33-h35p.json +++ b/advisories/unreviewed/2022/05/GHSA-m5cf-xm33-h35p/GHSA-m5cf-xm33-h35p.json @@ -7,12 +7,8 @@ "CVE-2014-0988" ], "details": "Stack-based buffer overflow in Advantech WebAccess (formerly BroadWin WebAccess) 7.2 allows remote attackers to execute arbitrary code via the AccessCode parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m5mw-mfp4-fj4f/GHSA-m5mw-mfp4-fj4f.json b/advisories/unreviewed/2022/05/GHSA-m5mw-mfp4-fj4f/GHSA-m5mw-mfp4-fj4f.json index 09ddc495976..53912384e71 100644 --- a/advisories/unreviewed/2022/05/GHSA-m5mw-mfp4-fj4f/GHSA-m5mw-mfp4-fj4f.json +++ b/advisories/unreviewed/2022/05/GHSA-m5mw-mfp4-fj4f/GHSA-m5mw-mfp4-fj4f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m5vp-j5fx-mgc4/GHSA-m5vp-j5fx-mgc4.json b/advisories/unreviewed/2022/05/GHSA-m5vp-j5fx-mgc4/GHSA-m5vp-j5fx-mgc4.json index 07ff657aeaf..aa1f94d24ac 100644 --- a/advisories/unreviewed/2022/05/GHSA-m5vp-j5fx-mgc4/GHSA-m5vp-j5fx-mgc4.json +++ b/advisories/unreviewed/2022/05/GHSA-m5vp-j5fx-mgc4/GHSA-m5vp-j5fx-mgc4.json @@ -7,12 +7,8 @@ "CVE-2014-0986" ], "details": "Stack-based buffer overflow in Advantech WebAccess (formerly BroadWin WebAccess) 7.2 allows remote attackers to execute arbitrary code via the GotoCmd parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m5xv-3g9j-8xv7/GHSA-m5xv-3g9j-8xv7.json b/advisories/unreviewed/2022/05/GHSA-m5xv-3g9j-8xv7/GHSA-m5xv-3g9j-8xv7.json index f255a41f43b..5cdf50ab49f 100644 --- a/advisories/unreviewed/2022/05/GHSA-m5xv-3g9j-8xv7/GHSA-m5xv-3g9j-8xv7.json +++ b/advisories/unreviewed/2022/05/GHSA-m5xv-3g9j-8xv7/GHSA-m5xv-3g9j-8xv7.json @@ -7,12 +7,8 @@ "CVE-2014-2102" ], "details": "Cisco Unified Contact Center Express (Unified CCX) does not properly restrict the content of the CCMConfig page, which allows remote authenticated users to obtain sensitive information by examining this content, aka Bug ID CSCum95575.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m6c6-6vhq-xhvp/GHSA-m6c6-6vhq-xhvp.json b/advisories/unreviewed/2022/05/GHSA-m6c6-6vhq-xhvp/GHSA-m6c6-6vhq-xhvp.json index 57ad8cc493f..d9f470a2f14 100644 --- a/advisories/unreviewed/2022/05/GHSA-m6c6-6vhq-xhvp/GHSA-m6c6-6vhq-xhvp.json +++ b/advisories/unreviewed/2022/05/GHSA-m6c6-6vhq-xhvp/GHSA-m6c6-6vhq-xhvp.json @@ -7,12 +7,8 @@ "CVE-2012-6121" ], "details": "Cross-site scripting (XSS) vulnerability in Roundcube Webmail before 0.8.5 allows remote attackers to inject arbitrary web script or HTML via a (1) data:text or (2) vbscript link.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m6g3-2p89-fpqg/GHSA-m6g3-2p89-fpqg.json b/advisories/unreviewed/2022/05/GHSA-m6g3-2p89-fpqg/GHSA-m6g3-2p89-fpqg.json index b97b06df1d2..82d21d45e91 100644 --- a/advisories/unreviewed/2022/05/GHSA-m6g3-2p89-fpqg/GHSA-m6g3-2p89-fpqg.json +++ b/advisories/unreviewed/2022/05/GHSA-m6g3-2p89-fpqg/GHSA-m6g3-2p89-fpqg.json @@ -7,12 +7,8 @@ "CVE-2014-0992" ], "details": "Stack-based buffer overflow in Advantech WebAccess (formerly BroadWin WebAccess) 7.2 allows remote attackers to execute arbitrary code via the password parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m6wm-3rcq-4492/GHSA-m6wm-3rcq-4492.json b/advisories/unreviewed/2022/05/GHSA-m6wm-3rcq-4492/GHSA-m6wm-3rcq-4492.json index c3d7dee4d95..98541ac2465 100644 --- a/advisories/unreviewed/2022/05/GHSA-m6wm-3rcq-4492/GHSA-m6wm-3rcq-4492.json +++ b/advisories/unreviewed/2022/05/GHSA-m6wm-3rcq-4492/GHSA-m6wm-3rcq-4492.json @@ -7,12 +7,8 @@ "CVE-2015-4774" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect integrity and availability via unknown vectors, a different vulnerability than CVE-2015-4779 and CVE-2015-4788.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m6xw-rvm8-jg3h/GHSA-m6xw-rvm8-jg3h.json b/advisories/unreviewed/2022/05/GHSA-m6xw-rvm8-jg3h/GHSA-m6xw-rvm8-jg3h.json index 1b3e6ad6750..fe199c948c2 100644 --- a/advisories/unreviewed/2022/05/GHSA-m6xw-rvm8-jg3h/GHSA-m6xw-rvm8-jg3h.json +++ b/advisories/unreviewed/2022/05/GHSA-m6xw-rvm8-jg3h/GHSA-m6xw-rvm8-jg3h.json @@ -7,12 +7,8 @@ "CVE-2015-0193" ], "details": "Cross-site scripting (XSS) vulnerability in IBM Business Process Manager (BPM) 7.5.x through 7.5.1.2, 8.0.x through 8.0.1.3, and 8.5.x through 8.5.5.0 and WebSphere Lombardi Edition (WLE) 7.2.x through 7.2.0.5 allows remote authenticated users to inject arbitrary web script or HTML via a crafted URL that triggers an error condition.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m786-w84g-pcv9/GHSA-m786-w84g-pcv9.json b/advisories/unreviewed/2022/05/GHSA-m786-w84g-pcv9/GHSA-m786-w84g-pcv9.json index ab6c9d33f89..88726742dc4 100644 --- a/advisories/unreviewed/2022/05/GHSA-m786-w84g-pcv9/GHSA-m786-w84g-pcv9.json +++ b/advisories/unreviewed/2022/05/GHSA-m786-w84g-pcv9/GHSA-m786-w84g-pcv9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m7x4-mx42-wwrx/GHSA-m7x4-mx42-wwrx.json b/advisories/unreviewed/2022/05/GHSA-m7x4-mx42-wwrx/GHSA-m7x4-mx42-wwrx.json index cbaf833ec05..168eaaa4df5 100644 --- a/advisories/unreviewed/2022/05/GHSA-m7x4-mx42-wwrx/GHSA-m7x4-mx42-wwrx.json +++ b/advisories/unreviewed/2022/05/GHSA-m7x4-mx42-wwrx/GHSA-m7x4-mx42-wwrx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m7xh-cr6w-qjx3/GHSA-m7xh-cr6w-qjx3.json b/advisories/unreviewed/2022/05/GHSA-m7xh-cr6w-qjx3/GHSA-m7xh-cr6w-qjx3.json index dd9e50b9af5..79b8f31af33 100644 --- a/advisories/unreviewed/2022/05/GHSA-m7xh-cr6w-qjx3/GHSA-m7xh-cr6w-qjx3.json +++ b/advisories/unreviewed/2022/05/GHSA-m7xh-cr6w-qjx3/GHSA-m7xh-cr6w-qjx3.json @@ -7,12 +7,8 @@ "CVE-2014-0781" ], "details": "Heap-based buffer overflow in BKCLogSvr.exe in Yokogawa CENTUM CS 3000 R3.09.50 and earlier allows remote attackers to execute arbitrary code via crafted UDP packets.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m826-r7fq-85qc/GHSA-m826-r7fq-85qc.json b/advisories/unreviewed/2022/05/GHSA-m826-r7fq-85qc/GHSA-m826-r7fq-85qc.json index f68a8760c69..ac79b21b098 100644 --- a/advisories/unreviewed/2022/05/GHSA-m826-r7fq-85qc/GHSA-m826-r7fq-85qc.json +++ b/advisories/unreviewed/2022/05/GHSA-m826-r7fq-85qc/GHSA-m826-r7fq-85qc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m82v-2g97-rq4x/GHSA-m82v-2g97-rq4x.json b/advisories/unreviewed/2022/05/GHSA-m82v-2g97-rq4x/GHSA-m82v-2g97-rq4x.json index 33efacd6d91..d1355f6b7ce 100644 --- a/advisories/unreviewed/2022/05/GHSA-m82v-2g97-rq4x/GHSA-m82v-2g97-rq4x.json +++ b/advisories/unreviewed/2022/05/GHSA-m82v-2g97-rq4x/GHSA-m82v-2g97-rq4x.json @@ -7,12 +7,8 @@ "CVE-2015-4782" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m94p-9r8w-5wp4/GHSA-m94p-9r8w-5wp4.json b/advisories/unreviewed/2022/05/GHSA-m94p-9r8w-5wp4/GHSA-m94p-9r8w-5wp4.json index 310a3026b26..8c0f93f93c7 100644 --- a/advisories/unreviewed/2022/05/GHSA-m94p-9r8w-5wp4/GHSA-m94p-9r8w-5wp4.json +++ b/advisories/unreviewed/2022/05/GHSA-m94p-9r8w-5wp4/GHSA-m94p-9r8w-5wp4.json @@ -7,12 +7,8 @@ "CVE-2015-2986" ], "details": "Cross-site scripting (XSS) vulnerability in rakuto.net hitSuji (rktSNS2) 0.2.2b allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m9cx-wp4p-mrrr/GHSA-m9cx-wp4p-mrrr.json b/advisories/unreviewed/2022/05/GHSA-m9cx-wp4p-mrrr/GHSA-m9cx-wp4p-mrrr.json index bd1fa5a5d51..5684d9c3f9f 100644 --- a/advisories/unreviewed/2022/05/GHSA-m9cx-wp4p-mrrr/GHSA-m9cx-wp4p-mrrr.json +++ b/advisories/unreviewed/2022/05/GHSA-m9cx-wp4p-mrrr/GHSA-m9cx-wp4p-mrrr.json @@ -7,12 +7,8 @@ "CVE-2015-6520" ], "details": "IPPUSBXD before 1.22 listens on all interfaces, which allows remote attackers to obtain access to USB connected printers via a direct request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -40,9 +36,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mc48-68r6-9f6m/GHSA-mc48-68r6-9f6m.json b/advisories/unreviewed/2022/05/GHSA-mc48-68r6-9f6m/GHSA-mc48-68r6-9f6m.json index e36e0e2294a..dcc6bff007b 100644 --- a/advisories/unreviewed/2022/05/GHSA-mc48-68r6-9f6m/GHSA-mc48-68r6-9f6m.json +++ b/advisories/unreviewed/2022/05/GHSA-mc48-68r6-9f6m/GHSA-mc48-68r6-9f6m.json @@ -7,12 +7,8 @@ "CVE-2014-1841" ], "details": "Directory traversal vulnerability in the web interface in Titan FTP Server before 10.40 build 1829 allows remote attackers to copy an arbitrary user's home folder via a Move action with a .. (dot dot) in the src parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mcwp-qh4v-7qq8/GHSA-mcwp-qh4v-7qq8.json b/advisories/unreviewed/2022/05/GHSA-mcwp-qh4v-7qq8/GHSA-mcwp-qh4v-7qq8.json index 82529451207..54c6de57ba8 100644 --- a/advisories/unreviewed/2022/05/GHSA-mcwp-qh4v-7qq8/GHSA-mcwp-qh4v-7qq8.json +++ b/advisories/unreviewed/2022/05/GHSA-mcwp-qh4v-7qq8/GHSA-mcwp-qh4v-7qq8.json @@ -7,12 +7,8 @@ "CVE-2015-4398" ], "details": "Open redirect vulnerability in the Chaos tool suite (ctools) module before 6.x-1.12 and 7.x-1.x before 7.x-1.7 for Drupal allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via unspecified vectors involving processing confirmation delete pages.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -44,9 +40,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mf5v-3hc7-w3wj/GHSA-mf5v-3hc7-w3wj.json b/advisories/unreviewed/2022/05/GHSA-mf5v-3hc7-w3wj/GHSA-mf5v-3hc7-w3wj.json index 89c532d80e1..c0bbad61a9c 100644 --- a/advisories/unreviewed/2022/05/GHSA-mf5v-3hc7-w3wj/GHSA-mf5v-3hc7-w3wj.json +++ b/advisories/unreviewed/2022/05/GHSA-mf5v-3hc7-w3wj/GHSA-mf5v-3hc7-w3wj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mf76-mxhv-568q/GHSA-mf76-mxhv-568q.json b/advisories/unreviewed/2022/05/GHSA-mf76-mxhv-568q/GHSA-mf76-mxhv-568q.json index b80fb7d1288..f7deacda6e8 100644 --- a/advisories/unreviewed/2022/05/GHSA-mf76-mxhv-568q/GHSA-mf76-mxhv-568q.json +++ b/advisories/unreviewed/2022/05/GHSA-mf76-mxhv-568q/GHSA-mf76-mxhv-568q.json @@ -7,12 +7,8 @@ "CVE-2014-3892" ], "details": "Cross-site scripting (XSS) vulnerability in Nexa Meridian before 2014 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mg2j-853w-r6h2/GHSA-mg2j-853w-r6h2.json b/advisories/unreviewed/2022/05/GHSA-mg2j-853w-r6h2/GHSA-mg2j-853w-r6h2.json index de5a1bf081c..b175ac9ae6d 100644 --- a/advisories/unreviewed/2022/05/GHSA-mg2j-853w-r6h2/GHSA-mg2j-853w-r6h2.json +++ b/advisories/unreviewed/2022/05/GHSA-mg2j-853w-r6h2/GHSA-mg2j-853w-r6h2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mh2p-6qq8-363c/GHSA-mh2p-6qq8-363c.json b/advisories/unreviewed/2022/05/GHSA-mh2p-6qq8-363c/GHSA-mh2p-6qq8-363c.json index eac261e112c..e3d8c3222db 100644 --- a/advisories/unreviewed/2022/05/GHSA-mh2p-6qq8-363c/GHSA-mh2p-6qq8-363c.json +++ b/advisories/unreviewed/2022/05/GHSA-mh2p-6qq8-363c/GHSA-mh2p-6qq8-363c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mj2v-q2gp-5xgf/GHSA-mj2v-q2gp-5xgf.json b/advisories/unreviewed/2022/05/GHSA-mj2v-q2gp-5xgf/GHSA-mj2v-q2gp-5xgf.json index 0cd79ea44f4..f421a562beb 100644 --- a/advisories/unreviewed/2022/05/GHSA-mj2v-q2gp-5xgf/GHSA-mj2v-q2gp-5xgf.json +++ b/advisories/unreviewed/2022/05/GHSA-mj2v-q2gp-5xgf/GHSA-mj2v-q2gp-5xgf.json @@ -7,12 +7,8 @@ "CVE-2015-0112" ], "details": "Jazz Team Server in Jazz Foundation in IBM Rational Collaborative Lifecycle Management (CLM) 3.0.1, 4.x before 4.0.7 IF5, and 5.x before 5.0.2 IF4; Rational Quality Manager (RQM) 2.0 through 2.0.1, 3.0 through 3.0.1.6, 4.0 through 4.0.7, and 5.0 through 5.0.2; Rational Team Concert (RTC) 2.0 through 2.0.0.2, 3.x before 3.0.1.6 IF6, 4.x before 4.0.7 IF5, and 5.x before 5.0.2 IF4; Rational Requirements Composer (RRC) 2.0 through 2.0.0.4, 3.x before 3.0.1.6 IF6, and 4.0 through 4.0.7; Rational DOORS Next Generation (RDNG) 4.x before 4.0.7 IF5 and 5.x before 5.0.2 IF4; Rational Engineering Lifecycle Manager (RELM) 1.0 through 1.0.0.1, 4.0.3 through 4.0.7, and 5.0 through 5.0.2; Rational Rhapsody Design Manager (DM) 3.0 through 3.0.1, 4.0 through 4.0.7, and 5.0 through 5.0.2; and Rational Software Architect Design Manager (RSA DM) 3.0 through 3.0.1, 4.0 through 4.0.7, and 5.0 through 5.0.2 allows remote authenticated users to read arbitrary files via an XML external entity declaration in conjunction with an entity reference, related to an XML External Entity (XXE) issue.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mmcm-ffvh-6vpq/GHSA-mmcm-ffvh-6vpq.json b/advisories/unreviewed/2022/05/GHSA-mmcm-ffvh-6vpq/GHSA-mmcm-ffvh-6vpq.json index c91b0345870..5145eed0b1f 100644 --- a/advisories/unreviewed/2022/05/GHSA-mmcm-ffvh-6vpq/GHSA-mmcm-ffvh-6vpq.json +++ b/advisories/unreviewed/2022/05/GHSA-mmcm-ffvh-6vpq/GHSA-mmcm-ffvh-6vpq.json @@ -7,12 +7,8 @@ "CVE-2015-2904" ], "details": "Actiontec GT784WN modems with firmware before NCS01-1.0.13 have hardcoded credentials, which makes it easier for remote attackers to obtain root access by connecting to the web administration interface.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mmjr-mm5j-gc42/GHSA-mmjr-mm5j-gc42.json b/advisories/unreviewed/2022/05/GHSA-mmjr-mm5j-gc42/GHSA-mmjr-mm5j-gc42.json index 3031edf3675..4cb974bb2d7 100644 --- a/advisories/unreviewed/2022/05/GHSA-mmjr-mm5j-gc42/GHSA-mmjr-mm5j-gc42.json +++ b/advisories/unreviewed/2022/05/GHSA-mmjr-mm5j-gc42/GHSA-mmjr-mm5j-gc42.json @@ -7,12 +7,8 @@ "CVE-2013-5015" ], "details": "SQL injection vulnerability in the management console in Symantec Endpoint Protection Manager (SEPM) 11.0 before 11.0.7405.1424 and 12.1 before 12.1.4023.4080, and Symantec Protection Center Small Business Edition 12.x before 12.1.4023.4080, allows remote authenticated users to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mq7v-47j3-rc24/GHSA-mq7v-47j3-rc24.json b/advisories/unreviewed/2022/05/GHSA-mq7v-47j3-rc24/GHSA-mq7v-47j3-rc24.json index 5d587f3725e..f153cf8daa3 100644 --- a/advisories/unreviewed/2022/05/GHSA-mq7v-47j3-rc24/GHSA-mq7v-47j3-rc24.json +++ b/advisories/unreviewed/2022/05/GHSA-mq7v-47j3-rc24/GHSA-mq7v-47j3-rc24.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mq8m-qcpr-vp9g/GHSA-mq8m-qcpr-vp9g.json b/advisories/unreviewed/2022/05/GHSA-mq8m-qcpr-vp9g/GHSA-mq8m-qcpr-vp9g.json index 2851c2b5d8c..d8739f04051 100644 --- a/advisories/unreviewed/2022/05/GHSA-mq8m-qcpr-vp9g/GHSA-mq8m-qcpr-vp9g.json +++ b/advisories/unreviewed/2022/05/GHSA-mq8m-qcpr-vp9g/GHSA-mq8m-qcpr-vp9g.json @@ -7,12 +7,8 @@ "CVE-2014-4554" ], "details": "Cross-site scripting (XSS) vulnerability in templates/download.php in the SS Downloads plugin before 1.5 for WordPress allows remote attackers to inject arbitrary web script or HTML via the title parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mrp2-828g-h38w/GHSA-mrp2-828g-h38w.json b/advisories/unreviewed/2022/05/GHSA-mrp2-828g-h38w/GHSA-mrp2-828g-h38w.json index ef31c07abb9..b891c217c1f 100644 --- a/advisories/unreviewed/2022/05/GHSA-mrp2-828g-h38w/GHSA-mrp2-828g-h38w.json +++ b/advisories/unreviewed/2022/05/GHSA-mrp2-828g-h38w/GHSA-mrp2-828g-h38w.json @@ -7,12 +7,8 @@ "CVE-2015-2744" ], "details": "Cross-site scripting (XSS) vulnerability in the Search app in Gaia in Mozilla Firefox OS before 2.2 allows remote attackers to inject arbitrary HTML via a crafted search link that is mishandled after re-opening the browser or opening the tab view.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mvcj-93rq-55q5/GHSA-mvcj-93rq-55q5.json b/advisories/unreviewed/2022/05/GHSA-mvcj-93rq-55q5/GHSA-mvcj-93rq-55q5.json index 1eb7dcd55ec..427e27d76e1 100644 --- a/advisories/unreviewed/2022/05/GHSA-mvcj-93rq-55q5/GHSA-mvcj-93rq-55q5.json +++ b/advisories/unreviewed/2022/05/GHSA-mvcj-93rq-55q5/GHSA-mvcj-93rq-55q5.json @@ -7,12 +7,8 @@ "CVE-2015-1595" ], "details": "The Siemens SPCanywhere application for Android and iOS does not use encryption during lookups of system ID to IP address mappings, which allows man-in-the-middle attackers to discover alarm IP addresses and spoof servers by intercepting the client-server data stream.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mw6q-wcj8-vqrr/GHSA-mw6q-wcj8-vqrr.json b/advisories/unreviewed/2022/05/GHSA-mw6q-wcj8-vqrr/GHSA-mw6q-wcj8-vqrr.json index a183072f645..649b0f0a0a9 100644 --- a/advisories/unreviewed/2022/05/GHSA-mw6q-wcj8-vqrr/GHSA-mw6q-wcj8-vqrr.json +++ b/advisories/unreviewed/2022/05/GHSA-mw6q-wcj8-vqrr/GHSA-mw6q-wcj8-vqrr.json @@ -7,12 +7,8 @@ "CVE-2015-6742" ], "details": "Basware Banking (Maksuliikenne) before 8.90.07.X uses a hardcoded password for the ANCO account, which allows remote authenticated users to bypass intended access restrictions by leveraging knowledge of this password. NOTE: this identifier was SPLIT from CVE-2015-0942 per ADT2 and ADT3 due to different vulnerability types and different affected versions.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mwh4-5g7q-3q6r/GHSA-mwh4-5g7q-3q6r.json b/advisories/unreviewed/2022/05/GHSA-mwh4-5g7q-3q6r/GHSA-mwh4-5g7q-3q6r.json index 126736163d8..0484374b20a 100644 --- a/advisories/unreviewed/2022/05/GHSA-mwh4-5g7q-3q6r/GHSA-mwh4-5g7q-3q6r.json +++ b/advisories/unreviewed/2022/05/GHSA-mwh4-5g7q-3q6r/GHSA-mwh4-5g7q-3q6r.json @@ -7,12 +7,8 @@ "CVE-2014-0745" ], "details": "Cross-site request forgery (CSRF) vulnerability in the Unified Serviceability subsystem in Cisco Unified Contact Center Express (Unified CCX) allows remote attackers to hijack the authentication of arbitrary users, aka Bug ID CSCum95502.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mwjj-8f4v-rq25/GHSA-mwjj-8f4v-rq25.json b/advisories/unreviewed/2022/05/GHSA-mwjj-8f4v-rq25/GHSA-mwjj-8f4v-rq25.json index 2b54ec07154..e149d373d6e 100644 --- a/advisories/unreviewed/2022/05/GHSA-mwjj-8f4v-rq25/GHSA-mwjj-8f4v-rq25.json +++ b/advisories/unreviewed/2022/05/GHSA-mwjj-8f4v-rq25/GHSA-mwjj-8f4v-rq25.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mx84-v966-x8mg/GHSA-mx84-v966-x8mg.json b/advisories/unreviewed/2022/05/GHSA-mx84-v966-x8mg/GHSA-mx84-v966-x8mg.json index 9e708ad0901..32a9996e3b6 100644 --- a/advisories/unreviewed/2022/05/GHSA-mx84-v966-x8mg/GHSA-mx84-v966-x8mg.json +++ b/advisories/unreviewed/2022/05/GHSA-mx84-v966-x8mg/GHSA-mx84-v966-x8mg.json @@ -7,12 +7,8 @@ "CVE-2015-4781" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mxw2-9c4g-5hgw/GHSA-mxw2-9c4g-5hgw.json b/advisories/unreviewed/2022/05/GHSA-mxw2-9c4g-5hgw/GHSA-mxw2-9c4g-5hgw.json index d7b2232de98..662a864921f 100644 --- a/advisories/unreviewed/2022/05/GHSA-mxw2-9c4g-5hgw/GHSA-mxw2-9c4g-5hgw.json +++ b/advisories/unreviewed/2022/05/GHSA-mxw2-9c4g-5hgw/GHSA-mxw2-9c4g-5hgw.json @@ -7,12 +7,8 @@ "CVE-2015-4338" ], "details": "Static code injection vulnerability in the XCloner plugin 3.1.2 for WordPress allows remote authenticated users to inject arbitrary PHP code into the language files via a Translation LM_FRONT_* field for a language, as demonstrated by language/italian.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p239-3hhj-mgx3/GHSA-p239-3hhj-mgx3.json b/advisories/unreviewed/2022/05/GHSA-p239-3hhj-mgx3/GHSA-p239-3hhj-mgx3.json index 9d4e906a80e..19f03f8dd95 100644 --- a/advisories/unreviewed/2022/05/GHSA-p239-3hhj-mgx3/GHSA-p239-3hhj-mgx3.json +++ b/advisories/unreviewed/2022/05/GHSA-p239-3hhj-mgx3/GHSA-p239-3hhj-mgx3.json @@ -7,12 +7,8 @@ "CVE-2015-6754" ], "details": "Cross-site scripting (XSS) vulnerability in the administration interface in the Path Breadcrumbs module 7.x-3.x before 7.x-3.3 for Drupal allows remote authenticated users with the \"Administer Path Breadcrumbs\" permission to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p23j-8qh2-83vw/GHSA-p23j-8qh2-83vw.json b/advisories/unreviewed/2022/05/GHSA-p23j-8qh2-83vw/GHSA-p23j-8qh2-83vw.json index c3203c9df30..5ee358cc994 100644 --- a/advisories/unreviewed/2022/05/GHSA-p23j-8qh2-83vw/GHSA-p23j-8qh2-83vw.json +++ b/advisories/unreviewed/2022/05/GHSA-p23j-8qh2-83vw/GHSA-p23j-8qh2-83vw.json @@ -7,12 +7,8 @@ "CVE-2014-9207" ], "details": "Untrusted search path vulnerability in CmnView.exe in CIMON CmnView 2.14.0.1 and 3.x before UltimateAccess 3.02 allows local users to gain privileges via a Trojan horse DLL in the current working directory.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-p2xq-6fpx-65v7/GHSA-p2xq-6fpx-65v7.json b/advisories/unreviewed/2022/05/GHSA-p2xq-6fpx-65v7/GHSA-p2xq-6fpx-65v7.json index e2fd32716ba..79f37c1da0f 100644 --- a/advisories/unreviewed/2022/05/GHSA-p2xq-6fpx-65v7/GHSA-p2xq-6fpx-65v7.json +++ b/advisories/unreviewed/2022/05/GHSA-p2xq-6fpx-65v7/GHSA-p2xq-6fpx-65v7.json @@ -7,12 +7,8 @@ "CVE-2015-5529" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in Free Reprintables ArticleFR 3.0.6 allow remote attackers to inject arbitrary web script or HTML via the (1) name parameter to dashboard/settings/categories/, (2) title or (3) rel parameter to dashboard/settings/links/, or (4) url parameter to dashboard/tools/pingservers/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p374-52c9-762f/GHSA-p374-52c9-762f.json b/advisories/unreviewed/2022/05/GHSA-p374-52c9-762f/GHSA-p374-52c9-762f.json index be23cb37729..ad25e46860b 100644 --- a/advisories/unreviewed/2022/05/GHSA-p374-52c9-762f/GHSA-p374-52c9-762f.json +++ b/advisories/unreviewed/2022/05/GHSA-p374-52c9-762f/GHSA-p374-52c9-762f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-p3cj-xwxg-f4p3/GHSA-p3cj-xwxg-f4p3.json b/advisories/unreviewed/2022/05/GHSA-p3cj-xwxg-f4p3/GHSA-p3cj-xwxg-f4p3.json index 0b1ad07fb02..582856e97f4 100644 --- a/advisories/unreviewed/2022/05/GHSA-p3cj-xwxg-f4p3/GHSA-p3cj-xwxg-f4p3.json +++ b/advisories/unreviewed/2022/05/GHSA-p3cj-xwxg-f4p3/GHSA-p3cj-xwxg-f4p3.json @@ -7,12 +7,8 @@ "CVE-2014-8760" ], "details": "ejabberd before 2.1.13 does not enforce the starttls_required setting when compression is used, which causes clients to establish connections without encryption.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -52,9 +48,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-p3pf-r6h4-6j4r/GHSA-p3pf-r6h4-6j4r.json b/advisories/unreviewed/2022/05/GHSA-p3pf-r6h4-6j4r/GHSA-p3pf-r6h4-6j4r.json index ae2a17b6203..539dd3e8d79 100644 --- a/advisories/unreviewed/2022/05/GHSA-p3pf-r6h4-6j4r/GHSA-p3pf-r6h4-6j4r.json +++ b/advisories/unreviewed/2022/05/GHSA-p3pf-r6h4-6j4r/GHSA-p3pf-r6h4-6j4r.json @@ -7,12 +7,8 @@ "CVE-2014-8603" ], "details": "cloner.functions.php in the XCloner plugin 3.1.1 for WordPress and 3.5.1 for Joomla! allows remote administrators to execute arbitrary code via shell metacharacters in the (1) file name when creating a backup or vectors related to the (2) $_CONFIG[tarpath], (3) $exclude, (4) $_CONFIG['tarcompress'], (5) $_CONFIG['filename'], (6) $_CONFIG['exfile_tar'], (7) $_CONFIG[sqldump], (8) $_CONFIG['mysql_host'], (9) $_CONFIG['mysql_pass'], (10) $_CONFIG['mysql_user'], (11) $database_name, or (12) $sqlfile variable.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p3q7-2gx5-pjfq/GHSA-p3q7-2gx5-pjfq.json b/advisories/unreviewed/2022/05/GHSA-p3q7-2gx5-pjfq/GHSA-p3q7-2gx5-pjfq.json index 91bb1d1e753..792648c66f6 100644 --- a/advisories/unreviewed/2022/05/GHSA-p3q7-2gx5-pjfq/GHSA-p3q7-2gx5-pjfq.json +++ b/advisories/unreviewed/2022/05/GHSA-p3q7-2gx5-pjfq/GHSA-p3q7-2gx5-pjfq.json @@ -7,12 +7,8 @@ "CVE-2014-4194" ], "details": "SQL injection vulnerability in zero_transact_article.php in ZeroCMS 1.0 allows remote attackers to execute arbitrary SQL commands via the article_id parameter in a Submit Comment action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p468-m6gq-36cp/GHSA-p468-m6gq-36cp.json b/advisories/unreviewed/2022/05/GHSA-p468-m6gq-36cp/GHSA-p468-m6gq-36cp.json index 85a776c512b..5b1f8744021 100644 --- a/advisories/unreviewed/2022/05/GHSA-p468-m6gq-36cp/GHSA-p468-m6gq-36cp.json +++ b/advisories/unreviewed/2022/05/GHSA-p468-m6gq-36cp/GHSA-p468-m6gq-36cp.json @@ -7,12 +7,8 @@ "CVE-2015-4286" ], "details": "The web framework in Cisco UCS Central Software 1.3(0.99) allows remote attackers to read arbitrary files via a crafted HTTP request, aka Bug ID CSCuu41377.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p4mr-3j7q-h6f9/GHSA-p4mr-3j7q-h6f9.json b/advisories/unreviewed/2022/05/GHSA-p4mr-3j7q-h6f9/GHSA-p4mr-3j7q-h6f9.json index 378b480eab7..ded57aab0c2 100644 --- a/advisories/unreviewed/2022/05/GHSA-p4mr-3j7q-h6f9/GHSA-p4mr-3j7q-h6f9.json +++ b/advisories/unreviewed/2022/05/GHSA-p4mr-3j7q-h6f9/GHSA-p4mr-3j7q-h6f9.json @@ -7,12 +7,8 @@ "CVE-2015-4392" ], "details": "Cross-site scripting (XSS) vulnerability in the Display Suite module 7.x-2.7 for Drupal allows remote authenticated users to inject arbitrary web script or HTML via unspecified vectors related to field display settings.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p4q7-8phc-gmmr/GHSA-p4q7-8phc-gmmr.json b/advisories/unreviewed/2022/05/GHSA-p4q7-8phc-gmmr/GHSA-p4q7-8phc-gmmr.json index 0dfba37f56b..b271f579ed2 100644 --- a/advisories/unreviewed/2022/05/GHSA-p4q7-8phc-gmmr/GHSA-p4q7-8phc-gmmr.json +++ b/advisories/unreviewed/2022/05/GHSA-p4q7-8phc-gmmr/GHSA-p4q7-8phc-gmmr.json @@ -7,12 +7,8 @@ "CVE-2015-4065" ], "details": "Cross-site scripting (XSS) vulnerability in shared/shortcodes/inbound-shortcodes.php in the Landing Pages plugin before 1.8.5 for WordPress allows remote authenticated users to inject arbitrary web script or HTML via the post parameter to wp-admin/post-new.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p5v7-c5vq-p27w/GHSA-p5v7-c5vq-p27w.json b/advisories/unreviewed/2022/05/GHSA-p5v7-c5vq-p27w/GHSA-p5v7-c5vq-p27w.json index 8bcc6e99cc9..c4727dcf1ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-p5v7-c5vq-p27w/GHSA-p5v7-c5vq-p27w.json +++ b/advisories/unreviewed/2022/05/GHSA-p5v7-c5vq-p27w/GHSA-p5v7-c5vq-p27w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-p65w-wgpq-h44r/GHSA-p65w-wgpq-h44r.json b/advisories/unreviewed/2022/05/GHSA-p65w-wgpq-h44r/GHSA-p65w-wgpq-h44r.json index 83ac3c9a152..57b6b75c424 100644 --- a/advisories/unreviewed/2022/05/GHSA-p65w-wgpq-h44r/GHSA-p65w-wgpq-h44r.json +++ b/advisories/unreviewed/2022/05/GHSA-p65w-wgpq-h44r/GHSA-p65w-wgpq-h44r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p84x-ghfc-gv3h/GHSA-p84x-ghfc-gv3h.json b/advisories/unreviewed/2022/05/GHSA-p84x-ghfc-gv3h/GHSA-p84x-ghfc-gv3h.json index 362e1a6671f..eae3b4b3263 100644 --- a/advisories/unreviewed/2022/05/GHSA-p84x-ghfc-gv3h/GHSA-p84x-ghfc-gv3h.json +++ b/advisories/unreviewed/2022/05/GHSA-p84x-ghfc-gv3h/GHSA-p84x-ghfc-gv3h.json @@ -7,12 +7,8 @@ "CVE-2015-1075" ], "details": "WebKit, as used in Apple Safari before 6.2.4, 7.x before 7.1.4, and 8.x before 8.0.4, allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via a crafted web site, a different vulnerability than other CVEs listed in APPLE-SA-2015-03-17-1.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -40,9 +36,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-p895-j5w4-hwmp/GHSA-p895-j5w4-hwmp.json b/advisories/unreviewed/2022/05/GHSA-p895-j5w4-hwmp/GHSA-p895-j5w4-hwmp.json index e3cee35b234..6b0a00a13e7 100644 --- a/advisories/unreviewed/2022/05/GHSA-p895-j5w4-hwmp/GHSA-p895-j5w4-hwmp.json +++ b/advisories/unreviewed/2022/05/GHSA-p895-j5w4-hwmp/GHSA-p895-j5w4-hwmp.json @@ -7,12 +7,8 @@ "CVE-2014-4882" ], "details": "Aptexx Resident Anywhere does not require authentication, which allows remote attackers to obtain sensitive information or modify data via a direct request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p8pf-rjcm-ww5r/GHSA-p8pf-rjcm-ww5r.json b/advisories/unreviewed/2022/05/GHSA-p8pf-rjcm-ww5r/GHSA-p8pf-rjcm-ww5r.json index 5159281ab63..97fe01049a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-p8pf-rjcm-ww5r/GHSA-p8pf-rjcm-ww5r.json +++ b/advisories/unreviewed/2022/05/GHSA-p8pf-rjcm-ww5r/GHSA-p8pf-rjcm-ww5r.json @@ -7,12 +7,8 @@ "CVE-2014-1648" ], "details": "Cross-site scripting (XSS) vulnerability in brightmail/setting/compliance/DlpConnectFlow$view.flo in the management console in Symantec Messaging Gateway 10.x before 10.5.2 allows remote attackers to inject arbitrary web script or HTML via the displayTab parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p9h7-m9x8-pwxg/GHSA-p9h7-m9x8-pwxg.json b/advisories/unreviewed/2022/05/GHSA-p9h7-m9x8-pwxg/GHSA-p9h7-m9x8-pwxg.json index e53cfdc2c7d..17e85f3d208 100644 --- a/advisories/unreviewed/2022/05/GHSA-p9h7-m9x8-pwxg/GHSA-p9h7-m9x8-pwxg.json +++ b/advisories/unreviewed/2022/05/GHSA-p9h7-m9x8-pwxg/GHSA-p9h7-m9x8-pwxg.json @@ -7,12 +7,8 @@ "CVE-2014-1971" ], "details": "Cross-site scripting (XSS) vulnerability in Silex before 2.0.0 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p9vj-vx52-9cfg/GHSA-p9vj-vx52-9cfg.json b/advisories/unreviewed/2022/05/GHSA-p9vj-vx52-9cfg/GHSA-p9vj-vx52-9cfg.json index 1e9533c10d4..1d39fc879f8 100644 --- a/advisories/unreviewed/2022/05/GHSA-p9vj-vx52-9cfg/GHSA-p9vj-vx52-9cfg.json +++ b/advisories/unreviewed/2022/05/GHSA-p9vj-vx52-9cfg/GHSA-p9vj-vx52-9cfg.json @@ -7,12 +7,8 @@ "CVE-2015-4361" ], "details": "Cross-site request forgery (CSRF) vulnerability in the Registration codes module before 6.x-1.6 for Drupal allows remote attackers to hijack the authentication of administrators for requests that delete registration codes via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pc29-jph7-fgwg/GHSA-pc29-jph7-fgwg.json b/advisories/unreviewed/2022/05/GHSA-pc29-jph7-fgwg/GHSA-pc29-jph7-fgwg.json index 84780c3e171..5d5c8c00fb3 100644 --- a/advisories/unreviewed/2022/05/GHSA-pc29-jph7-fgwg/GHSA-pc29-jph7-fgwg.json +++ b/advisories/unreviewed/2022/05/GHSA-pc29-jph7-fgwg/GHSA-pc29-jph7-fgwg.json @@ -7,12 +7,8 @@ "CVE-2015-2018" ], "details": "IBM Integration Bus 9 and 10 before 10.0.0.1 and WebSphere Message Broker 7 before 7.0.0.8 and 8 before 8.0.0.7 do not ensure that the correct security profile is selected, which allows remote authenticated users to obtain sensitive information via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pcgp-8cx2-wv9f/GHSA-pcgp-8cx2-wv9f.json b/advisories/unreviewed/2022/05/GHSA-pcgp-8cx2-wv9f/GHSA-pcgp-8cx2-wv9f.json index 35dbcaf9fde..d07310208f1 100644 --- a/advisories/unreviewed/2022/05/GHSA-pcgp-8cx2-wv9f/GHSA-pcgp-8cx2-wv9f.json +++ b/advisories/unreviewed/2022/05/GHSA-pcgp-8cx2-wv9f/GHSA-pcgp-8cx2-wv9f.json @@ -7,12 +7,8 @@ "CVE-2014-2476" ], "details": "Unspecified vulnerability in the Oracle Secure Global Desktop component in Oracle Virtualization 5.0 and 5.1 allows remote attackers to affect availability via vectors related to SGD Proxy Server (ttaauxserv), a different vulnerability than CVE-2014-2472, CVE-2014-2474, and CVE-2014-6459.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-pf4f-4m5g-p5w2/GHSA-pf4f-4m5g-p5w2.json b/advisories/unreviewed/2022/05/GHSA-pf4f-4m5g-p5w2/GHSA-pf4f-4m5g-p5w2.json index 5e5d50c0111..77dde3e4ae7 100644 --- a/advisories/unreviewed/2022/05/GHSA-pf4f-4m5g-p5w2/GHSA-pf4f-4m5g-p5w2.json +++ b/advisories/unreviewed/2022/05/GHSA-pf4f-4m5g-p5w2/GHSA-pf4f-4m5g-p5w2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pfpc-m9wm-f454/GHSA-pfpc-m9wm-f454.json b/advisories/unreviewed/2022/05/GHSA-pfpc-m9wm-f454/GHSA-pfpc-m9wm-f454.json index d3bb4b9c913..d94a07c4fff 100644 --- a/advisories/unreviewed/2022/05/GHSA-pfpc-m9wm-f454/GHSA-pfpc-m9wm-f454.json +++ b/advisories/unreviewed/2022/05/GHSA-pfpc-m9wm-f454/GHSA-pfpc-m9wm-f454.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pgjp-v577-m7x4/GHSA-pgjp-v577-m7x4.json b/advisories/unreviewed/2022/05/GHSA-pgjp-v577-m7x4/GHSA-pgjp-v577-m7x4.json index 63ae15f4ccb..a3345ce6c63 100644 --- a/advisories/unreviewed/2022/05/GHSA-pgjp-v577-m7x4/GHSA-pgjp-v577-m7x4.json +++ b/advisories/unreviewed/2022/05/GHSA-pgjp-v577-m7x4/GHSA-pgjp-v577-m7x4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pgqx-h99c-xmqg/GHSA-pgqx-h99c-xmqg.json b/advisories/unreviewed/2022/05/GHSA-pgqx-h99c-xmqg/GHSA-pgqx-h99c-xmqg.json index 47e9ea7b958..8b032617a22 100644 --- a/advisories/unreviewed/2022/05/GHSA-pgqx-h99c-xmqg/GHSA-pgqx-h99c-xmqg.json +++ b/advisories/unreviewed/2022/05/GHSA-pgqx-h99c-xmqg/GHSA-pgqx-h99c-xmqg.json @@ -7,12 +7,8 @@ "CVE-2014-0339" ], "details": "Cross-site scripting (XSS) vulnerability in view.cgi in Webmin before 1.680 allows remote attackers to inject arbitrary web script or HTML via the search parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-phr7-2889-ff4v/GHSA-phr7-2889-ff4v.json b/advisories/unreviewed/2022/05/GHSA-phr7-2889-ff4v/GHSA-phr7-2889-ff4v.json index f18b8197ed2..7c28401c3ab 100644 --- a/advisories/unreviewed/2022/05/GHSA-phr7-2889-ff4v/GHSA-phr7-2889-ff4v.json +++ b/advisories/unreviewed/2022/05/GHSA-phr7-2889-ff4v/GHSA-phr7-2889-ff4v.json @@ -7,12 +7,8 @@ "CVE-2015-4138" ], "details": "The WebUI component in Blue Coat SSL Visibility Appliance SV800, SV1800, SV2800, and SV3800 3.6.x through 3.8.x before 3.8.4 does not include the HTTPOnly flag in a Set-Cookie header for the administrator's cookie, which makes it easier for remote attackers to obtain potentially sensitive information via script access to this cookie, a different vulnerability than CVE-2015-2855.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pmwj-966p-qvv8/GHSA-pmwj-966p-qvv8.json b/advisories/unreviewed/2022/05/GHSA-pmwj-966p-qvv8/GHSA-pmwj-966p-qvv8.json index 3e132c403cd..0bcc88fbb16 100644 --- a/advisories/unreviewed/2022/05/GHSA-pmwj-966p-qvv8/GHSA-pmwj-966p-qvv8.json +++ b/advisories/unreviewed/2022/05/GHSA-pmwj-966p-qvv8/GHSA-pmwj-966p-qvv8.json @@ -7,12 +7,8 @@ "CVE-2014-0742" ], "details": "The Certificate Authority Proxy Function (CAPF) CLI implementation in the CSR management feature in Cisco Unified Communications Manager (Unified CM) 10.0(1) and earlier allows local users to read or modify arbitrary files via unspecified vectors, aka Bug ID CSCum95464.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-ppcp-vw43-jhm8/GHSA-ppcp-vw43-jhm8.json b/advisories/unreviewed/2022/05/GHSA-ppcp-vw43-jhm8/GHSA-ppcp-vw43-jhm8.json index 9aa4552e62b..525b8d882b4 100644 --- a/advisories/unreviewed/2022/05/GHSA-ppcp-vw43-jhm8/GHSA-ppcp-vw43-jhm8.json +++ b/advisories/unreviewed/2022/05/GHSA-ppcp-vw43-jhm8/GHSA-ppcp-vw43-jhm8.json @@ -7,12 +7,8 @@ "CVE-2015-2656" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-pr2q-4j4w-xrhg/GHSA-pr2q-4j4w-xrhg.json b/advisories/unreviewed/2022/05/GHSA-pr2q-4j4w-xrhg/GHSA-pr2q-4j4w-xrhg.json index 29e9ae6c949..a4a48fc5dd2 100644 --- a/advisories/unreviewed/2022/05/GHSA-pr2q-4j4w-xrhg/GHSA-pr2q-4j4w-xrhg.json +++ b/advisories/unreviewed/2022/05/GHSA-pr2q-4j4w-xrhg/GHSA-pr2q-4j4w-xrhg.json @@ -7,12 +7,8 @@ "CVE-2015-2135" ], "details": "Unspecified vulnerability in HP Intelligent Provisioning 1.00 through 1.62(a), 2.00, and 2.10 allows remote attackers to execute arbitrary code via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-pr76-46qc-55q8/GHSA-pr76-46qc-55q8.json b/advisories/unreviewed/2022/05/GHSA-pr76-46qc-55q8/GHSA-pr76-46qc-55q8.json index 64bf950ae36..61d09ea84b3 100644 --- a/advisories/unreviewed/2022/05/GHSA-pr76-46qc-55q8/GHSA-pr76-46qc-55q8.json +++ b/advisories/unreviewed/2022/05/GHSA-pr76-46qc-55q8/GHSA-pr76-46qc-55q8.json @@ -7,12 +7,8 @@ "CVE-2014-0747" ], "details": "The Certificate Authority Proxy Function (CAPF) CLI implementation in Cisco Unified Communications Manager (Unified CM) 10.0(1) and earlier allows local users to inject commands via unspecified CAPF programs, aka Bug ID CSCum95493.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pv3m-59xf-7cp6/GHSA-pv3m-59xf-7cp6.json b/advisories/unreviewed/2022/05/GHSA-pv3m-59xf-7cp6/GHSA-pv3m-59xf-7cp6.json index 880af00f4d5..b30ddc07810 100644 --- a/advisories/unreviewed/2022/05/GHSA-pv3m-59xf-7cp6/GHSA-pv3m-59xf-7cp6.json +++ b/advisories/unreviewed/2022/05/GHSA-pv3m-59xf-7cp6/GHSA-pv3m-59xf-7cp6.json @@ -7,12 +7,8 @@ "CVE-2015-5624" ], "details": "Buffer overflow in the ExecCall method in c2lv6.ocx in the FreeBit ELPhoneBtnV6 ActiveX control allows remote attackers to execute arbitrary code via a crafted HTML document, related to the discontinued \"Click to Live\" service.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pwww-grqm-vmgr/GHSA-pwww-grqm-vmgr.json b/advisories/unreviewed/2022/05/GHSA-pwww-grqm-vmgr/GHSA-pwww-grqm-vmgr.json index 50534595772..9744a9108fc 100644 --- a/advisories/unreviewed/2022/05/GHSA-pwww-grqm-vmgr/GHSA-pwww-grqm-vmgr.json +++ b/advisories/unreviewed/2022/05/GHSA-pwww-grqm-vmgr/GHSA-pwww-grqm-vmgr.json @@ -7,12 +7,8 @@ "CVE-2015-1551" ], "details": "Directory traversal vulnerability in Aruba Networks ClearPass Policy Manager (CPPM) before 6.4.4 allows remote administrators to read arbitrary files via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-px77-jg6r-fh7m/GHSA-px77-jg6r-fh7m.json b/advisories/unreviewed/2022/05/GHSA-px77-jg6r-fh7m/GHSA-px77-jg6r-fh7m.json index fa5e14d36e4..3c531c0239e 100644 --- a/advisories/unreviewed/2022/05/GHSA-px77-jg6r-fh7m/GHSA-px77-jg6r-fh7m.json +++ b/advisories/unreviewed/2022/05/GHSA-px77-jg6r-fh7m/GHSA-px77-jg6r-fh7m.json @@ -7,12 +7,8 @@ "CVE-2015-4063" ], "details": "Cross-site scripting (XSS) vulnerability in includes/nsp_search.php in the NewStatPress plugin before 0.9.9 for WordPress allows remote authenticated users to inject arbitrary web script or HTML via the where1 parameter in the nsp_search page to wp-admin/admin.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q2mg-v65h-9w4x/GHSA-q2mg-v65h-9w4x.json b/advisories/unreviewed/2022/05/GHSA-q2mg-v65h-9w4x/GHSA-q2mg-v65h-9w4x.json index 1f0fa9fdfcf..f20a2001c20 100644 --- a/advisories/unreviewed/2022/05/GHSA-q2mg-v65h-9w4x/GHSA-q2mg-v65h-9w4x.json +++ b/advisories/unreviewed/2022/05/GHSA-q2mg-v65h-9w4x/GHSA-q2mg-v65h-9w4x.json @@ -7,12 +7,8 @@ "CVE-2014-4594" ], "details": "Cross-site scripting (XSS) vulnerability in index.php in the WordPress Responsive Preview plugin before 1.2 for WordPress allows remote attackers to inject arbitrary web script or HTML via the url parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q2vf-jgqw-hc46/GHSA-q2vf-jgqw-hc46.json b/advisories/unreviewed/2022/05/GHSA-q2vf-jgqw-hc46/GHSA-q2vf-jgqw-hc46.json index 8c7b1a27d4f..73c3e5882a1 100644 --- a/advisories/unreviewed/2022/05/GHSA-q2vf-jgqw-hc46/GHSA-q2vf-jgqw-hc46.json +++ b/advisories/unreviewed/2022/05/GHSA-q2vf-jgqw-hc46/GHSA-q2vf-jgqw-hc46.json @@ -7,12 +7,8 @@ "CVE-2014-2543" ], "details": "Buffer overflow in the Rendezvous Daemon (rvd), Rendezvous Routing Daemon (rvrd), Rendezvous Secure Daemon (rvsd), and Rendezvous Secure Routing Daemon (rvsrd) in TIBCO Rendezvous before 8.4.2, Messaging Appliance before 8.7.1, and Substation ES before 2.8.1 allows remote attackers to execute arbitrary code by leveraging access to a directly connected client and transmitting crafted data.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q458-rj22-xhfr/GHSA-q458-rj22-xhfr.json b/advisories/unreviewed/2022/05/GHSA-q458-rj22-xhfr/GHSA-q458-rj22-xhfr.json index 64bcb13ff71..7599dc7d2e4 100644 --- a/advisories/unreviewed/2022/05/GHSA-q458-rj22-xhfr/GHSA-q458-rj22-xhfr.json +++ b/advisories/unreviewed/2022/05/GHSA-q458-rj22-xhfr/GHSA-q458-rj22-xhfr.json @@ -7,12 +7,8 @@ "CVE-2015-4747" ], "details": "Unspecified vulnerability in the Oracle Event Processing component in Oracle Fusion Middleware 11.1.1.7 and 12.1.3.0 allows remote attackers to affect confidentiality, integrity, and availability via vectors related to CEP system.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-q4w6-2g7p-pr2c/GHSA-q4w6-2g7p-pr2c.json b/advisories/unreviewed/2022/05/GHSA-q4w6-2g7p-pr2c/GHSA-q4w6-2g7p-pr2c.json index 215522b9fdc..b0fef29d87b 100644 --- a/advisories/unreviewed/2022/05/GHSA-q4w6-2g7p-pr2c/GHSA-q4w6-2g7p-pr2c.json +++ b/advisories/unreviewed/2022/05/GHSA-q4w6-2g7p-pr2c/GHSA-q4w6-2g7p-pr2c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q536-mj7v-jf43/GHSA-q536-mj7v-jf43.json b/advisories/unreviewed/2022/05/GHSA-q536-mj7v-jf43/GHSA-q536-mj7v-jf43.json index cb4e6ff288c..0af4494b285 100644 --- a/advisories/unreviewed/2022/05/GHSA-q536-mj7v-jf43/GHSA-q536-mj7v-jf43.json +++ b/advisories/unreviewed/2022/05/GHSA-q536-mj7v-jf43/GHSA-q536-mj7v-jf43.json @@ -7,12 +7,8 @@ "CVE-2015-5503" ], "details": "Open redirect vulnerability in the Chamilo integration module 7.x-1.x before 7.x-1.2 for Drupal allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via unspecified parameters.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-q5h5-6cgc-ffr7/GHSA-q5h5-6cgc-ffr7.json b/advisories/unreviewed/2022/05/GHSA-q5h5-6cgc-ffr7/GHSA-q5h5-6cgc-ffr7.json index cf9fc54390d..45e55b3c5ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-q5h5-6cgc-ffr7/GHSA-q5h5-6cgc-ffr7.json +++ b/advisories/unreviewed/2022/05/GHSA-q5h5-6cgc-ffr7/GHSA-q5h5-6cgc-ffr7.json @@ -7,12 +7,8 @@ "CVE-2014-3408" ], "details": "Cross-site scripting (XSS) vulnerability in the web framework in Cisco Prime Optical 10 allows remote attackers to inject arbitrary web script or HTML via an unspecified parameter, aka Bug ID CSCuq80763.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q78m-qp53-p6qw/GHSA-q78m-qp53-p6qw.json b/advisories/unreviewed/2022/05/GHSA-q78m-qp53-p6qw/GHSA-q78m-qp53-p6qw.json index ddd02354af5..0e680a64434 100644 --- a/advisories/unreviewed/2022/05/GHSA-q78m-qp53-p6qw/GHSA-q78m-qp53-p6qw.json +++ b/advisories/unreviewed/2022/05/GHSA-q78m-qp53-p6qw/GHSA-q78m-qp53-p6qw.json @@ -7,12 +7,8 @@ "CVE-2014-8606" ], "details": "Directory traversal vulnerability in the XCloner plugin 3.1.1 for WordPress and 3.5.1 for Joomla! allows remote administrators to read arbitrary files via a .. (dot dot) in the file parameter in a json_return action in the xcloner_show page to wp-admin/admin-ajax.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q7g5-m6wc-m8m7/GHSA-q7g5-m6wc-m8m7.json b/advisories/unreviewed/2022/05/GHSA-q7g5-m6wc-m8m7/GHSA-q7g5-m6wc-m8m7.json index 70e700e1925..87e13dc41c9 100644 --- a/advisories/unreviewed/2022/05/GHSA-q7g5-m6wc-m8m7/GHSA-q7g5-m6wc-m8m7.json +++ b/advisories/unreviewed/2022/05/GHSA-q7g5-m6wc-m8m7/GHSA-q7g5-m6wc-m8m7.json @@ -7,12 +7,8 @@ "CVE-2015-6512" ], "details": "SQL injection vulnerability in the get_messages function in server/plugins/chatroom/chatroom.php in FreiChat 9.6 allows remote attackers to execute arbitrary SQL commands via the time parameter to server/freichat.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q89c-84wv-f79v/GHSA-q89c-84wv-f79v.json b/advisories/unreviewed/2022/05/GHSA-q89c-84wv-f79v/GHSA-q89c-84wv-f79v.json index a209757c439..8cff92ac32f 100644 --- a/advisories/unreviewed/2022/05/GHSA-q89c-84wv-f79v/GHSA-q89c-84wv-f79v.json +++ b/advisories/unreviewed/2022/05/GHSA-q89c-84wv-f79v/GHSA-q89c-84wv-f79v.json @@ -7,12 +7,8 @@ "CVE-2015-0712" ], "details": "The session-manager service in Cisco StarOS 12.0, 12.2(300), 14.0, and 14.0(600) on ASR 5000 devices allows remote attackers to cause a denial of service (service reload and packet loss) via malformed HTTP packets, aka Bug ID CSCud14217.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-q8xh-5hf9-9qh7/GHSA-q8xh-5hf9-9qh7.json b/advisories/unreviewed/2022/05/GHSA-q8xh-5hf9-9qh7/GHSA-q8xh-5hf9-9qh7.json index 58cfdf890df..df57f026f5b 100644 --- a/advisories/unreviewed/2022/05/GHSA-q8xh-5hf9-9qh7/GHSA-q8xh-5hf9-9qh7.json +++ b/advisories/unreviewed/2022/05/GHSA-q8xh-5hf9-9qh7/GHSA-q8xh-5hf9-9qh7.json @@ -7,12 +7,8 @@ "CVE-2015-4347" ], "details": "Cross-site scripting (XSS) vulnerability in the inLinks Integration module for Drupal allows remote attackers to inject arbitrary web script or HTML via unspecified path arguments.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q97h-mjwh-c25x/GHSA-q97h-mjwh-c25x.json b/advisories/unreviewed/2022/05/GHSA-q97h-mjwh-c25x/GHSA-q97h-mjwh-c25x.json index dcc8f4f6d91..f7ae7f2b36c 100644 --- a/advisories/unreviewed/2022/05/GHSA-q97h-mjwh-c25x/GHSA-q97h-mjwh-c25x.json +++ b/advisories/unreviewed/2022/05/GHSA-q97h-mjwh-c25x/GHSA-q97h-mjwh-c25x.json @@ -7,12 +7,8 @@ "CVE-2014-8954" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in phpSound 1.0.5 allow remote attackers to inject arbitrary web script or HTML via the (1) Title or (2) Description fields in a playlist or the (3) filter parameter in an explore action to index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q9cm-f5gg-2mmq/GHSA-q9cm-f5gg-2mmq.json b/advisories/unreviewed/2022/05/GHSA-q9cm-f5gg-2mmq/GHSA-q9cm-f5gg-2mmq.json index 0169db09ece..fa07f4db3b4 100644 --- a/advisories/unreviewed/2022/05/GHSA-q9cm-f5gg-2mmq/GHSA-q9cm-f5gg-2mmq.json +++ b/advisories/unreviewed/2022/05/GHSA-q9cm-f5gg-2mmq/GHSA-q9cm-f5gg-2mmq.json @@ -7,12 +7,8 @@ "CVE-2015-4294" ], "details": "Cross-site scripting (XSS) vulnerability in Cisco IM and Presence Service before 10.5 MR1 allows remote attackers to inject arbitrary web script or HTML by constructing a crafted URL that leverages incomplete filtering of HTML elements, aka Bug ID CSCut41766.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qc3r-24p8-3v4v/GHSA-qc3r-24p8-3v4v.json b/advisories/unreviewed/2022/05/GHSA-qc3r-24p8-3v4v/GHSA-qc3r-24p8-3v4v.json index 7a4b15aa24d..f80165cf2c0 100644 --- a/advisories/unreviewed/2022/05/GHSA-qc3r-24p8-3v4v/GHSA-qc3r-24p8-3v4v.json +++ b/advisories/unreviewed/2022/05/GHSA-qc3r-24p8-3v4v/GHSA-qc3r-24p8-3v4v.json @@ -7,12 +7,8 @@ "CVE-2013-7401" ], "details": "The parse_request function in request.c in c-icap 0.2.x allows remote attackers to cause a denial of service (crash) via a URI without a \" \" or \"?\" character in an ICAP request, as demonstrated by use of the OPTIONS method.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qc5w-pjxj-hxgf/GHSA-qc5w-pjxj-hxgf.json b/advisories/unreviewed/2022/05/GHSA-qc5w-pjxj-hxgf/GHSA-qc5w-pjxj-hxgf.json index 79e6aa19b42..5a17d0d7e3c 100644 --- a/advisories/unreviewed/2022/05/GHSA-qc5w-pjxj-hxgf/GHSA-qc5w-pjxj-hxgf.json +++ b/advisories/unreviewed/2022/05/GHSA-qc5w-pjxj-hxgf/GHSA-qc5w-pjxj-hxgf.json @@ -7,12 +7,8 @@ "CVE-2015-4382" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in the Invoice module 6.x-1.x before 6.x-1.2 and 7.x-1.x before 7.x-1.3 for Drupal allow remote attackers to hijack the authentication of arbitrary users for requests that (1) create, (2) delete, or (3) alter invoices via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qcc4-68mr-qhx3/GHSA-qcc4-68mr-qhx3.json b/advisories/unreviewed/2022/05/GHSA-qcc4-68mr-qhx3/GHSA-qcc4-68mr-qhx3.json index 8cd10acc6a7..0c1a2b07129 100644 --- a/advisories/unreviewed/2022/05/GHSA-qcc4-68mr-qhx3/GHSA-qcc4-68mr-qhx3.json +++ b/advisories/unreviewed/2022/05/GHSA-qcc4-68mr-qhx3/GHSA-qcc4-68mr-qhx3.json @@ -7,12 +7,8 @@ "CVE-2015-5363" ], "details": "The SRX Network Security Daemon (nsd) in Juniper SRX Series services gateways with Junos 12.1X44 before 12.1X44-D50, 12.1X46 before 12.1X46-D35, 12.1X47 before 12.1X47-D25, and 12.3X48 before 12.3X48-D15 allows remote DNS servers to cause a denial of service (crash) via a crafted DNS response.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qg26-364g-r67q/GHSA-qg26-364g-r67q.json b/advisories/unreviewed/2022/05/GHSA-qg26-364g-r67q/GHSA-qg26-364g-r67q.json index c73051396e0..4f7d960778b 100644 --- a/advisories/unreviewed/2022/05/GHSA-qg26-364g-r67q/GHSA-qg26-364g-r67q.json +++ b/advisories/unreviewed/2022/05/GHSA-qg26-364g-r67q/GHSA-qg26-364g-r67q.json @@ -7,12 +7,8 @@ "CVE-2015-6514" ], "details": "Cross-site scripting (XSS) vulnerability in the Dashboard in Splunk Enterprise 6.2.x before 6.2.4 and Splunk Light 6.2.x before 6.2.4 allows remote authenticated users to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qgvm-92m2-j87g/GHSA-qgvm-92m2-j87g.json b/advisories/unreviewed/2022/05/GHSA-qgvm-92m2-j87g/GHSA-qgvm-92m2-j87g.json index ea493cc857a..5074328f362 100644 --- a/advisories/unreviewed/2022/05/GHSA-qgvm-92m2-j87g/GHSA-qgvm-92m2-j87g.json +++ b/advisories/unreviewed/2022/05/GHSA-qgvm-92m2-j87g/GHSA-qgvm-92m2-j87g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qhhj-q26m-mrw8/GHSA-qhhj-q26m-mrw8.json b/advisories/unreviewed/2022/05/GHSA-qhhj-q26m-mrw8/GHSA-qhhj-q26m-mrw8.json index 9094d50c082..93499956be4 100644 --- a/advisories/unreviewed/2022/05/GHSA-qhhj-q26m-mrw8/GHSA-qhhj-q26m-mrw8.json +++ b/advisories/unreviewed/2022/05/GHSA-qhhj-q26m-mrw8/GHSA-qhhj-q26m-mrw8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qhx7-mcgr-x6cr/GHSA-qhx7-mcgr-x6cr.json b/advisories/unreviewed/2022/05/GHSA-qhx7-mcgr-x6cr/GHSA-qhx7-mcgr-x6cr.json index 434e6179ae4..ce7c1d149a1 100644 --- a/advisories/unreviewed/2022/05/GHSA-qhx7-mcgr-x6cr/GHSA-qhx7-mcgr-x6cr.json +++ b/advisories/unreviewed/2022/05/GHSA-qhx7-mcgr-x6cr/GHSA-qhx7-mcgr-x6cr.json @@ -7,12 +7,8 @@ "CVE-2013-6028" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in Atmail Webmail Server before 7.2 allow remote attackers to hijack the authentication of administrators for requests that (1) add user accounts, (2) modify user accounts, (3) delete user accounts, or (4) stop the product's service.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qm3c-x5c3-g2g4/GHSA-qm3c-x5c3-g2g4.json b/advisories/unreviewed/2022/05/GHSA-qm3c-x5c3-g2g4/GHSA-qm3c-x5c3-g2g4.json index 280d3d06e0a..b67c4b9bdef 100644 --- a/advisories/unreviewed/2022/05/GHSA-qm3c-x5c3-g2g4/GHSA-qm3c-x5c3-g2g4.json +++ b/advisories/unreviewed/2022/05/GHSA-qm3c-x5c3-g2g4/GHSA-qm3c-x5c3-g2g4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qm46-4g33-f75q/GHSA-qm46-4g33-f75q.json b/advisories/unreviewed/2022/05/GHSA-qm46-4g33-f75q/GHSA-qm46-4g33-f75q.json index 4fd23a915e8..6cb4fb9bff0 100644 --- a/advisories/unreviewed/2022/05/GHSA-qm46-4g33-f75q/GHSA-qm46-4g33-f75q.json +++ b/advisories/unreviewed/2022/05/GHSA-qm46-4g33-f75q/GHSA-qm46-4g33-f75q.json @@ -7,12 +7,8 @@ "CVE-2015-2978" ], "details": "Webservice-DIC yoyaku_v41 allows remote attackers to bypass authentication and complete a conference-room reservation via unspecified vectors, as demonstrated by an \"unintentional reservation.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qqjv-qq8w-56qr/GHSA-qqjv-qq8w-56qr.json b/advisories/unreviewed/2022/05/GHSA-qqjv-qq8w-56qr/GHSA-qqjv-qq8w-56qr.json index 4c3833405b9..111a9f76c74 100644 --- a/advisories/unreviewed/2022/05/GHSA-qqjv-qq8w-56qr/GHSA-qqjv-qq8w-56qr.json +++ b/advisories/unreviewed/2022/05/GHSA-qqjv-qq8w-56qr/GHSA-qqjv-qq8w-56qr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qqx5-q9g3-crw2/GHSA-qqx5-q9g3-crw2.json b/advisories/unreviewed/2022/05/GHSA-qqx5-q9g3-crw2/GHSA-qqx5-q9g3-crw2.json index 639e6c0b77e..9f3a5d8f4ae 100644 --- a/advisories/unreviewed/2022/05/GHSA-qqx5-q9g3-crw2/GHSA-qqx5-q9g3-crw2.json +++ b/advisories/unreviewed/2022/05/GHSA-qqx5-q9g3-crw2/GHSA-qqx5-q9g3-crw2.json @@ -7,12 +7,8 @@ "CVE-2015-4369" ], "details": "Cross-site scripting (XSS) vulnerability in the Trick Question module before 6.x-1.5 and 7.x-1.x before 7.x-1.5 for Drupal allows remote authenticated users with the \"Administer Trick Question\" permission to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qr56-rh52-v2r7/GHSA-qr56-rh52-v2r7.json b/advisories/unreviewed/2022/05/GHSA-qr56-rh52-v2r7/GHSA-qr56-rh52-v2r7.json index 1bdd11e7650..01dd1f54eca 100644 --- a/advisories/unreviewed/2022/05/GHSA-qr56-rh52-v2r7/GHSA-qr56-rh52-v2r7.json +++ b/advisories/unreviewed/2022/05/GHSA-qr56-rh52-v2r7/GHSA-qr56-rh52-v2r7.json @@ -7,12 +7,8 @@ "CVE-2015-2624" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qrqq-gw6x-wx4r/GHSA-qrqq-gw6x-wx4r.json b/advisories/unreviewed/2022/05/GHSA-qrqq-gw6x-wx4r/GHSA-qrqq-gw6x-wx4r.json index 30b07484086..045ecfec4b0 100644 --- a/advisories/unreviewed/2022/05/GHSA-qrqq-gw6x-wx4r/GHSA-qrqq-gw6x-wx4r.json +++ b/advisories/unreviewed/2022/05/GHSA-qrqq-gw6x-wx4r/GHSA-qrqq-gw6x-wx4r.json @@ -7,12 +7,8 @@ "CVE-2014-0729" ], "details": "SQL injection vulnerability in the Enterprise Mobility Application (EMApp) interface in Cisco Unified Communications Manager (UCM) allows remote attackers to execute arbitrary SQL commands via a crafted URL, aka Bug ID CSCum05302.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qrxm-v3jp-h6qg/GHSA-qrxm-v3jp-h6qg.json b/advisories/unreviewed/2022/05/GHSA-qrxm-v3jp-h6qg/GHSA-qrxm-v3jp-h6qg.json index 0994715202d..3f8a395eaa8 100644 --- a/advisories/unreviewed/2022/05/GHSA-qrxm-v3jp-h6qg/GHSA-qrxm-v3jp-h6qg.json +++ b/advisories/unreviewed/2022/05/GHSA-qrxm-v3jp-h6qg/GHSA-qrxm-v3jp-h6qg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qwg2-rf9c-v87f/GHSA-qwg2-rf9c-v87f.json b/advisories/unreviewed/2022/05/GHSA-qwg2-rf9c-v87f/GHSA-qwg2-rf9c-v87f.json index 5e443631024..4d4a9bb78aa 100644 --- a/advisories/unreviewed/2022/05/GHSA-qwg2-rf9c-v87f/GHSA-qwg2-rf9c-v87f.json +++ b/advisories/unreviewed/2022/05/GHSA-qwg2-rf9c-v87f/GHSA-qwg2-rf9c-v87f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qwh7-x5hv-2p9x/GHSA-qwh7-x5hv-2p9x.json b/advisories/unreviewed/2022/05/GHSA-qwh7-x5hv-2p9x/GHSA-qwh7-x5hv-2p9x.json index 41d6930e971..22415b0dd13 100644 --- a/advisories/unreviewed/2022/05/GHSA-qwh7-x5hv-2p9x/GHSA-qwh7-x5hv-2p9x.json +++ b/advisories/unreviewed/2022/05/GHSA-qwh7-x5hv-2p9x/GHSA-qwh7-x5hv-2p9x.json @@ -7,12 +7,8 @@ "CVE-2015-2132" ], "details": "Unspecified vulnerability in the execve system-call implementation in HP HP-UX B.11.11, B.11.23, and B.11.31 allows local users to gain privileges via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qwjx-r4cv-gf2x/GHSA-qwjx-r4cv-gf2x.json b/advisories/unreviewed/2022/05/GHSA-qwjx-r4cv-gf2x/GHSA-qwjx-r4cv-gf2x.json index d3f91abebcd..cd3276ae3d9 100644 --- a/advisories/unreviewed/2022/05/GHSA-qwjx-r4cv-gf2x/GHSA-qwjx-r4cv-gf2x.json +++ b/advisories/unreviewed/2022/05/GHSA-qwjx-r4cv-gf2x/GHSA-qwjx-r4cv-gf2x.json @@ -7,12 +7,8 @@ "CVE-2014-0991" ], "details": "Stack-based buffer overflow in Advantech WebAccess (formerly BroadWin WebAccess) 7.2 allows remote attackers to execute arbitrary code via the projectname parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qwm2-7fcj-vxpq/GHSA-qwm2-7fcj-vxpq.json b/advisories/unreviewed/2022/05/GHSA-qwm2-7fcj-vxpq/GHSA-qwm2-7fcj-vxpq.json index 2a406725060..23790c2882d 100644 --- a/advisories/unreviewed/2022/05/GHSA-qwm2-7fcj-vxpq/GHSA-qwm2-7fcj-vxpq.json +++ b/advisories/unreviewed/2022/05/GHSA-qwm2-7fcj-vxpq/GHSA-qwm2-7fcj-vxpq.json @@ -7,12 +7,8 @@ "CVE-2014-2191" ], "details": "Cross-site scripting (XSS) vulnerability in the web framework in Cisco Broadcast Access Center for Telco and Wireless (aka BAC-TW) allows remote attackers to inject arbitrary web script or HTML via an unspecified parameter, aka Bug ID CSCun91113.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qwpj-549m-7v5q/GHSA-qwpj-549m-7v5q.json b/advisories/unreviewed/2022/05/GHSA-qwpj-549m-7v5q/GHSA-qwpj-549m-7v5q.json index 5ed049f642c..1186e2433fa 100644 --- a/advisories/unreviewed/2022/05/GHSA-qwpj-549m-7v5q/GHSA-qwpj-549m-7v5q.json +++ b/advisories/unreviewed/2022/05/GHSA-qwpj-549m-7v5q/GHSA-qwpj-549m-7v5q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qwvx-h2c6-26qm/GHSA-qwvx-h2c6-26qm.json b/advisories/unreviewed/2022/05/GHSA-qwvx-h2c6-26qm/GHSA-qwvx-h2c6-26qm.json index fe59b9ac367..c148dfec025 100644 --- a/advisories/unreviewed/2022/05/GHSA-qwvx-h2c6-26qm/GHSA-qwvx-h2c6-26qm.json +++ b/advisories/unreviewed/2022/05/GHSA-qwvx-h2c6-26qm/GHSA-qwvx-h2c6-26qm.json @@ -7,12 +7,8 @@ "CVE-2015-6528" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in install_classic.php in Coppermine Photo Gallery (CPG) 1.5.36 allow remote attackers to inject arbitrary web script or HTML via the (1) admin_username, (2) admin_password, (3) admin_email, (4) dbserver, (5) dbname, (6) dbuser, (7) dbpass, (8) table_prefix, or (9) impath parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qx7p-cgh9-72qx/GHSA-qx7p-cgh9-72qx.json b/advisories/unreviewed/2022/05/GHSA-qx7p-cgh9-72qx/GHSA-qx7p-cgh9-72qx.json index 36ccbb750a9..1badf3fd752 100644 --- a/advisories/unreviewed/2022/05/GHSA-qx7p-cgh9-72qx/GHSA-qx7p-cgh9-72qx.json +++ b/advisories/unreviewed/2022/05/GHSA-qx7p-cgh9-72qx/GHSA-qx7p-cgh9-72qx.json @@ -7,12 +7,8 @@ "CVE-2014-2091" ], "details": "Cross-site scripting (XSS) vulnerability in mods/_standard/forums/admin/forum_add.php in ATutor 2.1.1 allows remote authenticated administrators to inject arbitrary web script or HTML via the title parameter in an add_forum action. NOTE: the original disclosure also reported issues that may not cross privilege boundaries.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qxpm-7cx5-7rj3/GHSA-qxpm-7cx5-7rj3.json b/advisories/unreviewed/2022/05/GHSA-qxpm-7cx5-7rj3/GHSA-qxpm-7cx5-7rj3.json index 53c32d4c212..2a11477a1ab 100644 --- a/advisories/unreviewed/2022/05/GHSA-qxpm-7cx5-7rj3/GHSA-qxpm-7cx5-7rj3.json +++ b/advisories/unreviewed/2022/05/GHSA-qxpm-7cx5-7rj3/GHSA-qxpm-7cx5-7rj3.json @@ -7,12 +7,8 @@ "CVE-2014-0811" ], "details": "Cross-site scripting (XSS) vulnerability in Blackboard Vista/CE 8.0 SP6 and earlier allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qxrq-pc62-r432/GHSA-qxrq-pc62-r432.json b/advisories/unreviewed/2022/05/GHSA-qxrq-pc62-r432/GHSA-qxrq-pc62-r432.json index 884fa796704..4bbf9dbaa09 100644 --- a/advisories/unreviewed/2022/05/GHSA-qxrq-pc62-r432/GHSA-qxrq-pc62-r432.json +++ b/advisories/unreviewed/2022/05/GHSA-qxrq-pc62-r432/GHSA-qxrq-pc62-r432.json @@ -7,12 +7,8 @@ "CVE-2015-0641" ], "details": "Cisco IOS XE 2.x and 3.x before 3.9.0S, 3.10 before 3.10.0S, 3.11 before 3.11.0S, 3.12 before 3.12.0S, 3.13 before 3.13.0S, 3.14 before 3.14.0S, and 3.15 before 3.15.0S allows remote attackers to cause a denial of service (device reload) via crafted IPv6 packets, aka Bug ID CSCub68073.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r328-x8x5-95rp/GHSA-r328-x8x5-95rp.json b/advisories/unreviewed/2022/05/GHSA-r328-x8x5-95rp/GHSA-r328-x8x5-95rp.json index 49738352d6b..55ba9d6cc71 100644 --- a/advisories/unreviewed/2022/05/GHSA-r328-x8x5-95rp/GHSA-r328-x8x5-95rp.json +++ b/advisories/unreviewed/2022/05/GHSA-r328-x8x5-95rp/GHSA-r328-x8x5-95rp.json @@ -7,12 +7,8 @@ "CVE-2015-4378" ], "details": "Cross-site scripting (XSS) vulnerability in the Crumbs module 7.x-2.x before 7.x-2.3 for Drupal allows remote authenticated users with the \"Administer Crumbs\" permission to inject arbitrary web script or HTML via a custom breadcrumb separator.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r363-78j8-cvc8/GHSA-r363-78j8-cvc8.json b/advisories/unreviewed/2022/05/GHSA-r363-78j8-cvc8/GHSA-r363-78j8-cvc8.json index 68be2ca27ac..0196362a0d0 100644 --- a/advisories/unreviewed/2022/05/GHSA-r363-78j8-cvc8/GHSA-r363-78j8-cvc8.json +++ b/advisories/unreviewed/2022/05/GHSA-r363-78j8-cvc8/GHSA-r363-78j8-cvc8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r3h3-2xcv-m95h/GHSA-r3h3-2xcv-m95h.json b/advisories/unreviewed/2022/05/GHSA-r3h3-2xcv-m95h/GHSA-r3h3-2xcv-m95h.json index 7fdf4f68aa2..aad87356ed4 100644 --- a/advisories/unreviewed/2022/05/GHSA-r3h3-2xcv-m95h/GHSA-r3h3-2xcv-m95h.json +++ b/advisories/unreviewed/2022/05/GHSA-r3h3-2xcv-m95h/GHSA-r3h3-2xcv-m95h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r43q-435x-vmw7/GHSA-r43q-435x-vmw7.json b/advisories/unreviewed/2022/05/GHSA-r43q-435x-vmw7/GHSA-r43q-435x-vmw7.json index 43954a71ac1..28e260fb5f2 100644 --- a/advisories/unreviewed/2022/05/GHSA-r43q-435x-vmw7/GHSA-r43q-435x-vmw7.json +++ b/advisories/unreviewed/2022/05/GHSA-r43q-435x-vmw7/GHSA-r43q-435x-vmw7.json @@ -7,12 +7,8 @@ "CVE-2014-4348" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in phpMyAdmin 4.2.x before 4.2.4 allow remote authenticated users to inject arbitrary web script or HTML via a crafted (1) database name or (2) table name that is improperly handled after presence in (a) the favorite list or (b) recent tables.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r487-g863-pm8x/GHSA-r487-g863-pm8x.json b/advisories/unreviewed/2022/05/GHSA-r487-g863-pm8x/GHSA-r487-g863-pm8x.json index a69198fb2d1..3c37ec9051c 100644 --- a/advisories/unreviewed/2022/05/GHSA-r487-g863-pm8x/GHSA-r487-g863-pm8x.json +++ b/advisories/unreviewed/2022/05/GHSA-r487-g863-pm8x/GHSA-r487-g863-pm8x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r4rw-wx6j-x8v9/GHSA-r4rw-wx6j-x8v9.json b/advisories/unreviewed/2022/05/GHSA-r4rw-wx6j-x8v9/GHSA-r4rw-wx6j-x8v9.json index 696a4250e3c..ec89251d4f9 100644 --- a/advisories/unreviewed/2022/05/GHSA-r4rw-wx6j-x8v9/GHSA-r4rw-wx6j-x8v9.json +++ b/advisories/unreviewed/2022/05/GHSA-r4rw-wx6j-x8v9/GHSA-r4rw-wx6j-x8v9.json @@ -7,12 +7,8 @@ "CVE-2015-5485" ], "details": "Cross-site scripting (XSS) vulnerability in the Event Import page (import-eventbrite-events.php) in the Modern Tribe Eventbrite Tickets plugin before 3.10.2 for WordPress allows remote attackers to inject arbitrary web script or HTML via the \"error\" parameter to wp-admin/edit.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r649-4ggm-5mq7/GHSA-r649-4ggm-5mq7.json b/advisories/unreviewed/2022/05/GHSA-r649-4ggm-5mq7/GHSA-r649-4ggm-5mq7.json index 9ec29184643..a92eed0d9b6 100644 --- a/advisories/unreviewed/2022/05/GHSA-r649-4ggm-5mq7/GHSA-r649-4ggm-5mq7.json +++ b/advisories/unreviewed/2022/05/GHSA-r649-4ggm-5mq7/GHSA-r649-4ggm-5mq7.json @@ -7,12 +7,8 @@ "CVE-2015-4359" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the Registration codes module before 6.x-1.6, 6.x-2.x before 6.x-2.8, and 7.x-1.x before 7.x-1.2 for Drupal allow remote authenticated users with permission to create or edit taxonomy terms or nodes to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r6qq-j76p-jxmq/GHSA-r6qq-j76p-jxmq.json b/advisories/unreviewed/2022/05/GHSA-r6qq-j76p-jxmq/GHSA-r6qq-j76p-jxmq.json index 93088e38fa6..0176e255c01 100644 --- a/advisories/unreviewed/2022/05/GHSA-r6qq-j76p-jxmq/GHSA-r6qq-j76p-jxmq.json +++ b/advisories/unreviewed/2022/05/GHSA-r6qq-j76p-jxmq/GHSA-r6qq-j76p-jxmq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r865-37rj-vvpm/GHSA-r865-37rj-vvpm.json b/advisories/unreviewed/2022/05/GHSA-r865-37rj-vvpm/GHSA-r865-37rj-vvpm.json index c8534128a8a..d19760cf2d4 100644 --- a/advisories/unreviewed/2022/05/GHSA-r865-37rj-vvpm/GHSA-r865-37rj-vvpm.json +++ b/advisories/unreviewed/2022/05/GHSA-r865-37rj-vvpm/GHSA-r865-37rj-vvpm.json @@ -7,12 +7,8 @@ "CVE-2015-4759" ], "details": "Unspecified vulnerability in the Oracle Data Integrator component in Oracle Fusion Middleware 11.1.1.3.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Data Quality based on Trillium, a different vulnerability than CVE-2015-0443, CVE-2015-0444, CVE-2015-0445, CVE-2015-0446, CVE-2015-2634, CVE-2015-2635, CVE-2015-2636, and CVE-2015-4758.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-r8fj-347g-p44m/GHSA-r8fj-347g-p44m.json b/advisories/unreviewed/2022/05/GHSA-r8fj-347g-p44m/GHSA-r8fj-347g-p44m.json index acd201ec109..e1080bd81f3 100644 --- a/advisories/unreviewed/2022/05/GHSA-r8fj-347g-p44m/GHSA-r8fj-347g-p44m.json +++ b/advisories/unreviewed/2022/05/GHSA-r8fj-347g-p44m/GHSA-r8fj-347g-p44m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r8gg-jrgv-562w/GHSA-r8gg-jrgv-562w.json b/advisories/unreviewed/2022/05/GHSA-r8gg-jrgv-562w/GHSA-r8gg-jrgv-562w.json index 27bd69bb562..c7845eb310b 100644 --- a/advisories/unreviewed/2022/05/GHSA-r8gg-jrgv-562w/GHSA-r8gg-jrgv-562w.json +++ b/advisories/unreviewed/2022/05/GHSA-r8gg-jrgv-562w/GHSA-r8gg-jrgv-562w.json @@ -7,12 +7,8 @@ "CVE-2015-2987" ], "details": "Type74 ED before 4.0 misuses 128-bit ECB encryption for small files, which makes it easier for attackers to obtain plaintext data via differential cryptanalysis of a file with an original length smaller than 128 bits.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-r96g-cm23-vmm2/GHSA-r96g-cm23-vmm2.json b/advisories/unreviewed/2022/05/GHSA-r96g-cm23-vmm2/GHSA-r96g-cm23-vmm2.json index 69589006aa2..f9c6d8b6eea 100644 --- a/advisories/unreviewed/2022/05/GHSA-r96g-cm23-vmm2/GHSA-r96g-cm23-vmm2.json +++ b/advisories/unreviewed/2022/05/GHSA-r96g-cm23-vmm2/GHSA-r96g-cm23-vmm2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r9pg-rq85-x734/GHSA-r9pg-rq85-x734.json b/advisories/unreviewed/2022/05/GHSA-r9pg-rq85-x734/GHSA-r9pg-rq85-x734.json index dcaab989d54..f38a09a092d 100644 --- a/advisories/unreviewed/2022/05/GHSA-r9pg-rq85-x734/GHSA-r9pg-rq85-x734.json +++ b/advisories/unreviewed/2022/05/GHSA-r9pg-rq85-x734/GHSA-r9pg-rq85-x734.json @@ -7,12 +7,8 @@ "CVE-2015-2983" ], "details": "Cross-site request forgery (CSRF) vulnerability in admin.php in PHP Kobo Photo Gallery CMS for PC, smartphone and feature phone 1.0.1 Free and earlier allows remote attackers to hijack the authentication of arbitrary users.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r9w4-4prc-83r9/GHSA-r9w4-4prc-83r9.json b/advisories/unreviewed/2022/05/GHSA-r9w4-4prc-83r9/GHSA-r9w4-4prc-83r9.json index 34af2a99b3a..4d5b3c1783f 100644 --- a/advisories/unreviewed/2022/05/GHSA-r9w4-4prc-83r9/GHSA-r9w4-4prc-83r9.json +++ b/advisories/unreviewed/2022/05/GHSA-r9w4-4prc-83r9/GHSA-r9w4-4prc-83r9.json @@ -7,12 +7,8 @@ "CVE-2014-8349" ], "details": "Cross-site scripting (XSS) vulnerability in Liferay Portal Enterprise Edition (EE) 6.2 SP8 and earlier allows remote authenticated users to inject arbitrary web script or HTML via the _20_body parameter in the comment field in an uploaded file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rc22-w2r6-v4gv/GHSA-rc22-w2r6-v4gv.json b/advisories/unreviewed/2022/05/GHSA-rc22-w2r6-v4gv/GHSA-rc22-w2r6-v4gv.json index 97082e7f31f..2a6ef91eebf 100644 --- a/advisories/unreviewed/2022/05/GHSA-rc22-w2r6-v4gv/GHSA-rc22-w2r6-v4gv.json +++ b/advisories/unreviewed/2022/05/GHSA-rc22-w2r6-v4gv/GHSA-rc22-w2r6-v4gv.json @@ -7,12 +7,8 @@ "CVE-2015-4787" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-rc97-386q-xwfr/GHSA-rc97-386q-xwfr.json b/advisories/unreviewed/2022/05/GHSA-rc97-386q-xwfr/GHSA-rc97-386q-xwfr.json index d0db1724829..d6bdf8685ee 100644 --- a/advisories/unreviewed/2022/05/GHSA-rc97-386q-xwfr/GHSA-rc97-386q-xwfr.json +++ b/advisories/unreviewed/2022/05/GHSA-rc97-386q-xwfr/GHSA-rc97-386q-xwfr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-rcf7-7w5q-hqfg/GHSA-rcf7-7w5q-hqfg.json b/advisories/unreviewed/2022/05/GHSA-rcf7-7w5q-hqfg/GHSA-rcf7-7w5q-hqfg.json index 8ef88b9f3ae..1d803ddd7cb 100644 --- a/advisories/unreviewed/2022/05/GHSA-rcf7-7w5q-hqfg/GHSA-rcf7-7w5q-hqfg.json +++ b/advisories/unreviewed/2022/05/GHSA-rcf7-7w5q-hqfg/GHSA-rcf7-7w5q-hqfg.json @@ -7,12 +7,8 @@ "CVE-2015-0850" ], "details": "The Git plugin for FusionForge before 6.0rc4 allows remote attackers to execute arbitrary code via an unspecified parameter when creating a secondary Git repository.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rggv-6c43-937v/GHSA-rggv-6c43-937v.json b/advisories/unreviewed/2022/05/GHSA-rggv-6c43-937v/GHSA-rggv-6c43-937v.json index b3ca2ec200e..d7ef622faec 100644 --- a/advisories/unreviewed/2022/05/GHSA-rggv-6c43-937v/GHSA-rggv-6c43-937v.json +++ b/advisories/unreviewed/2022/05/GHSA-rggv-6c43-937v/GHSA-rggv-6c43-937v.json @@ -7,12 +7,8 @@ "CVE-2015-2583" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-rh74-qx46-9m6h/GHSA-rh74-qx46-9m6h.json b/advisories/unreviewed/2022/05/GHSA-rh74-qx46-9m6h/GHSA-rh74-qx46-9m6h.json index c1d5ef07697..f6d1e9c134b 100644 --- a/advisories/unreviewed/2022/05/GHSA-rh74-qx46-9m6h/GHSA-rh74-qx46-9m6h.json +++ b/advisories/unreviewed/2022/05/GHSA-rh74-qx46-9m6h/GHSA-rh74-qx46-9m6h.json @@ -7,12 +7,8 @@ "CVE-2013-5013" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the management console on the Symantec Web Gateway (SWG) appliance before 5.2 allow remote attackers to inject arbitrary web script or HTML via (1) vectors involving PHP scripts and (2) unspecified other vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rjqf-6h27-xqfp/GHSA-rjqf-6h27-xqfp.json b/advisories/unreviewed/2022/05/GHSA-rjqf-6h27-xqfp/GHSA-rjqf-6h27-xqfp.json index 7ece80d7e32..739795791c6 100644 --- a/advisories/unreviewed/2022/05/GHSA-rjqf-6h27-xqfp/GHSA-rjqf-6h27-xqfp.json +++ b/advisories/unreviewed/2022/05/GHSA-rjqf-6h27-xqfp/GHSA-rjqf-6h27-xqfp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rmhv-f6q5-g9jv/GHSA-rmhv-f6q5-g9jv.json b/advisories/unreviewed/2022/05/GHSA-rmhv-f6q5-g9jv/GHSA-rmhv-f6q5-g9jv.json index 8bf61b992de..2b54923c392 100644 --- a/advisories/unreviewed/2022/05/GHSA-rmhv-f6q5-g9jv/GHSA-rmhv-f6q5-g9jv.json +++ b/advisories/unreviewed/2022/05/GHSA-rmhv-f6q5-g9jv/GHSA-rmhv-f6q5-g9jv.json @@ -7,12 +7,8 @@ "CVE-2015-2897" ], "details": "Sierra Wireless ALEOS before 4.4.2 on AirLink ES, GX, and LS devices has hardcoded root accounts, which makes it easier for remote attackers to obtain administrative access via a (1) SSH or (2) TELNET session.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rmm3-6hwr-c8q9/GHSA-rmm3-6hwr-c8q9.json b/advisories/unreviewed/2022/05/GHSA-rmm3-6hwr-c8q9/GHSA-rmm3-6hwr-c8q9.json index 19c409eecc4..d79f8937fc3 100644 --- a/advisories/unreviewed/2022/05/GHSA-rmm3-6hwr-c8q9/GHSA-rmm3-6hwr-c8q9.json +++ b/advisories/unreviewed/2022/05/GHSA-rmm3-6hwr-c8q9/GHSA-rmm3-6hwr-c8q9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rmq4-f55m-47cv/GHSA-rmq4-f55m-47cv.json b/advisories/unreviewed/2022/05/GHSA-rmq4-f55m-47cv/GHSA-rmq4-f55m-47cv.json index d07c29d9719..a616af48306 100644 --- a/advisories/unreviewed/2022/05/GHSA-rmq4-f55m-47cv/GHSA-rmq4-f55m-47cv.json +++ b/advisories/unreviewed/2022/05/GHSA-rmq4-f55m-47cv/GHSA-rmq4-f55m-47cv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rqpw-v3g2-qccx/GHSA-rqpw-v3g2-qccx.json b/advisories/unreviewed/2022/05/GHSA-rqpw-v3g2-qccx/GHSA-rqpw-v3g2-qccx.json index 768f7a9c01c..8a409b0aa66 100644 --- a/advisories/unreviewed/2022/05/GHSA-rqpw-v3g2-qccx/GHSA-rqpw-v3g2-qccx.json +++ b/advisories/unreviewed/2022/05/GHSA-rqpw-v3g2-qccx/GHSA-rqpw-v3g2-qccx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rr4h-f8v7-j8c3/GHSA-rr4h-f8v7-j8c3.json b/advisories/unreviewed/2022/05/GHSA-rr4h-f8v7-j8c3/GHSA-rr4h-f8v7-j8c3.json index b69c37add03..c50bbbb844a 100644 --- a/advisories/unreviewed/2022/05/GHSA-rr4h-f8v7-j8c3/GHSA-rr4h-f8v7-j8c3.json +++ b/advisories/unreviewed/2022/05/GHSA-rr4h-f8v7-j8c3/GHSA-rr4h-f8v7-j8c3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rvcv-w7fg-qhx7/GHSA-rvcv-w7fg-qhx7.json b/advisories/unreviewed/2022/05/GHSA-rvcv-w7fg-qhx7/GHSA-rvcv-w7fg-qhx7.json index c60b1f58658..ea0d742660a 100644 --- a/advisories/unreviewed/2022/05/GHSA-rvcv-w7fg-qhx7/GHSA-rvcv-w7fg-qhx7.json +++ b/advisories/unreviewed/2022/05/GHSA-rvcv-w7fg-qhx7/GHSA-rvcv-w7fg-qhx7.json @@ -7,12 +7,8 @@ "CVE-2015-0943" ], "details": "Basware Banking (Maksuliikenne) before 9.10.0.0 does not encrypt communication between the client and the backend server, which allows man-in-the-middle attackers to obtain encryption keys, user credentials, and other sensitive information by sniffing the network or modify this traffic by inserting packets into the client-server data stream.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rvxm-fxrp-q47c/GHSA-rvxm-fxrp-q47c.json b/advisories/unreviewed/2022/05/GHSA-rvxm-fxrp-q47c/GHSA-rvxm-fxrp-q47c.json index 9f6c1e90b3b..b46099d062b 100644 --- a/advisories/unreviewed/2022/05/GHSA-rvxm-fxrp-q47c/GHSA-rvxm-fxrp-q47c.json +++ b/advisories/unreviewed/2022/05/GHSA-rvxm-fxrp-q47c/GHSA-rvxm-fxrp-q47c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rw79-j333-m2h4/GHSA-rw79-j333-m2h4.json b/advisories/unreviewed/2022/05/GHSA-rw79-j333-m2h4/GHSA-rw79-j333-m2h4.json index e8b8845d96b..3c2289528ae 100644 --- a/advisories/unreviewed/2022/05/GHSA-rw79-j333-m2h4/GHSA-rw79-j333-m2h4.json +++ b/advisories/unreviewed/2022/05/GHSA-rw79-j333-m2h4/GHSA-rw79-j333-m2h4.json @@ -7,12 +7,8 @@ "CVE-2015-4373" ], "details": "Cross-site scripting (XSS) vulnerability in the OG tabs module before 7.x-1.1 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via vectors related to nodes posted in an Organic Groups group.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rwvv-5j4m-2f89/GHSA-rwvv-5j4m-2f89.json b/advisories/unreviewed/2022/05/GHSA-rwvv-5j4m-2f89/GHSA-rwvv-5j4m-2f89.json index 742e4acb449..201c354f69c 100644 --- a/advisories/unreviewed/2022/05/GHSA-rwvv-5j4m-2f89/GHSA-rwvv-5j4m-2f89.json +++ b/advisories/unreviewed/2022/05/GHSA-rwvv-5j4m-2f89/GHSA-rwvv-5j4m-2f89.json @@ -7,12 +7,8 @@ "CVE-2015-0650" ], "details": "The Service Discovery Gateway (aka mDNS Gateway) in Cisco IOS 12.2, 12.4, 15.0, 15.1, 15.2, 15.3, and 15.4 and IOS XE 3.9.xS and 3.10.xS before 3.10.4S, 3.11.xS before 3.11.3S, 3.12.xS before 3.12.2S, and 3.13.xS before 3.13.1S allows remote attackers to cause a denial of service (device reload) by sending malformed mDNS UDP packets over (1) IPv4 or (2) IPv6, aka Bug ID CSCup70579.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rx2c-347v-f3f4/GHSA-rx2c-347v-f3f4.json b/advisories/unreviewed/2022/05/GHSA-rx2c-347v-f3f4/GHSA-rx2c-347v-f3f4.json index 0b8ab5560b4..2cec90b138a 100644 --- a/advisories/unreviewed/2022/05/GHSA-rx2c-347v-f3f4/GHSA-rx2c-347v-f3f4.json +++ b/advisories/unreviewed/2022/05/GHSA-rx2c-347v-f3f4/GHSA-rx2c-347v-f3f4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rxxw-cf4p-w46j/GHSA-rxxw-cf4p-w46j.json b/advisories/unreviewed/2022/05/GHSA-rxxw-cf4p-w46j/GHSA-rxxw-cf4p-w46j.json index 0607733a8ea..9acf2b67efa 100644 --- a/advisories/unreviewed/2022/05/GHSA-rxxw-cf4p-w46j/GHSA-rxxw-cf4p-w46j.json +++ b/advisories/unreviewed/2022/05/GHSA-rxxw-cf4p-w46j/GHSA-rxxw-cf4p-w46j.json @@ -7,12 +7,8 @@ "CVE-2015-2635" ], "details": "Unspecified vulnerability in the Oracle Data Integrator component in Oracle Fusion Middleware 11.1.1.3.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Data Quality based on Trillium, a different vulnerability than CVE-2015-0443, CVE-2015-0444, CVE-2015-0445, CVE-2015-0446, CVE-2015-2634, CVE-2015-2636, CVE-2015-4758, and CVE-2015-4759.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v26v-8qq2-4jwc/GHSA-v26v-8qq2-4jwc.json b/advisories/unreviewed/2022/05/GHSA-v26v-8qq2-4jwc/GHSA-v26v-8qq2-4jwc.json index 9fca93827da..543af96f775 100644 --- a/advisories/unreviewed/2022/05/GHSA-v26v-8qq2-4jwc/GHSA-v26v-8qq2-4jwc.json +++ b/advisories/unreviewed/2022/05/GHSA-v26v-8qq2-4jwc/GHSA-v26v-8qq2-4jwc.json @@ -7,12 +7,8 @@ "CVE-2015-5499" ], "details": "The Navigate module for Drupal does not properly check permissions, which allows remote authenticated users to modify custom widgets and create widget database records by leveraging the \"navigate view\" permission.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v27h-j97p-wqmx/GHSA-v27h-j97p-wqmx.json b/advisories/unreviewed/2022/05/GHSA-v27h-j97p-wqmx/GHSA-v27h-j97p-wqmx.json index cfd15100285..3ceaf5c240a 100644 --- a/advisories/unreviewed/2022/05/GHSA-v27h-j97p-wqmx/GHSA-v27h-j97p-wqmx.json +++ b/advisories/unreviewed/2022/05/GHSA-v27h-j97p-wqmx/GHSA-v27h-j97p-wqmx.json @@ -7,12 +7,8 @@ "CVE-2014-5191" ], "details": "Cross-site scripting (XSS) vulnerability in the Preview plugin before 4.4.3 in CKEditor allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v29q-g3x8-m84w/GHSA-v29q-g3x8-m84w.json b/advisories/unreviewed/2022/05/GHSA-v29q-g3x8-m84w/GHSA-v29q-g3x8-m84w.json index 17e60f4b898..8ca0dc55eff 100644 --- a/advisories/unreviewed/2022/05/GHSA-v29q-g3x8-m84w/GHSA-v29q-g3x8-m84w.json +++ b/advisories/unreviewed/2022/05/GHSA-v29q-g3x8-m84w/GHSA-v29q-g3x8-m84w.json @@ -7,12 +7,8 @@ "CVE-2014-5317" ], "details": "Cross-site scripting (XSS) vulnerability in php365.com 365 Links 3.11 and earlier, 365 Links2 3.11 and earlier, 365 Links+ 2.10 and earlier, and 365 Links2+ 2.10 and earlier allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v2jw-37ph-r5p4/GHSA-v2jw-37ph-r5p4.json b/advisories/unreviewed/2022/05/GHSA-v2jw-37ph-r5p4/GHSA-v2jw-37ph-r5p4.json index 2a744764f93..7582fe72cf8 100644 --- a/advisories/unreviewed/2022/05/GHSA-v2jw-37ph-r5p4/GHSA-v2jw-37ph-r5p4.json +++ b/advisories/unreviewed/2022/05/GHSA-v2jw-37ph-r5p4/GHSA-v2jw-37ph-r5p4.json @@ -7,12 +7,8 @@ "CVE-2014-1405" ], "details": "Multiple open redirect vulnerabilities on the Conceptronic C54APM access point with runtime code 1.26 allow remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via (1) the submit-url parameter in a Refresh action to goform/formWlSiteSurvey or (2) the wlan-url parameter to goform/formWlanSetup.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v42w-vr7w-93q2/GHSA-v42w-vr7w-93q2.json b/advisories/unreviewed/2022/05/GHSA-v42w-vr7w-93q2/GHSA-v42w-vr7w-93q2.json index bfd2d36b59e..4f2932c3d67 100644 --- a/advisories/unreviewed/2022/05/GHSA-v42w-vr7w-93q2/GHSA-v42w-vr7w-93q2.json +++ b/advisories/unreviewed/2022/05/GHSA-v42w-vr7w-93q2/GHSA-v42w-vr7w-93q2.json @@ -7,12 +7,8 @@ "CVE-2014-0753" ], "details": "Stack-based buffer overflow in the SCADA server in Ecava IntegraXor before 4.1.4390 allows remote attackers to cause a denial of service (system crash) by triggering access to DLL code located in the IntegraXor directory.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v4xh-6ch6-4fr8/GHSA-v4xh-6ch6-4fr8.json b/advisories/unreviewed/2022/05/GHSA-v4xh-6ch6-4fr8/GHSA-v4xh-6ch6-4fr8.json index 4cf2c21197c..a129dfd559f 100644 --- a/advisories/unreviewed/2022/05/GHSA-v4xh-6ch6-4fr8/GHSA-v4xh-6ch6-4fr8.json +++ b/advisories/unreviewed/2022/05/GHSA-v4xh-6ch6-4fr8/GHSA-v4xh-6ch6-4fr8.json @@ -7,12 +7,8 @@ "CVE-2015-0962" ], "details": "Barracuda Web Filter 7.x and 8.x before 8.1.0.005, when SSL Inspection is enabled, uses the same root Certification Authority certificate across different customers' installations, which makes it easier for remote attackers to conduct man-in-the-middle attacks against SSL sessions by leveraging the certificate's trust relationship.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v53x-9wp9-cq6j/GHSA-v53x-9wp9-cq6j.json b/advisories/unreviewed/2022/05/GHSA-v53x-9wp9-cq6j/GHSA-v53x-9wp9-cq6j.json index 64ae896efc9..0756870504b 100644 --- a/advisories/unreviewed/2022/05/GHSA-v53x-9wp9-cq6j/GHSA-v53x-9wp9-cq6j.json +++ b/advisories/unreviewed/2022/05/GHSA-v53x-9wp9-cq6j/GHSA-v53x-9wp9-cq6j.json @@ -7,12 +7,8 @@ "CVE-2015-3325" ], "details": "SQL injection vulnerability in forum.php in the WP Symposium plugin before 15.4 for WordPress allows remote attackers to execute arbitrary SQL commands via the show parameter in the QUERY_STRING to the default URI.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v57x-vgfj-8gmx/GHSA-v57x-vgfj-8gmx.json b/advisories/unreviewed/2022/05/GHSA-v57x-vgfj-8gmx/GHSA-v57x-vgfj-8gmx.json index ecf82586ce1..ebf8e064258 100644 --- a/advisories/unreviewed/2022/05/GHSA-v57x-vgfj-8gmx/GHSA-v57x-vgfj-8gmx.json +++ b/advisories/unreviewed/2022/05/GHSA-v57x-vgfj-8gmx/GHSA-v57x-vgfj-8gmx.json @@ -7,12 +7,8 @@ "CVE-2014-9284" ], "details": "The Buffalo WHR-1166DHP 1.60 and earlier, WSR-600DHP 1.60 and earlier, WHR-600D 1.60 and earlier, WHR-300HP2 1.60 and earlier, WMR-300 1.60 and earlier, WEX-300 1.60 and earlier, and BHR-4GRV2 1.04 and earlier routers allow remote authenticated users to execute arbitrary OS commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v643-533g-6c85/GHSA-v643-533g-6c85.json b/advisories/unreviewed/2022/05/GHSA-v643-533g-6c85/GHSA-v643-533g-6c85.json index ca5fe8a9a10..151191e2311 100644 --- a/advisories/unreviewed/2022/05/GHSA-v643-533g-6c85/GHSA-v643-533g-6c85.json +++ b/advisories/unreviewed/2022/05/GHSA-v643-533g-6c85/GHSA-v643-533g-6c85.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v7hv-cfr4-pg5h/GHSA-v7hv-cfr4-pg5h.json b/advisories/unreviewed/2022/05/GHSA-v7hv-cfr4-pg5h/GHSA-v7hv-cfr4-pg5h.json index 39fb5c4729c..a3687612314 100644 --- a/advisories/unreviewed/2022/05/GHSA-v7hv-cfr4-pg5h/GHSA-v7hv-cfr4-pg5h.json +++ b/advisories/unreviewed/2022/05/GHSA-v7hv-cfr4-pg5h/GHSA-v7hv-cfr4-pg5h.json @@ -7,12 +7,8 @@ "CVE-2015-0989" ], "details": "PACTware 4.1 SP3 allows remote attackers to cause a denial of service (application crash) via a crafted file that triggers an internal error.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v7rc-g2cv-r6wp/GHSA-v7rc-g2cv-r6wp.json b/advisories/unreviewed/2022/05/GHSA-v7rc-g2cv-r6wp/GHSA-v7rc-g2cv-r6wp.json index d1088927cd1..cb16cd19cc8 100644 --- a/advisories/unreviewed/2022/05/GHSA-v7rc-g2cv-r6wp/GHSA-v7rc-g2cv-r6wp.json +++ b/advisories/unreviewed/2022/05/GHSA-v7rc-g2cv-r6wp/GHSA-v7rc-g2cv-r6wp.json @@ -7,12 +7,8 @@ "CVE-2015-5432" ], "details": "HP Virtual Connect Enterprise Manager (VCEM) SDK before 7.5.0, as used in HP Matrix Operating Environment before 7.5.0 and other products, allows remote attackers to obtain sensitive information or modify data via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v863-m26m-45h8/GHSA-v863-m26m-45h8.json b/advisories/unreviewed/2022/05/GHSA-v863-m26m-45h8/GHSA-v863-m26m-45h8.json index 4acce2b0fdf..4588d447ba8 100644 --- a/advisories/unreviewed/2022/05/GHSA-v863-m26m-45h8/GHSA-v863-m26m-45h8.json +++ b/advisories/unreviewed/2022/05/GHSA-v863-m26m-45h8/GHSA-v863-m26m-45h8.json @@ -7,12 +7,8 @@ "CVE-2012-5961" ], "details": "Stack-based buffer overflow in the unique_service_name function in ssdp/ssdp_server.c in the SSDP parser in the portable SDK for UPnP Devices (aka libupnp, formerly the Intel SDK for UPnP devices) 1.3.1 allows remote attackers to execute arbitrary code via a long UDN (aka device) field in a UDP packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v8cg-fx28-fcq5/GHSA-v8cg-fx28-fcq5.json b/advisories/unreviewed/2022/05/GHSA-v8cg-fx28-fcq5/GHSA-v8cg-fx28-fcq5.json index 9c5a1488cbe..0417fae0001 100644 --- a/advisories/unreviewed/2022/05/GHSA-v8cg-fx28-fcq5/GHSA-v8cg-fx28-fcq5.json +++ b/advisories/unreviewed/2022/05/GHSA-v8cg-fx28-fcq5/GHSA-v8cg-fx28-fcq5.json @@ -7,12 +7,8 @@ "CVE-2015-4293" ], "details": "The packet-reassembly implementation in Cisco IOS XE 3.13S and earlier allows remote attackers to cause a denial of service (CPU consumption or packet loss) via fragmented (1) IPv4 or (2) IPv6 packets that trigger ATTN-3-SYNC_TIMEOUT errors after reassembly failures, aka Bug ID CSCuo37957.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v8jf-78w9-hp93/GHSA-v8jf-78w9-hp93.json b/advisories/unreviewed/2022/05/GHSA-v8jf-78w9-hp93/GHSA-v8jf-78w9-hp93.json index e76f42b63b4..b261aade8c2 100644 --- a/advisories/unreviewed/2022/05/GHSA-v8jf-78w9-hp93/GHSA-v8jf-78w9-hp93.json +++ b/advisories/unreviewed/2022/05/GHSA-v8jf-78w9-hp93/GHSA-v8jf-78w9-hp93.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v8w8-qmx2-j9r2/GHSA-v8w8-qmx2-j9r2.json b/advisories/unreviewed/2022/05/GHSA-v8w8-qmx2-j9r2/GHSA-v8w8-qmx2-j9r2.json index ef6d43bcdd9..28685c7c0f6 100644 --- a/advisories/unreviewed/2022/05/GHSA-v8w8-qmx2-j9r2/GHSA-v8w8-qmx2-j9r2.json +++ b/advisories/unreviewed/2022/05/GHSA-v8w8-qmx2-j9r2/GHSA-v8w8-qmx2-j9r2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v8xm-gjch-p94q/GHSA-v8xm-gjch-p94q.json b/advisories/unreviewed/2022/05/GHSA-v8xm-gjch-p94q/GHSA-v8xm-gjch-p94q.json index 7514c556c3c..828cf36080b 100644 --- a/advisories/unreviewed/2022/05/GHSA-v8xm-gjch-p94q/GHSA-v8xm-gjch-p94q.json +++ b/advisories/unreviewed/2022/05/GHSA-v8xm-gjch-p94q/GHSA-v8xm-gjch-p94q.json @@ -7,12 +7,8 @@ "CVE-2015-6727" ], "details": "The Special:DeletedContributions page in MediaWiki before 1.23.10, 1.24.x before 1.24.3, and 1.25.x before 1.25.2 allows remote attackers to determine if an IP is autoblocked via the \"Change block\" text.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v93m-65wx-hx2f/GHSA-v93m-65wx-hx2f.json b/advisories/unreviewed/2022/05/GHSA-v93m-65wx-hx2f/GHSA-v93m-65wx-hx2f.json index d693aa66cc9..1773ad38966 100644 --- a/advisories/unreviewed/2022/05/GHSA-v93m-65wx-hx2f/GHSA-v93m-65wx-hx2f.json +++ b/advisories/unreviewed/2022/05/GHSA-v93m-65wx-hx2f/GHSA-v93m-65wx-hx2f.json @@ -7,12 +7,8 @@ "CVE-2015-0161" ], "details": "SQL injection vulnerability in IBM Security SiteProtector System 3.0 before 3.0.0.7, 3.1 before 3.1.0.4, and 3.1.1 before 3.1.1.2 allows remote authenticated users to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v93q-m474-gq7v/GHSA-v93q-m474-gq7v.json b/advisories/unreviewed/2022/05/GHSA-v93q-m474-gq7v/GHSA-v93q-m474-gq7v.json index e9ea0598707..f22fe111a21 100644 --- a/advisories/unreviewed/2022/05/GHSA-v93q-m474-gq7v/GHSA-v93q-m474-gq7v.json +++ b/advisories/unreviewed/2022/05/GHSA-v93q-m474-gq7v/GHSA-v93q-m474-gq7v.json @@ -7,12 +7,8 @@ "CVE-2015-0645" ], "details": "The Layer 4 Redirect (L4R) feature in Cisco IOS XE 2.x and 3.x before 3.10.4S, 3.11 before 3.11.3S, 3.12 before 3.12.2S, 3.13 before 3.13.1S, 3.14 before 3.14.0S, and 3.15 before 3.15.0S allows remote attackers to cause a denial of service (device reload) via malformed (1) IPv4 or (2) IPv6 packets, aka Bug ID CSCuq59131.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v99j-r484-33f2/GHSA-v99j-r484-33f2.json b/advisories/unreviewed/2022/05/GHSA-v99j-r484-33f2/GHSA-v99j-r484-33f2.json index 5f4f673a2dd..a5d7a41edd1 100644 --- a/advisories/unreviewed/2022/05/GHSA-v99j-r484-33f2/GHSA-v99j-r484-33f2.json +++ b/advisories/unreviewed/2022/05/GHSA-v99j-r484-33f2/GHSA-v99j-r484-33f2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v9h5-mm27-9j99/GHSA-v9h5-mm27-9j99.json b/advisories/unreviewed/2022/05/GHSA-v9h5-mm27-9j99/GHSA-v9h5-mm27-9j99.json index d7060c0e8b6..69428293708 100644 --- a/advisories/unreviewed/2022/05/GHSA-v9h5-mm27-9j99/GHSA-v9h5-mm27-9j99.json +++ b/advisories/unreviewed/2022/05/GHSA-v9h5-mm27-9j99/GHSA-v9h5-mm27-9j99.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vc24-58jq-pc44/GHSA-vc24-58jq-pc44.json b/advisories/unreviewed/2022/05/GHSA-vc24-58jq-pc44/GHSA-vc24-58jq-pc44.json index 9698837c4c6..3e38a1293ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-vc24-58jq-pc44/GHSA-vc24-58jq-pc44.json +++ b/advisories/unreviewed/2022/05/GHSA-vc24-58jq-pc44/GHSA-vc24-58jq-pc44.json @@ -7,12 +7,8 @@ "CVE-2014-0985" ], "details": "Stack-based buffer overflow in Advantech WebAccess (formerly BroadWin WebAccess) 7.2 allows remote attackers to execute arbitrary code via the NodeName parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vcrm-8v3j-v6f3/GHSA-vcrm-8v3j-v6f3.json b/advisories/unreviewed/2022/05/GHSA-vcrm-8v3j-v6f3/GHSA-vcrm-8v3j-v6f3.json index 391d397caf8..7d205283db4 100644 --- a/advisories/unreviewed/2022/05/GHSA-vcrm-8v3j-v6f3/GHSA-vcrm-8v3j-v6f3.json +++ b/advisories/unreviewed/2022/05/GHSA-vcrm-8v3j-v6f3/GHSA-vcrm-8v3j-v6f3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vcxq-55mq-gj87/GHSA-vcxq-55mq-gj87.json b/advisories/unreviewed/2022/05/GHSA-vcxq-55mq-gj87/GHSA-vcxq-55mq-gj87.json index 41d66b0942a..f074b9c6e88 100644 --- a/advisories/unreviewed/2022/05/GHSA-vcxq-55mq-gj87/GHSA-vcxq-55mq-gj87.json +++ b/advisories/unreviewed/2022/05/GHSA-vcxq-55mq-gj87/GHSA-vcxq-55mq-gj87.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vcxr-5m9p-v4q8/GHSA-vcxr-5m9p-v4q8.json b/advisories/unreviewed/2022/05/GHSA-vcxr-5m9p-v4q8/GHSA-vcxr-5m9p-v4q8.json index d40b0248612..27207405661 100644 --- a/advisories/unreviewed/2022/05/GHSA-vcxr-5m9p-v4q8/GHSA-vcxr-5m9p-v4q8.json +++ b/advisories/unreviewed/2022/05/GHSA-vcxr-5m9p-v4q8/GHSA-vcxr-5m9p-v4q8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vf53-387h-6jj3/GHSA-vf53-387h-6jj3.json b/advisories/unreviewed/2022/05/GHSA-vf53-387h-6jj3/GHSA-vf53-387h-6jj3.json index 540fa17f5d5..06ca5fa9880 100644 --- a/advisories/unreviewed/2022/05/GHSA-vf53-387h-6jj3/GHSA-vf53-387h-6jj3.json +++ b/advisories/unreviewed/2022/05/GHSA-vf53-387h-6jj3/GHSA-vf53-387h-6jj3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vf79-m7hg-87hc/GHSA-vf79-m7hg-87hc.json b/advisories/unreviewed/2022/05/GHSA-vf79-m7hg-87hc/GHSA-vf79-m7hg-87hc.json index 6505f941b4d..837980ea4eb 100644 --- a/advisories/unreviewed/2022/05/GHSA-vf79-m7hg-87hc/GHSA-vf79-m7hg-87hc.json +++ b/advisories/unreviewed/2022/05/GHSA-vf79-m7hg-87hc/GHSA-vf79-m7hg-87hc.json @@ -7,12 +7,8 @@ "CVE-2015-0131" ], "details": "Cross-site scripting (XSS) vulnerability in IBM Leads 7.x, 8.1.0 before 8.1.0.14, 8.2, 8.5.0 before 8.5.0.7.3, 8.6.0 before 8.6.0.8.1, 9.0.0 through 9.0.0.4, 9.1.0 before 9.1.0.6.1, and 9.1.1 before 9.1.1.0.2 allows remote authenticated users to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vg4w-px9v-g95v/GHSA-vg4w-px9v-g95v.json b/advisories/unreviewed/2022/05/GHSA-vg4w-px9v-g95v/GHSA-vg4w-px9v-g95v.json index e3ab6c2c835..a558c4372bc 100644 --- a/advisories/unreviewed/2022/05/GHSA-vg4w-px9v-g95v/GHSA-vg4w-px9v-g95v.json +++ b/advisories/unreviewed/2022/05/GHSA-vg4w-px9v-g95v/GHSA-vg4w-px9v-g95v.json @@ -7,12 +7,8 @@ "CVE-2015-5487" ], "details": "Cross-site scripting (XSS) vulnerability in the Camtasia Relay module 6.x-2.x before 6.x-3.2 and 7.x-2.x before 7.x-1.3 for Drupal allows remote authenticated users with the \"view meta information\" permission to inject arbitrary web script or HTML via unspecified vectors related to the meta access tab.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vg9g-6mhq-wx4g/GHSA-vg9g-6mhq-wx4g.json b/advisories/unreviewed/2022/05/GHSA-vg9g-6mhq-wx4g/GHSA-vg9g-6mhq-wx4g.json index 5de995df75b..d637f88ff14 100644 --- a/advisories/unreviewed/2022/05/GHSA-vg9g-6mhq-wx4g/GHSA-vg9g-6mhq-wx4g.json +++ b/advisories/unreviewed/2022/05/GHSA-vg9g-6mhq-wx4g/GHSA-vg9g-6mhq-wx4g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -39,9 +37,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vh2g-9xvq-p7cw/GHSA-vh2g-9xvq-p7cw.json b/advisories/unreviewed/2022/05/GHSA-vh2g-9xvq-p7cw/GHSA-vh2g-9xvq-p7cw.json index 050a9bd70d5..9cdc3ff8c11 100644 --- a/advisories/unreviewed/2022/05/GHSA-vh2g-9xvq-p7cw/GHSA-vh2g-9xvq-p7cw.json +++ b/advisories/unreviewed/2022/05/GHSA-vh2g-9xvq-p7cw/GHSA-vh2g-9xvq-p7cw.json @@ -7,12 +7,8 @@ "CVE-2014-4848" ], "details": "Cross-site scripting (XSS) vulnerability in the Blogstand Banner (blogstand-smart-banner) plugin 1.0 for WordPress allows remote attackers to inject arbitrary web script or HTML via the bs_blog_id parameter to wp-admin/options-general.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vhcf-m477-4rw8/GHSA-vhcf-m477-4rw8.json b/advisories/unreviewed/2022/05/GHSA-vhcf-m477-4rw8/GHSA-vhcf-m477-4rw8.json index 3a549ef364c..273758f0f81 100644 --- a/advisories/unreviewed/2022/05/GHSA-vhcf-m477-4rw8/GHSA-vhcf-m477-4rw8.json +++ b/advisories/unreviewed/2022/05/GHSA-vhcf-m477-4rw8/GHSA-vhcf-m477-4rw8.json @@ -7,12 +7,8 @@ "CVE-2015-2654" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4775, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vhpg-j2w4-997j/GHSA-vhpg-j2w4-997j.json b/advisories/unreviewed/2022/05/GHSA-vhpg-j2w4-997j/GHSA-vhpg-j2w4-997j.json index 01100708858..6012c15358c 100644 --- a/advisories/unreviewed/2022/05/GHSA-vhpg-j2w4-997j/GHSA-vhpg-j2w4-997j.json +++ b/advisories/unreviewed/2022/05/GHSA-vhpg-j2w4-997j/GHSA-vhpg-j2w4-997j.json @@ -7,12 +7,8 @@ "CVE-2014-4596" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in js/button-snapapp.php in the SnapApp plugin 1.5 and earlier for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) msg or (2) act parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vhqh-5xqw-v85c/GHSA-vhqh-5xqw-v85c.json b/advisories/unreviewed/2022/05/GHSA-vhqh-5xqw-v85c/GHSA-vhqh-5xqw-v85c.json index faa5bcae009..d18335a4f36 100644 --- a/advisories/unreviewed/2022/05/GHSA-vhqh-5xqw-v85c/GHSA-vhqh-5xqw-v85c.json +++ b/advisories/unreviewed/2022/05/GHSA-vhqh-5xqw-v85c/GHSA-vhqh-5xqw-v85c.json @@ -7,12 +7,8 @@ "CVE-2015-1171" ], "details": "Stack-based buffer overflow in GSM SIM Utility (aka SIM Card Editor) 6.6 allows remote attackers to execute arbitrary code via a long entry in a .sms file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vhqm-6xhg-59wv/GHSA-vhqm-6xhg-59wv.json b/advisories/unreviewed/2022/05/GHSA-vhqm-6xhg-59wv/GHSA-vhqm-6xhg-59wv.json index e9f51f1bcfb..19462657e79 100644 --- a/advisories/unreviewed/2022/05/GHSA-vhqm-6xhg-59wv/GHSA-vhqm-6xhg-59wv.json +++ b/advisories/unreviewed/2022/05/GHSA-vhqm-6xhg-59wv/GHSA-vhqm-6xhg-59wv.json @@ -7,12 +7,8 @@ "CVE-2015-0277" ], "details": "The Service Provider (SP) in PicketLink before 2.7.0 does not ensure that it is a member of an Audience element when an AudienceRestriction is specified, which allows remote attackers to log in to other users' accounts via a crafted SAML assertion. NOTE: this identifier has been SPLIT per ADT2 due to different vulnerability types. See CVE-2015-6254 for lack of validation for the Destination attribute in a Response element in a SAML assertion.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vjfm-7333-x7pc/GHSA-vjfm-7333-x7pc.json b/advisories/unreviewed/2022/05/GHSA-vjfm-7333-x7pc/GHSA-vjfm-7333-x7pc.json index f2bb53cc29c..cd0cfa56b72 100644 --- a/advisories/unreviewed/2022/05/GHSA-vjfm-7333-x7pc/GHSA-vjfm-7333-x7pc.json +++ b/advisories/unreviewed/2022/05/GHSA-vjfm-7333-x7pc/GHSA-vjfm-7333-x7pc.json @@ -7,12 +7,8 @@ "CVE-2013-0887" ], "details": "The developer-tools process in Google Chrome before 25.0.1364.97 on Windows and Linux, and before 25.0.1364.99 on Mac OS X, does not properly restrict privileges during interaction with a connected server, which has unspecified impact and attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vpxw-9g4m-68cj/GHSA-vpxw-9g4m-68cj.json b/advisories/unreviewed/2022/05/GHSA-vpxw-9g4m-68cj/GHSA-vpxw-9g4m-68cj.json index 0620e8f8009..3e977e9448a 100644 --- a/advisories/unreviewed/2022/05/GHSA-vpxw-9g4m-68cj/GHSA-vpxw-9g4m-68cj.json +++ b/advisories/unreviewed/2022/05/GHSA-vpxw-9g4m-68cj/GHSA-vpxw-9g4m-68cj.json @@ -7,12 +7,8 @@ "CVE-2014-4710" ], "details": "Cross-site scripting (XSS) vulnerability in zero_user_account.php in ZeroCMS 1.0 allows remote attackers to inject arbitrary web script or HTML via the Full Name field.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vq39-x4rp-9f46/GHSA-vq39-x4rp-9f46.json b/advisories/unreviewed/2022/05/GHSA-vq39-x4rp-9f46/GHSA-vq39-x4rp-9f46.json index 1f9bb458da1..d6835c505af 100644 --- a/advisories/unreviewed/2022/05/GHSA-vq39-x4rp-9f46/GHSA-vq39-x4rp-9f46.json +++ b/advisories/unreviewed/2022/05/GHSA-vq39-x4rp-9f46/GHSA-vq39-x4rp-9f46.json @@ -7,12 +7,8 @@ "CVE-2015-0130" ], "details": "Cross-site scripting (XSS) vulnerability in Jazz Team Server in Jazz Foundation in IBM Rational Collaborative Lifecycle Management (CLM) 4.x before 4.0.7 IF6 and 5.x before 5.0.2 IF5; Rational Quality Manager (RQM) 4.x before 4.0.7 IF6 and 5.x before 5.0.2 IF5; Rational Team Concert (RTC) 4.x before 4.0.7 IF6 and 5.x before 5.0.2 IF5; Rational Requirements Composer (RRC) 4.x through 4.0.7; and Rational DOORS Next Generation (RDNG) 4.x before 4.0.7 IF6 and 5.x before 5.0.2 IF5 allows remote authenticated users to inject arbitrary web script or HTML via a crafted URL.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vqx7-2q99-4q22/GHSA-vqx7-2q99-4q22.json b/advisories/unreviewed/2022/05/GHSA-vqx7-2q99-4q22/GHSA-vqx7-2q99-4q22.json index 96a09bf3c09..f7bb43ad263 100644 --- a/advisories/unreviewed/2022/05/GHSA-vqx7-2q99-4q22/GHSA-vqx7-2q99-4q22.json +++ b/advisories/unreviewed/2022/05/GHSA-vqx7-2q99-4q22/GHSA-vqx7-2q99-4q22.json @@ -7,12 +7,8 @@ "CVE-2015-4372" ], "details": "Cross-site scripting (XSS) vulnerability in the Image Title module before 7.x-1.1 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vr6x-m6f5-qx94/GHSA-vr6x-m6f5-qx94.json b/advisories/unreviewed/2022/05/GHSA-vr6x-m6f5-qx94/GHSA-vr6x-m6f5-qx94.json index 3d51a737b57..7e89f94f0f4 100644 --- a/advisories/unreviewed/2022/05/GHSA-vr6x-m6f5-qx94/GHSA-vr6x-m6f5-qx94.json +++ b/advisories/unreviewed/2022/05/GHSA-vr6x-m6f5-qx94/GHSA-vr6x-m6f5-qx94.json @@ -7,12 +7,8 @@ "CVE-2015-0168" ], "details": "Cross-site scripting (XSS) vulnerability in IBM Security SiteProtector System 3.0 before 3.0.0.7, 3.1 before 3.1.0.4, and 3.1.1 before 3.1.1.2 allows remote authenticated users to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vvcp-6qv6-55v4/GHSA-vvcp-6qv6-55v4.json b/advisories/unreviewed/2022/05/GHSA-vvcp-6qv6-55v4/GHSA-vvcp-6qv6-55v4.json index 54c8c0213a4..ea1ae219da2 100644 --- a/advisories/unreviewed/2022/05/GHSA-vvcp-6qv6-55v4/GHSA-vvcp-6qv6-55v4.json +++ b/advisories/unreviewed/2022/05/GHSA-vvcp-6qv6-55v4/GHSA-vvcp-6qv6-55v4.json @@ -7,12 +7,8 @@ "CVE-2014-2541" ], "details": "The Rendezvous Daemon (rvd), Rendezvous Routing Daemon (rvrd), Rendezvous Secure Daemon (rvsd), and Rendezvous Secure Routing Daemon (rvsrd) in TIBCO Rendezvous before 8.4.2, Messaging Appliance before 8.7.1, and Substation ES before 2.8.1 do not properly implement access control, which allows remote attackers to obtain sensitive information or modify transmitted information via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vw9p-gvvv-6ghh/GHSA-vw9p-gvvv-6ghh.json b/advisories/unreviewed/2022/05/GHSA-vw9p-gvvv-6ghh/GHSA-vw9p-gvvv-6ghh.json index 81139823974..cc856dd3644 100644 --- a/advisories/unreviewed/2022/05/GHSA-vw9p-gvvv-6ghh/GHSA-vw9p-gvvv-6ghh.json +++ b/advisories/unreviewed/2022/05/GHSA-vw9p-gvvv-6ghh/GHSA-vw9p-gvvv-6ghh.json @@ -7,12 +7,8 @@ "CVE-2014-6628" ], "details": "Aruba Networks ClearPass Policy Manager (CPPM) before 6.5.0 allows remote administrators to execute arbitrary code via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vwrq-jv72-wf4x/GHSA-vwrq-jv72-wf4x.json b/advisories/unreviewed/2022/05/GHSA-vwrq-jv72-wf4x/GHSA-vwrq-jv72-wf4x.json index 98aad7d6670..c1e327b10a1 100644 --- a/advisories/unreviewed/2022/05/GHSA-vwrq-jv72-wf4x/GHSA-vwrq-jv72-wf4x.json +++ b/advisories/unreviewed/2022/05/GHSA-vwrq-jv72-wf4x/GHSA-vwrq-jv72-wf4x.json @@ -7,12 +7,8 @@ "CVE-2011-5324" ], "details": "The TeraRecon server, as used in GE Healthcare Centricity PACS-IW 3.7.3.7, 3.7.3.8, and possibly other versions, has a password of (1) shared for the shared user and (2) scan for the scan user, which has unspecified impact and attack vectors. NOTE: it is not clear whether this password is default, hardcoded, or dependent on another system or product that requires a fixed value.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w2gh-fr9p-56v5/GHSA-w2gh-fr9p-56v5.json b/advisories/unreviewed/2022/05/GHSA-w2gh-fr9p-56v5/GHSA-w2gh-fr9p-56v5.json index 6d0cda63c27..08a492d7347 100644 --- a/advisories/unreviewed/2022/05/GHSA-w2gh-fr9p-56v5/GHSA-w2gh-fr9p-56v5.json +++ b/advisories/unreviewed/2022/05/GHSA-w2gh-fr9p-56v5/GHSA-w2gh-fr9p-56v5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w2xc-2255-85hm/GHSA-w2xc-2255-85hm.json b/advisories/unreviewed/2022/05/GHSA-w2xc-2255-85hm/GHSA-w2xc-2255-85hm.json index ee55d2535b6..a5c05bcddc3 100644 --- a/advisories/unreviewed/2022/05/GHSA-w2xc-2255-85hm/GHSA-w2xc-2255-85hm.json +++ b/advisories/unreviewed/2022/05/GHSA-w2xc-2255-85hm/GHSA-w2xc-2255-85hm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w38x-r2r3-34gx/GHSA-w38x-r2r3-34gx.json b/advisories/unreviewed/2022/05/GHSA-w38x-r2r3-34gx/GHSA-w38x-r2r3-34gx.json index b2647d256c0..96c781f565b 100644 --- a/advisories/unreviewed/2022/05/GHSA-w38x-r2r3-34gx/GHSA-w38x-r2r3-34gx.json +++ b/advisories/unreviewed/2022/05/GHSA-w38x-r2r3-34gx/GHSA-w38x-r2r3-34gx.json @@ -7,12 +7,8 @@ "CVE-2015-4371" ], "details": "Open redirect vulnerability in the Perfecto module before 7.x-1.2 for Drupal allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in an unspecified parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w3j2-7j6m-jpwr/GHSA-w3j2-7j6m-jpwr.json b/advisories/unreviewed/2022/05/GHSA-w3j2-7j6m-jpwr/GHSA-w3j2-7j6m-jpwr.json index fb3133ceca3..f79c4e4cc10 100644 --- a/advisories/unreviewed/2022/05/GHSA-w3j2-7j6m-jpwr/GHSA-w3j2-7j6m-jpwr.json +++ b/advisories/unreviewed/2022/05/GHSA-w3j2-7j6m-jpwr/GHSA-w3j2-7j6m-jpwr.json @@ -7,12 +7,8 @@ "CVE-2015-4377" ], "details": "Cross-site scripting (XSS) vulnerability in unspecified administration pages in the Petition module 6.x-1.x before 6.x-1.3 for Drupal allows remote authenticated users with the \"create petition\" permission to inject arbitrary web script or HTML via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w3p2-mc39-r7v9/GHSA-w3p2-mc39-r7v9.json b/advisories/unreviewed/2022/05/GHSA-w3p2-mc39-r7v9/GHSA-w3p2-mc39-r7v9.json index aaee63f6f2f..1b1d52882d1 100644 --- a/advisories/unreviewed/2022/05/GHSA-w3p2-mc39-r7v9/GHSA-w3p2-mc39-r7v9.json +++ b/advisories/unreviewed/2022/05/GHSA-w3p2-mc39-r7v9/GHSA-w3p2-mc39-r7v9.json @@ -7,12 +7,8 @@ "CVE-2014-4955" ], "details": "Cross-site scripting (XSS) vulnerability in the PMA_TRI_getRowForList function in libraries/rte/rte_list.lib.php in phpMyAdmin 4.0.x before 4.0.10.1, 4.1.x before 4.1.14.2, and 4.2.x before 4.2.6 allows remote authenticated users to inject arbitrary web script or HTML via a crafted trigger name that is improperly handled on the database triggers page.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w3q4-g368-8grw/GHSA-w3q4-g368-8grw.json b/advisories/unreviewed/2022/05/GHSA-w3q4-g368-8grw/GHSA-w3q4-g368-8grw.json index e8ec8cc9d2a..9b3dcbe57de 100644 --- a/advisories/unreviewed/2022/05/GHSA-w3q4-g368-8grw/GHSA-w3q4-g368-8grw.json +++ b/advisories/unreviewed/2022/05/GHSA-w3q4-g368-8grw/GHSA-w3q4-g368-8grw.json @@ -7,12 +7,8 @@ "CVE-2015-2581" ], "details": "Unspecified vulnerability in the Oracle Secure Global Desktop component in Oracle Virtualization 5.1 and 5.2 allows remote attackers to affect confidentiality and availability via unknown vectors related to JServer.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w4hq-62mq-pf7g/GHSA-w4hq-62mq-pf7g.json b/advisories/unreviewed/2022/05/GHSA-w4hq-62mq-pf7g/GHSA-w4hq-62mq-pf7g.json index f8a24774417..74b24d533d5 100644 --- a/advisories/unreviewed/2022/05/GHSA-w4hq-62mq-pf7g/GHSA-w4hq-62mq-pf7g.json +++ b/advisories/unreviewed/2022/05/GHSA-w4hq-62mq-pf7g/GHSA-w4hq-62mq-pf7g.json @@ -7,12 +7,8 @@ "CVE-2013-0897" ], "details": "Off-by-one error in the PDF functionality in Google Chrome before 25.0.1364.97 on Windows and Linux, and before 25.0.1364.99 on Mac OS X, allows remote attackers to cause a denial of service via a crafted document.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w4mf-q8hp-5fgh/GHSA-w4mf-q8hp-5fgh.json b/advisories/unreviewed/2022/05/GHSA-w4mf-q8hp-5fgh/GHSA-w4mf-q8hp-5fgh.json index ae548bb4dce..7d94b295471 100644 --- a/advisories/unreviewed/2022/05/GHSA-w4mf-q8hp-5fgh/GHSA-w4mf-q8hp-5fgh.json +++ b/advisories/unreviewed/2022/05/GHSA-w4mf-q8hp-5fgh/GHSA-w4mf-q8hp-5fgh.json @@ -7,12 +7,8 @@ "CVE-2015-2989" ], "details": "Cross-site scripting (XSS) vulnerability in index.php in LEMON-S PHP Twit BBS allows remote attackers to inject arbitrary web script or HTML via the imagetitle parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w59j-v3f8-jgj6/GHSA-w59j-v3f8-jgj6.json b/advisories/unreviewed/2022/05/GHSA-w59j-v3f8-jgj6/GHSA-w59j-v3f8-jgj6.json index 88313f3a2ff..889a3b9f7bb 100644 --- a/advisories/unreviewed/2022/05/GHSA-w59j-v3f8-jgj6/GHSA-w59j-v3f8-jgj6.json +++ b/advisories/unreviewed/2022/05/GHSA-w59j-v3f8-jgj6/GHSA-w59j-v3f8-jgj6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w5ff-m8ww-h8x6/GHSA-w5ff-m8ww-h8x6.json b/advisories/unreviewed/2022/05/GHSA-w5ff-m8ww-h8x6/GHSA-w5ff-m8ww-h8x6.json index 33fd31d63a3..272968872ca 100644 --- a/advisories/unreviewed/2022/05/GHSA-w5ff-m8ww-h8x6/GHSA-w5ff-m8ww-h8x6.json +++ b/advisories/unreviewed/2022/05/GHSA-w5ff-m8ww-h8x6/GHSA-w5ff-m8ww-h8x6.json @@ -7,12 +7,8 @@ "CVE-2013-1096" ], "details": "Cross-site scripting (XSS) vulnerability in the Roles Based Provisioning Module 4.0.2 before Field Patch D for Novell Identity Manager (aka IDM) allows remote attackers to inject arbitrary web script or HTML via a taskDetail taskId.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w5qj-3gcm-f8fw/GHSA-w5qj-3gcm-f8fw.json b/advisories/unreviewed/2022/05/GHSA-w5qj-3gcm-f8fw/GHSA-w5qj-3gcm-f8fw.json index 4be8d33de0d..331bfcf64a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-w5qj-3gcm-f8fw/GHSA-w5qj-3gcm-f8fw.json +++ b/advisories/unreviewed/2022/05/GHSA-w5qj-3gcm-f8fw/GHSA-w5qj-3gcm-f8fw.json @@ -7,12 +7,8 @@ "CVE-2015-2848" ], "details": "Cross-site request forgery (CSRF) vulnerability in Honeywell Tuxedo Touch before 5.2.19.0_VA allows remote attackers to hijack the authentication of arbitrary users for requests associated with home-automation commands, as demonstrated by a door-unlock command.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w63f-w97q-mwg5/GHSA-w63f-w97q-mwg5.json b/advisories/unreviewed/2022/05/GHSA-w63f-w97q-mwg5/GHSA-w63f-w97q-mwg5.json index 8cbe9a583cc..1aef7d2d87a 100644 --- a/advisories/unreviewed/2022/05/GHSA-w63f-w97q-mwg5/GHSA-w63f-w97q-mwg5.json +++ b/advisories/unreviewed/2022/05/GHSA-w63f-w97q-mwg5/GHSA-w63f-w97q-mwg5.json @@ -7,12 +7,8 @@ "CVE-2015-5058" ], "details": "Memory leak in the virtual server component in F5 Big-IP LTM, AAM, AFM, Analytics, APM, ASM, GTM, Link Controller, and PEM 11.5.x before 11.5.1 HF10, 11.5.3 before HF1, and 11.6.0 before HF5, BIG-IQ Cloud, Device, and Security 4.4.0 through 4.5.0, and BIG-IQ ADC 4.5.0 allows remote attackers to cause a denial of service (memory consumption) via a large number of crafted ICMP packets.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w7mf-cp8w-3rfq/GHSA-w7mf-cp8w-3rfq.json b/advisories/unreviewed/2022/05/GHSA-w7mf-cp8w-3rfq/GHSA-w7mf-cp8w-3rfq.json index 300adc332aa..9ccd9add499 100644 --- a/advisories/unreviewed/2022/05/GHSA-w7mf-cp8w-3rfq/GHSA-w7mf-cp8w-3rfq.json +++ b/advisories/unreviewed/2022/05/GHSA-w7mf-cp8w-3rfq/GHSA-w7mf-cp8w-3rfq.json @@ -7,12 +7,8 @@ "CVE-2014-9090" ], "details": "The do_double_fault function in arch/x86/kernel/traps.c in the Linux kernel through 3.17.4 does not properly handle faults associated with the Stack Segment (SS) segment register, which allows local users to cause a denial of service (panic) via a modify_ldt system call, as demonstrated by sigreturn_32 in the linux-clock-tests test suite.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -52,9 +48,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w83r-756w-m93f/GHSA-w83r-756w-m93f.json b/advisories/unreviewed/2022/05/GHSA-w83r-756w-m93f/GHSA-w83r-756w-m93f.json index 48b9c9db431..2dab8ecc20c 100644 --- a/advisories/unreviewed/2022/05/GHSA-w83r-756w-m93f/GHSA-w83r-756w-m93f.json +++ b/advisories/unreviewed/2022/05/GHSA-w83r-756w-m93f/GHSA-w83r-756w-m93f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w87h-h5rx-crmg/GHSA-w87h-h5rx-crmg.json b/advisories/unreviewed/2022/05/GHSA-w87h-h5rx-crmg/GHSA-w87h-h5rx-crmg.json index e8a2e8bd1fc..744bedee2b9 100644 --- a/advisories/unreviewed/2022/05/GHSA-w87h-h5rx-crmg/GHSA-w87h-h5rx-crmg.json +++ b/advisories/unreviewed/2022/05/GHSA-w87h-h5rx-crmg/GHSA-w87h-h5rx-crmg.json @@ -7,12 +7,8 @@ "CVE-2015-5357" ], "details": "The Juniper EX4600, QFX3500, QFX3600, and QFX5100 switches with Junos 13.2X51-D15 through 13.2X51-D25, 13.2X51 before 13.2X51-D30, and 14.1X53 before 14.1X53-D10 allows remote attackers to cause a denial of service (CPU consumption) via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w8pv-ffq9-vqxj/GHSA-w8pv-ffq9-vqxj.json b/advisories/unreviewed/2022/05/GHSA-w8pv-ffq9-vqxj/GHSA-w8pv-ffq9-vqxj.json index 4c43283bc6c..0b6b8071a6c 100644 --- a/advisories/unreviewed/2022/05/GHSA-w8pv-ffq9-vqxj/GHSA-w8pv-ffq9-vqxj.json +++ b/advisories/unreviewed/2022/05/GHSA-w8pv-ffq9-vqxj/GHSA-w8pv-ffq9-vqxj.json @@ -7,12 +7,8 @@ "CVE-2015-4380" ], "details": "Cross-site scripting (XSS) vulnerability in the Linear Case module 6.x-1.x before 6.x-1.3 for Drupal allows remote authenticated users with certain permissions to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w8wv-p5qh-jq8x/GHSA-w8wv-p5qh-jq8x.json b/advisories/unreviewed/2022/05/GHSA-w8wv-p5qh-jq8x/GHSA-w8wv-p5qh-jq8x.json index eea95d82a7a..ea8736e6584 100644 --- a/advisories/unreviewed/2022/05/GHSA-w8wv-p5qh-jq8x/GHSA-w8wv-p5qh-jq8x.json +++ b/advisories/unreviewed/2022/05/GHSA-w8wv-p5qh-jq8x/GHSA-w8wv-p5qh-jq8x.json @@ -7,12 +7,8 @@ "CVE-2014-2331" ], "details": "Check_MK 1.2.2p2, 1.2.2p3, and 1.2.3i5 allows remote authenticated users to execute arbitrary Python code via a crafted rules.mk file in a snapshot. NOTE: this can be exploited by remote attackers by leveraging CVE-2014-2330.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w9hj-rjqh-5qrc/GHSA-w9hj-rjqh-5qrc.json b/advisories/unreviewed/2022/05/GHSA-w9hj-rjqh-5qrc/GHSA-w9hj-rjqh-5qrc.json index 4c1aef1bdc7..ed9ed6f321a 100644 --- a/advisories/unreviewed/2022/05/GHSA-w9hj-rjqh-5qrc/GHSA-w9hj-rjqh-5qrc.json +++ b/advisories/unreviewed/2022/05/GHSA-w9hj-rjqh-5qrc/GHSA-w9hj-rjqh-5qrc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w9jc-8977-qq28/GHSA-w9jc-8977-qq28.json b/advisories/unreviewed/2022/05/GHSA-w9jc-8977-qq28/GHSA-w9jc-8977-qq28.json index db98142b77b..c7923f56f3f 100644 --- a/advisories/unreviewed/2022/05/GHSA-w9jc-8977-qq28/GHSA-w9jc-8977-qq28.json +++ b/advisories/unreviewed/2022/05/GHSA-w9jc-8977-qq28/GHSA-w9jc-8977-qq28.json @@ -7,12 +7,8 @@ "CVE-2014-2916" ], "details": "Cross-site request forgery (CSRF) vulnerability in the subscription page editor (spageedit) in phpList before 3.0.6 allows remote attackers to hijack the authentication of administrators via a request to admin/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wc68-m5j4-wxr7/GHSA-wc68-m5j4-wxr7.json b/advisories/unreviewed/2022/05/GHSA-wc68-m5j4-wxr7/GHSA-wc68-m5j4-wxr7.json index c191a7312ad..37c9e7d3538 100644 --- a/advisories/unreviewed/2022/05/GHSA-wc68-m5j4-wxr7/GHSA-wc68-m5j4-wxr7.json +++ b/advisories/unreviewed/2022/05/GHSA-wc68-m5j4-wxr7/GHSA-wc68-m5j4-wxr7.json @@ -7,12 +7,8 @@ "CVE-2014-2364" ], "details": "Multiple stack-based buffer overflows in Advantech WebAccess before 7.2 allow remote attackers to execute arbitrary code via a long string in the (1) ProjectName, (2) SetParameter, (3) NodeName, (4) CCDParameter, (5) SetColor, (6) AlarmImage, (7) GetParameter, (8) GetColor, (9) ServerResponse, (10) SetBaud, or (11) IPAddress parameter to an ActiveX control in (a) webvact.ocx, (b) dvs.ocx, or (c) webdact.ocx.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wc6w-hq2f-r62j/GHSA-wc6w-hq2f-r62j.json b/advisories/unreviewed/2022/05/GHSA-wc6w-hq2f-r62j/GHSA-wc6w-hq2f-r62j.json index 4589690bca2..320ac28ce22 100644 --- a/advisories/unreviewed/2022/05/GHSA-wc6w-hq2f-r62j/GHSA-wc6w-hq2f-r62j.json +++ b/advisories/unreviewed/2022/05/GHSA-wc6w-hq2f-r62j/GHSA-wc6w-hq2f-r62j.json @@ -7,12 +7,8 @@ "CVE-2014-3878" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the web client interface in Ipswitch IMail Server 12.3 and 12.4, possibly before 12.4.1.15, allow remote attackers to inject arbitrary web script or HTML via (1) the Name field in an add new contact action in the Contacts section or unspecified vectors in (2) an Add Group task in the Contacts section, (3) an add new event action in the Calendar section, or (4) the Task section.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wfq4-f757-c65c/GHSA-wfq4-f757-c65c.json b/advisories/unreviewed/2022/05/GHSA-wfq4-f757-c65c/GHSA-wfq4-f757-c65c.json index 4315cf30b49..428c48a8a77 100644 --- a/advisories/unreviewed/2022/05/GHSA-wfq4-f757-c65c/GHSA-wfq4-f757-c65c.json +++ b/advisories/unreviewed/2022/05/GHSA-wfq4-f757-c65c/GHSA-wfq4-f757-c65c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wfr8-hp36-c4v2/GHSA-wfr8-hp36-c4v2.json b/advisories/unreviewed/2022/05/GHSA-wfr8-hp36-c4v2/GHSA-wfr8-hp36-c4v2.json index 1bfe4496cea..02a29b103fe 100644 --- a/advisories/unreviewed/2022/05/GHSA-wfr8-hp36-c4v2/GHSA-wfr8-hp36-c4v2.json +++ b/advisories/unreviewed/2022/05/GHSA-wfr8-hp36-c4v2/GHSA-wfr8-hp36-c4v2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wg4x-5mmv-p8gp/GHSA-wg4x-5mmv-p8gp.json b/advisories/unreviewed/2022/05/GHSA-wg4x-5mmv-p8gp/GHSA-wg4x-5mmv-p8gp.json index 7aafa689f20..b403b59fd80 100644 --- a/advisories/unreviewed/2022/05/GHSA-wg4x-5mmv-p8gp/GHSA-wg4x-5mmv-p8gp.json +++ b/advisories/unreviewed/2022/05/GHSA-wg4x-5mmv-p8gp/GHSA-wg4x-5mmv-p8gp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wgfc-hqwq-26f2/GHSA-wgfc-hqwq-26f2.json b/advisories/unreviewed/2022/05/GHSA-wgfc-hqwq-26f2/GHSA-wgfc-hqwq-26f2.json index 8acb75010fd..4e128d8caed 100644 --- a/advisories/unreviewed/2022/05/GHSA-wgfc-hqwq-26f2/GHSA-wgfc-hqwq-26f2.json +++ b/advisories/unreviewed/2022/05/GHSA-wgfc-hqwq-26f2/GHSA-wgfc-hqwq-26f2.json @@ -7,12 +7,8 @@ "CVE-2015-4375" ], "details": "The Chaos tool suite (ctools) module 7.x-1.x before 7.x-1.7 for Drupal allows remote attackers to obtain sensitive node titles via (1) an autocomplete search on custom entities without an access query tag or (2) leveraging knowledge of the ID of an entity.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wggx-8wf7-vg3g/GHSA-wggx-8wf7-vg3g.json b/advisories/unreviewed/2022/05/GHSA-wggx-8wf7-vg3g/GHSA-wggx-8wf7-vg3g.json index 00794b55c4a..8e3ed1b206d 100644 --- a/advisories/unreviewed/2022/05/GHSA-wggx-8wf7-vg3g/GHSA-wggx-8wf7-vg3g.json +++ b/advisories/unreviewed/2022/05/GHSA-wggx-8wf7-vg3g/GHSA-wggx-8wf7-vg3g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wgh9-p42c-pq7h/GHSA-wgh9-p42c-pq7h.json b/advisories/unreviewed/2022/05/GHSA-wgh9-p42c-pq7h/GHSA-wgh9-p42c-pq7h.json index 93b871bb912..ebee0dfc5ff 100644 --- a/advisories/unreviewed/2022/05/GHSA-wgh9-p42c-pq7h/GHSA-wgh9-p42c-pq7h.json +++ b/advisories/unreviewed/2022/05/GHSA-wgh9-p42c-pq7h/GHSA-wgh9-p42c-pq7h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-whwh-vhp2-pj62/GHSA-whwh-vhp2-pj62.json b/advisories/unreviewed/2022/05/GHSA-whwh-vhp2-pj62/GHSA-whwh-vhp2-pj62.json index 43bcb076142..8732c5a6b63 100644 --- a/advisories/unreviewed/2022/05/GHSA-whwh-vhp2-pj62/GHSA-whwh-vhp2-pj62.json +++ b/advisories/unreviewed/2022/05/GHSA-whwh-vhp2-pj62/GHSA-whwh-vhp2-pj62.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wjfc-gqqw-4c33/GHSA-wjfc-gqqw-4c33.json b/advisories/unreviewed/2022/05/GHSA-wjfc-gqqw-4c33/GHSA-wjfc-gqqw-4c33.json index 6daf68c9414..d78fcdf1559 100644 --- a/advisories/unreviewed/2022/05/GHSA-wjfc-gqqw-4c33/GHSA-wjfc-gqqw-4c33.json +++ b/advisories/unreviewed/2022/05/GHSA-wjfc-gqqw-4c33/GHSA-wjfc-gqqw-4c33.json @@ -7,12 +7,8 @@ "CVE-2015-4062" ], "details": "SQL injection vulnerability in includes/nsp_search.php in the NewStatPress plugin before 0.9.9 for WordPress allows remote authenticated users to execute arbitrary SQL commands via the where1 parameter in the nsp_search page to wp-admin/admin.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wmf2-5xg5-mv5p/GHSA-wmf2-5xg5-mv5p.json b/advisories/unreviewed/2022/05/GHSA-wmf2-5xg5-mv5p/GHSA-wmf2-5xg5-mv5p.json index 0b27c9eb0ea..63772c62377 100644 --- a/advisories/unreviewed/2022/05/GHSA-wmf2-5xg5-mv5p/GHSA-wmf2-5xg5-mv5p.json +++ b/advisories/unreviewed/2022/05/GHSA-wmf2-5xg5-mv5p/GHSA-wmf2-5xg5-mv5p.json @@ -7,12 +7,8 @@ "CVE-2013-7181" ], "details": "Cross-site scripting (XSS) vulnerability in user/ldap_user/add in Fortinet FortiOS 5.0.3 allows remote attackers to inject arbitrary web script or HTML via the filter parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wq25-8x73-56px/GHSA-wq25-8x73-56px.json b/advisories/unreviewed/2022/05/GHSA-wq25-8x73-56px/GHSA-wq25-8x73-56px.json index ddf2eee406e..80083512181 100644 --- a/advisories/unreviewed/2022/05/GHSA-wq25-8x73-56px/GHSA-wq25-8x73-56px.json +++ b/advisories/unreviewed/2022/05/GHSA-wq25-8x73-56px/GHSA-wq25-8x73-56px.json @@ -7,12 +7,8 @@ "CVE-2014-0783" ], "details": "Stack-based buffer overflow in BKHOdeq.exe in Yokogawa CENTUM CS 3000 R3.09.50 and earlier allows remote attackers to execute arbitrary code via a crafted TCP packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wq43-mwf7-pm7c/GHSA-wq43-mwf7-pm7c.json b/advisories/unreviewed/2022/05/GHSA-wq43-mwf7-pm7c/GHSA-wq43-mwf7-pm7c.json index bf00d0b51d0..dda8ade0ce4 100644 --- a/advisories/unreviewed/2022/05/GHSA-wq43-mwf7-pm7c/GHSA-wq43-mwf7-pm7c.json +++ b/advisories/unreviewed/2022/05/GHSA-wq43-mwf7-pm7c/GHSA-wq43-mwf7-pm7c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -43,9 +41,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-wqv3-c5x5-3mh7/GHSA-wqv3-c5x5-3mh7.json b/advisories/unreviewed/2022/05/GHSA-wqv3-c5x5-3mh7/GHSA-wqv3-c5x5-3mh7.json index 64fb43c9fc9..a0171ed7703 100644 --- a/advisories/unreviewed/2022/05/GHSA-wqv3-c5x5-3mh7/GHSA-wqv3-c5x5-3mh7.json +++ b/advisories/unreviewed/2022/05/GHSA-wqv3-c5x5-3mh7/GHSA-wqv3-c5x5-3mh7.json @@ -7,12 +7,8 @@ "CVE-2014-1968" ], "details": "Cross-site scripting (XSS) vulnerability in the XooNIps module 3.47 and earlier for XOOPS allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wvwr-5mqr-9r9p/GHSA-wvwr-5mqr-9r9p.json b/advisories/unreviewed/2022/05/GHSA-wvwr-5mqr-9r9p/GHSA-wvwr-5mqr-9r9p.json index e0737043aa6..8a1eea7de72 100644 --- a/advisories/unreviewed/2022/05/GHSA-wvwr-5mqr-9r9p/GHSA-wvwr-5mqr-9r9p.json +++ b/advisories/unreviewed/2022/05/GHSA-wvwr-5mqr-9r9p/GHSA-wvwr-5mqr-9r9p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wwgp-h574-hhfx/GHSA-wwgp-h574-hhfx.json b/advisories/unreviewed/2022/05/GHSA-wwgp-h574-hhfx/GHSA-wwgp-h574-hhfx.json index e12cbbcd273..8f7ad76c9ef 100644 --- a/advisories/unreviewed/2022/05/GHSA-wwgp-h574-hhfx/GHSA-wwgp-h574-hhfx.json +++ b/advisories/unreviewed/2022/05/GHSA-wwgp-h574-hhfx/GHSA-wwgp-h574-hhfx.json @@ -7,12 +7,8 @@ "CVE-2014-2236" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in Askbot before 0.7.49 allow remote attackers to inject arbitrary web script or HTML via vectors related to the (1) tag or (2) user search forms.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wx45-qjwh-7qwp/GHSA-wx45-qjwh-7qwp.json b/advisories/unreviewed/2022/05/GHSA-wx45-qjwh-7qwp/GHSA-wx45-qjwh-7qwp.json index 709fa3fb09d..a06b5f8ab92 100644 --- a/advisories/unreviewed/2022/05/GHSA-wx45-qjwh-7qwp/GHSA-wx45-qjwh-7qwp.json +++ b/advisories/unreviewed/2022/05/GHSA-wx45-qjwh-7qwp/GHSA-wx45-qjwh-7qwp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wxrx-j593-qx6c/GHSA-wxrx-j593-qx6c.json b/advisories/unreviewed/2022/05/GHSA-wxrx-j593-qx6c/GHSA-wxrx-j593-qx6c.json index cd933796b93..b36f9871a01 100644 --- a/advisories/unreviewed/2022/05/GHSA-wxrx-j593-qx6c/GHSA-wxrx-j593-qx6c.json +++ b/advisories/unreviewed/2022/05/GHSA-wxrx-j593-qx6c/GHSA-wxrx-j593-qx6c.json @@ -7,12 +7,8 @@ "CVE-2014-8375" ], "details": "SQL injection vulnerability in GBgallery.php in the GB Gallery Slideshow plugin 1.5 for WordPress allows remote administrators to execute arbitrary SQL commands via the selected_group parameter in a gb_ajax_get_group action to wp-admin/admin-ajax.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x533-9x59-8hwv/GHSA-x533-9x59-8hwv.json b/advisories/unreviewed/2022/05/GHSA-x533-9x59-8hwv/GHSA-x533-9x59-8hwv.json index 0e14fc971ea..7b854c60f36 100644 --- a/advisories/unreviewed/2022/05/GHSA-x533-9x59-8hwv/GHSA-x533-9x59-8hwv.json +++ b/advisories/unreviewed/2022/05/GHSA-x533-9x59-8hwv/GHSA-x533-9x59-8hwv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x5q7-vw6g-xc6c/GHSA-x5q7-vw6g-xc6c.json b/advisories/unreviewed/2022/05/GHSA-x5q7-vw6g-xc6c/GHSA-x5q7-vw6g-xc6c.json index 06379a61462..293f65bc293 100644 --- a/advisories/unreviewed/2022/05/GHSA-x5q7-vw6g-xc6c/GHSA-x5q7-vw6g-xc6c.json +++ b/advisories/unreviewed/2022/05/GHSA-x5q7-vw6g-xc6c/GHSA-x5q7-vw6g-xc6c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x622-hm6c-fm4f/GHSA-x622-hm6c-fm4f.json b/advisories/unreviewed/2022/05/GHSA-x622-hm6c-fm4f/GHSA-x622-hm6c-fm4f.json index ff6123466e0..1327c90b5e9 100644 --- a/advisories/unreviewed/2022/05/GHSA-x622-hm6c-fm4f/GHSA-x622-hm6c-fm4f.json +++ b/advisories/unreviewed/2022/05/GHSA-x622-hm6c-fm4f/GHSA-x622-hm6c-fm4f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x7vq-rqx8-2699/GHSA-x7vq-rqx8-2699.json b/advisories/unreviewed/2022/05/GHSA-x7vq-rqx8-2699/GHSA-x7vq-rqx8-2699.json index 6fc7aaef9d3..c8a6bafd646 100644 --- a/advisories/unreviewed/2022/05/GHSA-x7vq-rqx8-2699/GHSA-x7vq-rqx8-2699.json +++ b/advisories/unreviewed/2022/05/GHSA-x7vq-rqx8-2699/GHSA-x7vq-rqx8-2699.json @@ -7,12 +7,8 @@ "CVE-2014-0821" ], "details": "SQL injection vulnerability in the download feature in Cybozu Garoon 2.x through 2.5.4 and 3.x through 3.7 SP3 allows remote authenticated users to execute arbitrary SQL commands via unspecified vectors, a different vulnerability than CVE-2013-6930 and CVE-2013-6931.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x7xw-w98q-fgfm/GHSA-x7xw-w98q-fgfm.json b/advisories/unreviewed/2022/05/GHSA-x7xw-w98q-fgfm/GHSA-x7xw-w98q-fgfm.json index 696a44232d1..688b6582d84 100644 --- a/advisories/unreviewed/2022/05/GHSA-x7xw-w98q-fgfm/GHSA-x7xw-w98q-fgfm.json +++ b/advisories/unreviewed/2022/05/GHSA-x7xw-w98q-fgfm/GHSA-x7xw-w98q-fgfm.json @@ -7,12 +7,8 @@ "CVE-2015-5222" ], "details": "Red Hat OpenShift Enterprise 3.0.0.0 does not properly check permissions, which allows remote authenticated users with build permissions to execute arbitrary shell commands with root permissions on arbitrary build pods via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xc97-8p9q-cf27/GHSA-xc97-8p9q-cf27.json b/advisories/unreviewed/2022/05/GHSA-xc97-8p9q-cf27/GHSA-xc97-8p9q-cf27.json index 598bbe5d1c8..99bb8d7dc75 100644 --- a/advisories/unreviewed/2022/05/GHSA-xc97-8p9q-cf27/GHSA-xc97-8p9q-cf27.json +++ b/advisories/unreviewed/2022/05/GHSA-xc97-8p9q-cf27/GHSA-xc97-8p9q-cf27.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xcp5-2g2r-h36p/GHSA-xcp5-2g2r-h36p.json b/advisories/unreviewed/2022/05/GHSA-xcp5-2g2r-h36p/GHSA-xcp5-2g2r-h36p.json index dad2d6c0935..aa887a591ad 100644 --- a/advisories/unreviewed/2022/05/GHSA-xcp5-2g2r-h36p/GHSA-xcp5-2g2r-h36p.json +++ b/advisories/unreviewed/2022/05/GHSA-xcp5-2g2r-h36p/GHSA-xcp5-2g2r-h36p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xfh6-pvv6-h7qg/GHSA-xfh6-pvv6-h7qg.json b/advisories/unreviewed/2022/05/GHSA-xfh6-pvv6-h7qg/GHSA-xfh6-pvv6-h7qg.json index 4b5b3f7d222..d4eb93a912b 100644 --- a/advisories/unreviewed/2022/05/GHSA-xfh6-pvv6-h7qg/GHSA-xfh6-pvv6-h7qg.json +++ b/advisories/unreviewed/2022/05/GHSA-xfh6-pvv6-h7qg/GHSA-xfh6-pvv6-h7qg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -43,9 +41,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xfhg-qx7p-6gx5/GHSA-xfhg-qx7p-6gx5.json b/advisories/unreviewed/2022/05/GHSA-xfhg-qx7p-6gx5/GHSA-xfhg-qx7p-6gx5.json index 614e596a516..620278b0da7 100644 --- a/advisories/unreviewed/2022/05/GHSA-xfhg-qx7p-6gx5/GHSA-xfhg-qx7p-6gx5.json +++ b/advisories/unreviewed/2022/05/GHSA-xfhg-qx7p-6gx5/GHSA-xfhg-qx7p-6gx5.json @@ -7,12 +7,8 @@ "CVE-2015-6525" ], "details": "Multiple integer overflows in the evbuffer API in Libevent 2.0.x before 2.0.22 and 2.1.x before 2.1.5-beta allow context-dependent attackers to cause a denial of service or possibly have other unspecified impact via \"insanely large inputs\" to the (1) evbuffer_add, (2) evbuffer_prepend, (3) evbuffer_expand, (4) exbuffer_reserve_space, or (5) evbuffer_read function, which triggers a heap-based buffer overflow or an infinite loop. NOTE: this identifier was SPLIT from CVE-2014-6272 per ADT3 due to different affected versions.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xfpw-7fv5-v6x3/GHSA-xfpw-7fv5-v6x3.json b/advisories/unreviewed/2022/05/GHSA-xfpw-7fv5-v6x3/GHSA-xfpw-7fv5-v6x3.json index e52e2ec4d45..4ecd1092b66 100644 --- a/advisories/unreviewed/2022/05/GHSA-xfpw-7fv5-v6x3/GHSA-xfpw-7fv5-v6x3.json +++ b/advisories/unreviewed/2022/05/GHSA-xfpw-7fv5-v6x3/GHSA-xfpw-7fv5-v6x3.json @@ -7,12 +7,8 @@ "CVE-2015-6751" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the Time Tracker module 7.x-1.x before 7.x-1.4 for Drupal allow remote authenticated users with certain permissions to inject arbitrary web script or HTML via a (1) note added to a time entry or an (2) activity used to categorize time tracker entries.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xh5x-q49r-r9w4/GHSA-xh5x-q49r-r9w4.json b/advisories/unreviewed/2022/05/GHSA-xh5x-q49r-r9w4/GHSA-xh5x-q49r-r9w4.json index 24a0ff4f8e0..18b2d975037 100644 --- a/advisories/unreviewed/2022/05/GHSA-xh5x-q49r-r9w4/GHSA-xh5x-q49r-r9w4.json +++ b/advisories/unreviewed/2022/05/GHSA-xh5x-q49r-r9w4/GHSA-xh5x-q49r-r9w4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xh75-6422-82m9/GHSA-xh75-6422-82m9.json b/advisories/unreviewed/2022/05/GHSA-xh75-6422-82m9/GHSA-xh75-6422-82m9.json index e654b84b07c..f13a5911415 100644 --- a/advisories/unreviewed/2022/05/GHSA-xh75-6422-82m9/GHSA-xh75-6422-82m9.json +++ b/advisories/unreviewed/2022/05/GHSA-xh75-6422-82m9/GHSA-xh75-6422-82m9.json @@ -7,12 +7,8 @@ "CVE-2015-4775" ], "details": "Unspecified vulnerability in the Data Store component in Oracle Berkeley DB 11.2.5.1.29, 11.2.5.2.42, 11.2.5.3.28, and 12.1.6.0.35 allows local users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2015-2583, CVE-2015-2624, CVE-2015-2626, CVE-2015-2640, CVE-2015-2654, CVE-2015-2656, CVE-2015-4754, CVE-2015-4764, CVE-2015-4776, CVE-2015-4777, CVE-2015-4778, CVE-2015-4780, CVE-2015-4781, CVE-2015-4782, CVE-2015-4783, CVE-2015-4784, CVE-2015-4785, CVE-2015-4786, CVE-2015-4787, CVE-2015-4789, and CVE-2015-4790.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xhg7-3m9v-pjfp/GHSA-xhg7-3m9v-pjfp.json b/advisories/unreviewed/2022/05/GHSA-xhg7-3m9v-pjfp/GHSA-xhg7-3m9v-pjfp.json index 0998fa6a89c..0984828cf7d 100644 --- a/advisories/unreviewed/2022/05/GHSA-xhg7-3m9v-pjfp/GHSA-xhg7-3m9v-pjfp.json +++ b/advisories/unreviewed/2022/05/GHSA-xhg7-3m9v-pjfp/GHSA-xhg7-3m9v-pjfp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xhwh-qc34-g7xv/GHSA-xhwh-qc34-g7xv.json b/advisories/unreviewed/2022/05/GHSA-xhwh-qc34-g7xv/GHSA-xhwh-qc34-g7xv.json index 25a08bdb541..629577542d3 100644 --- a/advisories/unreviewed/2022/05/GHSA-xhwh-qc34-g7xv/GHSA-xhwh-qc34-g7xv.json +++ b/advisories/unreviewed/2022/05/GHSA-xhwh-qc34-g7xv/GHSA-xhwh-qc34-g7xv.json @@ -7,12 +7,8 @@ "CVE-2012-5962" ], "details": "Stack-based buffer overflow in the unique_service_name function in ssdp/ssdp_server.c in the SSDP parser in the portable SDK for UPnP Devices (aka libupnp, formerly the Intel SDK for UPnP devices) 1.3.1 allows remote attackers to execute arbitrary code via a long DeviceType (aka urn) field in a UDP packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xj4c-3gx9-2cc7/GHSA-xj4c-3gx9-2cc7.json b/advisories/unreviewed/2022/05/GHSA-xj4c-3gx9-2cc7/GHSA-xj4c-3gx9-2cc7.json index d518e09753d..5265fd86004 100644 --- a/advisories/unreviewed/2022/05/GHSA-xj4c-3gx9-2cc7/GHSA-xj4c-3gx9-2cc7.json +++ b/advisories/unreviewed/2022/05/GHSA-xj4c-3gx9-2cc7/GHSA-xj4c-3gx9-2cc7.json @@ -7,12 +7,8 @@ "CVE-2013-6176" ], "details": "Multiple SQL injection vulnerabilities in EMC Document Sciences xPression 4.1 SP1 before Patch 47, 4.2 before Patch 26, and 4.5 before Patch 05, as used in Documentum Edition, Enterprise Edition Publish Engine, and Enterprise Edition Compuset Engine, allow remote authenticated users to execute arbitrary SQL commands via unspecified input to a (1) xAdmin or (2) xDashboard form.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xq9j-rj57-v855/GHSA-xq9j-rj57-v855.json b/advisories/unreviewed/2022/05/GHSA-xq9j-rj57-v855/GHSA-xq9j-rj57-v855.json index 4192aa5e69f..1e7be128d6d 100644 --- a/advisories/unreviewed/2022/05/GHSA-xq9j-rj57-v855/GHSA-xq9j-rj57-v855.json +++ b/advisories/unreviewed/2022/05/GHSA-xq9j-rj57-v855/GHSA-xq9j-rj57-v855.json @@ -7,12 +7,8 @@ "CVE-2015-2975" ], "details": "Research Artisan Lite before 1.18 does not ensure that a user has authenticated, which allows remote attackers to perform unspecified actions via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xv86-3hxg-hv4r/GHSA-xv86-3hxg-hv4r.json b/advisories/unreviewed/2022/05/GHSA-xv86-3hxg-hv4r/GHSA-xv86-3hxg-hv4r.json index c2cf22ca793..0c7234bc7a7 100644 --- a/advisories/unreviewed/2022/05/GHSA-xv86-3hxg-hv4r/GHSA-xv86-3hxg-hv4r.json +++ b/advisories/unreviewed/2022/05/GHSA-xv86-3hxg-hv4r/GHSA-xv86-3hxg-hv4r.json @@ -7,12 +7,8 @@ "CVE-2015-4386" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in unspecified administration pages in the EntityBulkDelete module 7.x-1.0 for Drupal allow remote attackers to inject arbitrary web script or HTML via unknown vectors involving creating or editing (1) comments, (2) taxonomy terms, or (3) nodes.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xvc4-xc7h-xwp4/GHSA-xvc4-xc7h-xwp4.json b/advisories/unreviewed/2022/05/GHSA-xvc4-xc7h-xwp4/GHSA-xvc4-xc7h-xwp4.json index b22b44cfbad..49e1190f1f5 100644 --- a/advisories/unreviewed/2022/05/GHSA-xvc4-xc7h-xwp4/GHSA-xvc4-xc7h-xwp4.json +++ b/advisories/unreviewed/2022/05/GHSA-xvc4-xc7h-xwp4/GHSA-xvc4-xc7h-xwp4.json @@ -7,12 +7,8 @@ "CVE-2014-9740" ], "details": "Cross-site scripting (XSS) vulnerability in the Rules Link module 7.x-1.x before 7.x-1.1 for Drupal allows remote authenticated users with the \"administer rules links\" permission to inject arbitrary web script or HTML via unspecified vectors, which are not properly handled in the (1) question and (2) description strings in a confirmation form for a triggering Rules link.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xwgw-cx39-c2gx/GHSA-xwgw-cx39-c2gx.json b/advisories/unreviewed/2022/05/GHSA-xwgw-cx39-c2gx/GHSA-xwgw-cx39-c2gx.json index b7597a32aab..d221146b1d7 100644 --- a/advisories/unreviewed/2022/05/GHSA-xwgw-cx39-c2gx/GHSA-xwgw-cx39-c2gx.json +++ b/advisories/unreviewed/2022/05/GHSA-xwgw-cx39-c2gx/GHSA-xwgw-cx39-c2gx.json @@ -7,12 +7,8 @@ "CVE-2015-0961" ], "details": "Barracuda Web Filter before 8.1.0.005, when SSL Inspection is enabled, does not verify X.509 certificates from upstream SSL servers, which allows man-in-the-middle attackers to spoof servers and obtain sensitive information via a crafted certificate.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xx58-g4hc-mr9f/GHSA-xx58-g4hc-mr9f.json b/advisories/unreviewed/2022/05/GHSA-xx58-g4hc-mr9f/GHSA-xx58-g4hc-mr9f.json index 488d294c51a..d8bea7f405e 100644 --- a/advisories/unreviewed/2022/05/GHSA-xx58-g4hc-mr9f/GHSA-xx58-g4hc-mr9f.json +++ b/advisories/unreviewed/2022/05/GHSA-xx58-g4hc-mr9f/GHSA-xx58-g4hc-mr9f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:N/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xxhc-wx4f-q7f9/GHSA-xxhc-wx4f-q7f9.json b/advisories/unreviewed/2022/05/GHSA-xxhc-wx4f-q7f9/GHSA-xxhc-wx4f-q7f9.json index 9aea20c9cfb..4f3d57c0dd4 100644 --- a/advisories/unreviewed/2022/05/GHSA-xxhc-wx4f-q7f9/GHSA-xxhc-wx4f-q7f9.json +++ b/advisories/unreviewed/2022/05/GHSA-xxhc-wx4f-q7f9/GHSA-xxhc-wx4f-q7f9.json @@ -7,12 +7,8 @@ "CVE-2015-2982" ], "details": "Cross-site scripting (XSS) vulnerability in jquery.lightbox-0.5.min.js in PHP Kobo Photo Gallery CMS for PC, smartphone and feature phone 1.0.1 Free and earlier allows remote authenticated users to inject arbitrary web script or HTML via unspecified input to admin.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xxmj-r9ph-qg7w/GHSA-xxmj-r9ph-qg7w.json b/advisories/unreviewed/2022/05/GHSA-xxmj-r9ph-qg7w/GHSA-xxmj-r9ph-qg7w.json index 35e8d1a5234..daa86bd8eb2 100644 --- a/advisories/unreviewed/2022/05/GHSA-xxmj-r9ph-qg7w/GHSA-xxmj-r9ph-qg7w.json +++ b/advisories/unreviewed/2022/05/GHSA-xxmj-r9ph-qg7w/GHSA-xxmj-r9ph-qg7w.json @@ -7,12 +7,8 @@ "CVE-2015-2985" ], "details": "Cross-site scripting (XSS) vulnerability in guide-park.com BBS X102 1.03 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-rhf7-g27p-vr96/GHSA-rhf7-g27p-vr96.json b/advisories/unreviewed/2022/06/GHSA-rhf7-g27p-vr96/GHSA-rhf7-g27p-vr96.json index 48d492d2ad8..2f1482d0a90 100644 --- a/advisories/unreviewed/2022/06/GHSA-rhf7-g27p-vr96/GHSA-rhf7-g27p-vr96.json +++ b/advisories/unreviewed/2022/06/GHSA-rhf7-g27p-vr96/GHSA-rhf7-g27p-vr96.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/07/GHSA-85jf-3554-jffm/GHSA-85jf-3554-jffm.json b/advisories/unreviewed/2022/07/GHSA-85jf-3554-jffm/GHSA-85jf-3554-jffm.json index 88d3b67594c..2d15f77cec6 100644 --- a/advisories/unreviewed/2022/07/GHSA-85jf-3554-jffm/GHSA-85jf-3554-jffm.json +++ b/advisories/unreviewed/2022/07/GHSA-85jf-3554-jffm/GHSA-85jf-3554-jffm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/07/GHSA-9hhr-r3j8-h675/GHSA-9hhr-r3j8-h675.json b/advisories/unreviewed/2022/07/GHSA-9hhr-r3j8-h675/GHSA-9hhr-r3j8-h675.json index 6e85cb4be21..c08d4e2a9d3 100644 --- a/advisories/unreviewed/2022/07/GHSA-9hhr-r3j8-h675/GHSA-9hhr-r3j8-h675.json +++ b/advisories/unreviewed/2022/07/GHSA-9hhr-r3j8-h675/GHSA-9hhr-r3j8-h675.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/07/GHSA-gfg8-2cqc-6cmc/GHSA-gfg8-2cqc-6cmc.json b/advisories/unreviewed/2022/07/GHSA-gfg8-2cqc-6cmc/GHSA-gfg8-2cqc-6cmc.json index fb1a0ba4048..59fab74eab9 100644 --- a/advisories/unreviewed/2022/07/GHSA-gfg8-2cqc-6cmc/GHSA-gfg8-2cqc-6cmc.json +++ b/advisories/unreviewed/2022/07/GHSA-gfg8-2cqc-6cmc/GHSA-gfg8-2cqc-6cmc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/07/GHSA-mvxp-vg38-gq5c/GHSA-mvxp-vg38-gq5c.json b/advisories/unreviewed/2022/07/GHSA-mvxp-vg38-gq5c/GHSA-mvxp-vg38-gq5c.json index c023f6326f8..ce53b2fe0fd 100644 --- a/advisories/unreviewed/2022/07/GHSA-mvxp-vg38-gq5c/GHSA-mvxp-vg38-gq5c.json +++ b/advisories/unreviewed/2022/07/GHSA-mvxp-vg38-gq5c/GHSA-mvxp-vg38-gq5c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/07/GHSA-pphv-gw4r-gww8/GHSA-pphv-gw4r-gww8.json b/advisories/unreviewed/2022/07/GHSA-pphv-gw4r-gww8/GHSA-pphv-gw4r-gww8.json index 9363f7b6b8c..c31c6994ddc 100644 --- a/advisories/unreviewed/2022/07/GHSA-pphv-gw4r-gww8/GHSA-pphv-gw4r-gww8.json +++ b/advisories/unreviewed/2022/07/GHSA-pphv-gw4r-gww8/GHSA-pphv-gw4r-gww8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/08/GHSA-mg62-fpgc-6hjj/GHSA-mg62-fpgc-6hjj.json b/advisories/unreviewed/2022/08/GHSA-mg62-fpgc-6hjj/GHSA-mg62-fpgc-6hjj.json index 37a1618d5ee..c05859207d4 100644 --- a/advisories/unreviewed/2022/08/GHSA-mg62-fpgc-6hjj/GHSA-mg62-fpgc-6hjj.json +++ b/advisories/unreviewed/2022/08/GHSA-mg62-fpgc-6hjj/GHSA-mg62-fpgc-6hjj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/08/GHSA-p9ch-h5p3-4xcq/GHSA-p9ch-h5p3-4xcq.json b/advisories/unreviewed/2022/08/GHSA-p9ch-h5p3-4xcq/GHSA-p9ch-h5p3-4xcq.json index ff2423b9af6..1ccbfb4d936 100644 --- a/advisories/unreviewed/2022/08/GHSA-p9ch-h5p3-4xcq/GHSA-p9ch-h5p3-4xcq.json +++ b/advisories/unreviewed/2022/08/GHSA-p9ch-h5p3-4xcq/GHSA-p9ch-h5p3-4xcq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/08/GHSA-w46r-g3fx-q46r/GHSA-w46r-g3fx-q46r.json b/advisories/unreviewed/2022/08/GHSA-w46r-g3fx-q46r/GHSA-w46r-g3fx-q46r.json index 91af3c91935..5f1b239471a 100644 --- a/advisories/unreviewed/2022/08/GHSA-w46r-g3fx-q46r/GHSA-w46r-g3fx-q46r.json +++ b/advisories/unreviewed/2022/08/GHSA-w46r-g3fx-q46r/GHSA-w46r-g3fx-q46r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/09/GHSA-3485-7x7c-qrw2/GHSA-3485-7x7c-qrw2.json b/advisories/unreviewed/2022/09/GHSA-3485-7x7c-qrw2/GHSA-3485-7x7c-qrw2.json index 6b29b926a37..7e897d89950 100644 --- a/advisories/unreviewed/2022/09/GHSA-3485-7x7c-qrw2/GHSA-3485-7x7c-qrw2.json +++ b/advisories/unreviewed/2022/09/GHSA-3485-7x7c-qrw2/GHSA-3485-7x7c-qrw2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/09/GHSA-6892-3367-4m98/GHSA-6892-3367-4m98.json b/advisories/unreviewed/2022/09/GHSA-6892-3367-4m98/GHSA-6892-3367-4m98.json index a30fd54a3f3..d2e2e561436 100644 --- a/advisories/unreviewed/2022/09/GHSA-6892-3367-4m98/GHSA-6892-3367-4m98.json +++ b/advisories/unreviewed/2022/09/GHSA-6892-3367-4m98/GHSA-6892-3367-4m98.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/09/GHSA-6mx7-x2qv-m52h/GHSA-6mx7-x2qv-m52h.json b/advisories/unreviewed/2022/09/GHSA-6mx7-x2qv-m52h/GHSA-6mx7-x2qv-m52h.json index 89764dbe1d1..73ceccbf130 100644 --- a/advisories/unreviewed/2022/09/GHSA-6mx7-x2qv-m52h/GHSA-6mx7-x2qv-m52h.json +++ b/advisories/unreviewed/2022/09/GHSA-6mx7-x2qv-m52h/GHSA-6mx7-x2qv-m52h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/09/GHSA-jv46-73g5-gg89/GHSA-jv46-73g5-gg89.json b/advisories/unreviewed/2022/09/GHSA-jv46-73g5-gg89/GHSA-jv46-73g5-gg89.json index 39562c97557..0e4ecdaf15c 100644 --- a/advisories/unreviewed/2022/09/GHSA-jv46-73g5-gg89/GHSA-jv46-73g5-gg89.json +++ b/advisories/unreviewed/2022/09/GHSA-jv46-73g5-gg89/GHSA-jv46-73g5-gg89.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/09/GHSA-qc3c-r429-gpgf/GHSA-qc3c-r429-gpgf.json b/advisories/unreviewed/2022/09/GHSA-qc3c-r429-gpgf/GHSA-qc3c-r429-gpgf.json index 327f918f62c..472604f5d50 100644 --- a/advisories/unreviewed/2022/09/GHSA-qc3c-r429-gpgf/GHSA-qc3c-r429-gpgf.json +++ b/advisories/unreviewed/2022/09/GHSA-qc3c-r429-gpgf/GHSA-qc3c-r429-gpgf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/09/GHSA-v44g-gwm6-58cw/GHSA-v44g-gwm6-58cw.json b/advisories/unreviewed/2022/09/GHSA-v44g-gwm6-58cw/GHSA-v44g-gwm6-58cw.json index 654efb30a86..c420ceffd39 100644 --- a/advisories/unreviewed/2022/09/GHSA-v44g-gwm6-58cw/GHSA-v44g-gwm6-58cw.json +++ b/advisories/unreviewed/2022/09/GHSA-v44g-gwm6-58cw/GHSA-v44g-gwm6-58cw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/10/GHSA-6295-5j29-3cc8/GHSA-6295-5j29-3cc8.json b/advisories/unreviewed/2022/10/GHSA-6295-5j29-3cc8/GHSA-6295-5j29-3cc8.json index a16b6c9321a..bb29f7875bc 100644 --- a/advisories/unreviewed/2022/10/GHSA-6295-5j29-3cc8/GHSA-6295-5j29-3cc8.json +++ b/advisories/unreviewed/2022/10/GHSA-6295-5j29-3cc8/GHSA-6295-5j29-3cc8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/10/GHSA-98w6-hw73-ph8m/GHSA-98w6-hw73-ph8m.json b/advisories/unreviewed/2022/10/GHSA-98w6-hw73-ph8m/GHSA-98w6-hw73-ph8m.json index 37a3051e7b8..b22f3ab1249 100644 --- a/advisories/unreviewed/2022/10/GHSA-98w6-hw73-ph8m/GHSA-98w6-hw73-ph8m.json +++ b/advisories/unreviewed/2022/10/GHSA-98w6-hw73-ph8m/GHSA-98w6-hw73-ph8m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-24pw-pfmp-w2w4/GHSA-24pw-pfmp-w2w4.json b/advisories/unreviewed/2022/11/GHSA-24pw-pfmp-w2w4/GHSA-24pw-pfmp-w2w4.json index 7b9382bbf54..8ccb440068a 100644 --- a/advisories/unreviewed/2022/11/GHSA-24pw-pfmp-w2w4/GHSA-24pw-pfmp-w2w4.json +++ b/advisories/unreviewed/2022/11/GHSA-24pw-pfmp-w2w4/GHSA-24pw-pfmp-w2w4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-27qm-jwxp-8whw/GHSA-27qm-jwxp-8whw.json b/advisories/unreviewed/2022/11/GHSA-27qm-jwxp-8whw/GHSA-27qm-jwxp-8whw.json index 9b5485a61f0..3e778c2352a 100644 --- a/advisories/unreviewed/2022/11/GHSA-27qm-jwxp-8whw/GHSA-27qm-jwxp-8whw.json +++ b/advisories/unreviewed/2022/11/GHSA-27qm-jwxp-8whw/GHSA-27qm-jwxp-8whw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-2c76-rwr8-xf77/GHSA-2c76-rwr8-xf77.json b/advisories/unreviewed/2022/11/GHSA-2c76-rwr8-xf77/GHSA-2c76-rwr8-xf77.json index 55a022a69f1..da4d212e433 100644 --- a/advisories/unreviewed/2022/11/GHSA-2c76-rwr8-xf77/GHSA-2c76-rwr8-xf77.json +++ b/advisories/unreviewed/2022/11/GHSA-2c76-rwr8-xf77/GHSA-2c76-rwr8-xf77.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-2cvq-f2jf-9wfh/GHSA-2cvq-f2jf-9wfh.json b/advisories/unreviewed/2022/11/GHSA-2cvq-f2jf-9wfh/GHSA-2cvq-f2jf-9wfh.json index 02e68890460..66ffede2ff3 100644 --- a/advisories/unreviewed/2022/11/GHSA-2cvq-f2jf-9wfh/GHSA-2cvq-f2jf-9wfh.json +++ b/advisories/unreviewed/2022/11/GHSA-2cvq-f2jf-9wfh/GHSA-2cvq-f2jf-9wfh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-45gh-mj8m-cxx5/GHSA-45gh-mj8m-cxx5.json b/advisories/unreviewed/2022/11/GHSA-45gh-mj8m-cxx5/GHSA-45gh-mj8m-cxx5.json index a23cf9f97f5..24a364f2883 100644 --- a/advisories/unreviewed/2022/11/GHSA-45gh-mj8m-cxx5/GHSA-45gh-mj8m-cxx5.json +++ b/advisories/unreviewed/2022/11/GHSA-45gh-mj8m-cxx5/GHSA-45gh-mj8m-cxx5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/11/GHSA-5vjw-v75v-7457/GHSA-5vjw-v75v-7457.json b/advisories/unreviewed/2022/11/GHSA-5vjw-v75v-7457/GHSA-5vjw-v75v-7457.json index 158b6fbd5ef..f1b9ac28c1a 100644 --- a/advisories/unreviewed/2022/11/GHSA-5vjw-v75v-7457/GHSA-5vjw-v75v-7457.json +++ b/advisories/unreviewed/2022/11/GHSA-5vjw-v75v-7457/GHSA-5vjw-v75v-7457.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/11/GHSA-636w-x3wj-wj9p/GHSA-636w-x3wj-wj9p.json b/advisories/unreviewed/2022/11/GHSA-636w-x3wj-wj9p/GHSA-636w-x3wj-wj9p.json index 8eaff3e17e1..caf2fd76af3 100644 --- a/advisories/unreviewed/2022/11/GHSA-636w-x3wj-wj9p/GHSA-636w-x3wj-wj9p.json +++ b/advisories/unreviewed/2022/11/GHSA-636w-x3wj-wj9p/GHSA-636w-x3wj-wj9p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-65wp-vh9q-f2vh/GHSA-65wp-vh9q-f2vh.json b/advisories/unreviewed/2022/11/GHSA-65wp-vh9q-f2vh/GHSA-65wp-vh9q-f2vh.json index beb9adf6a3f..467324f5e6d 100644 --- a/advisories/unreviewed/2022/11/GHSA-65wp-vh9q-f2vh/GHSA-65wp-vh9q-f2vh.json +++ b/advisories/unreviewed/2022/11/GHSA-65wp-vh9q-f2vh/GHSA-65wp-vh9q-f2vh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-6pr7-hc7f-vhj5/GHSA-6pr7-hc7f-vhj5.json b/advisories/unreviewed/2022/11/GHSA-6pr7-hc7f-vhj5/GHSA-6pr7-hc7f-vhj5.json index e7c860ec28e..8b6648e1400 100644 --- a/advisories/unreviewed/2022/11/GHSA-6pr7-hc7f-vhj5/GHSA-6pr7-hc7f-vhj5.json +++ b/advisories/unreviewed/2022/11/GHSA-6pr7-hc7f-vhj5/GHSA-6pr7-hc7f-vhj5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-7f9f-p7cj-6p6f/GHSA-7f9f-p7cj-6p6f.json b/advisories/unreviewed/2022/11/GHSA-7f9f-p7cj-6p6f/GHSA-7f9f-p7cj-6p6f.json index 0f21527ab95..74e35ff0e46 100644 --- a/advisories/unreviewed/2022/11/GHSA-7f9f-p7cj-6p6f/GHSA-7f9f-p7cj-6p6f.json +++ b/advisories/unreviewed/2022/11/GHSA-7f9f-p7cj-6p6f/GHSA-7f9f-p7cj-6p6f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-7x8h-hfcr-m4c6/GHSA-7x8h-hfcr-m4c6.json b/advisories/unreviewed/2022/11/GHSA-7x8h-hfcr-m4c6/GHSA-7x8h-hfcr-m4c6.json index 69fdec26949..337ac9d8b21 100644 --- a/advisories/unreviewed/2022/11/GHSA-7x8h-hfcr-m4c6/GHSA-7x8h-hfcr-m4c6.json +++ b/advisories/unreviewed/2022/11/GHSA-7x8h-hfcr-m4c6/GHSA-7x8h-hfcr-m4c6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-86w6-jjjm-5mx6/GHSA-86w6-jjjm-5mx6.json b/advisories/unreviewed/2022/11/GHSA-86w6-jjjm-5mx6/GHSA-86w6-jjjm-5mx6.json index 7c07998e28c..c3ee2724d3b 100644 --- a/advisories/unreviewed/2022/11/GHSA-86w6-jjjm-5mx6/GHSA-86w6-jjjm-5mx6.json +++ b/advisories/unreviewed/2022/11/GHSA-86w6-jjjm-5mx6/GHSA-86w6-jjjm-5mx6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-9rhm-3vqw-78v4/GHSA-9rhm-3vqw-78v4.json b/advisories/unreviewed/2022/11/GHSA-9rhm-3vqw-78v4/GHSA-9rhm-3vqw-78v4.json index 521ea25f6cb..c3821d20d04 100644 --- a/advisories/unreviewed/2022/11/GHSA-9rhm-3vqw-78v4/GHSA-9rhm-3vqw-78v4.json +++ b/advisories/unreviewed/2022/11/GHSA-9rhm-3vqw-78v4/GHSA-9rhm-3vqw-78v4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/11/GHSA-c77w-6vg2-c6cj/GHSA-c77w-6vg2-c6cj.json b/advisories/unreviewed/2022/11/GHSA-c77w-6vg2-c6cj/GHSA-c77w-6vg2-c6cj.json index f0fbd4bdaa8..e7b43ec80ae 100644 --- a/advisories/unreviewed/2022/11/GHSA-c77w-6vg2-c6cj/GHSA-c77w-6vg2-c6cj.json +++ b/advisories/unreviewed/2022/11/GHSA-c77w-6vg2-c6cj/GHSA-c77w-6vg2-c6cj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-cm49-fh74-75ch/GHSA-cm49-fh74-75ch.json b/advisories/unreviewed/2022/11/GHSA-cm49-fh74-75ch/GHSA-cm49-fh74-75ch.json index b7ddc3d39de..e45126be456 100644 --- a/advisories/unreviewed/2022/11/GHSA-cm49-fh74-75ch/GHSA-cm49-fh74-75ch.json +++ b/advisories/unreviewed/2022/11/GHSA-cm49-fh74-75ch/GHSA-cm49-fh74-75ch.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/11/GHSA-cq38-9f6p-96j8/GHSA-cq38-9f6p-96j8.json b/advisories/unreviewed/2022/11/GHSA-cq38-9f6p-96j8/GHSA-cq38-9f6p-96j8.json index 12b0e7a9d7a..d38a07a2b1d 100644 --- a/advisories/unreviewed/2022/11/GHSA-cq38-9f6p-96j8/GHSA-cq38-9f6p-96j8.json +++ b/advisories/unreviewed/2022/11/GHSA-cq38-9f6p-96j8/GHSA-cq38-9f6p-96j8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-f3wc-33m6-2qch/GHSA-f3wc-33m6-2qch.json b/advisories/unreviewed/2022/11/GHSA-f3wc-33m6-2qch/GHSA-f3wc-33m6-2qch.json index 21d1026e1d8..ff11fb2f6b1 100644 --- a/advisories/unreviewed/2022/11/GHSA-f3wc-33m6-2qch/GHSA-f3wc-33m6-2qch.json +++ b/advisories/unreviewed/2022/11/GHSA-f3wc-33m6-2qch/GHSA-f3wc-33m6-2qch.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-f4mf-54pp-jfrw/GHSA-f4mf-54pp-jfrw.json b/advisories/unreviewed/2022/11/GHSA-f4mf-54pp-jfrw/GHSA-f4mf-54pp-jfrw.json index 66ca518b9b9..ab7b390068a 100644 --- a/advisories/unreviewed/2022/11/GHSA-f4mf-54pp-jfrw/GHSA-f4mf-54pp-jfrw.json +++ b/advisories/unreviewed/2022/11/GHSA-f4mf-54pp-jfrw/GHSA-f4mf-54pp-jfrw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-fx24-c5wc-w7w2/GHSA-fx24-c5wc-w7w2.json b/advisories/unreviewed/2022/11/GHSA-fx24-c5wc-w7w2/GHSA-fx24-c5wc-w7w2.json index be011ab5b3a..ee8e106087e 100644 --- a/advisories/unreviewed/2022/11/GHSA-fx24-c5wc-w7w2/GHSA-fx24-c5wc-w7w2.json +++ b/advisories/unreviewed/2022/11/GHSA-fx24-c5wc-w7w2/GHSA-fx24-c5wc-w7w2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/11/GHSA-g7g9-7hvj-xfqf/GHSA-g7g9-7hvj-xfqf.json b/advisories/unreviewed/2022/11/GHSA-g7g9-7hvj-xfqf/GHSA-g7g9-7hvj-xfqf.json index 07becad8319..52e3835e0b7 100644 --- a/advisories/unreviewed/2022/11/GHSA-g7g9-7hvj-xfqf/GHSA-g7g9-7hvj-xfqf.json +++ b/advisories/unreviewed/2022/11/GHSA-g7g9-7hvj-xfqf/GHSA-g7g9-7hvj-xfqf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-g8mf-8fh6-578r/GHSA-g8mf-8fh6-578r.json b/advisories/unreviewed/2022/11/GHSA-g8mf-8fh6-578r/GHSA-g8mf-8fh6-578r.json index c5adc0a71ba..2985da10c9e 100644 --- a/advisories/unreviewed/2022/11/GHSA-g8mf-8fh6-578r/GHSA-g8mf-8fh6-578r.json +++ b/advisories/unreviewed/2022/11/GHSA-g8mf-8fh6-578r/GHSA-g8mf-8fh6-578r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-gp43-46q6-g3r3/GHSA-gp43-46q6-g3r3.json b/advisories/unreviewed/2022/11/GHSA-gp43-46q6-g3r3/GHSA-gp43-46q6-g3r3.json index f45754548e4..d69aa0ce7e0 100644 --- a/advisories/unreviewed/2022/11/GHSA-gp43-46q6-g3r3/GHSA-gp43-46q6-g3r3.json +++ b/advisories/unreviewed/2022/11/GHSA-gp43-46q6-g3r3/GHSA-gp43-46q6-g3r3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-gpgf-w78r-4pvj/GHSA-gpgf-w78r-4pvj.json b/advisories/unreviewed/2022/11/GHSA-gpgf-w78r-4pvj/GHSA-gpgf-w78r-4pvj.json index 4cc06ce3584..5458e558c77 100644 --- a/advisories/unreviewed/2022/11/GHSA-gpgf-w78r-4pvj/GHSA-gpgf-w78r-4pvj.json +++ b/advisories/unreviewed/2022/11/GHSA-gpgf-w78r-4pvj/GHSA-gpgf-w78r-4pvj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-hc5m-68rf-53fj/GHSA-hc5m-68rf-53fj.json b/advisories/unreviewed/2022/11/GHSA-hc5m-68rf-53fj/GHSA-hc5m-68rf-53fj.json index a09f5ff2215..c32fdce5fd4 100644 --- a/advisories/unreviewed/2022/11/GHSA-hc5m-68rf-53fj/GHSA-hc5m-68rf-53fj.json +++ b/advisories/unreviewed/2022/11/GHSA-hc5m-68rf-53fj/GHSA-hc5m-68rf-53fj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-hr35-x9rx-cc59/GHSA-hr35-x9rx-cc59.json b/advisories/unreviewed/2022/11/GHSA-hr35-x9rx-cc59/GHSA-hr35-x9rx-cc59.json index 9e882c7799c..75a36918b56 100644 --- a/advisories/unreviewed/2022/11/GHSA-hr35-x9rx-cc59/GHSA-hr35-x9rx-cc59.json +++ b/advisories/unreviewed/2022/11/GHSA-hr35-x9rx-cc59/GHSA-hr35-x9rx-cc59.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-jc8r-v6v4-2x76/GHSA-jc8r-v6v4-2x76.json b/advisories/unreviewed/2022/11/GHSA-jc8r-v6v4-2x76/GHSA-jc8r-v6v4-2x76.json index 07cca423c08..3491d571871 100644 --- a/advisories/unreviewed/2022/11/GHSA-jc8r-v6v4-2x76/GHSA-jc8r-v6v4-2x76.json +++ b/advisories/unreviewed/2022/11/GHSA-jc8r-v6v4-2x76/GHSA-jc8r-v6v4-2x76.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-jggh-gg48-r3hf/GHSA-jggh-gg48-r3hf.json b/advisories/unreviewed/2022/11/GHSA-jggh-gg48-r3hf/GHSA-jggh-gg48-r3hf.json index 793c8cbc52c..596729d517c 100644 --- a/advisories/unreviewed/2022/11/GHSA-jggh-gg48-r3hf/GHSA-jggh-gg48-r3hf.json +++ b/advisories/unreviewed/2022/11/GHSA-jggh-gg48-r3hf/GHSA-jggh-gg48-r3hf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-jvw4-hhr9-8575/GHSA-jvw4-hhr9-8575.json b/advisories/unreviewed/2022/11/GHSA-jvw4-hhr9-8575/GHSA-jvw4-hhr9-8575.json index b43ff7c2a1e..6f8d7b50e0a 100644 --- a/advisories/unreviewed/2022/11/GHSA-jvw4-hhr9-8575/GHSA-jvw4-hhr9-8575.json +++ b/advisories/unreviewed/2022/11/GHSA-jvw4-hhr9-8575/GHSA-jvw4-hhr9-8575.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/11/GHSA-m72j-3hvm-r6gx/GHSA-m72j-3hvm-r6gx.json b/advisories/unreviewed/2022/11/GHSA-m72j-3hvm-r6gx/GHSA-m72j-3hvm-r6gx.json index de0e7e831ff..c3d456855c8 100644 --- a/advisories/unreviewed/2022/11/GHSA-m72j-3hvm-r6gx/GHSA-m72j-3hvm-r6gx.json +++ b/advisories/unreviewed/2022/11/GHSA-m72j-3hvm-r6gx/GHSA-m72j-3hvm-r6gx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-pfv8-5qjr-758g/GHSA-pfv8-5qjr-758g.json b/advisories/unreviewed/2022/11/GHSA-pfv8-5qjr-758g/GHSA-pfv8-5qjr-758g.json index f006bcc22b7..c88841e6052 100644 --- a/advisories/unreviewed/2022/11/GHSA-pfv8-5qjr-758g/GHSA-pfv8-5qjr-758g.json +++ b/advisories/unreviewed/2022/11/GHSA-pfv8-5qjr-758g/GHSA-pfv8-5qjr-758g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-pqvw-xcm9-69ph/GHSA-pqvw-xcm9-69ph.json b/advisories/unreviewed/2022/11/GHSA-pqvw-xcm9-69ph/GHSA-pqvw-xcm9-69ph.json index 5ccb3a06759..3bffa1e87d4 100644 --- a/advisories/unreviewed/2022/11/GHSA-pqvw-xcm9-69ph/GHSA-pqvw-xcm9-69ph.json +++ b/advisories/unreviewed/2022/11/GHSA-pqvw-xcm9-69ph/GHSA-pqvw-xcm9-69ph.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-q35w-7696-fc7r/GHSA-q35w-7696-fc7r.json b/advisories/unreviewed/2022/11/GHSA-q35w-7696-fc7r/GHSA-q35w-7696-fc7r.json index c0b14d821dd..aa53c01cd75 100644 --- a/advisories/unreviewed/2022/11/GHSA-q35w-7696-fc7r/GHSA-q35w-7696-fc7r.json +++ b/advisories/unreviewed/2022/11/GHSA-q35w-7696-fc7r/GHSA-q35w-7696-fc7r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-q4cg-p4wr-gxc3/GHSA-q4cg-p4wr-gxc3.json b/advisories/unreviewed/2022/11/GHSA-q4cg-p4wr-gxc3/GHSA-q4cg-p4wr-gxc3.json index cc00fc36605..028b1096197 100644 --- a/advisories/unreviewed/2022/11/GHSA-q4cg-p4wr-gxc3/GHSA-q4cg-p4wr-gxc3.json +++ b/advisories/unreviewed/2022/11/GHSA-q4cg-p4wr-gxc3/GHSA-q4cg-p4wr-gxc3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-q58r-qh3r-4w5f/GHSA-q58r-qh3r-4w5f.json b/advisories/unreviewed/2022/11/GHSA-q58r-qh3r-4w5f/GHSA-q58r-qh3r-4w5f.json index 0da90517f1b..fb17b84393e 100644 --- a/advisories/unreviewed/2022/11/GHSA-q58r-qh3r-4w5f/GHSA-q58r-qh3r-4w5f.json +++ b/advisories/unreviewed/2022/11/GHSA-q58r-qh3r-4w5f/GHSA-q58r-qh3r-4w5f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-r3f7-hpwv-5qc2/GHSA-r3f7-hpwv-5qc2.json b/advisories/unreviewed/2022/11/GHSA-r3f7-hpwv-5qc2/GHSA-r3f7-hpwv-5qc2.json index ee89de6dc10..c19fcc64cc2 100644 --- a/advisories/unreviewed/2022/11/GHSA-r3f7-hpwv-5qc2/GHSA-r3f7-hpwv-5qc2.json +++ b/advisories/unreviewed/2022/11/GHSA-r3f7-hpwv-5qc2/GHSA-r3f7-hpwv-5qc2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-v727-m7g4-8xpx/GHSA-v727-m7g4-8xpx.json b/advisories/unreviewed/2022/11/GHSA-v727-m7g4-8xpx/GHSA-v727-m7g4-8xpx.json index 78a06f6e528..7350fd72f7c 100644 --- a/advisories/unreviewed/2022/11/GHSA-v727-m7g4-8xpx/GHSA-v727-m7g4-8xpx.json +++ b/advisories/unreviewed/2022/11/GHSA-v727-m7g4-8xpx/GHSA-v727-m7g4-8xpx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-vm5p-28rv-rr68/GHSA-vm5p-28rv-rr68.json b/advisories/unreviewed/2022/11/GHSA-vm5p-28rv-rr68/GHSA-vm5p-28rv-rr68.json index 4be916b22ac..3b57c00608c 100644 --- a/advisories/unreviewed/2022/11/GHSA-vm5p-28rv-rr68/GHSA-vm5p-28rv-rr68.json +++ b/advisories/unreviewed/2022/11/GHSA-vm5p-28rv-rr68/GHSA-vm5p-28rv-rr68.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-vw43-4r8p-cvx6/GHSA-vw43-4r8p-cvx6.json b/advisories/unreviewed/2022/11/GHSA-vw43-4r8p-cvx6/GHSA-vw43-4r8p-cvx6.json index 4e2e94f9a31..5e3f3ad5911 100644 --- a/advisories/unreviewed/2022/11/GHSA-vw43-4r8p-cvx6/GHSA-vw43-4r8p-cvx6.json +++ b/advisories/unreviewed/2022/11/GHSA-vw43-4r8p-cvx6/GHSA-vw43-4r8p-cvx6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-vxxj-cjwx-9587/GHSA-vxxj-cjwx-9587.json b/advisories/unreviewed/2022/11/GHSA-vxxj-cjwx-9587/GHSA-vxxj-cjwx-9587.json index 386c436b6da..b7fb88d6511 100644 --- a/advisories/unreviewed/2022/11/GHSA-vxxj-cjwx-9587/GHSA-vxxj-cjwx-9587.json +++ b/advisories/unreviewed/2022/11/GHSA-vxxj-cjwx-9587/GHSA-vxxj-cjwx-9587.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-w3w2-8hq7-8fmw/GHSA-w3w2-8hq7-8fmw.json b/advisories/unreviewed/2022/11/GHSA-w3w2-8hq7-8fmw/GHSA-w3w2-8hq7-8fmw.json index a30fda85114..850d284230a 100644 --- a/advisories/unreviewed/2022/11/GHSA-w3w2-8hq7-8fmw/GHSA-w3w2-8hq7-8fmw.json +++ b/advisories/unreviewed/2022/11/GHSA-w3w2-8hq7-8fmw/GHSA-w3w2-8hq7-8fmw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-whc6-3293-q48f/GHSA-whc6-3293-q48f.json b/advisories/unreviewed/2022/11/GHSA-whc6-3293-q48f/GHSA-whc6-3293-q48f.json index 709d9036d8c..c88f18d27d9 100644 --- a/advisories/unreviewed/2022/11/GHSA-whc6-3293-q48f/GHSA-whc6-3293-q48f.json +++ b/advisories/unreviewed/2022/11/GHSA-whc6-3293-q48f/GHSA-whc6-3293-q48f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-wjxx-hxfj-hfmh/GHSA-wjxx-hxfj-hfmh.json b/advisories/unreviewed/2022/11/GHSA-wjxx-hxfj-hfmh/GHSA-wjxx-hxfj-hfmh.json index 8d77569c4fb..7ce19b417c6 100644 --- a/advisories/unreviewed/2022/11/GHSA-wjxx-hxfj-hfmh/GHSA-wjxx-hxfj-hfmh.json +++ b/advisories/unreviewed/2022/11/GHSA-wjxx-hxfj-hfmh/GHSA-wjxx-hxfj-hfmh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-xm35-83v5-99x8/GHSA-xm35-83v5-99x8.json b/advisories/unreviewed/2022/11/GHSA-xm35-83v5-99x8/GHSA-xm35-83v5-99x8.json index c2439dadd4e..018def4b194 100644 --- a/advisories/unreviewed/2022/11/GHSA-xm35-83v5-99x8/GHSA-xm35-83v5-99x8.json +++ b/advisories/unreviewed/2022/11/GHSA-xm35-83v5-99x8/GHSA-xm35-83v5-99x8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/11/GHSA-xvcr-mm2p-vgrf/GHSA-xvcr-mm2p-vgrf.json b/advisories/unreviewed/2022/11/GHSA-xvcr-mm2p-vgrf/GHSA-xvcr-mm2p-vgrf.json index 7a3462f6598..f9071b40e28 100644 --- a/advisories/unreviewed/2022/11/GHSA-xvcr-mm2p-vgrf/GHSA-xvcr-mm2p-vgrf.json +++ b/advisories/unreviewed/2022/11/GHSA-xvcr-mm2p-vgrf/GHSA-xvcr-mm2p-vgrf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/12/GHSA-25m2-mpq4-29vh/GHSA-25m2-mpq4-29vh.json b/advisories/unreviewed/2022/12/GHSA-25m2-mpq4-29vh/GHSA-25m2-mpq4-29vh.json index 9f1b35cf2f3..36f166d556b 100644 --- a/advisories/unreviewed/2022/12/GHSA-25m2-mpq4-29vh/GHSA-25m2-mpq4-29vh.json +++ b/advisories/unreviewed/2022/12/GHSA-25m2-mpq4-29vh/GHSA-25m2-mpq4-29vh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/12/GHSA-2j9m-jh56-7553/GHSA-2j9m-jh56-7553.json b/advisories/unreviewed/2022/12/GHSA-2j9m-jh56-7553/GHSA-2j9m-jh56-7553.json index c9c2bf6c32c..223d2699584 100644 --- a/advisories/unreviewed/2022/12/GHSA-2j9m-jh56-7553/GHSA-2j9m-jh56-7553.json +++ b/advisories/unreviewed/2022/12/GHSA-2j9m-jh56-7553/GHSA-2j9m-jh56-7553.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/12/GHSA-grfr-78m7-q35q/GHSA-grfr-78m7-q35q.json b/advisories/unreviewed/2022/12/GHSA-grfr-78m7-q35q/GHSA-grfr-78m7-q35q.json index a12d3a00e54..51238c4b034 100644 --- a/advisories/unreviewed/2022/12/GHSA-grfr-78m7-q35q/GHSA-grfr-78m7-q35q.json +++ b/advisories/unreviewed/2022/12/GHSA-grfr-78m7-q35q/GHSA-grfr-78m7-q35q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/12/GHSA-pv52-98qj-pq55/GHSA-pv52-98qj-pq55.json b/advisories/unreviewed/2022/12/GHSA-pv52-98qj-pq55/GHSA-pv52-98qj-pq55.json index fe8270ac377..9285ad16932 100644 --- a/advisories/unreviewed/2022/12/GHSA-pv52-98qj-pq55/GHSA-pv52-98qj-pq55.json +++ b/advisories/unreviewed/2022/12/GHSA-pv52-98qj-pq55/GHSA-pv52-98qj-pq55.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/02/GHSA-2c3h-vr56-625m/GHSA-2c3h-vr56-625m.json b/advisories/unreviewed/2023/02/GHSA-2c3h-vr56-625m/GHSA-2c3h-vr56-625m.json index 81cdc9b080d..991c3c0a3cd 100644 --- a/advisories/unreviewed/2023/02/GHSA-2c3h-vr56-625m/GHSA-2c3h-vr56-625m.json +++ b/advisories/unreviewed/2023/02/GHSA-2c3h-vr56-625m/GHSA-2c3h-vr56-625m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/02/GHSA-9cf9-qjr8-c7jw/GHSA-9cf9-qjr8-c7jw.json b/advisories/unreviewed/2023/02/GHSA-9cf9-qjr8-c7jw/GHSA-9cf9-qjr8-c7jw.json index e754edf1314..63c83a28332 100644 --- a/advisories/unreviewed/2023/02/GHSA-9cf9-qjr8-c7jw/GHSA-9cf9-qjr8-c7jw.json +++ b/advisories/unreviewed/2023/02/GHSA-9cf9-qjr8-c7jw/GHSA-9cf9-qjr8-c7jw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -59,9 +57,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2023/02/GHSA-gq3p-4jhj-hrgf/GHSA-gq3p-4jhj-hrgf.json b/advisories/unreviewed/2023/02/GHSA-gq3p-4jhj-hrgf/GHSA-gq3p-4jhj-hrgf.json index 4cbd8e8c842..e0eb4b95d08 100644 --- a/advisories/unreviewed/2023/02/GHSA-gq3p-4jhj-hrgf/GHSA-gq3p-4jhj-hrgf.json +++ b/advisories/unreviewed/2023/02/GHSA-gq3p-4jhj-hrgf/GHSA-gq3p-4jhj-hrgf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2023/03/GHSA-4f9f-mpmj-4c52/GHSA-4f9f-mpmj-4c52.json b/advisories/unreviewed/2023/03/GHSA-4f9f-mpmj-4c52/GHSA-4f9f-mpmj-4c52.json index d8b8504617e..09559bb3f6a 100644 --- a/advisories/unreviewed/2023/03/GHSA-4f9f-mpmj-4c52/GHSA-4f9f-mpmj-4c52.json +++ b/advisories/unreviewed/2023/03/GHSA-4f9f-mpmj-4c52/GHSA-4f9f-mpmj-4c52.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/03/GHSA-9j2c-vm53-wcvm/GHSA-9j2c-vm53-wcvm.json b/advisories/unreviewed/2023/03/GHSA-9j2c-vm53-wcvm/GHSA-9j2c-vm53-wcvm.json index 5ce703e273e..e322d3f9f93 100644 --- a/advisories/unreviewed/2023/03/GHSA-9j2c-vm53-wcvm/GHSA-9j2c-vm53-wcvm.json +++ b/advisories/unreviewed/2023/03/GHSA-9j2c-vm53-wcvm/GHSA-9j2c-vm53-wcvm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/03/GHSA-cgj3-cvg6-pcvh/GHSA-cgj3-cvg6-pcvh.json b/advisories/unreviewed/2023/03/GHSA-cgj3-cvg6-pcvh/GHSA-cgj3-cvg6-pcvh.json index 27768cb0a4e..b41f52643e2 100644 --- a/advisories/unreviewed/2023/03/GHSA-cgj3-cvg6-pcvh/GHSA-cgj3-cvg6-pcvh.json +++ b/advisories/unreviewed/2023/03/GHSA-cgj3-cvg6-pcvh/GHSA-cgj3-cvg6-pcvh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/03/GHSA-q9fm-68jc-87x3/GHSA-q9fm-68jc-87x3.json b/advisories/unreviewed/2023/03/GHSA-q9fm-68jc-87x3/GHSA-q9fm-68jc-87x3.json index 04fca43ed0e..858271f44f5 100644 --- a/advisories/unreviewed/2023/03/GHSA-q9fm-68jc-87x3/GHSA-q9fm-68jc-87x3.json +++ b/advisories/unreviewed/2023/03/GHSA-q9fm-68jc-87x3/GHSA-q9fm-68jc-87x3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/03/GHSA-xvw3-6q4f-2gcv/GHSA-xvw3-6q4f-2gcv.json b/advisories/unreviewed/2023/03/GHSA-xvw3-6q4f-2gcv/GHSA-xvw3-6q4f-2gcv.json index 571a348a7f6..6187a93076e 100644 --- a/advisories/unreviewed/2023/03/GHSA-xvw3-6q4f-2gcv/GHSA-xvw3-6q4f-2gcv.json +++ b/advisories/unreviewed/2023/03/GHSA-xvw3-6q4f-2gcv/GHSA-xvw3-6q4f-2gcv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/06/GHSA-4f7r-xvf5-vj98/GHSA-4f7r-xvf5-vj98.json b/advisories/unreviewed/2023/06/GHSA-4f7r-xvf5-vj98/GHSA-4f7r-xvf5-vj98.json index c2c44797377..0aab6d84e09 100644 --- a/advisories/unreviewed/2023/06/GHSA-4f7r-xvf5-vj98/GHSA-4f7r-xvf5-vj98.json +++ b/advisories/unreviewed/2023/06/GHSA-4f7r-xvf5-vj98/GHSA-4f7r-xvf5-vj98.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/06/GHSA-fw23-x6wc-fghc/GHSA-fw23-x6wc-fghc.json b/advisories/unreviewed/2023/06/GHSA-fw23-x6wc-fghc/GHSA-fw23-x6wc-fghc.json index de8ad92f635..3caa5743fce 100644 --- a/advisories/unreviewed/2023/06/GHSA-fw23-x6wc-fghc/GHSA-fw23-x6wc-fghc.json +++ b/advisories/unreviewed/2023/06/GHSA-fw23-x6wc-fghc/GHSA-fw23-x6wc-fghc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/06/GHSA-vj8j-762w-6jmv/GHSA-vj8j-762w-6jmv.json b/advisories/unreviewed/2023/06/GHSA-vj8j-762w-6jmv/GHSA-vj8j-762w-6jmv.json index 3d2ae910179..93f046bc1a7 100644 --- a/advisories/unreviewed/2023/06/GHSA-vj8j-762w-6jmv/GHSA-vj8j-762w-6jmv.json +++ b/advisories/unreviewed/2023/06/GHSA-vj8j-762w-6jmv/GHSA-vj8j-762w-6jmv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/07/GHSA-472h-jrmm-7fjg/GHSA-472h-jrmm-7fjg.json b/advisories/unreviewed/2023/07/GHSA-472h-jrmm-7fjg/GHSA-472h-jrmm-7fjg.json index 93dd1d12952..9debec109d1 100644 --- a/advisories/unreviewed/2023/07/GHSA-472h-jrmm-7fjg/GHSA-472h-jrmm-7fjg.json +++ b/advisories/unreviewed/2023/07/GHSA-472h-jrmm-7fjg/GHSA-472h-jrmm-7fjg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/07/GHSA-5fx6-86fq-8xxf/GHSA-5fx6-86fq-8xxf.json b/advisories/unreviewed/2023/07/GHSA-5fx6-86fq-8xxf/GHSA-5fx6-86fq-8xxf.json index ab9434472cc..d7f7c31bb5f 100644 --- a/advisories/unreviewed/2023/07/GHSA-5fx6-86fq-8xxf/GHSA-5fx6-86fq-8xxf.json +++ b/advisories/unreviewed/2023/07/GHSA-5fx6-86fq-8xxf/GHSA-5fx6-86fq-8xxf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:L/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/07/GHSA-j2rf-gr77-35c7/GHSA-j2rf-gr77-35c7.json b/advisories/unreviewed/2023/07/GHSA-j2rf-gr77-35c7/GHSA-j2rf-gr77-35c7.json index 94e31d969b9..cdbc0c78d48 100644 --- a/advisories/unreviewed/2023/07/GHSA-j2rf-gr77-35c7/GHSA-j2rf-gr77-35c7.json +++ b/advisories/unreviewed/2023/07/GHSA-j2rf-gr77-35c7/GHSA-j2rf-gr77-35c7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:L/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/09/GHSA-3vqq-6vgg-h45h/GHSA-3vqq-6vgg-h45h.json b/advisories/unreviewed/2023/09/GHSA-3vqq-6vgg-h45h/GHSA-3vqq-6vgg-h45h.json index cef4dbd6af2..f9d81cab27a 100644 --- a/advisories/unreviewed/2023/09/GHSA-3vqq-6vgg-h45h/GHSA-3vqq-6vgg-h45h.json +++ b/advisories/unreviewed/2023/09/GHSA-3vqq-6vgg-h45h/GHSA-3vqq-6vgg-h45h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/09/GHSA-mf5g-9rr3-93fg/GHSA-mf5g-9rr3-93fg.json b/advisories/unreviewed/2023/09/GHSA-mf5g-9rr3-93fg/GHSA-mf5g-9rr3-93fg.json index 6b47fd8b31a..07117cf59a6 100644 --- a/advisories/unreviewed/2023/09/GHSA-mf5g-9rr3-93fg/GHSA-mf5g-9rr3-93fg.json +++ b/advisories/unreviewed/2023/09/GHSA-mf5g-9rr3-93fg/GHSA-mf5g-9rr3-93fg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/09/GHSA-pjc4-2x49-3j92/GHSA-pjc4-2x49-3j92.json b/advisories/unreviewed/2023/09/GHSA-pjc4-2x49-3j92/GHSA-pjc4-2x49-3j92.json index 8baf6ee6a27..d3b6fd9cfd0 100644 --- a/advisories/unreviewed/2023/09/GHSA-pjc4-2x49-3j92/GHSA-pjc4-2x49-3j92.json +++ b/advisories/unreviewed/2023/09/GHSA-pjc4-2x49-3j92/GHSA-pjc4-2x49-3j92.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/09/GHSA-r2q6-vc3h-88w5/GHSA-r2q6-vc3h-88w5.json b/advisories/unreviewed/2023/09/GHSA-r2q6-vc3h-88w5/GHSA-r2q6-vc3h-88w5.json index 2f3feffeae3..b6bf46cd590 100644 --- a/advisories/unreviewed/2023/09/GHSA-r2q6-vc3h-88w5/GHSA-r2q6-vc3h-88w5.json +++ b/advisories/unreviewed/2023/09/GHSA-r2q6-vc3h-88w5/GHSA-r2q6-vc3h-88w5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/10/GHSA-5p95-x9wh-fgc4/GHSA-5p95-x9wh-fgc4.json b/advisories/unreviewed/2023/10/GHSA-5p95-x9wh-fgc4/GHSA-5p95-x9wh-fgc4.json index 7942d451a30..ab7d0a5a280 100644 --- a/advisories/unreviewed/2023/10/GHSA-5p95-x9wh-fgc4/GHSA-5p95-x9wh-fgc4.json +++ b/advisories/unreviewed/2023/10/GHSA-5p95-x9wh-fgc4/GHSA-5p95-x9wh-fgc4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/10/GHSA-jcj9-xfvr-vjm3/GHSA-jcj9-xfvr-vjm3.json b/advisories/unreviewed/2023/10/GHSA-jcj9-xfvr-vjm3/GHSA-jcj9-xfvr-vjm3.json index d7790bb7c44..c20d79289d0 100644 --- a/advisories/unreviewed/2023/10/GHSA-jcj9-xfvr-vjm3/GHSA-jcj9-xfvr-vjm3.json +++ b/advisories/unreviewed/2023/10/GHSA-jcj9-xfvr-vjm3/GHSA-jcj9-xfvr-vjm3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/10/GHSA-jg5j-x8qp-gj2r/GHSA-jg5j-x8qp-gj2r.json b/advisories/unreviewed/2023/10/GHSA-jg5j-x8qp-gj2r/GHSA-jg5j-x8qp-gj2r.json index 53b43714cee..3924e5c6bc6 100644 --- a/advisories/unreviewed/2023/10/GHSA-jg5j-x8qp-gj2r/GHSA-jg5j-x8qp-gj2r.json +++ b/advisories/unreviewed/2023/10/GHSA-jg5j-x8qp-gj2r/GHSA-jg5j-x8qp-gj2r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/10/GHSA-qg22-m622-6xjg/GHSA-qg22-m622-6xjg.json b/advisories/unreviewed/2023/10/GHSA-qg22-m622-6xjg/GHSA-qg22-m622-6xjg.json index 97c5eb2f13c..7811732b357 100644 --- a/advisories/unreviewed/2023/10/GHSA-qg22-m622-6xjg/GHSA-qg22-m622-6xjg.json +++ b/advisories/unreviewed/2023/10/GHSA-qg22-m622-6xjg/GHSA-qg22-m622-6xjg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-2c28-wpp9-3fwq/GHSA-2c28-wpp9-3fwq.json b/advisories/unreviewed/2023/11/GHSA-2c28-wpp9-3fwq/GHSA-2c28-wpp9-3fwq.json index 58361fc884d..3b8ba862a06 100644 --- a/advisories/unreviewed/2023/11/GHSA-2c28-wpp9-3fwq/GHSA-2c28-wpp9-3fwq.json +++ b/advisories/unreviewed/2023/11/GHSA-2c28-wpp9-3fwq/GHSA-2c28-wpp9-3fwq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-2cmx-v434-xjgc/GHSA-2cmx-v434-xjgc.json b/advisories/unreviewed/2023/11/GHSA-2cmx-v434-xjgc/GHSA-2cmx-v434-xjgc.json index 75bd60f661f..fe8412d1440 100644 --- a/advisories/unreviewed/2023/11/GHSA-2cmx-v434-xjgc/GHSA-2cmx-v434-xjgc.json +++ b/advisories/unreviewed/2023/11/GHSA-2cmx-v434-xjgc/GHSA-2cmx-v434-xjgc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-426h-v87f-gxvw/GHSA-426h-v87f-gxvw.json b/advisories/unreviewed/2023/11/GHSA-426h-v87f-gxvw/GHSA-426h-v87f-gxvw.json index b8a07134873..272a8b82236 100644 --- a/advisories/unreviewed/2023/11/GHSA-426h-v87f-gxvw/GHSA-426h-v87f-gxvw.json +++ b/advisories/unreviewed/2023/11/GHSA-426h-v87f-gxvw/GHSA-426h-v87f-gxvw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-44j5-cggq-4pgj/GHSA-44j5-cggq-4pgj.json b/advisories/unreviewed/2023/11/GHSA-44j5-cggq-4pgj/GHSA-44j5-cggq-4pgj.json index 410123c4b01..800ec533d5a 100644 --- a/advisories/unreviewed/2023/11/GHSA-44j5-cggq-4pgj/GHSA-44j5-cggq-4pgj.json +++ b/advisories/unreviewed/2023/11/GHSA-44j5-cggq-4pgj/GHSA-44j5-cggq-4pgj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-4qfp-2f8x-99wm/GHSA-4qfp-2f8x-99wm.json b/advisories/unreviewed/2023/11/GHSA-4qfp-2f8x-99wm/GHSA-4qfp-2f8x-99wm.json index b93afc1fd59..e823e613b49 100644 --- a/advisories/unreviewed/2023/11/GHSA-4qfp-2f8x-99wm/GHSA-4qfp-2f8x-99wm.json +++ b/advisories/unreviewed/2023/11/GHSA-4qfp-2f8x-99wm/GHSA-4qfp-2f8x-99wm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-4qp7-687g-h58j/GHSA-4qp7-687g-h58j.json b/advisories/unreviewed/2023/11/GHSA-4qp7-687g-h58j/GHSA-4qp7-687g-h58j.json index 372de8d7dd6..cf073015162 100644 --- a/advisories/unreviewed/2023/11/GHSA-4qp7-687g-h58j/GHSA-4qp7-687g-h58j.json +++ b/advisories/unreviewed/2023/11/GHSA-4qp7-687g-h58j/GHSA-4qp7-687g-h58j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-52rh-vv3q-8jrh/GHSA-52rh-vv3q-8jrh.json b/advisories/unreviewed/2023/11/GHSA-52rh-vv3q-8jrh/GHSA-52rh-vv3q-8jrh.json index 2222e5a1f42..286db96f8f4 100644 --- a/advisories/unreviewed/2023/11/GHSA-52rh-vv3q-8jrh/GHSA-52rh-vv3q-8jrh.json +++ b/advisories/unreviewed/2023/11/GHSA-52rh-vv3q-8jrh/GHSA-52rh-vv3q-8jrh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-58c4-wphj-qffh/GHSA-58c4-wphj-qffh.json b/advisories/unreviewed/2023/11/GHSA-58c4-wphj-qffh/GHSA-58c4-wphj-qffh.json index edf1e7f762a..ed41bee7475 100644 --- a/advisories/unreviewed/2023/11/GHSA-58c4-wphj-qffh/GHSA-58c4-wphj-qffh.json +++ b/advisories/unreviewed/2023/11/GHSA-58c4-wphj-qffh/GHSA-58c4-wphj-qffh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-5f6j-m47j-4279/GHSA-5f6j-m47j-4279.json b/advisories/unreviewed/2023/11/GHSA-5f6j-m47j-4279/GHSA-5f6j-m47j-4279.json index 1e985f77d95..ea5a3cac788 100644 --- a/advisories/unreviewed/2023/11/GHSA-5f6j-m47j-4279/GHSA-5f6j-m47j-4279.json +++ b/advisories/unreviewed/2023/11/GHSA-5f6j-m47j-4279/GHSA-5f6j-m47j-4279.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:L/I:L/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-5q3h-x43w-q8hj/GHSA-5q3h-x43w-q8hj.json b/advisories/unreviewed/2023/11/GHSA-5q3h-x43w-q8hj/GHSA-5q3h-x43w-q8hj.json index 368bd2014a0..40e9d64b262 100644 --- a/advisories/unreviewed/2023/11/GHSA-5q3h-x43w-q8hj/GHSA-5q3h-x43w-q8hj.json +++ b/advisories/unreviewed/2023/11/GHSA-5q3h-x43w-q8hj/GHSA-5q3h-x43w-q8hj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-63x4-9h28-566c/GHSA-63x4-9h28-566c.json b/advisories/unreviewed/2023/11/GHSA-63x4-9h28-566c/GHSA-63x4-9h28-566c.json index 251c8af04c2..c779e425061 100644 --- a/advisories/unreviewed/2023/11/GHSA-63x4-9h28-566c/GHSA-63x4-9h28-566c.json +++ b/advisories/unreviewed/2023/11/GHSA-63x4-9h28-566c/GHSA-63x4-9h28-566c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-663r-36fp-26m6/GHSA-663r-36fp-26m6.json b/advisories/unreviewed/2023/11/GHSA-663r-36fp-26m6/GHSA-663r-36fp-26m6.json index 5e29593b436..09c7b90ad52 100644 --- a/advisories/unreviewed/2023/11/GHSA-663r-36fp-26m6/GHSA-663r-36fp-26m6.json +++ b/advisories/unreviewed/2023/11/GHSA-663r-36fp-26m6/GHSA-663r-36fp-26m6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-6pc2-6872-wf2g/GHSA-6pc2-6872-wf2g.json b/advisories/unreviewed/2023/11/GHSA-6pc2-6872-wf2g/GHSA-6pc2-6872-wf2g.json index e89ec4040d8..525fd4061bb 100644 --- a/advisories/unreviewed/2023/11/GHSA-6pc2-6872-wf2g/GHSA-6pc2-6872-wf2g.json +++ b/advisories/unreviewed/2023/11/GHSA-6pc2-6872-wf2g/GHSA-6pc2-6872-wf2g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-7m7m-p296-cg75/GHSA-7m7m-p296-cg75.json b/advisories/unreviewed/2023/11/GHSA-7m7m-p296-cg75/GHSA-7m7m-p296-cg75.json index 2d6fd5bd938..57dec6231c9 100644 --- a/advisories/unreviewed/2023/11/GHSA-7m7m-p296-cg75/GHSA-7m7m-p296-cg75.json +++ b/advisories/unreviewed/2023/11/GHSA-7m7m-p296-cg75/GHSA-7m7m-p296-cg75.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-7mgm-wq43-mvp7/GHSA-7mgm-wq43-mvp7.json b/advisories/unreviewed/2023/11/GHSA-7mgm-wq43-mvp7/GHSA-7mgm-wq43-mvp7.json index e6be17c3b6a..11e0495dcee 100644 --- a/advisories/unreviewed/2023/11/GHSA-7mgm-wq43-mvp7/GHSA-7mgm-wq43-mvp7.json +++ b/advisories/unreviewed/2023/11/GHSA-7mgm-wq43-mvp7/GHSA-7mgm-wq43-mvp7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-7wqv-9w75-qfxv/GHSA-7wqv-9w75-qfxv.json b/advisories/unreviewed/2023/11/GHSA-7wqv-9w75-qfxv/GHSA-7wqv-9w75-qfxv.json index 4c5cc5857eb..95c8e5b834e 100644 --- a/advisories/unreviewed/2023/11/GHSA-7wqv-9w75-qfxv/GHSA-7wqv-9w75-qfxv.json +++ b/advisories/unreviewed/2023/11/GHSA-7wqv-9w75-qfxv/GHSA-7wqv-9w75-qfxv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-8376-g8hq-hc3j/GHSA-8376-g8hq-hc3j.json b/advisories/unreviewed/2023/11/GHSA-8376-g8hq-hc3j/GHSA-8376-g8hq-hc3j.json index 1f030dcbb9e..77b211b44d7 100644 --- a/advisories/unreviewed/2023/11/GHSA-8376-g8hq-hc3j/GHSA-8376-g8hq-hc3j.json +++ b/advisories/unreviewed/2023/11/GHSA-8376-g8hq-hc3j/GHSA-8376-g8hq-hc3j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-83w6-ppfq-rfhf/GHSA-83w6-ppfq-rfhf.json b/advisories/unreviewed/2023/11/GHSA-83w6-ppfq-rfhf/GHSA-83w6-ppfq-rfhf.json index 309046e0509..9f9cca32e3f 100644 --- a/advisories/unreviewed/2023/11/GHSA-83w6-ppfq-rfhf/GHSA-83w6-ppfq-rfhf.json +++ b/advisories/unreviewed/2023/11/GHSA-83w6-ppfq-rfhf/GHSA-83w6-ppfq-rfhf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-8m7g-w3gq-3g84/GHSA-8m7g-w3gq-3g84.json b/advisories/unreviewed/2023/11/GHSA-8m7g-w3gq-3g84/GHSA-8m7g-w3gq-3g84.json index f11c8e35512..4743e916641 100644 --- a/advisories/unreviewed/2023/11/GHSA-8m7g-w3gq-3g84/GHSA-8m7g-w3gq-3g84.json +++ b/advisories/unreviewed/2023/11/GHSA-8m7g-w3gq-3g84/GHSA-8m7g-w3gq-3g84.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-92w3-2x69-pqhc/GHSA-92w3-2x69-pqhc.json b/advisories/unreviewed/2023/11/GHSA-92w3-2x69-pqhc/GHSA-92w3-2x69-pqhc.json index ac021268e91..69284704970 100644 --- a/advisories/unreviewed/2023/11/GHSA-92w3-2x69-pqhc/GHSA-92w3-2x69-pqhc.json +++ b/advisories/unreviewed/2023/11/GHSA-92w3-2x69-pqhc/GHSA-92w3-2x69-pqhc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-c82g-hm52-r6fr/GHSA-c82g-hm52-r6fr.json b/advisories/unreviewed/2023/11/GHSA-c82g-hm52-r6fr/GHSA-c82g-hm52-r6fr.json index 0fbc837a547..effb7685abd 100644 --- a/advisories/unreviewed/2023/11/GHSA-c82g-hm52-r6fr/GHSA-c82g-hm52-r6fr.json +++ b/advisories/unreviewed/2023/11/GHSA-c82g-hm52-r6fr/GHSA-c82g-hm52-r6fr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-cw65-q26q-33p4/GHSA-cw65-q26q-33p4.json b/advisories/unreviewed/2023/11/GHSA-cw65-q26q-33p4/GHSA-cw65-q26q-33p4.json index 8456febe7b6..612b0766de9 100644 --- a/advisories/unreviewed/2023/11/GHSA-cw65-q26q-33p4/GHSA-cw65-q26q-33p4.json +++ b/advisories/unreviewed/2023/11/GHSA-cw65-q26q-33p4/GHSA-cw65-q26q-33p4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:A/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-fc42-2hhg-7r35/GHSA-fc42-2hhg-7r35.json b/advisories/unreviewed/2023/11/GHSA-fc42-2hhg-7r35/GHSA-fc42-2hhg-7r35.json index d01a3291dfc..ec363366a5d 100644 --- a/advisories/unreviewed/2023/11/GHSA-fc42-2hhg-7r35/GHSA-fc42-2hhg-7r35.json +++ b/advisories/unreviewed/2023/11/GHSA-fc42-2hhg-7r35/GHSA-fc42-2hhg-7r35.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-fgpw-h2j4-3v24/GHSA-fgpw-h2j4-3v24.json b/advisories/unreviewed/2023/11/GHSA-fgpw-h2j4-3v24/GHSA-fgpw-h2j4-3v24.json index 5c6fee9be61..98ed9add05b 100644 --- a/advisories/unreviewed/2023/11/GHSA-fgpw-h2j4-3v24/GHSA-fgpw-h2j4-3v24.json +++ b/advisories/unreviewed/2023/11/GHSA-fgpw-h2j4-3v24/GHSA-fgpw-h2j4-3v24.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-fxq7-r6v5-xjh3/GHSA-fxq7-r6v5-xjh3.json b/advisories/unreviewed/2023/11/GHSA-fxq7-r6v5-xjh3/GHSA-fxq7-r6v5-xjh3.json index 5083ba7625b..85b74a53bed 100644 --- a/advisories/unreviewed/2023/11/GHSA-fxq7-r6v5-xjh3/GHSA-fxq7-r6v5-xjh3.json +++ b/advisories/unreviewed/2023/11/GHSA-fxq7-r6v5-xjh3/GHSA-fxq7-r6v5-xjh3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-g896-hqwq-6qp3/GHSA-g896-hqwq-6qp3.json b/advisories/unreviewed/2023/11/GHSA-g896-hqwq-6qp3/GHSA-g896-hqwq-6qp3.json index a993f2228d0..a4919d7f37f 100644 --- a/advisories/unreviewed/2023/11/GHSA-g896-hqwq-6qp3/GHSA-g896-hqwq-6qp3.json +++ b/advisories/unreviewed/2023/11/GHSA-g896-hqwq-6qp3/GHSA-g896-hqwq-6qp3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-g94p-45r2-v659/GHSA-g94p-45r2-v659.json b/advisories/unreviewed/2023/11/GHSA-g94p-45r2-v659/GHSA-g94p-45r2-v659.json index cce6526861d..95567aeb87e 100644 --- a/advisories/unreviewed/2023/11/GHSA-g94p-45r2-v659/GHSA-g94p-45r2-v659.json +++ b/advisories/unreviewed/2023/11/GHSA-g94p-45r2-v659/GHSA-g94p-45r2-v659.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-gpjf-v934-73g5/GHSA-gpjf-v934-73g5.json b/advisories/unreviewed/2023/11/GHSA-gpjf-v934-73g5/GHSA-gpjf-v934-73g5.json index 5d016832b9d..fdf938526ff 100644 --- a/advisories/unreviewed/2023/11/GHSA-gpjf-v934-73g5/GHSA-gpjf-v934-73g5.json +++ b/advisories/unreviewed/2023/11/GHSA-gpjf-v934-73g5/GHSA-gpjf-v934-73g5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-gwf3-cr67-mr84/GHSA-gwf3-cr67-mr84.json b/advisories/unreviewed/2023/11/GHSA-gwf3-cr67-mr84/GHSA-gwf3-cr67-mr84.json index 4ebbfdf79d2..77e534ee7d9 100644 --- a/advisories/unreviewed/2023/11/GHSA-gwf3-cr67-mr84/GHSA-gwf3-cr67-mr84.json +++ b/advisories/unreviewed/2023/11/GHSA-gwf3-cr67-mr84/GHSA-gwf3-cr67-mr84.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2023/11/GHSA-h4v2-6qjw-j9rc/GHSA-h4v2-6qjw-j9rc.json b/advisories/unreviewed/2023/11/GHSA-h4v2-6qjw-j9rc/GHSA-h4v2-6qjw-j9rc.json index 843a7113deb..86594f01fd7 100644 --- a/advisories/unreviewed/2023/11/GHSA-h4v2-6qjw-j9rc/GHSA-h4v2-6qjw-j9rc.json +++ b/advisories/unreviewed/2023/11/GHSA-h4v2-6qjw-j9rc/GHSA-h4v2-6qjw-j9rc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-hv84-49c9-rmm6/GHSA-hv84-49c9-rmm6.json b/advisories/unreviewed/2023/11/GHSA-hv84-49c9-rmm6/GHSA-hv84-49c9-rmm6.json index 185f6675dd0..e3dab18c497 100644 --- a/advisories/unreviewed/2023/11/GHSA-hv84-49c9-rmm6/GHSA-hv84-49c9-rmm6.json +++ b/advisories/unreviewed/2023/11/GHSA-hv84-49c9-rmm6/GHSA-hv84-49c9-rmm6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-j6h3-42q7-8pjm/GHSA-j6h3-42q7-8pjm.json b/advisories/unreviewed/2023/11/GHSA-j6h3-42q7-8pjm/GHSA-j6h3-42q7-8pjm.json index bb4a9655d8f..f4ab3be2734 100644 --- a/advisories/unreviewed/2023/11/GHSA-j6h3-42q7-8pjm/GHSA-j6h3-42q7-8pjm.json +++ b/advisories/unreviewed/2023/11/GHSA-j6h3-42q7-8pjm/GHSA-j6h3-42q7-8pjm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2023/11/GHSA-j7fp-x2qh-wc3q/GHSA-j7fp-x2qh-wc3q.json b/advisories/unreviewed/2023/11/GHSA-j7fp-x2qh-wc3q/GHSA-j7fp-x2qh-wc3q.json index 9dd1cdfb12a..387a073df64 100644 --- a/advisories/unreviewed/2023/11/GHSA-j7fp-x2qh-wc3q/GHSA-j7fp-x2qh-wc3q.json +++ b/advisories/unreviewed/2023/11/GHSA-j7fp-x2qh-wc3q/GHSA-j7fp-x2qh-wc3q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-j8pv-hfpr-q8pc/GHSA-j8pv-hfpr-q8pc.json b/advisories/unreviewed/2023/11/GHSA-j8pv-hfpr-q8pc/GHSA-j8pv-hfpr-q8pc.json index 7bacdc58239..d6ccca83040 100644 --- a/advisories/unreviewed/2023/11/GHSA-j8pv-hfpr-q8pc/GHSA-j8pv-hfpr-q8pc.json +++ b/advisories/unreviewed/2023/11/GHSA-j8pv-hfpr-q8pc/GHSA-j8pv-hfpr-q8pc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-jf3w-9p2p-g3xg/GHSA-jf3w-9p2p-g3xg.json b/advisories/unreviewed/2023/11/GHSA-jf3w-9p2p-g3xg/GHSA-jf3w-9p2p-g3xg.json index 6aff391e6a4..93901191668 100644 --- a/advisories/unreviewed/2023/11/GHSA-jf3w-9p2p-g3xg/GHSA-jf3w-9p2p-g3xg.json +++ b/advisories/unreviewed/2023/11/GHSA-jf3w-9p2p-g3xg/GHSA-jf3w-9p2p-g3xg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-jg7r-pc4g-p6vp/GHSA-jg7r-pc4g-p6vp.json b/advisories/unreviewed/2023/11/GHSA-jg7r-pc4g-p6vp/GHSA-jg7r-pc4g-p6vp.json index 7175ef0c8b2..b6d4b2237ee 100644 --- a/advisories/unreviewed/2023/11/GHSA-jg7r-pc4g-p6vp/GHSA-jg7r-pc4g-p6vp.json +++ b/advisories/unreviewed/2023/11/GHSA-jg7r-pc4g-p6vp/GHSA-jg7r-pc4g-p6vp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-m8v7-q2v8-xpcv/GHSA-m8v7-q2v8-xpcv.json b/advisories/unreviewed/2023/11/GHSA-m8v7-q2v8-xpcv/GHSA-m8v7-q2v8-xpcv.json index 1e36586f66a..5f6102c5d05 100644 --- a/advisories/unreviewed/2023/11/GHSA-m8v7-q2v8-xpcv/GHSA-m8v7-q2v8-xpcv.json +++ b/advisories/unreviewed/2023/11/GHSA-m8v7-q2v8-xpcv/GHSA-m8v7-q2v8-xpcv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:A/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-m8wv-7jj8-p8pv/GHSA-m8wv-7jj8-p8pv.json b/advisories/unreviewed/2023/11/GHSA-m8wv-7jj8-p8pv/GHSA-m8wv-7jj8-p8pv.json index 7e0122f74ba..69c1c86b8c1 100644 --- a/advisories/unreviewed/2023/11/GHSA-m8wv-7jj8-p8pv/GHSA-m8wv-7jj8-p8pv.json +++ b/advisories/unreviewed/2023/11/GHSA-m8wv-7jj8-p8pv/GHSA-m8wv-7jj8-p8pv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-mhrw-cvv9-pwvf/GHSA-mhrw-cvv9-pwvf.json b/advisories/unreviewed/2023/11/GHSA-mhrw-cvv9-pwvf/GHSA-mhrw-cvv9-pwvf.json index e4aa5810547..da420e146bd 100644 --- a/advisories/unreviewed/2023/11/GHSA-mhrw-cvv9-pwvf/GHSA-mhrw-cvv9-pwvf.json +++ b/advisories/unreviewed/2023/11/GHSA-mhrw-cvv9-pwvf/GHSA-mhrw-cvv9-pwvf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-mpx8-qgg5-7wpm/GHSA-mpx8-qgg5-7wpm.json b/advisories/unreviewed/2023/11/GHSA-mpx8-qgg5-7wpm/GHSA-mpx8-qgg5-7wpm.json index d0c2a5b9f5a..08460f798c5 100644 --- a/advisories/unreviewed/2023/11/GHSA-mpx8-qgg5-7wpm/GHSA-mpx8-qgg5-7wpm.json +++ b/advisories/unreviewed/2023/11/GHSA-mpx8-qgg5-7wpm/GHSA-mpx8-qgg5-7wpm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-pr6q-p3qr-3x6p/GHSA-pr6q-p3qr-3x6p.json b/advisories/unreviewed/2023/11/GHSA-pr6q-p3qr-3x6p/GHSA-pr6q-p3qr-3x6p.json index 368319e74b4..ecb917821e3 100644 --- a/advisories/unreviewed/2023/11/GHSA-pr6q-p3qr-3x6p/GHSA-pr6q-p3qr-3x6p.json +++ b/advisories/unreviewed/2023/11/GHSA-pr6q-p3qr-3x6p/GHSA-pr6q-p3qr-3x6p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-q6v6-32hh-pq9p/GHSA-q6v6-32hh-pq9p.json b/advisories/unreviewed/2023/11/GHSA-q6v6-32hh-pq9p/GHSA-q6v6-32hh-pq9p.json index 2d4af5bd93f..aa06174031a 100644 --- a/advisories/unreviewed/2023/11/GHSA-q6v6-32hh-pq9p/GHSA-q6v6-32hh-pq9p.json +++ b/advisories/unreviewed/2023/11/GHSA-q6v6-32hh-pq9p/GHSA-q6v6-32hh-pq9p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-q9rq-5hwp-7wq9/GHSA-q9rq-5hwp-7wq9.json b/advisories/unreviewed/2023/11/GHSA-q9rq-5hwp-7wq9/GHSA-q9rq-5hwp-7wq9.json index 418ab0758ee..bb6b9a4acf6 100644 --- a/advisories/unreviewed/2023/11/GHSA-q9rq-5hwp-7wq9/GHSA-q9rq-5hwp-7wq9.json +++ b/advisories/unreviewed/2023/11/GHSA-q9rq-5hwp-7wq9/GHSA-q9rq-5hwp-7wq9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-qw78-hfxp-rc5g/GHSA-qw78-hfxp-rc5g.json b/advisories/unreviewed/2023/11/GHSA-qw78-hfxp-rc5g/GHSA-qw78-hfxp-rc5g.json index 5daf83189bc..935102dce6f 100644 --- a/advisories/unreviewed/2023/11/GHSA-qw78-hfxp-rc5g/GHSA-qw78-hfxp-rc5g.json +++ b/advisories/unreviewed/2023/11/GHSA-qw78-hfxp-rc5g/GHSA-qw78-hfxp-rc5g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-rmx7-grxr-fhm3/GHSA-rmx7-grxr-fhm3.json b/advisories/unreviewed/2023/11/GHSA-rmx7-grxr-fhm3/GHSA-rmx7-grxr-fhm3.json index 1a1ada5d561..076f1e96d9b 100644 --- a/advisories/unreviewed/2023/11/GHSA-rmx7-grxr-fhm3/GHSA-rmx7-grxr-fhm3.json +++ b/advisories/unreviewed/2023/11/GHSA-rmx7-grxr-fhm3/GHSA-rmx7-grxr-fhm3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-rpx3-jhf4-259q/GHSA-rpx3-jhf4-259q.json b/advisories/unreviewed/2023/11/GHSA-rpx3-jhf4-259q/GHSA-rpx3-jhf4-259q.json index 3c8e7e588f1..f2c3ba6bfc3 100644 --- a/advisories/unreviewed/2023/11/GHSA-rpx3-jhf4-259q/GHSA-rpx3-jhf4-259q.json +++ b/advisories/unreviewed/2023/11/GHSA-rpx3-jhf4-259q/GHSA-rpx3-jhf4-259q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-rvhc-5c8m-3qg8/GHSA-rvhc-5c8m-3qg8.json b/advisories/unreviewed/2023/11/GHSA-rvhc-5c8m-3qg8/GHSA-rvhc-5c8m-3qg8.json index f3e3efab637..ee42309f6a8 100644 --- a/advisories/unreviewed/2023/11/GHSA-rvhc-5c8m-3qg8/GHSA-rvhc-5c8m-3qg8.json +++ b/advisories/unreviewed/2023/11/GHSA-rvhc-5c8m-3qg8/GHSA-rvhc-5c8m-3qg8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-rx8q-grjm-x4p7/GHSA-rx8q-grjm-x4p7.json b/advisories/unreviewed/2023/11/GHSA-rx8q-grjm-x4p7/GHSA-rx8q-grjm-x4p7.json index b45107897be..db393df7c40 100644 --- a/advisories/unreviewed/2023/11/GHSA-rx8q-grjm-x4p7/GHSA-rx8q-grjm-x4p7.json +++ b/advisories/unreviewed/2023/11/GHSA-rx8q-grjm-x4p7/GHSA-rx8q-grjm-x4p7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-rx9f-2j6q-9pff/GHSA-rx9f-2j6q-9pff.json b/advisories/unreviewed/2023/11/GHSA-rx9f-2j6q-9pff/GHSA-rx9f-2j6q-9pff.json index 2f7b5bb5bf5..8497801fb4d 100644 --- a/advisories/unreviewed/2023/11/GHSA-rx9f-2j6q-9pff/GHSA-rx9f-2j6q-9pff.json +++ b/advisories/unreviewed/2023/11/GHSA-rx9f-2j6q-9pff/GHSA-rx9f-2j6q-9pff.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-vp68-65xj-g24v/GHSA-vp68-65xj-g24v.json b/advisories/unreviewed/2023/11/GHSA-vp68-65xj-g24v/GHSA-vp68-65xj-g24v.json index 224eac3d289..46836b9f67e 100644 --- a/advisories/unreviewed/2023/11/GHSA-vp68-65xj-g24v/GHSA-vp68-65xj-g24v.json +++ b/advisories/unreviewed/2023/11/GHSA-vp68-65xj-g24v/GHSA-vp68-65xj-g24v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-wr7v-h9p2-5fr6/GHSA-wr7v-h9p2-5fr6.json b/advisories/unreviewed/2023/11/GHSA-wr7v-h9p2-5fr6/GHSA-wr7v-h9p2-5fr6.json index 6e846c15e1e..1da648801aa 100644 --- a/advisories/unreviewed/2023/11/GHSA-wr7v-h9p2-5fr6/GHSA-wr7v-h9p2-5fr6.json +++ b/advisories/unreviewed/2023/11/GHSA-wr7v-h9p2-5fr6/GHSA-wr7v-h9p2-5fr6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-x748-g8vm-gmhw/GHSA-x748-g8vm-gmhw.json b/advisories/unreviewed/2023/11/GHSA-x748-g8vm-gmhw/GHSA-x748-g8vm-gmhw.json index e1adc50addc..ab02fdd955b 100644 --- a/advisories/unreviewed/2023/11/GHSA-x748-g8vm-gmhw/GHSA-x748-g8vm-gmhw.json +++ b/advisories/unreviewed/2023/11/GHSA-x748-g8vm-gmhw/GHSA-x748-g8vm-gmhw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-xx54-mvr7-rhfj/GHSA-xx54-mvr7-rhfj.json b/advisories/unreviewed/2023/11/GHSA-xx54-mvr7-rhfj/GHSA-xx54-mvr7-rhfj.json index e4ab89461f8..6f3f9d27eac 100644 --- a/advisories/unreviewed/2023/11/GHSA-xx54-mvr7-rhfj/GHSA-xx54-mvr7-rhfj.json +++ b/advisories/unreviewed/2023/11/GHSA-xx54-mvr7-rhfj/GHSA-xx54-mvr7-rhfj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/12/GHSA-2xrv-7wfr-fxj6/GHSA-2xrv-7wfr-fxj6.json b/advisories/unreviewed/2023/12/GHSA-2xrv-7wfr-fxj6/GHSA-2xrv-7wfr-fxj6.json index d1d9c320bb4..d2177abaf49 100644 --- a/advisories/unreviewed/2023/12/GHSA-2xrv-7wfr-fxj6/GHSA-2xrv-7wfr-fxj6.json +++ b/advisories/unreviewed/2023/12/GHSA-2xrv-7wfr-fxj6/GHSA-2xrv-7wfr-fxj6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:N/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/02/GHSA-jmph-rxrw-5rrh/GHSA-jmph-rxrw-5rrh.json b/advisories/unreviewed/2024/02/GHSA-jmph-rxrw-5rrh/GHSA-jmph-rxrw-5rrh.json index 85c55f37bab..9f2e4a2e0c4 100644 --- a/advisories/unreviewed/2024/02/GHSA-jmph-rxrw-5rrh/GHSA-jmph-rxrw-5rrh.json +++ b/advisories/unreviewed/2024/02/GHSA-jmph-rxrw-5rrh/GHSA-jmph-rxrw-5rrh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/07/GHSA-264r-p5m9-6v8c/GHSA-264r-p5m9-6v8c.json b/advisories/unreviewed/2024/07/GHSA-264r-p5m9-6v8c/GHSA-264r-p5m9-6v8c.json index 8a0cb963865..cdc467ecb15 100644 --- a/advisories/unreviewed/2024/07/GHSA-264r-p5m9-6v8c/GHSA-264r-p5m9-6v8c.json +++ b/advisories/unreviewed/2024/07/GHSA-264r-p5m9-6v8c/GHSA-264r-p5m9-6v8c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -63,9 +61,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2024/07/GHSA-mhpr-v3hf-gcxg/GHSA-mhpr-v3hf-gcxg.json b/advisories/unreviewed/2024/07/GHSA-mhpr-v3hf-gcxg/GHSA-mhpr-v3hf-gcxg.json index a99b5a6ce8b..25012242183 100644 --- a/advisories/unreviewed/2024/07/GHSA-mhpr-v3hf-gcxg/GHSA-mhpr-v3hf-gcxg.json +++ b/advisories/unreviewed/2024/07/GHSA-mhpr-v3hf-gcxg/GHSA-mhpr-v3hf-gcxg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/07/GHSA-pr22-x636-xp32/GHSA-pr22-x636-xp32.json b/advisories/unreviewed/2024/07/GHSA-pr22-x636-xp32/GHSA-pr22-x636-xp32.json index 4602b08e206..3626ee57cd4 100644 --- a/advisories/unreviewed/2024/07/GHSA-pr22-x636-xp32/GHSA-pr22-x636-xp32.json +++ b/advisories/unreviewed/2024/07/GHSA-pr22-x636-xp32/GHSA-pr22-x636-xp32.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/07/GHSA-v9r3-3hjw-wxm2/GHSA-v9r3-3hjw-wxm2.json b/advisories/unreviewed/2024/07/GHSA-v9r3-3hjw-wxm2/GHSA-v9r3-3hjw-wxm2.json index e468dbb4335..9b9fe4286cc 100644 --- a/advisories/unreviewed/2024/07/GHSA-v9r3-3hjw-wxm2/GHSA-v9r3-3hjw-wxm2.json +++ b/advisories/unreviewed/2024/07/GHSA-v9r3-3hjw-wxm2/GHSA-v9r3-3hjw-wxm2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-2478-6pxx-q8gv/GHSA-2478-6pxx-q8gv.json b/advisories/unreviewed/2024/08/GHSA-2478-6pxx-q8gv/GHSA-2478-6pxx-q8gv.json index 2964c085f4b..5b32f7fe397 100644 --- a/advisories/unreviewed/2024/08/GHSA-2478-6pxx-q8gv/GHSA-2478-6pxx-q8gv.json +++ b/advisories/unreviewed/2024/08/GHSA-2478-6pxx-q8gv/GHSA-2478-6pxx-q8gv.json @@ -17,9 +17,7 @@ "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-3466-hwg6-rp7h/GHSA-3466-hwg6-rp7h.json b/advisories/unreviewed/2024/08/GHSA-3466-hwg6-rp7h/GHSA-3466-hwg6-rp7h.json index 37d6a7f65b4..bc4b602c65f 100644 --- a/advisories/unreviewed/2024/08/GHSA-3466-hwg6-rp7h/GHSA-3466-hwg6-rp7h.json +++ b/advisories/unreviewed/2024/08/GHSA-3466-hwg6-rp7h/GHSA-3466-hwg6-rp7h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-3fc7-hxmq-f35p/GHSA-3fc7-hxmq-f35p.json b/advisories/unreviewed/2024/08/GHSA-3fc7-hxmq-f35p/GHSA-3fc7-hxmq-f35p.json index f17b4e0c1eb..0940b00ea82 100644 --- a/advisories/unreviewed/2024/08/GHSA-3fc7-hxmq-f35p/GHSA-3fc7-hxmq-f35p.json +++ b/advisories/unreviewed/2024/08/GHSA-3fc7-hxmq-f35p/GHSA-3fc7-hxmq-f35p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-5236-grq3-77jq/GHSA-5236-grq3-77jq.json b/advisories/unreviewed/2024/08/GHSA-5236-grq3-77jq/GHSA-5236-grq3-77jq.json index 8c4c2bc569f..def7082d6c4 100644 --- a/advisories/unreviewed/2024/08/GHSA-5236-grq3-77jq/GHSA-5236-grq3-77jq.json +++ b/advisories/unreviewed/2024/08/GHSA-5236-grq3-77jq/GHSA-5236-grq3-77jq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-553w-hm5g-6ccq/GHSA-553w-hm5g-6ccq.json b/advisories/unreviewed/2024/08/GHSA-553w-hm5g-6ccq/GHSA-553w-hm5g-6ccq.json index fc2a97f2bb1..946c7958ef7 100644 --- a/advisories/unreviewed/2024/08/GHSA-553w-hm5g-6ccq/GHSA-553w-hm5g-6ccq.json +++ b/advisories/unreviewed/2024/08/GHSA-553w-hm5g-6ccq/GHSA-553w-hm5g-6ccq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-598h-v73f-rx7f/GHSA-598h-v73f-rx7f.json b/advisories/unreviewed/2024/08/GHSA-598h-v73f-rx7f/GHSA-598h-v73f-rx7f.json index 52c629a0352..362e69a2712 100644 --- a/advisories/unreviewed/2024/08/GHSA-598h-v73f-rx7f/GHSA-598h-v73f-rx7f.json +++ b/advisories/unreviewed/2024/08/GHSA-598h-v73f-rx7f/GHSA-598h-v73f-rx7f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-5fp3-g9fp-wmqm/GHSA-5fp3-g9fp-wmqm.json b/advisories/unreviewed/2024/08/GHSA-5fp3-g9fp-wmqm/GHSA-5fp3-g9fp-wmqm.json index 3724f273512..3f09c631cdf 100644 --- a/advisories/unreviewed/2024/08/GHSA-5fp3-g9fp-wmqm/GHSA-5fp3-g9fp-wmqm.json +++ b/advisories/unreviewed/2024/08/GHSA-5fp3-g9fp-wmqm/GHSA-5fp3-g9fp-wmqm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-6fqv-gvfg-wqrx/GHSA-6fqv-gvfg-wqrx.json b/advisories/unreviewed/2024/08/GHSA-6fqv-gvfg-wqrx/GHSA-6fqv-gvfg-wqrx.json index 6ef31cbea98..8317010135d 100644 --- a/advisories/unreviewed/2024/08/GHSA-6fqv-gvfg-wqrx/GHSA-6fqv-gvfg-wqrx.json +++ b/advisories/unreviewed/2024/08/GHSA-6fqv-gvfg-wqrx/GHSA-6fqv-gvfg-wqrx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-6mhf-xh4c-cx53/GHSA-6mhf-xh4c-cx53.json b/advisories/unreviewed/2024/08/GHSA-6mhf-xh4c-cx53/GHSA-6mhf-xh4c-cx53.json index 2090930697e..8971d71e3da 100644 --- a/advisories/unreviewed/2024/08/GHSA-6mhf-xh4c-cx53/GHSA-6mhf-xh4c-cx53.json +++ b/advisories/unreviewed/2024/08/GHSA-6mhf-xh4c-cx53/GHSA-6mhf-xh4c-cx53.json @@ -17,9 +17,7 @@ "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-6xfm-jchr-8jgw/GHSA-6xfm-jchr-8jgw.json b/advisories/unreviewed/2024/08/GHSA-6xfm-jchr-8jgw/GHSA-6xfm-jchr-8jgw.json index 1b11b874542..f665c7a5fac 100644 --- a/advisories/unreviewed/2024/08/GHSA-6xfm-jchr-8jgw/GHSA-6xfm-jchr-8jgw.json +++ b/advisories/unreviewed/2024/08/GHSA-6xfm-jchr-8jgw/GHSA-6xfm-jchr-8jgw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-723q-4x66-vrf2/GHSA-723q-4x66-vrf2.json b/advisories/unreviewed/2024/08/GHSA-723q-4x66-vrf2/GHSA-723q-4x66-vrf2.json index 2211eb9db3c..b13918e2d40 100644 --- a/advisories/unreviewed/2024/08/GHSA-723q-4x66-vrf2/GHSA-723q-4x66-vrf2.json +++ b/advisories/unreviewed/2024/08/GHSA-723q-4x66-vrf2/GHSA-723q-4x66-vrf2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-79g4-f35r-g3f6/GHSA-79g4-f35r-g3f6.json b/advisories/unreviewed/2024/08/GHSA-79g4-f35r-g3f6/GHSA-79g4-f35r-g3f6.json index d2083ef2247..0e719cd20b9 100644 --- a/advisories/unreviewed/2024/08/GHSA-79g4-f35r-g3f6/GHSA-79g4-f35r-g3f6.json +++ b/advisories/unreviewed/2024/08/GHSA-79g4-f35r-g3f6/GHSA-79g4-f35r-g3f6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-7x38-847r-875x/GHSA-7x38-847r-875x.json b/advisories/unreviewed/2024/08/GHSA-7x38-847r-875x/GHSA-7x38-847r-875x.json index 089d0702bcc..1eac5464b99 100644 --- a/advisories/unreviewed/2024/08/GHSA-7x38-847r-875x/GHSA-7x38-847r-875x.json +++ b/advisories/unreviewed/2024/08/GHSA-7x38-847r-875x/GHSA-7x38-847r-875x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-84wj-vj6c-5mrf/GHSA-84wj-vj6c-5mrf.json b/advisories/unreviewed/2024/08/GHSA-84wj-vj6c-5mrf/GHSA-84wj-vj6c-5mrf.json index fbacf364e9f..3d99cb1ec50 100644 --- a/advisories/unreviewed/2024/08/GHSA-84wj-vj6c-5mrf/GHSA-84wj-vj6c-5mrf.json +++ b/advisories/unreviewed/2024/08/GHSA-84wj-vj6c-5mrf/GHSA-84wj-vj6c-5mrf.json @@ -17,9 +17,7 @@ "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-8p7p-r9xv-w8g4/GHSA-8p7p-r9xv-w8g4.json b/advisories/unreviewed/2024/08/GHSA-8p7p-r9xv-w8g4/GHSA-8p7p-r9xv-w8g4.json index 41e72702cf1..841b830b46b 100644 --- a/advisories/unreviewed/2024/08/GHSA-8p7p-r9xv-w8g4/GHSA-8p7p-r9xv-w8g4.json +++ b/advisories/unreviewed/2024/08/GHSA-8p7p-r9xv-w8g4/GHSA-8p7p-r9xv-w8g4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-8rf9-3299-pp97/GHSA-8rf9-3299-pp97.json b/advisories/unreviewed/2024/08/GHSA-8rf9-3299-pp97/GHSA-8rf9-3299-pp97.json index 1492f20176d..1d4a2e634d7 100644 --- a/advisories/unreviewed/2024/08/GHSA-8rf9-3299-pp97/GHSA-8rf9-3299-pp97.json +++ b/advisories/unreviewed/2024/08/GHSA-8rf9-3299-pp97/GHSA-8rf9-3299-pp97.json @@ -17,9 +17,7 @@ "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-94jf-fffp-948f/GHSA-94jf-fffp-948f.json b/advisories/unreviewed/2024/08/GHSA-94jf-fffp-948f/GHSA-94jf-fffp-948f.json index 6f7b1708e40..374866c0552 100644 --- a/advisories/unreviewed/2024/08/GHSA-94jf-fffp-948f/GHSA-94jf-fffp-948f.json +++ b/advisories/unreviewed/2024/08/GHSA-94jf-fffp-948f/GHSA-94jf-fffp-948f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-96ph-frjp-7qq2/GHSA-96ph-frjp-7qq2.json b/advisories/unreviewed/2024/08/GHSA-96ph-frjp-7qq2/GHSA-96ph-frjp-7qq2.json index b7d0a3ba239..79c03160437 100644 --- a/advisories/unreviewed/2024/08/GHSA-96ph-frjp-7qq2/GHSA-96ph-frjp-7qq2.json +++ b/advisories/unreviewed/2024/08/GHSA-96ph-frjp-7qq2/GHSA-96ph-frjp-7qq2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-9m3h-9ppv-fmgc/GHSA-9m3h-9ppv-fmgc.json b/advisories/unreviewed/2024/08/GHSA-9m3h-9ppv-fmgc/GHSA-9m3h-9ppv-fmgc.json index a577582c579..0a7301c74ec 100644 --- a/advisories/unreviewed/2024/08/GHSA-9m3h-9ppv-fmgc/GHSA-9m3h-9ppv-fmgc.json +++ b/advisories/unreviewed/2024/08/GHSA-9m3h-9ppv-fmgc/GHSA-9m3h-9ppv-fmgc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-c84x-657q-q6vq/GHSA-c84x-657q-q6vq.json b/advisories/unreviewed/2024/08/GHSA-c84x-657q-q6vq/GHSA-c84x-657q-q6vq.json index ffcf9d46ae8..151b551041c 100644 --- a/advisories/unreviewed/2024/08/GHSA-c84x-657q-q6vq/GHSA-c84x-657q-q6vq.json +++ b/advisories/unreviewed/2024/08/GHSA-c84x-657q-q6vq/GHSA-c84x-657q-q6vq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2024/08/GHSA-cp27-mm22-h5g5/GHSA-cp27-mm22-h5g5.json b/advisories/unreviewed/2024/08/GHSA-cp27-mm22-h5g5/GHSA-cp27-mm22-h5g5.json index 49c1aa8f588..e23793f691b 100644 --- a/advisories/unreviewed/2024/08/GHSA-cp27-mm22-h5g5/GHSA-cp27-mm22-h5g5.json +++ b/advisories/unreviewed/2024/08/GHSA-cp27-mm22-h5g5/GHSA-cp27-mm22-h5g5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-f65m-cqjj-22w6/GHSA-f65m-cqjj-22w6.json b/advisories/unreviewed/2024/08/GHSA-f65m-cqjj-22w6/GHSA-f65m-cqjj-22w6.json index aa80b36dde6..2d64046c5a2 100644 --- a/advisories/unreviewed/2024/08/GHSA-f65m-cqjj-22w6/GHSA-f65m-cqjj-22w6.json +++ b/advisories/unreviewed/2024/08/GHSA-f65m-cqjj-22w6/GHSA-f65m-cqjj-22w6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-fg93-gp73-8497/GHSA-fg93-gp73-8497.json b/advisories/unreviewed/2024/08/GHSA-fg93-gp73-8497/GHSA-fg93-gp73-8497.json index 16fb6f77ebc..283dc4766c4 100644 --- a/advisories/unreviewed/2024/08/GHSA-fg93-gp73-8497/GHSA-fg93-gp73-8497.json +++ b/advisories/unreviewed/2024/08/GHSA-fg93-gp73-8497/GHSA-fg93-gp73-8497.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-fmc4-v39v-phr8/GHSA-fmc4-v39v-phr8.json b/advisories/unreviewed/2024/08/GHSA-fmc4-v39v-phr8/GHSA-fmc4-v39v-phr8.json index 526ba3ea311..1d8e0a33931 100644 --- a/advisories/unreviewed/2024/08/GHSA-fmc4-v39v-phr8/GHSA-fmc4-v39v-phr8.json +++ b/advisories/unreviewed/2024/08/GHSA-fmc4-v39v-phr8/GHSA-fmc4-v39v-phr8.json @@ -17,9 +17,7 @@ "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-fmrv-g3hm-j6pp/GHSA-fmrv-g3hm-j6pp.json b/advisories/unreviewed/2024/08/GHSA-fmrv-g3hm-j6pp/GHSA-fmrv-g3hm-j6pp.json index 93445d5acc5..56f09d3e0b5 100644 --- a/advisories/unreviewed/2024/08/GHSA-fmrv-g3hm-j6pp/GHSA-fmrv-g3hm-j6pp.json +++ b/advisories/unreviewed/2024/08/GHSA-fmrv-g3hm-j6pp/GHSA-fmrv-g3hm-j6pp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-fw5q-5jr8-g3vh/GHSA-fw5q-5jr8-g3vh.json b/advisories/unreviewed/2024/08/GHSA-fw5q-5jr8-g3vh/GHSA-fw5q-5jr8-g3vh.json index b82b0615867..56b477655a2 100644 --- a/advisories/unreviewed/2024/08/GHSA-fw5q-5jr8-g3vh/GHSA-fw5q-5jr8-g3vh.json +++ b/advisories/unreviewed/2024/08/GHSA-fw5q-5jr8-g3vh/GHSA-fw5q-5jr8-g3vh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-g24f-94pq-jr67/GHSA-g24f-94pq-jr67.json b/advisories/unreviewed/2024/08/GHSA-g24f-94pq-jr67/GHSA-g24f-94pq-jr67.json index 8ccc5b49e18..cd8adc16d52 100644 --- a/advisories/unreviewed/2024/08/GHSA-g24f-94pq-jr67/GHSA-g24f-94pq-jr67.json +++ b/advisories/unreviewed/2024/08/GHSA-g24f-94pq-jr67/GHSA-g24f-94pq-jr67.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-gc3c-3v45-g6cf/GHSA-gc3c-3v45-g6cf.json b/advisories/unreviewed/2024/08/GHSA-gc3c-3v45-g6cf/GHSA-gc3c-3v45-g6cf.json index 04a5fc676dd..8fce34d208a 100644 --- a/advisories/unreviewed/2024/08/GHSA-gc3c-3v45-g6cf/GHSA-gc3c-3v45-g6cf.json +++ b/advisories/unreviewed/2024/08/GHSA-gc3c-3v45-g6cf/GHSA-gc3c-3v45-g6cf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:L/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-h964-f4gx-gw3x/GHSA-h964-f4gx-gw3x.json b/advisories/unreviewed/2024/08/GHSA-h964-f4gx-gw3x/GHSA-h964-f4gx-gw3x.json index 088f423a791..abd4e9b8174 100644 --- a/advisories/unreviewed/2024/08/GHSA-h964-f4gx-gw3x/GHSA-h964-f4gx-gw3x.json +++ b/advisories/unreviewed/2024/08/GHSA-h964-f4gx-gw3x/GHSA-h964-f4gx-gw3x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-hr87-9589-hg3m/GHSA-hr87-9589-hg3m.json b/advisories/unreviewed/2024/08/GHSA-hr87-9589-hg3m/GHSA-hr87-9589-hg3m.json index cce9ba1d06f..4d2c5b5185e 100644 --- a/advisories/unreviewed/2024/08/GHSA-hr87-9589-hg3m/GHSA-hr87-9589-hg3m.json +++ b/advisories/unreviewed/2024/08/GHSA-hr87-9589-hg3m/GHSA-hr87-9589-hg3m.json @@ -17,9 +17,7 @@ "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-j5jg-j64j-c6rq/GHSA-j5jg-j64j-c6rq.json b/advisories/unreviewed/2024/08/GHSA-j5jg-j64j-c6rq/GHSA-j5jg-j64j-c6rq.json index e6ec8c45635..f97e3a7d87e 100644 --- a/advisories/unreviewed/2024/08/GHSA-j5jg-j64j-c6rq/GHSA-j5jg-j64j-c6rq.json +++ b/advisories/unreviewed/2024/08/GHSA-j5jg-j64j-c6rq/GHSA-j5jg-j64j-c6rq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2024/08/GHSA-m8cw-854g-5gvm/GHSA-m8cw-854g-5gvm.json b/advisories/unreviewed/2024/08/GHSA-m8cw-854g-5gvm/GHSA-m8cw-854g-5gvm.json index c2b7ce6dbf3..5eb29247cc0 100644 --- a/advisories/unreviewed/2024/08/GHSA-m8cw-854g-5gvm/GHSA-m8cw-854g-5gvm.json +++ b/advisories/unreviewed/2024/08/GHSA-m8cw-854g-5gvm/GHSA-m8cw-854g-5gvm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-p2hh-36mx-vq2f/GHSA-p2hh-36mx-vq2f.json b/advisories/unreviewed/2024/08/GHSA-p2hh-36mx-vq2f/GHSA-p2hh-36mx-vq2f.json index 45756ddc1ba..0a3d08842e8 100644 --- a/advisories/unreviewed/2024/08/GHSA-p2hh-36mx-vq2f/GHSA-p2hh-36mx-vq2f.json +++ b/advisories/unreviewed/2024/08/GHSA-p2hh-36mx-vq2f/GHSA-p2hh-36mx-vq2f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-p997-wfmc-cvcj/GHSA-p997-wfmc-cvcj.json b/advisories/unreviewed/2024/08/GHSA-p997-wfmc-cvcj/GHSA-p997-wfmc-cvcj.json index aadfa7e47ba..eb45a58e1ab 100644 --- a/advisories/unreviewed/2024/08/GHSA-p997-wfmc-cvcj/GHSA-p997-wfmc-cvcj.json +++ b/advisories/unreviewed/2024/08/GHSA-p997-wfmc-cvcj/GHSA-p997-wfmc-cvcj.json @@ -17,9 +17,7 @@ "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-q3q8-95m2-545r/GHSA-q3q8-95m2-545r.json b/advisories/unreviewed/2024/08/GHSA-q3q8-95m2-545r/GHSA-q3q8-95m2-545r.json index b81fe6fe04a..fec5c645329 100644 --- a/advisories/unreviewed/2024/08/GHSA-q3q8-95m2-545r/GHSA-q3q8-95m2-545r.json +++ b/advisories/unreviewed/2024/08/GHSA-q3q8-95m2-545r/GHSA-q3q8-95m2-545r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-q9rp-4m44-qjc7/GHSA-q9rp-4m44-qjc7.json b/advisories/unreviewed/2024/08/GHSA-q9rp-4m44-qjc7/GHSA-q9rp-4m44-qjc7.json index 470f9843c7b..95a73175724 100644 --- a/advisories/unreviewed/2024/08/GHSA-q9rp-4m44-qjc7/GHSA-q9rp-4m44-qjc7.json +++ b/advisories/unreviewed/2024/08/GHSA-q9rp-4m44-qjc7/GHSA-q9rp-4m44-qjc7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-qfw5-995h-4gjp/GHSA-qfw5-995h-4gjp.json b/advisories/unreviewed/2024/08/GHSA-qfw5-995h-4gjp/GHSA-qfw5-995h-4gjp.json index 549f4e846be..987cbd4bd07 100644 --- a/advisories/unreviewed/2024/08/GHSA-qfw5-995h-4gjp/GHSA-qfw5-995h-4gjp.json +++ b/advisories/unreviewed/2024/08/GHSA-qfw5-995h-4gjp/GHSA-qfw5-995h-4gjp.json @@ -17,9 +17,7 @@ "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-qxhc-f89g-j37j/GHSA-qxhc-f89g-j37j.json b/advisories/unreviewed/2024/08/GHSA-qxhc-f89g-j37j/GHSA-qxhc-f89g-j37j.json index 338bfbb633b..eb67cbbfce5 100644 --- a/advisories/unreviewed/2024/08/GHSA-qxhc-f89g-j37j/GHSA-qxhc-f89g-j37j.json +++ b/advisories/unreviewed/2024/08/GHSA-qxhc-f89g-j37j/GHSA-qxhc-f89g-j37j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-r6rr-3664-gq2w/GHSA-r6rr-3664-gq2w.json b/advisories/unreviewed/2024/08/GHSA-r6rr-3664-gq2w/GHSA-r6rr-3664-gq2w.json index de5042bb363..f09754fbd62 100644 --- a/advisories/unreviewed/2024/08/GHSA-r6rr-3664-gq2w/GHSA-r6rr-3664-gq2w.json +++ b/advisories/unreviewed/2024/08/GHSA-r6rr-3664-gq2w/GHSA-r6rr-3664-gq2w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-rhrw-ch52-5vhp/GHSA-rhrw-ch52-5vhp.json b/advisories/unreviewed/2024/08/GHSA-rhrw-ch52-5vhp/GHSA-rhrw-ch52-5vhp.json index 658bbaa33b2..330b9084628 100644 --- a/advisories/unreviewed/2024/08/GHSA-rhrw-ch52-5vhp/GHSA-rhrw-ch52-5vhp.json +++ b/advisories/unreviewed/2024/08/GHSA-rhrw-ch52-5vhp/GHSA-rhrw-ch52-5vhp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-v25r-h42w-j2vq/GHSA-v25r-h42w-j2vq.json b/advisories/unreviewed/2024/08/GHSA-v25r-h42w-j2vq/GHSA-v25r-h42w-j2vq.json index aea0911fe44..2f00ad00fd2 100644 --- a/advisories/unreviewed/2024/08/GHSA-v25r-h42w-j2vq/GHSA-v25r-h42w-j2vq.json +++ b/advisories/unreviewed/2024/08/GHSA-v25r-h42w-j2vq/GHSA-v25r-h42w-j2vq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-v5f5-778p-qh56/GHSA-v5f5-778p-qh56.json b/advisories/unreviewed/2024/08/GHSA-v5f5-778p-qh56/GHSA-v5f5-778p-qh56.json index 54768af8533..aba9cb9c682 100644 --- a/advisories/unreviewed/2024/08/GHSA-v5f5-778p-qh56/GHSA-v5f5-778p-qh56.json +++ b/advisories/unreviewed/2024/08/GHSA-v5f5-778p-qh56/GHSA-v5f5-778p-qh56.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-vq36-rf43-jmh7/GHSA-vq36-rf43-jmh7.json b/advisories/unreviewed/2024/08/GHSA-vq36-rf43-jmh7/GHSA-vq36-rf43-jmh7.json index 613873b1629..4727367149a 100644 --- a/advisories/unreviewed/2024/08/GHSA-vq36-rf43-jmh7/GHSA-vq36-rf43-jmh7.json +++ b/advisories/unreviewed/2024/08/GHSA-vq36-rf43-jmh7/GHSA-vq36-rf43-jmh7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-w5rf-88wr-4cq3/GHSA-w5rf-88wr-4cq3.json b/advisories/unreviewed/2024/08/GHSA-w5rf-88wr-4cq3/GHSA-w5rf-88wr-4cq3.json index fc1f020ab0b..1b2c4f4566c 100644 --- a/advisories/unreviewed/2024/08/GHSA-w5rf-88wr-4cq3/GHSA-w5rf-88wr-4cq3.json +++ b/advisories/unreviewed/2024/08/GHSA-w5rf-88wr-4cq3/GHSA-w5rf-88wr-4cq3.json @@ -17,9 +17,7 @@ "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-wj96-5g7r-c538/GHSA-wj96-5g7r-c538.json b/advisories/unreviewed/2024/08/GHSA-wj96-5g7r-c538/GHSA-wj96-5g7r-c538.json index 6c6315200b4..6bfb90043a6 100644 --- a/advisories/unreviewed/2024/08/GHSA-wj96-5g7r-c538/GHSA-wj96-5g7r-c538.json +++ b/advisories/unreviewed/2024/08/GHSA-wj96-5g7r-c538/GHSA-wj96-5g7r-c538.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-x38q-hvmx-rwhg/GHSA-x38q-hvmx-rwhg.json b/advisories/unreviewed/2024/08/GHSA-x38q-hvmx-rwhg/GHSA-x38q-hvmx-rwhg.json index c2781cdcd27..6e2ab4e5d5b 100644 --- a/advisories/unreviewed/2024/08/GHSA-x38q-hvmx-rwhg/GHSA-x38q-hvmx-rwhg.json +++ b/advisories/unreviewed/2024/08/GHSA-x38q-hvmx-rwhg/GHSA-x38q-hvmx-rwhg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-x7fm-xq4g-7h9j/GHSA-x7fm-xq4g-7h9j.json b/advisories/unreviewed/2024/08/GHSA-x7fm-xq4g-7h9j/GHSA-x7fm-xq4g-7h9j.json index 984f38a470a..a0e6f52bf07 100644 --- a/advisories/unreviewed/2024/08/GHSA-x7fm-xq4g-7h9j/GHSA-x7fm-xq4g-7h9j.json +++ b/advisories/unreviewed/2024/08/GHSA-x7fm-xq4g-7h9j/GHSA-x7fm-xq4g-7h9j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/10/GHSA-7m7j-pgpw-9g75/GHSA-7m7j-pgpw-9g75.json b/advisories/unreviewed/2024/10/GHSA-7m7j-pgpw-9g75/GHSA-7m7j-pgpw-9g75.json index 95e7079df83..b218d14ea86 100644 --- a/advisories/unreviewed/2024/10/GHSA-7m7j-pgpw-9g75/GHSA-7m7j-pgpw-9g75.json +++ b/advisories/unreviewed/2024/10/GHSA-7m7j-pgpw-9g75/GHSA-7m7j-pgpw-9g75.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-42c7-w7r7-3v3m/GHSA-42c7-w7r7-3v3m.json b/advisories/unreviewed/2024/11/GHSA-42c7-w7r7-3v3m/GHSA-42c7-w7r7-3v3m.json index 0b27c7f693b..34a427dd587 100644 --- a/advisories/unreviewed/2024/11/GHSA-42c7-w7r7-3v3m/GHSA-42c7-w7r7-3v3m.json +++ b/advisories/unreviewed/2024/11/GHSA-42c7-w7r7-3v3m/GHSA-42c7-w7r7-3v3m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2024/11/GHSA-536h-wxcg-vp88/GHSA-536h-wxcg-vp88.json b/advisories/unreviewed/2024/11/GHSA-536h-wxcg-vp88/GHSA-536h-wxcg-vp88.json index 90d81f6cc46..9c5f59e068f 100644 --- a/advisories/unreviewed/2024/11/GHSA-536h-wxcg-vp88/GHSA-536h-wxcg-vp88.json +++ b/advisories/unreviewed/2024/11/GHSA-536h-wxcg-vp88/GHSA-536h-wxcg-vp88.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-56g4-wf8m-979x/GHSA-56g4-wf8m-979x.json b/advisories/unreviewed/2024/11/GHSA-56g4-wf8m-979x/GHSA-56g4-wf8m-979x.json index 844f244f713..6e0a2b7d640 100644 --- a/advisories/unreviewed/2024/11/GHSA-56g4-wf8m-979x/GHSA-56g4-wf8m-979x.json +++ b/advisories/unreviewed/2024/11/GHSA-56g4-wf8m-979x/GHSA-56g4-wf8m-979x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-69hg-2xq4-4m8v/GHSA-69hg-2xq4-4m8v.json b/advisories/unreviewed/2024/11/GHSA-69hg-2xq4-4m8v/GHSA-69hg-2xq4-4m8v.json index 188f93cbdc6..93f7acb6875 100644 --- a/advisories/unreviewed/2024/11/GHSA-69hg-2xq4-4m8v/GHSA-69hg-2xq4-4m8v.json +++ b/advisories/unreviewed/2024/11/GHSA-69hg-2xq4-4m8v/GHSA-69hg-2xq4-4m8v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-6q4v-9f44-vxxx/GHSA-6q4v-9f44-vxxx.json b/advisories/unreviewed/2024/11/GHSA-6q4v-9f44-vxxx/GHSA-6q4v-9f44-vxxx.json index 121fd8894e1..7ef9e43b988 100644 --- a/advisories/unreviewed/2024/11/GHSA-6q4v-9f44-vxxx/GHSA-6q4v-9f44-vxxx.json +++ b/advisories/unreviewed/2024/11/GHSA-6q4v-9f44-vxxx/GHSA-6q4v-9f44-vxxx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-f8v8-jqrr-5mhq/GHSA-f8v8-jqrr-5mhq.json b/advisories/unreviewed/2024/11/GHSA-f8v8-jqrr-5mhq/GHSA-f8v8-jqrr-5mhq.json index 9f88c5e0a03..a869fa0b038 100644 --- a/advisories/unreviewed/2024/11/GHSA-f8v8-jqrr-5mhq/GHSA-f8v8-jqrr-5mhq.json +++ b/advisories/unreviewed/2024/11/GHSA-f8v8-jqrr-5mhq/GHSA-f8v8-jqrr-5mhq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-hx7r-qwxv-w9j9/GHSA-hx7r-qwxv-w9j9.json b/advisories/unreviewed/2024/11/GHSA-hx7r-qwxv-w9j9/GHSA-hx7r-qwxv-w9j9.json index 5558a90baaf..cda2f14487c 100644 --- a/advisories/unreviewed/2024/11/GHSA-hx7r-qwxv-w9j9/GHSA-hx7r-qwxv-w9j9.json +++ b/advisories/unreviewed/2024/11/GHSA-hx7r-qwxv-w9j9/GHSA-hx7r-qwxv-w9j9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-p972-2fg6-pw4j/GHSA-p972-2fg6-pw4j.json b/advisories/unreviewed/2024/11/GHSA-p972-2fg6-pw4j/GHSA-p972-2fg6-pw4j.json index 33c1b1f36ab..24bc4897b5e 100644 --- a/advisories/unreviewed/2024/11/GHSA-p972-2fg6-pw4j/GHSA-p972-2fg6-pw4j.json +++ b/advisories/unreviewed/2024/11/GHSA-p972-2fg6-pw4j/GHSA-p972-2fg6-pw4j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-vm8m-g3fg-cr9m/GHSA-vm8m-g3fg-cr9m.json b/advisories/unreviewed/2024/11/GHSA-vm8m-g3fg-cr9m/GHSA-vm8m-g3fg-cr9m.json index 851a0c167ef..2b3813a3344 100644 --- a/advisories/unreviewed/2024/11/GHSA-vm8m-g3fg-cr9m/GHSA-vm8m-g3fg-cr9m.json +++ b/advisories/unreviewed/2024/11/GHSA-vm8m-g3fg-cr9m/GHSA-vm8m-g3fg-cr9m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-xq6h-mq75-c7w9/GHSA-xq6h-mq75-c7w9.json b/advisories/unreviewed/2024/11/GHSA-xq6h-mq75-c7w9/GHSA-xq6h-mq75-c7w9.json index e40b191d29d..c4efbd85b78 100644 --- a/advisories/unreviewed/2024/11/GHSA-xq6h-mq75-c7w9/GHSA-xq6h-mq75-c7w9.json +++ b/advisories/unreviewed/2024/11/GHSA-xq6h-mq75-c7w9/GHSA-xq6h-mq75-c7w9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/11/GHSA-xrw7-56rh-2jrq/GHSA-xrw7-56rh-2jrq.json b/advisories/unreviewed/2024/11/GHSA-xrw7-56rh-2jrq/GHSA-xrw7-56rh-2jrq.json index 50cc0c4b3a7..2a8c18d5838 100644 --- a/advisories/unreviewed/2024/11/GHSA-xrw7-56rh-2jrq/GHSA-xrw7-56rh-2jrq.json +++ b/advisories/unreviewed/2024/11/GHSA-xrw7-56rh-2jrq/GHSA-xrw7-56rh-2jrq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY",