diff --git a/advisories/github-reviewed/2022/04/GHSA-5jfw-35xp-5m42/GHSA-5jfw-35xp-5m42.json b/advisories/github-reviewed/2022/04/GHSA-5jfw-35xp-5m42/GHSA-5jfw-35xp-5m42.json index 76f6404910f..b5d2b1aa7b3 100644 --- a/advisories/github-reviewed/2022/04/GHSA-5jfw-35xp-5m42/GHSA-5jfw-35xp-5m42.json +++ b/advisories/github-reviewed/2022/04/GHSA-5jfw-35xp-5m42/GHSA-5jfw-35xp-5m42.json @@ -3,9 +3,7 @@ "id": "GHSA-5jfw-35xp-5m42", "modified": "2022-04-05T17:53:22Z", "published": "2022-04-05T17:53:22Z", - "aliases": [ - - ], + "aliases": [], "summary": "Buffer length underflow in LoginPacket causing unchecked exceptions to be thrown", "details": "### Impact\n`LoginPacket` uses `BinaryStream->getLInt()` to read the lengths of JSON payloads it wants to decode. Unfortunately, `BinaryStream->getLInt()` returns a signed integer, meaning that a malicious client can craft a packet with a large uint32 value for payload buffer size (which would be interpreted as a negative signed int32), causing `BinaryStream->get()` to throw an exception.\n\nIn the context of PocketMine-MP, this leads to a server crash when the vulnerability is exploited.\n\n### Patches\ne3fce7632b94e83fd6a518a87dcaf6a11681c4ac\n\n### Workarounds\nThis can be worked around by registering a custom `LoginPacket` implementation into `PacketPool` which overrides [this code](https://github.com/pmmp/BedrockProtocol/blob/47532c95ea37d5f0365b23f734d70d943ff95295/src/LoginPacket.php#L54) to patch it.\n\n### For more information\n* Email us at [team@pmmp.io](mailto:team@pmmp.io)", "severity": [ diff --git a/advisories/github-reviewed/2022/04/GHSA-7vrm-3jc8-5wwm/GHSA-7vrm-3jc8-5wwm.json b/advisories/github-reviewed/2022/04/GHSA-7vrm-3jc8-5wwm/GHSA-7vrm-3jc8-5wwm.json index fb40bd6b1ac..f3adfb3bb83 100644 --- a/advisories/github-reviewed/2022/04/GHSA-7vrm-3jc8-5wwm/GHSA-7vrm-3jc8-5wwm.json +++ b/advisories/github-reviewed/2022/04/GHSA-7vrm-3jc8-5wwm/GHSA-7vrm-3jc8-5wwm.json @@ -3,9 +3,7 @@ "id": "GHSA-7vrm-3jc8-5wwm", "modified": "2022-04-06T17:39:02Z", "published": "2022-04-04T21:40:45Z", - "aliases": [ - - ], + "aliases": [], "summary": "Incorrect Comparison in Vyper", "details": "### Impact\nbytestrings can have dirty bytes in them, resulting in the word-for-word comparison to give incorrect results, e.g.\n```vyper\nb1: Bytes[32] = b\"abcdef\"\nb1 = slice(b1, 0, 1)\nb2: Bytes[32] = b\"abcdef\"\nt: bool = b1 == b2 # incorrectly evaluates to True\n```\neven without dirty nonzero bytes, because there is no comparison of the length, two bytestrings can compare to equal if one ends with `\"\\x00\"`.\n```vyper\nb1: Bytes[32] = b\"abc\\0\"\nb2: Bytes[32] = b\"abc\"\nt: bool = b1 == b2 # incorrectly evaluates to True\n```\n\n### Patches\nfixed in https://github.com/vyperlang/vyper/commit/2c73f8352635c0a433423a5b94740de1a118e508", "severity": [ diff --git a/advisories/github-reviewed/2022/04/GHSA-fx5p-f64h-93xc/GHSA-fx5p-f64h-93xc.json b/advisories/github-reviewed/2022/04/GHSA-fx5p-f64h-93xc/GHSA-fx5p-f64h-93xc.json index 3ceb81c904f..8f0a2888a0f 100644 --- a/advisories/github-reviewed/2022/04/GHSA-fx5p-f64h-93xc/GHSA-fx5p-f64h-93xc.json +++ b/advisories/github-reviewed/2022/04/GHSA-fx5p-f64h-93xc/GHSA-fx5p-f64h-93xc.json @@ -3,14 +3,10 @@ "id": "GHSA-fx5p-f64h-93xc", "modified": "2022-04-04T21:23:55Z", "published": "2022-04-04T21:23:55Z", - "aliases": [ - - ], + "aliases": [], "summary": " Opened exploitable ports in default docker-compose.yaml in go-ipfs", "details": "### Impact\n\nAllows admin API access to the IPFS node.\n\n### Who ?\n\nThis affects people running the [docker-compose.yaml](https://github.com/ipfs/go-ipfs/blob/master/docker-compose.yaml) service in an environment where the docker host is directly attached to a public or untrusted IP. In the vulnerable version, the private API endpoint is publicly forwarded by exposing it as `0.0.0.0:5001` on the host machine. \n\nIf the host machine is hidden behind a firewall or NAT (and the LAN is trusted for NAT), this is not an immediate issue because of the protection from the firewall or NAT. That said, we still recommend users update to follow security best practices of not putting unnecessary dependency on a working firewall.\n\n### Patches\nThis issue is in [docker-compose.yaml](https://github.com/ipfs/go-ipfs/blob/master/docker-compose.yaml). Users need to replace their current `docker-compose.yaml` file with a version `0.12.1` or later.\n\nThere is no need to update any of the binaries. Users running previous versions like `0.12.0` or earlier can download the `0.12.1` `docker-compose.yaml` file. You can replace a vulnerable `docker-compose.yaml` file with a the new one with:\n\n```\ncurl https://raw.githubusercontent.com/ipfs/go-ipfs/v0.12.1/docker-compose.yaml > docker-compose.yaml\n```\n\n### How to test if you are vulnerable\n#### Binding check on the host\nOn the host machine, while IPFS is running, run as root:\n\n```bash\nnetstat -lnp | grep \":5001\"\n```\n\nThe output will be a list of listeners bound to `:5001`.\nYou then need to check that those listeners are private and preferably even localhost IPs.\n⚠️ If this listener is on `0.0.0.0` or a public IP you are very likely vulnerable.\n\n#### Remote hailing\nWhile IPFS is running, you can try to contact the API from a remote machine. (Replace `1.2.3.4` with your node public IP. Or if you want to test in an untrusted NAT, then substitute the LAN IP instead.)\n\n```bash\ncurl -X POST http://1.2.3.4:5001/api/v0/version\n```\n\n⚠️ If you see any json outputted (e.g., `{\"Commit\": \"\",\"Golang\": \"\",\"Repo\": \"\",\"System\": \"\",\"Version\": \"\"}`), then you are vulnerable.\n\nIf it **fails**, then you are safe.\n\n### For more information\nIf you have any questions or comments about this advisory:\n* Please first read https://docs.ipfs.io/reference/http/api/ about best practices\n* Ask in [IPFS Discord #ipfs-chatter](https://discord.gg/ipfs)\n* Open an issue in [go-ipfs](https://github.com/ipfs/go-ipfs)\n", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { @@ -55,9 +51,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": true, "github_reviewed_at": "2022-04-04T21:23:55Z", diff --git a/advisories/github-reviewed/2022/04/GHSA-g54x-29xv-58h5/GHSA-g54x-29xv-58h5.json b/advisories/github-reviewed/2022/04/GHSA-g54x-29xv-58h5/GHSA-g54x-29xv-58h5.json index 55710d76dbb..fe31f31d475 100644 --- a/advisories/github-reviewed/2022/04/GHSA-g54x-29xv-58h5/GHSA-g54x-29xv-58h5.json +++ b/advisories/github-reviewed/2022/04/GHSA-g54x-29xv-58h5/GHSA-g54x-29xv-58h5.json @@ -50,9 +50,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2022-04-07T15:16:10Z", diff --git a/advisories/github-reviewed/2022/04/GHSA-mcq2-w56r-5w2w/GHSA-mcq2-w56r-5w2w.json b/advisories/github-reviewed/2022/04/GHSA-mcq2-w56r-5w2w/GHSA-mcq2-w56r-5w2w.json index e4bf2c27ae7..e29f3d76b1e 100644 --- a/advisories/github-reviewed/2022/04/GHSA-mcq2-w56r-5w2w/GHSA-mcq2-w56r-5w2w.json +++ b/advisories/github-reviewed/2022/04/GHSA-mcq2-w56r-5w2w/GHSA-mcq2-w56r-5w2w.json @@ -3,14 +3,10 @@ "id": "GHSA-mcq2-w56r-5w2w", "modified": "2022-04-08T22:09:23Z", "published": "2022-04-08T22:09:23Z", - "aliases": [ - - ], + "aliases": [], "summary": "Daemon panics when processing certain blocks", "details": "### Impact\ngo-ipfs nodes with versions 0.10.0, 0.11.0, 0.12.0, or 0.12.1 can crash when trying to traverse certain malformed graphs due to an issue in the go-codec-dagpb dependency. Vulnerable nodes that work with these malformed graphs may crash leading to denial-of-service risks.\n\nThis particularly impacts nodes that download or export data that is controlled by external user input as there is the possibility that a malicious user of those services could (intentionally or unintentionally) cause the node to traverse a malformed graph. Some notable use cases include public gateways and pinning services which fetch data on behalf of users, as well as applications such as IPFS Companion which load data based on a user visiting a website with links to IPFS URLs.\n\n### Patches\nVersions v0.11.1 and v0.12.2 both resolve this issue. This should make it easy to upgrade, even if you have not yet performed the v0.12.0 migration.\n\nFor those running on forked versions of go-ipfs or who are on v0.10.0 and are having trouble with the v0.11.0 breaking changes, simply updating the version of `go-codec-dagpb` you are using to >=v1.3.2 should resolve the issue.\n\nAny users of libraries within the go-ipfs ecosystem, even if not the go-ipfs package or binary itself, may be affected and should upgrade their dependency on go-codec-dagpb. You can check if your Go module has a dependency on `go-codec-dagpb` by running a command such as `go mod graph | grep go-codec-dagpb` in your module root.\n\n### Workarounds\nThe best way to workaround this issue is to control exposure to any endpoints that allow for arbitrary IPLD traversals. This primarily includes the HTTP RPC API (https://docs.ipfs.io/reference/http/api ) and the Gateway API. If you are exposing those APIs, then do so within an environment where only trusted users and applications you control have access to it. You should be safe as long as your users and applications do not create malformed graphs, which should not happen using standard `go-ipfs` tooling.\n\nIf you previously had a more open access environment, then closing off access will only be sufficient if both of the following are true:\n* The experimental GraphSync feature is disabled (https://github.com/ipfs/go-ipfs/blob/master/docs/experimental-features.md#graphsync) \n* The only data being accessed is non-malformed data\n\n### References\nSee also the [go-codec-dagpb security advisory](https://github.com/ipld/go-codec-dagpb/security/advisories/GHSA-g3vv-g2j5-45f2).\n\n### For more information\nIf you have any questions or comments about this advisory:\n\n* Ask in [IPFS Discord #ipfs-chatter](https://discord.gg/ipfs)\n* Open an issue in [go-ipfs](https://github.com/ipld/go-ipfs)", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { @@ -62,9 +58,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2022-04-08T22:09:23Z", diff --git a/advisories/github-reviewed/2022/04/GHSA-mx3x-rmrh-9wf6/GHSA-mx3x-rmrh-9wf6.json b/advisories/github-reviewed/2022/04/GHSA-mx3x-rmrh-9wf6/GHSA-mx3x-rmrh-9wf6.json index 373f0850141..18a5aa11084 100644 --- a/advisories/github-reviewed/2022/04/GHSA-mx3x-rmrh-9wf6/GHSA-mx3x-rmrh-9wf6.json +++ b/advisories/github-reviewed/2022/04/GHSA-mx3x-rmrh-9wf6/GHSA-mx3x-rmrh-9wf6.json @@ -8,9 +8,7 @@ ], "summary": "SQL injection in net.mingsoft:ms-mcms", "details": "Mingsoft MCMS v5.2.7 was discovered to contain a SQL injection vulnerability via /cms/content/list.", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { @@ -43,9 +41,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2022-04-07T15:41:25Z", diff --git a/advisories/github-reviewed/2022/04/GHSA-wf98-vxv9-jqfv/GHSA-wf98-vxv9-jqfv.json b/advisories/github-reviewed/2022/04/GHSA-wf98-vxv9-jqfv/GHSA-wf98-vxv9-jqfv.json index 393080468cd..477101ee5c4 100644 --- a/advisories/github-reviewed/2022/04/GHSA-wf98-vxv9-jqfv/GHSA-wf98-vxv9-jqfv.json +++ b/advisories/github-reviewed/2022/04/GHSA-wf98-vxv9-jqfv/GHSA-wf98-vxv9-jqfv.json @@ -3,14 +3,10 @@ "id": "GHSA-wf98-vxv9-jqfv", "modified": "2022-04-05T18:31:51Z", "published": "2022-04-05T18:31:51Z", - "aliases": [ - - ], + "aliases": [], "summary": "XSS Injection Vulnerability", "details": "### Impact\n\nUnder some circumstances, the Feeds widget on the dashboard could have an XSS vulnerability if a malformed feed was supplied.\n\n### Patches\n\nThis has been patched in Craft 3.7.29.\n\n### References\n\n* https://github.com/craftcms/cms/blob/develop/CHANGELOG.md#3729---2022-01-18\n\n### For more information\n\nIf you have any questions or comments about this advisory, email us at [support@craftcms.com](mailto:support@craftcms.com)\n\n----------\n\nCredits: https://github.com/noobpk\n", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { @@ -43,9 +39,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": true, "github_reviewed_at": "2022-04-05T18:31:51Z", diff --git a/advisories/github-reviewed/2023/01/GHSA-2jpx-h8j2-g8m4/GHSA-2jpx-h8j2-g8m4.json b/advisories/github-reviewed/2023/01/GHSA-2jpx-h8j2-g8m4/GHSA-2jpx-h8j2-g8m4.json index a9a98506dfa..a78944ebd7d 100644 --- a/advisories/github-reviewed/2023/01/GHSA-2jpx-h8j2-g8m4/GHSA-2jpx-h8j2-g8m4.json +++ b/advisories/github-reviewed/2023/01/GHSA-2jpx-h8j2-g8m4/GHSA-2jpx-h8j2-g8m4.json @@ -50,9 +50,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": true, "github_reviewed_at": "2023-01-27T01:02:39Z", diff --git a/advisories/unreviewed/2022/02/GHSA-2vg6-vx3w-m2r4/GHSA-2vg6-vx3w-m2r4.json b/advisories/unreviewed/2022/02/GHSA-2vg6-vx3w-m2r4/GHSA-2vg6-vx3w-m2r4.json index 4c6061e00eb..644ea6aa931 100644 --- a/advisories/unreviewed/2022/02/GHSA-2vg6-vx3w-m2r4/GHSA-2vg6-vx3w-m2r4.json +++ b/advisories/unreviewed/2022/02/GHSA-2vg6-vx3w-m2r4/GHSA-2vg6-vx3w-m2r4.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/03/GHSA-hgm4-v6hc-gqq9/GHSA-hgm4-v6hc-gqq9.json b/advisories/unreviewed/2022/03/GHSA-hgm4-v6hc-gqq9/GHSA-hgm4-v6hc-gqq9.json index fb2881e5fea..89f9c801346 100644 --- a/advisories/unreviewed/2022/03/GHSA-hgm4-v6hc-gqq9/GHSA-hgm4-v6hc-gqq9.json +++ b/advisories/unreviewed/2022/03/GHSA-hgm4-v6hc-gqq9/GHSA-hgm4-v6hc-gqq9.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/03/GHSA-wvr5-w97w-7ch7/GHSA-wvr5-w97w-7ch7.json b/advisories/unreviewed/2022/03/GHSA-wvr5-w97w-7ch7/GHSA-wvr5-w97w-7ch7.json index 3d1a6d35408..d22b13cd717 100644 --- a/advisories/unreviewed/2022/03/GHSA-wvr5-w97w-7ch7/GHSA-wvr5-w97w-7ch7.json +++ b/advisories/unreviewed/2022/03/GHSA-wvr5-w97w-7ch7/GHSA-wvr5-w97w-7ch7.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/04/GHSA-22wv-f9f6-xwwm/GHSA-22wv-f9f6-xwwm.json b/advisories/unreviewed/2022/04/GHSA-22wv-f9f6-xwwm/GHSA-22wv-f9f6-xwwm.json index 63a2f463c93..49fd07d44cd 100644 --- a/advisories/unreviewed/2022/04/GHSA-22wv-f9f6-xwwm/GHSA-22wv-f9f6-xwwm.json +++ b/advisories/unreviewed/2022/04/GHSA-22wv-f9f6-xwwm/GHSA-22wv-f9f6-xwwm.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-232g-h7w4-2pxj/GHSA-232g-h7w4-2pxj.json b/advisories/unreviewed/2022/04/GHSA-232g-h7w4-2pxj/GHSA-232g-h7w4-2pxj.json index f10951d31d1..9d0a3feea22 100644 --- a/advisories/unreviewed/2022/04/GHSA-232g-h7w4-2pxj/GHSA-232g-h7w4-2pxj.json +++ b/advisories/unreviewed/2022/04/GHSA-232g-h7w4-2pxj/GHSA-232g-h7w4-2pxj.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-23m2-2fch-phwm/GHSA-23m2-2fch-phwm.json b/advisories/unreviewed/2022/04/GHSA-23m2-2fch-phwm/GHSA-23m2-2fch-phwm.json index 4f52378a5c8..56724165ba4 100644 --- a/advisories/unreviewed/2022/04/GHSA-23m2-2fch-phwm/GHSA-23m2-2fch-phwm.json +++ b/advisories/unreviewed/2022/04/GHSA-23m2-2fch-phwm/GHSA-23m2-2fch-phwm.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", @@ -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/04/GHSA-24jf-3vhr-fw23/GHSA-24jf-3vhr-fw23.json b/advisories/unreviewed/2022/04/GHSA-24jf-3vhr-fw23/GHSA-24jf-3vhr-fw23.json index 95f0cbdc6e2..a10032750c9 100644 --- a/advisories/unreviewed/2022/04/GHSA-24jf-3vhr-fw23/GHSA-24jf-3vhr-fw23.json +++ b/advisories/unreviewed/2022/04/GHSA-24jf-3vhr-fw23/GHSA-24jf-3vhr-fw23.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/04/GHSA-264c-27mg-g32w/GHSA-264c-27mg-g32w.json b/advisories/unreviewed/2022/04/GHSA-264c-27mg-g32w/GHSA-264c-27mg-g32w.json index dbbe0380d9c..b381f030c57 100644 --- a/advisories/unreviewed/2022/04/GHSA-264c-27mg-g32w/GHSA-264c-27mg-g32w.json +++ b/advisories/unreviewed/2022/04/GHSA-264c-27mg-g32w/GHSA-264c-27mg-g32w.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", @@ -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/04/GHSA-26cp-4qrm-4637/GHSA-26cp-4qrm-4637.json b/advisories/unreviewed/2022/04/GHSA-26cp-4qrm-4637/GHSA-26cp-4qrm-4637.json index 4be03706b70..25117edf9fa 100644 --- a/advisories/unreviewed/2022/04/GHSA-26cp-4qrm-4637/GHSA-26cp-4qrm-4637.json +++ b/advisories/unreviewed/2022/04/GHSA-26cp-4qrm-4637/GHSA-26cp-4qrm-4637.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/04/GHSA-26h6-63w6-777w/GHSA-26h6-63w6-777w.json b/advisories/unreviewed/2022/04/GHSA-26h6-63w6-777w/GHSA-26h6-63w6-777w.json index 48d2e87d6ef..f73dc2a24d4 100644 --- a/advisories/unreviewed/2022/04/GHSA-26h6-63w6-777w/GHSA-26h6-63w6-777w.json +++ b/advisories/unreviewed/2022/04/GHSA-26h6-63w6-777w/GHSA-26h6-63w6-777w.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/04/GHSA-2834-55v8-f2v4/GHSA-2834-55v8-f2v4.json b/advisories/unreviewed/2022/04/GHSA-2834-55v8-f2v4/GHSA-2834-55v8-f2v4.json index c84d40e776b..9d8a41cc482 100644 --- a/advisories/unreviewed/2022/04/GHSA-2834-55v8-f2v4/GHSA-2834-55v8-f2v4.json +++ b/advisories/unreviewed/2022/04/GHSA-2834-55v8-f2v4/GHSA-2834-55v8-f2v4.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", diff --git a/advisories/unreviewed/2022/04/GHSA-29rm-7h6p-fjf3/GHSA-29rm-7h6p-fjf3.json b/advisories/unreviewed/2022/04/GHSA-29rm-7h6p-fjf3/GHSA-29rm-7h6p-fjf3.json index 719f56149ff..1798aa47b38 100644 --- a/advisories/unreviewed/2022/04/GHSA-29rm-7h6p-fjf3/GHSA-29rm-7h6p-fjf3.json +++ b/advisories/unreviewed/2022/04/GHSA-29rm-7h6p-fjf3/GHSA-29rm-7h6p-fjf3.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/04/GHSA-2c3p-6xp9-52hq/GHSA-2c3p-6xp9-52hq.json b/advisories/unreviewed/2022/04/GHSA-2c3p-6xp9-52hq/GHSA-2c3p-6xp9-52hq.json index e73d12dc439..a8544d292ed 100644 --- a/advisories/unreviewed/2022/04/GHSA-2c3p-6xp9-52hq/GHSA-2c3p-6xp9-52hq.json +++ b/advisories/unreviewed/2022/04/GHSA-2c3p-6xp9-52hq/GHSA-2c3p-6xp9-52hq.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/04/GHSA-2hfr-4cgx-vgjv/GHSA-2hfr-4cgx-vgjv.json b/advisories/unreviewed/2022/04/GHSA-2hfr-4cgx-vgjv/GHSA-2hfr-4cgx-vgjv.json index 9c4165d6ef4..0791615fa5f 100644 --- a/advisories/unreviewed/2022/04/GHSA-2hfr-4cgx-vgjv/GHSA-2hfr-4cgx-vgjv.json +++ b/advisories/unreviewed/2022/04/GHSA-2hfr-4cgx-vgjv/GHSA-2hfr-4cgx-vgjv.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/04/GHSA-2hq5-5vh4-f96j/GHSA-2hq5-5vh4-f96j.json b/advisories/unreviewed/2022/04/GHSA-2hq5-5vh4-f96j/GHSA-2hq5-5vh4-f96j.json index 6d2b1c2bab4..bcb313a32a5 100644 --- a/advisories/unreviewed/2022/04/GHSA-2hq5-5vh4-f96j/GHSA-2hq5-5vh4-f96j.json +++ b/advisories/unreviewed/2022/04/GHSA-2hq5-5vh4-f96j/GHSA-2hq5-5vh4-f96j.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/04/GHSA-2pp2-5h73-4wxg/GHSA-2pp2-5h73-4wxg.json b/advisories/unreviewed/2022/04/GHSA-2pp2-5h73-4wxg/GHSA-2pp2-5h73-4wxg.json index 97ced2d1ee4..cd95821f3c6 100644 --- a/advisories/unreviewed/2022/04/GHSA-2pp2-5h73-4wxg/GHSA-2pp2-5h73-4wxg.json +++ b/advisories/unreviewed/2022/04/GHSA-2pp2-5h73-4wxg/GHSA-2pp2-5h73-4wxg.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/04/GHSA-2xmx-mqmp-xw34/GHSA-2xmx-mqmp-xw34.json b/advisories/unreviewed/2022/04/GHSA-2xmx-mqmp-xw34/GHSA-2xmx-mqmp-xw34.json index 54cd8aa3c4e..8b59daac1ef 100644 --- a/advisories/unreviewed/2022/04/GHSA-2xmx-mqmp-xw34/GHSA-2xmx-mqmp-xw34.json +++ b/advisories/unreviewed/2022/04/GHSA-2xmx-mqmp-xw34/GHSA-2xmx-mqmp-xw34.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", @@ -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/04/GHSA-2xqv-jq2p-7rr6/GHSA-2xqv-jq2p-7rr6.json b/advisories/unreviewed/2022/04/GHSA-2xqv-jq2p-7rr6/GHSA-2xqv-jq2p-7rr6.json index a201b476c61..6aeeeee7e9d 100644 --- a/advisories/unreviewed/2022/04/GHSA-2xqv-jq2p-7rr6/GHSA-2xqv-jq2p-7rr6.json +++ b/advisories/unreviewed/2022/04/GHSA-2xqv-jq2p-7rr6/GHSA-2xqv-jq2p-7rr6.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", @@ -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/04/GHSA-34wh-7j35-vw3w/GHSA-34wh-7j35-vw3w.json b/advisories/unreviewed/2022/04/GHSA-34wh-7j35-vw3w/GHSA-34wh-7j35-vw3w.json index b9a8fc1df1c..667c4fcf9a7 100644 --- a/advisories/unreviewed/2022/04/GHSA-34wh-7j35-vw3w/GHSA-34wh-7j35-vw3w.json +++ b/advisories/unreviewed/2022/04/GHSA-34wh-7j35-vw3w/GHSA-34wh-7j35-vw3w.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/04/GHSA-3823-hjpv-24g4/GHSA-3823-hjpv-24g4.json b/advisories/unreviewed/2022/04/GHSA-3823-hjpv-24g4/GHSA-3823-hjpv-24g4.json index 6403c9029b1..e811d948132 100644 --- a/advisories/unreviewed/2022/04/GHSA-3823-hjpv-24g4/GHSA-3823-hjpv-24g4.json +++ b/advisories/unreviewed/2022/04/GHSA-3823-hjpv-24g4/GHSA-3823-hjpv-24g4.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/04/GHSA-3984-jq7g-h99p/GHSA-3984-jq7g-h99p.json b/advisories/unreviewed/2022/04/GHSA-3984-jq7g-h99p/GHSA-3984-jq7g-h99p.json index 2005e2f8496..10f5feee354 100644 --- a/advisories/unreviewed/2022/04/GHSA-3984-jq7g-h99p/GHSA-3984-jq7g-h99p.json +++ b/advisories/unreviewed/2022/04/GHSA-3984-jq7g-h99p/GHSA-3984-jq7g-h99p.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-39fr-rq99-f592/GHSA-39fr-rq99-f592.json b/advisories/unreviewed/2022/04/GHSA-39fr-rq99-f592/GHSA-39fr-rq99-f592.json index 5e440bc5479..cbcff97576c 100644 --- a/advisories/unreviewed/2022/04/GHSA-39fr-rq99-f592/GHSA-39fr-rq99-f592.json +++ b/advisories/unreviewed/2022/04/GHSA-39fr-rq99-f592/GHSA-39fr-rq99-f592.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/04/GHSA-39xf-jpcr-gmh4/GHSA-39xf-jpcr-gmh4.json b/advisories/unreviewed/2022/04/GHSA-39xf-jpcr-gmh4/GHSA-39xf-jpcr-gmh4.json index b6af948c241..c82a1b1b149 100644 --- a/advisories/unreviewed/2022/04/GHSA-39xf-jpcr-gmh4/GHSA-39xf-jpcr-gmh4.json +++ b/advisories/unreviewed/2022/04/GHSA-39xf-jpcr-gmh4/GHSA-39xf-jpcr-gmh4.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/04/GHSA-3p63-23m4-gmcp/GHSA-3p63-23m4-gmcp.json b/advisories/unreviewed/2022/04/GHSA-3p63-23m4-gmcp/GHSA-3p63-23m4-gmcp.json index ffa5477162d..99eb151a92c 100644 --- a/advisories/unreviewed/2022/04/GHSA-3p63-23m4-gmcp/GHSA-3p63-23m4-gmcp.json +++ b/advisories/unreviewed/2022/04/GHSA-3p63-23m4-gmcp/GHSA-3p63-23m4-gmcp.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/04/GHSA-3pqp-rh6f-w44r/GHSA-3pqp-rh6f-w44r.json b/advisories/unreviewed/2022/04/GHSA-3pqp-rh6f-w44r/GHSA-3pqp-rh6f-w44r.json index 7a8ede456ac..6727c6080d4 100644 --- a/advisories/unreviewed/2022/04/GHSA-3pqp-rh6f-w44r/GHSA-3pqp-rh6f-w44r.json +++ b/advisories/unreviewed/2022/04/GHSA-3pqp-rh6f-w44r/GHSA-3pqp-rh6f-w44r.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/04/GHSA-3qfc-w7wg-vf24/GHSA-3qfc-w7wg-vf24.json b/advisories/unreviewed/2022/04/GHSA-3qfc-w7wg-vf24/GHSA-3qfc-w7wg-vf24.json index a8ba64370f2..c96c4ec5c5e 100644 --- a/advisories/unreviewed/2022/04/GHSA-3qfc-w7wg-vf24/GHSA-3qfc-w7wg-vf24.json +++ b/advisories/unreviewed/2022/04/GHSA-3qfc-w7wg-vf24/GHSA-3qfc-w7wg-vf24.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/04/GHSA-3qw4-9hqr-jv4p/GHSA-3qw4-9hqr-jv4p.json b/advisories/unreviewed/2022/04/GHSA-3qw4-9hqr-jv4p/GHSA-3qw4-9hqr-jv4p.json index 88e6598a430..74aead6a618 100644 --- a/advisories/unreviewed/2022/04/GHSA-3qw4-9hqr-jv4p/GHSA-3qw4-9hqr-jv4p.json +++ b/advisories/unreviewed/2022/04/GHSA-3qw4-9hqr-jv4p/GHSA-3qw4-9hqr-jv4p.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/04/GHSA-3vhp-778q-hqrc/GHSA-3vhp-778q-hqrc.json b/advisories/unreviewed/2022/04/GHSA-3vhp-778q-hqrc/GHSA-3vhp-778q-hqrc.json index ce0e362f151..011e69db52b 100644 --- a/advisories/unreviewed/2022/04/GHSA-3vhp-778q-hqrc/GHSA-3vhp-778q-hqrc.json +++ b/advisories/unreviewed/2022/04/GHSA-3vhp-778q-hqrc/GHSA-3vhp-778q-hqrc.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", @@ -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/04/GHSA-3w5x-77vf-5frq/GHSA-3w5x-77vf-5frq.json b/advisories/unreviewed/2022/04/GHSA-3w5x-77vf-5frq/GHSA-3w5x-77vf-5frq.json index 5eb240ccfc2..2c141f618c3 100644 --- a/advisories/unreviewed/2022/04/GHSA-3w5x-77vf-5frq/GHSA-3w5x-77vf-5frq.json +++ b/advisories/unreviewed/2022/04/GHSA-3w5x-77vf-5frq/GHSA-3w5x-77vf-5frq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-43rm-m793-9q62/GHSA-43rm-m793-9q62.json b/advisories/unreviewed/2022/04/GHSA-43rm-m793-9q62/GHSA-43rm-m793-9q62.json index d4e997d92a6..9eaae72eb12 100644 --- a/advisories/unreviewed/2022/04/GHSA-43rm-m793-9q62/GHSA-43rm-m793-9q62.json +++ b/advisories/unreviewed/2022/04/GHSA-43rm-m793-9q62/GHSA-43rm-m793-9q62.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/AC:L/PR:N/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": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/04/GHSA-4555-4gmg-wpcm/GHSA-4555-4gmg-wpcm.json b/advisories/unreviewed/2022/04/GHSA-4555-4gmg-wpcm/GHSA-4555-4gmg-wpcm.json index be5e53802c4..19eea724640 100644 --- a/advisories/unreviewed/2022/04/GHSA-4555-4gmg-wpcm/GHSA-4555-4gmg-wpcm.json +++ b/advisories/unreviewed/2022/04/GHSA-4555-4gmg-wpcm/GHSA-4555-4gmg-wpcm.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", diff --git a/advisories/unreviewed/2022/04/GHSA-45gg-hph8-cxm3/GHSA-45gg-hph8-cxm3.json b/advisories/unreviewed/2022/04/GHSA-45gg-hph8-cxm3/GHSA-45gg-hph8-cxm3.json index 2eaed0c7082..b693f326e0d 100644 --- a/advisories/unreviewed/2022/04/GHSA-45gg-hph8-cxm3/GHSA-45gg-hph8-cxm3.json +++ b/advisories/unreviewed/2022/04/GHSA-45gg-hph8-cxm3/GHSA-45gg-hph8-cxm3.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", @@ -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/04/GHSA-466m-m85x-cqj9/GHSA-466m-m85x-cqj9.json b/advisories/unreviewed/2022/04/GHSA-466m-m85x-cqj9/GHSA-466m-m85x-cqj9.json index e91a0c7a121..19ba2e40728 100644 --- a/advisories/unreviewed/2022/04/GHSA-466m-m85x-cqj9/GHSA-466m-m85x-cqj9.json +++ b/advisories/unreviewed/2022/04/GHSA-466m-m85x-cqj9/GHSA-466m-m85x-cqj9.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/04/GHSA-468h-qqc5-v34c/GHSA-468h-qqc5-v34c.json b/advisories/unreviewed/2022/04/GHSA-468h-qqc5-v34c/GHSA-468h-qqc5-v34c.json index 684e355c4d2..f85bb6fdf1e 100644 --- a/advisories/unreviewed/2022/04/GHSA-468h-qqc5-v34c/GHSA-468h-qqc5-v34c.json +++ b/advisories/unreviewed/2022/04/GHSA-468h-qqc5-v34c/GHSA-468h-qqc5-v34c.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/04/GHSA-47r3-8qq9-7mcq/GHSA-47r3-8qq9-7mcq.json b/advisories/unreviewed/2022/04/GHSA-47r3-8qq9-7mcq/GHSA-47r3-8qq9-7mcq.json index 72f19b544eb..8b4d0025058 100644 --- a/advisories/unreviewed/2022/04/GHSA-47r3-8qq9-7mcq/GHSA-47r3-8qq9-7mcq.json +++ b/advisories/unreviewed/2022/04/GHSA-47r3-8qq9-7mcq/GHSA-47r3-8qq9-7mcq.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/04/GHSA-4cgp-8jr7-7x94/GHSA-4cgp-8jr7-7x94.json b/advisories/unreviewed/2022/04/GHSA-4cgp-8jr7-7x94/GHSA-4cgp-8jr7-7x94.json index 4b96aa987ab..f8f59536cb7 100644 --- a/advisories/unreviewed/2022/04/GHSA-4cgp-8jr7-7x94/GHSA-4cgp-8jr7-7x94.json +++ b/advisories/unreviewed/2022/04/GHSA-4cgp-8jr7-7x94/GHSA-4cgp-8jr7-7x94.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-4fff-jcr9-g646/GHSA-4fff-jcr9-g646.json b/advisories/unreviewed/2022/04/GHSA-4fff-jcr9-g646/GHSA-4fff-jcr9-g646.json index 3156117184d..f26a9959920 100644 --- a/advisories/unreviewed/2022/04/GHSA-4fff-jcr9-g646/GHSA-4fff-jcr9-g646.json +++ b/advisories/unreviewed/2022/04/GHSA-4fff-jcr9-g646/GHSA-4fff-jcr9-g646.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", diff --git a/advisories/unreviewed/2022/04/GHSA-4hr3-24fp-m37h/GHSA-4hr3-24fp-m37h.json b/advisories/unreviewed/2022/04/GHSA-4hr3-24fp-m37h/GHSA-4hr3-24fp-m37h.json index c2124c01242..a3f14c87b34 100644 --- a/advisories/unreviewed/2022/04/GHSA-4hr3-24fp-m37h/GHSA-4hr3-24fp-m37h.json +++ b/advisories/unreviewed/2022/04/GHSA-4hr3-24fp-m37h/GHSA-4hr3-24fp-m37h.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/04/GHSA-4mjq-hx99-8pp5/GHSA-4mjq-hx99-8pp5.json b/advisories/unreviewed/2022/04/GHSA-4mjq-hx99-8pp5/GHSA-4mjq-hx99-8pp5.json index 177bc60aded..76a6d3cd1b7 100644 --- a/advisories/unreviewed/2022/04/GHSA-4mjq-hx99-8pp5/GHSA-4mjq-hx99-8pp5.json +++ b/advisories/unreviewed/2022/04/GHSA-4mjq-hx99-8pp5/GHSA-4mjq-hx99-8pp5.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-4mr3-vcgr-j557/GHSA-4mr3-vcgr-j557.json b/advisories/unreviewed/2022/04/GHSA-4mr3-vcgr-j557/GHSA-4mr3-vcgr-j557.json index 6a00f0a0b80..76e5daf5177 100644 --- a/advisories/unreviewed/2022/04/GHSA-4mr3-vcgr-j557/GHSA-4mr3-vcgr-j557.json +++ b/advisories/unreviewed/2022/04/GHSA-4mr3-vcgr-j557/GHSA-4mr3-vcgr-j557.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/04/GHSA-4wvq-x9ch-g78w/GHSA-4wvq-x9ch-g78w.json b/advisories/unreviewed/2022/04/GHSA-4wvq-x9ch-g78w/GHSA-4wvq-x9ch-g78w.json index a6779d4fce6..8aff313614d 100644 --- a/advisories/unreviewed/2022/04/GHSA-4wvq-x9ch-g78w/GHSA-4wvq-x9ch-g78w.json +++ b/advisories/unreviewed/2022/04/GHSA-4wvq-x9ch-g78w/GHSA-4wvq-x9ch-g78w.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", @@ -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/04/GHSA-52r7-445m-rwcg/GHSA-52r7-445m-rwcg.json b/advisories/unreviewed/2022/04/GHSA-52r7-445m-rwcg/GHSA-52r7-445m-rwcg.json index 43954a816a2..4153ea29973 100644 --- a/advisories/unreviewed/2022/04/GHSA-52r7-445m-rwcg/GHSA-52r7-445m-rwcg.json +++ b/advisories/unreviewed/2022/04/GHSA-52r7-445m-rwcg/GHSA-52r7-445m-rwcg.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/04/GHSA-548g-mwqg-f632/GHSA-548g-mwqg-f632.json b/advisories/unreviewed/2022/04/GHSA-548g-mwqg-f632/GHSA-548g-mwqg-f632.json index 28a523bf5cf..2599f14a432 100644 --- a/advisories/unreviewed/2022/04/GHSA-548g-mwqg-f632/GHSA-548g-mwqg-f632.json +++ b/advisories/unreviewed/2022/04/GHSA-548g-mwqg-f632/GHSA-548g-mwqg-f632.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/04/GHSA-5733-m8xv-f92m/GHSA-5733-m8xv-f92m.json b/advisories/unreviewed/2022/04/GHSA-5733-m8xv-f92m/GHSA-5733-m8xv-f92m.json index ac484fe95c1..59772867a02 100644 --- a/advisories/unreviewed/2022/04/GHSA-5733-m8xv-f92m/GHSA-5733-m8xv-f92m.json +++ b/advisories/unreviewed/2022/04/GHSA-5733-m8xv-f92m/GHSA-5733-m8xv-f92m.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/04/GHSA-58jg-cxmw-686h/GHSA-58jg-cxmw-686h.json b/advisories/unreviewed/2022/04/GHSA-58jg-cxmw-686h/GHSA-58jg-cxmw-686h.json index 9afabc4532b..e82db667ef5 100644 --- a/advisories/unreviewed/2022/04/GHSA-58jg-cxmw-686h/GHSA-58jg-cxmw-686h.json +++ b/advisories/unreviewed/2022/04/GHSA-58jg-cxmw-686h/GHSA-58jg-cxmw-686h.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/04/GHSA-5965-3x5m-9954/GHSA-5965-3x5m-9954.json b/advisories/unreviewed/2022/04/GHSA-5965-3x5m-9954/GHSA-5965-3x5m-9954.json index e438e5d9432..7626725bb70 100644 --- a/advisories/unreviewed/2022/04/GHSA-5965-3x5m-9954/GHSA-5965-3x5m-9954.json +++ b/advisories/unreviewed/2022/04/GHSA-5965-3x5m-9954/GHSA-5965-3x5m-9954.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/04/GHSA-5f87-fvjm-hrf5/GHSA-5f87-fvjm-hrf5.json b/advisories/unreviewed/2022/04/GHSA-5f87-fvjm-hrf5/GHSA-5f87-fvjm-hrf5.json index 49e0122b7aa..838dd3d1861 100644 --- a/advisories/unreviewed/2022/04/GHSA-5f87-fvjm-hrf5/GHSA-5f87-fvjm-hrf5.json +++ b/advisories/unreviewed/2022/04/GHSA-5f87-fvjm-hrf5/GHSA-5f87-fvjm-hrf5.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/04/GHSA-5fp8-36f9-q5mp/GHSA-5fp8-36f9-q5mp.json b/advisories/unreviewed/2022/04/GHSA-5fp8-36f9-q5mp/GHSA-5fp8-36f9-q5mp.json index 62094421c4d..05835d08a94 100644 --- a/advisories/unreviewed/2022/04/GHSA-5fp8-36f9-q5mp/GHSA-5fp8-36f9-q5mp.json +++ b/advisories/unreviewed/2022/04/GHSA-5fp8-36f9-q5mp/GHSA-5fp8-36f9-q5mp.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/04/GHSA-5j8x-4qfw-cwj9/GHSA-5j8x-4qfw-cwj9.json b/advisories/unreviewed/2022/04/GHSA-5j8x-4qfw-cwj9/GHSA-5j8x-4qfw-cwj9.json index 021f0b2b3f9..bda42449b0d 100644 --- a/advisories/unreviewed/2022/04/GHSA-5j8x-4qfw-cwj9/GHSA-5j8x-4qfw-cwj9.json +++ b/advisories/unreviewed/2022/04/GHSA-5j8x-4qfw-cwj9/GHSA-5j8x-4qfw-cwj9.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/2022/04/GHSA-5mqh-wjcg-9g5p/GHSA-5mqh-wjcg-9g5p.json b/advisories/unreviewed/2022/04/GHSA-5mqh-wjcg-9g5p/GHSA-5mqh-wjcg-9g5p.json index 1e89691a82c..ca1d4f0e4ee 100644 --- a/advisories/unreviewed/2022/04/GHSA-5mqh-wjcg-9g5p/GHSA-5mqh-wjcg-9g5p.json +++ b/advisories/unreviewed/2022/04/GHSA-5mqh-wjcg-9g5p/GHSA-5mqh-wjcg-9g5p.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/04/GHSA-5p2j-jqf9-mg2f/GHSA-5p2j-jqf9-mg2f.json b/advisories/unreviewed/2022/04/GHSA-5p2j-jqf9-mg2f/GHSA-5p2j-jqf9-mg2f.json index 591133b6adf..8d0a2de0bef 100644 --- a/advisories/unreviewed/2022/04/GHSA-5p2j-jqf9-mg2f/GHSA-5p2j-jqf9-mg2f.json +++ b/advisories/unreviewed/2022/04/GHSA-5p2j-jqf9-mg2f/GHSA-5p2j-jqf9-mg2f.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/04/GHSA-5pf7-7gpx-8vjv/GHSA-5pf7-7gpx-8vjv.json b/advisories/unreviewed/2022/04/GHSA-5pf7-7gpx-8vjv/GHSA-5pf7-7gpx-8vjv.json index 52f66a2bfcd..dc0b848e908 100644 --- a/advisories/unreviewed/2022/04/GHSA-5pf7-7gpx-8vjv/GHSA-5pf7-7gpx-8vjv.json +++ b/advisories/unreviewed/2022/04/GHSA-5pf7-7gpx-8vjv/GHSA-5pf7-7gpx-8vjv.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/04/GHSA-5pr7-2g53-345f/GHSA-5pr7-2g53-345f.json b/advisories/unreviewed/2022/04/GHSA-5pr7-2g53-345f/GHSA-5pr7-2g53-345f.json index 23aed19c40e..2a250118ea9 100644 --- a/advisories/unreviewed/2022/04/GHSA-5pr7-2g53-345f/GHSA-5pr7-2g53-345f.json +++ b/advisories/unreviewed/2022/04/GHSA-5pr7-2g53-345f/GHSA-5pr7-2g53-345f.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/04/GHSA-5q7f-59cj-m7h6/GHSA-5q7f-59cj-m7h6.json b/advisories/unreviewed/2022/04/GHSA-5q7f-59cj-m7h6/GHSA-5q7f-59cj-m7h6.json index 3c448a9b877..4a9ac915a14 100644 --- a/advisories/unreviewed/2022/04/GHSA-5q7f-59cj-m7h6/GHSA-5q7f-59cj-m7h6.json +++ b/advisories/unreviewed/2022/04/GHSA-5q7f-59cj-m7h6/GHSA-5q7f-59cj-m7h6.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/04/GHSA-5w72-p3x5-c825/GHSA-5w72-p3x5-c825.json b/advisories/unreviewed/2022/04/GHSA-5w72-p3x5-c825/GHSA-5w72-p3x5-c825.json index e2780ee5234..ecd6c9975a3 100644 --- a/advisories/unreviewed/2022/04/GHSA-5w72-p3x5-c825/GHSA-5w72-p3x5-c825.json +++ b/advisories/unreviewed/2022/04/GHSA-5w72-p3x5-c825/GHSA-5w72-p3x5-c825.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/04/GHSA-5x9g-xc83-f9vr/GHSA-5x9g-xc83-f9vr.json b/advisories/unreviewed/2022/04/GHSA-5x9g-xc83-f9vr/GHSA-5x9g-xc83-f9vr.json index d3844b59f2b..50172e85655 100644 --- a/advisories/unreviewed/2022/04/GHSA-5x9g-xc83-f9vr/GHSA-5x9g-xc83-f9vr.json +++ b/advisories/unreviewed/2022/04/GHSA-5x9g-xc83-f9vr/GHSA-5x9g-xc83-f9vr.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/04/GHSA-5xr9-mx6m-3c8g/GHSA-5xr9-mx6m-3c8g.json b/advisories/unreviewed/2022/04/GHSA-5xr9-mx6m-3c8g/GHSA-5xr9-mx6m-3c8g.json index 505d1a5ffd2..efb95210a1c 100644 --- a/advisories/unreviewed/2022/04/GHSA-5xr9-mx6m-3c8g/GHSA-5xr9-mx6m-3c8g.json +++ b/advisories/unreviewed/2022/04/GHSA-5xr9-mx6m-3c8g/GHSA-5xr9-mx6m-3c8g.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/04/GHSA-6224-476v-jppq/GHSA-6224-476v-jppq.json b/advisories/unreviewed/2022/04/GHSA-6224-476v-jppq/GHSA-6224-476v-jppq.json index 74af3b0ddd6..8a60d22ca8b 100644 --- a/advisories/unreviewed/2022/04/GHSA-6224-476v-jppq/GHSA-6224-476v-jppq.json +++ b/advisories/unreviewed/2022/04/GHSA-6224-476v-jppq/GHSA-6224-476v-jppq.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/04/GHSA-634r-5wp4-57x4/GHSA-634r-5wp4-57x4.json b/advisories/unreviewed/2022/04/GHSA-634r-5wp4-57x4/GHSA-634r-5wp4-57x4.json index fa2a0abeba2..c8c9a1bee20 100644 --- a/advisories/unreviewed/2022/04/GHSA-634r-5wp4-57x4/GHSA-634r-5wp4-57x4.json +++ b/advisories/unreviewed/2022/04/GHSA-634r-5wp4-57x4/GHSA-634r-5wp4-57x4.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/04/GHSA-642g-829p-22jc/GHSA-642g-829p-22jc.json b/advisories/unreviewed/2022/04/GHSA-642g-829p-22jc/GHSA-642g-829p-22jc.json index ad3f9411d6c..2e3649fe4ec 100644 --- a/advisories/unreviewed/2022/04/GHSA-642g-829p-22jc/GHSA-642g-829p-22jc.json +++ b/advisories/unreviewed/2022/04/GHSA-642g-829p-22jc/GHSA-642g-829p-22jc.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", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "CRITICAL", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/04/GHSA-66xf-5qxv-jmgr/GHSA-66xf-5qxv-jmgr.json b/advisories/unreviewed/2022/04/GHSA-66xf-5qxv-jmgr/GHSA-66xf-5qxv-jmgr.json index 6ca5bfcf739..da80aa32199 100644 --- a/advisories/unreviewed/2022/04/GHSA-66xf-5qxv-jmgr/GHSA-66xf-5qxv-jmgr.json +++ b/advisories/unreviewed/2022/04/GHSA-66xf-5qxv-jmgr/GHSA-66xf-5qxv-jmgr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/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/2022/04/GHSA-6f7g-fvmv-x9vc/GHSA-6f7g-fvmv-x9vc.json b/advisories/unreviewed/2022/04/GHSA-6f7g-fvmv-x9vc/GHSA-6f7g-fvmv-x9vc.json index 10fad53b624..28118497492 100644 --- a/advisories/unreviewed/2022/04/GHSA-6f7g-fvmv-x9vc/GHSA-6f7g-fvmv-x9vc.json +++ b/advisories/unreviewed/2022/04/GHSA-6f7g-fvmv-x9vc/GHSA-6f7g-fvmv-x9vc.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/04/GHSA-6fwc-r3w5-c64x/GHSA-6fwc-r3w5-c64x.json b/advisories/unreviewed/2022/04/GHSA-6fwc-r3w5-c64x/GHSA-6fwc-r3w5-c64x.json index 36ccc253306..e37f902639b 100644 --- a/advisories/unreviewed/2022/04/GHSA-6fwc-r3w5-c64x/GHSA-6fwc-r3w5-c64x.json +++ b/advisories/unreviewed/2022/04/GHSA-6fwc-r3w5-c64x/GHSA-6fwc-r3w5-c64x.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/04/GHSA-6j4m-4c4v-3rm3/GHSA-6j4m-4c4v-3rm3.json b/advisories/unreviewed/2022/04/GHSA-6j4m-4c4v-3rm3/GHSA-6j4m-4c4v-3rm3.json index 38bd34db01f..1cedadcbe86 100644 --- a/advisories/unreviewed/2022/04/GHSA-6j4m-4c4v-3rm3/GHSA-6j4m-4c4v-3rm3.json +++ b/advisories/unreviewed/2022/04/GHSA-6j4m-4c4v-3rm3/GHSA-6j4m-4c4v-3rm3.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/04/GHSA-6j9j-gvj5-p6jx/GHSA-6j9j-gvj5-p6jx.json b/advisories/unreviewed/2022/04/GHSA-6j9j-gvj5-p6jx/GHSA-6j9j-gvj5-p6jx.json index 6c539919a27..34e524476cf 100644 --- a/advisories/unreviewed/2022/04/GHSA-6j9j-gvj5-p6jx/GHSA-6j9j-gvj5-p6jx.json +++ b/advisories/unreviewed/2022/04/GHSA-6j9j-gvj5-p6jx/GHSA-6j9j-gvj5-p6jx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-6jwj-6h4r-9vr7/GHSA-6jwj-6h4r-9vr7.json b/advisories/unreviewed/2022/04/GHSA-6jwj-6h4r-9vr7/GHSA-6jwj-6h4r-9vr7.json index 75066ec07de..6e8451bc844 100644 --- a/advisories/unreviewed/2022/04/GHSA-6jwj-6h4r-9vr7/GHSA-6jwj-6h4r-9vr7.json +++ b/advisories/unreviewed/2022/04/GHSA-6jwj-6h4r-9vr7/GHSA-6jwj-6h4r-9vr7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-6m6h-hx79-f7p3/GHSA-6m6h-hx79-f7p3.json b/advisories/unreviewed/2022/04/GHSA-6m6h-hx79-f7p3/GHSA-6m6h-hx79-f7p3.json index 45a0abef910..ca97d7cac4e 100644 --- a/advisories/unreviewed/2022/04/GHSA-6m6h-hx79-f7p3/GHSA-6m6h-hx79-f7p3.json +++ b/advisories/unreviewed/2022/04/GHSA-6m6h-hx79-f7p3/GHSA-6m6h-hx79-f7p3.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/04/GHSA-6m6q-vwv8-q74m/GHSA-6m6q-vwv8-q74m.json b/advisories/unreviewed/2022/04/GHSA-6m6q-vwv8-q74m/GHSA-6m6q-vwv8-q74m.json index 42f7f60d8d5..3153928ed70 100644 --- a/advisories/unreviewed/2022/04/GHSA-6m6q-vwv8-q74m/GHSA-6m6q-vwv8-q74m.json +++ b/advisories/unreviewed/2022/04/GHSA-6m6q-vwv8-q74m/GHSA-6m6q-vwv8-q74m.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/04/GHSA-6pvh-hm7g-3cc8/GHSA-6pvh-hm7g-3cc8.json b/advisories/unreviewed/2022/04/GHSA-6pvh-hm7g-3cc8/GHSA-6pvh-hm7g-3cc8.json index 2495747ab70..1eb354f38a2 100644 --- a/advisories/unreviewed/2022/04/GHSA-6pvh-hm7g-3cc8/GHSA-6pvh-hm7g-3cc8.json +++ b/advisories/unreviewed/2022/04/GHSA-6pvh-hm7g-3cc8/GHSA-6pvh-hm7g-3cc8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-6rpg-jg37-hhg7/GHSA-6rpg-jg37-hhg7.json b/advisories/unreviewed/2022/04/GHSA-6rpg-jg37-hhg7/GHSA-6rpg-jg37-hhg7.json index ea41b986e76..7b61219c957 100644 --- a/advisories/unreviewed/2022/04/GHSA-6rpg-jg37-hhg7/GHSA-6rpg-jg37-hhg7.json +++ b/advisories/unreviewed/2022/04/GHSA-6rpg-jg37-hhg7/GHSA-6rpg-jg37-hhg7.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-6w4v-wcgf-49jv/GHSA-6w4v-wcgf-49jv.json b/advisories/unreviewed/2022/04/GHSA-6w4v-wcgf-49jv/GHSA-6w4v-wcgf-49jv.json index 047d8c4a34c..5747bc79b8a 100644 --- a/advisories/unreviewed/2022/04/GHSA-6w4v-wcgf-49jv/GHSA-6w4v-wcgf-49jv.json +++ b/advisories/unreviewed/2022/04/GHSA-6w4v-wcgf-49jv/GHSA-6w4v-wcgf-49jv.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/04/GHSA-6xm9-f4r8-qq69/GHSA-6xm9-f4r8-qq69.json b/advisories/unreviewed/2022/04/GHSA-6xm9-f4r8-qq69/GHSA-6xm9-f4r8-qq69.json index a09d1096247..4d4155336e2 100644 --- a/advisories/unreviewed/2022/04/GHSA-6xm9-f4r8-qq69/GHSA-6xm9-f4r8-qq69.json +++ b/advisories/unreviewed/2022/04/GHSA-6xm9-f4r8-qq69/GHSA-6xm9-f4r8-qq69.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/04/GHSA-729r-q9xr-m8j5/GHSA-729r-q9xr-m8j5.json b/advisories/unreviewed/2022/04/GHSA-729r-q9xr-m8j5/GHSA-729r-q9xr-m8j5.json index 53c7f043222..510ec5f7ba6 100644 --- a/advisories/unreviewed/2022/04/GHSA-729r-q9xr-m8j5/GHSA-729r-q9xr-m8j5.json +++ b/advisories/unreviewed/2022/04/GHSA-729r-q9xr-m8j5/GHSA-729r-q9xr-m8j5.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/2022/04/GHSA-737x-q9xp-w8ch/GHSA-737x-q9xp-w8ch.json b/advisories/unreviewed/2022/04/GHSA-737x-q9xp-w8ch/GHSA-737x-q9xp-w8ch.json index 851d6e97d59..14ae4c9425d 100644 --- a/advisories/unreviewed/2022/04/GHSA-737x-q9xp-w8ch/GHSA-737x-q9xp-w8ch.json +++ b/advisories/unreviewed/2022/04/GHSA-737x-q9xp-w8ch/GHSA-737x-q9xp-w8ch.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/04/GHSA-7453-hxjf-jh4q/GHSA-7453-hxjf-jh4q.json b/advisories/unreviewed/2022/04/GHSA-7453-hxjf-jh4q/GHSA-7453-hxjf-jh4q.json index b9d18b3dd84..7f753d4948e 100644 --- a/advisories/unreviewed/2022/04/GHSA-7453-hxjf-jh4q/GHSA-7453-hxjf-jh4q.json +++ b/advisories/unreviewed/2022/04/GHSA-7453-hxjf-jh4q/GHSA-7453-hxjf-jh4q.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/04/GHSA-7649-w6j9-939x/GHSA-7649-w6j9-939x.json b/advisories/unreviewed/2022/04/GHSA-7649-w6j9-939x/GHSA-7649-w6j9-939x.json index b3a79c1a50d..a4111cc5a41 100644 --- a/advisories/unreviewed/2022/04/GHSA-7649-w6j9-939x/GHSA-7649-w6j9-939x.json +++ b/advisories/unreviewed/2022/04/GHSA-7649-w6j9-939x/GHSA-7649-w6j9-939x.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/04/GHSA-76wh-m9m5-cfxf/GHSA-76wh-m9m5-cfxf.json b/advisories/unreviewed/2022/04/GHSA-76wh-m9m5-cfxf/GHSA-76wh-m9m5-cfxf.json index 3e46ba7ce81..eb6ce6a2ef0 100644 --- a/advisories/unreviewed/2022/04/GHSA-76wh-m9m5-cfxf/GHSA-76wh-m9m5-cfxf.json +++ b/advisories/unreviewed/2022/04/GHSA-76wh-m9m5-cfxf/GHSA-76wh-m9m5-cfxf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-773f-9m23-p2hv/GHSA-773f-9m23-p2hv.json b/advisories/unreviewed/2022/04/GHSA-773f-9m23-p2hv/GHSA-773f-9m23-p2hv.json index 13bf579d4ad..5557a22f334 100644 --- a/advisories/unreviewed/2022/04/GHSA-773f-9m23-p2hv/GHSA-773f-9m23-p2hv.json +++ b/advisories/unreviewed/2022/04/GHSA-773f-9m23-p2hv/GHSA-773f-9m23-p2hv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-7fjc-f74g-xjg6/GHSA-7fjc-f74g-xjg6.json b/advisories/unreviewed/2022/04/GHSA-7fjc-f74g-xjg6/GHSA-7fjc-f74g-xjg6.json index 4dd0fd0a70d..88012acddf5 100644 --- a/advisories/unreviewed/2022/04/GHSA-7fjc-f74g-xjg6/GHSA-7fjc-f74g-xjg6.json +++ b/advisories/unreviewed/2022/04/GHSA-7fjc-f74g-xjg6/GHSA-7fjc-f74g-xjg6.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", @@ -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/04/GHSA-7g8m-mg7c-jw4j/GHSA-7g8m-mg7c-jw4j.json b/advisories/unreviewed/2022/04/GHSA-7g8m-mg7c-jw4j/GHSA-7g8m-mg7c-jw4j.json index f551eaa8131..c6414150c5c 100644 --- a/advisories/unreviewed/2022/04/GHSA-7g8m-mg7c-jw4j/GHSA-7g8m-mg7c-jw4j.json +++ b/advisories/unreviewed/2022/04/GHSA-7g8m-mg7c-jw4j/GHSA-7g8m-mg7c-jw4j.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/04/GHSA-7mgv-qhc8-mrrg/GHSA-7mgv-qhc8-mrrg.json b/advisories/unreviewed/2022/04/GHSA-7mgv-qhc8-mrrg/GHSA-7mgv-qhc8-mrrg.json index c6d9cce96df..163c980905d 100644 --- a/advisories/unreviewed/2022/04/GHSA-7mgv-qhc8-mrrg/GHSA-7mgv-qhc8-mrrg.json +++ b/advisories/unreviewed/2022/04/GHSA-7mgv-qhc8-mrrg/GHSA-7mgv-qhc8-mrrg.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-7pw7-jhx9-fchw/GHSA-7pw7-jhx9-fchw.json b/advisories/unreviewed/2022/04/GHSA-7pw7-jhx9-fchw/GHSA-7pw7-jhx9-fchw.json index 566d8988fb7..bd55bf4a3ce 100644 --- a/advisories/unreviewed/2022/04/GHSA-7pw7-jhx9-fchw/GHSA-7pw7-jhx9-fchw.json +++ b/advisories/unreviewed/2022/04/GHSA-7pw7-jhx9-fchw/GHSA-7pw7-jhx9-fchw.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/04/GHSA-7q5j-qgx2-v324/GHSA-7q5j-qgx2-v324.json b/advisories/unreviewed/2022/04/GHSA-7q5j-qgx2-v324/GHSA-7q5j-qgx2-v324.json index 35955b16ac1..55788ca109e 100644 --- a/advisories/unreviewed/2022/04/GHSA-7q5j-qgx2-v324/GHSA-7q5j-qgx2-v324.json +++ b/advisories/unreviewed/2022/04/GHSA-7q5j-qgx2-v324/GHSA-7q5j-qgx2-v324.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-7qp4-fj73-hm43/GHSA-7qp4-fj73-hm43.json b/advisories/unreviewed/2022/04/GHSA-7qp4-fj73-hm43/GHSA-7qp4-fj73-hm43.json index 7cc8f834007..2686be1ed9d 100644 --- a/advisories/unreviewed/2022/04/GHSA-7qp4-fj73-hm43/GHSA-7qp4-fj73-hm43.json +++ b/advisories/unreviewed/2022/04/GHSA-7qp4-fj73-hm43/GHSA-7qp4-fj73-hm43.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/04/GHSA-7rrv-p2mj-9f6p/GHSA-7rrv-p2mj-9f6p.json b/advisories/unreviewed/2022/04/GHSA-7rrv-p2mj-9f6p/GHSA-7rrv-p2mj-9f6p.json index 4755cbdc003..16d53a35389 100644 --- a/advisories/unreviewed/2022/04/GHSA-7rrv-p2mj-9f6p/GHSA-7rrv-p2mj-9f6p.json +++ b/advisories/unreviewed/2022/04/GHSA-7rrv-p2mj-9f6p/GHSA-7rrv-p2mj-9f6p.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-7v4m-qgj2-p3jc/GHSA-7v4m-qgj2-p3jc.json b/advisories/unreviewed/2022/04/GHSA-7v4m-qgj2-p3jc/GHSA-7v4m-qgj2-p3jc.json index 56ab923fbe6..3855f67df20 100644 --- a/advisories/unreviewed/2022/04/GHSA-7v4m-qgj2-p3jc/GHSA-7v4m-qgj2-p3jc.json +++ b/advisories/unreviewed/2022/04/GHSA-7v4m-qgj2-p3jc/GHSA-7v4m-qgj2-p3jc.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/04/GHSA-7xg4-44vr-vrjp/GHSA-7xg4-44vr-vrjp.json b/advisories/unreviewed/2022/04/GHSA-7xg4-44vr-vrjp/GHSA-7xg4-44vr-vrjp.json index 1cf201bda92..056c8347e5c 100644 --- a/advisories/unreviewed/2022/04/GHSA-7xg4-44vr-vrjp/GHSA-7xg4-44vr-vrjp.json +++ b/advisories/unreviewed/2022/04/GHSA-7xg4-44vr-vrjp/GHSA-7xg4-44vr-vrjp.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/04/GHSA-7xrh-w83g-7mfh/GHSA-7xrh-w83g-7mfh.json b/advisories/unreviewed/2022/04/GHSA-7xrh-w83g-7mfh/GHSA-7xrh-w83g-7mfh.json index 4d4da21054d..3b633127553 100644 --- a/advisories/unreviewed/2022/04/GHSA-7xrh-w83g-7mfh/GHSA-7xrh-w83g-7mfh.json +++ b/advisories/unreviewed/2022/04/GHSA-7xrh-w83g-7mfh/GHSA-7xrh-w83g-7mfh.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/04/GHSA-7xwr-jm8w-73r3/GHSA-7xwr-jm8w-73r3.json b/advisories/unreviewed/2022/04/GHSA-7xwr-jm8w-73r3/GHSA-7xwr-jm8w-73r3.json index 871e9b49bfe..5173e44afb3 100644 --- a/advisories/unreviewed/2022/04/GHSA-7xwr-jm8w-73r3/GHSA-7xwr-jm8w-73r3.json +++ b/advisories/unreviewed/2022/04/GHSA-7xwr-jm8w-73r3/GHSA-7xwr-jm8w-73r3.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/04/GHSA-85hj-p83w-mp25/GHSA-85hj-p83w-mp25.json b/advisories/unreviewed/2022/04/GHSA-85hj-p83w-mp25/GHSA-85hj-p83w-mp25.json index 4d938f47400..89d5ef4732d 100644 --- a/advisories/unreviewed/2022/04/GHSA-85hj-p83w-mp25/GHSA-85hj-p83w-mp25.json +++ b/advisories/unreviewed/2022/04/GHSA-85hj-p83w-mp25/GHSA-85hj-p83w-mp25.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/2022/04/GHSA-88v7-976w-9hc8/GHSA-88v7-976w-9hc8.json b/advisories/unreviewed/2022/04/GHSA-88v7-976w-9hc8/GHSA-88v7-976w-9hc8.json index 2c2b9441cce..1766495c775 100644 --- a/advisories/unreviewed/2022/04/GHSA-88v7-976w-9hc8/GHSA-88v7-976w-9hc8.json +++ b/advisories/unreviewed/2022/04/GHSA-88v7-976w-9hc8/GHSA-88v7-976w-9hc8.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/04/GHSA-89fc-cvxq-q6pv/GHSA-89fc-cvxq-q6pv.json b/advisories/unreviewed/2022/04/GHSA-89fc-cvxq-q6pv/GHSA-89fc-cvxq-q6pv.json index 5346165aea7..90801a525a1 100644 --- a/advisories/unreviewed/2022/04/GHSA-89fc-cvxq-q6pv/GHSA-89fc-cvxq-q6pv.json +++ b/advisories/unreviewed/2022/04/GHSA-89fc-cvxq-q6pv/GHSA-89fc-cvxq-q6pv.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/04/GHSA-8g37-3cvf-3jmh/GHSA-8g37-3cvf-3jmh.json b/advisories/unreviewed/2022/04/GHSA-8g37-3cvf-3jmh/GHSA-8g37-3cvf-3jmh.json index 7bfa49c2fab..b9c5da555e8 100644 --- a/advisories/unreviewed/2022/04/GHSA-8g37-3cvf-3jmh/GHSA-8g37-3cvf-3jmh.json +++ b/advisories/unreviewed/2022/04/GHSA-8g37-3cvf-3jmh/GHSA-8g37-3cvf-3jmh.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/04/GHSA-8g6m-m6xm-q2j7/GHSA-8g6m-m6xm-q2j7.json b/advisories/unreviewed/2022/04/GHSA-8g6m-m6xm-q2j7/GHSA-8g6m-m6xm-q2j7.json index 2a0f6bf482b..50363e37475 100644 --- a/advisories/unreviewed/2022/04/GHSA-8g6m-m6xm-q2j7/GHSA-8g6m-m6xm-q2j7.json +++ b/advisories/unreviewed/2022/04/GHSA-8g6m-m6xm-q2j7/GHSA-8g6m-m6xm-q2j7.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/04/GHSA-8mcg-c459-mxpg/GHSA-8mcg-c459-mxpg.json b/advisories/unreviewed/2022/04/GHSA-8mcg-c459-mxpg/GHSA-8mcg-c459-mxpg.json index 03a74e98692..7f9ef79332d 100644 --- a/advisories/unreviewed/2022/04/GHSA-8mcg-c459-mxpg/GHSA-8mcg-c459-mxpg.json +++ b/advisories/unreviewed/2022/04/GHSA-8mcg-c459-mxpg/GHSA-8mcg-c459-mxpg.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/04/GHSA-8vfh-w764-6gcq/GHSA-8vfh-w764-6gcq.json b/advisories/unreviewed/2022/04/GHSA-8vfh-w764-6gcq/GHSA-8vfh-w764-6gcq.json index fb0fdabe2a0..b547ea6f011 100644 --- a/advisories/unreviewed/2022/04/GHSA-8vfh-w764-6gcq/GHSA-8vfh-w764-6gcq.json +++ b/advisories/unreviewed/2022/04/GHSA-8vfh-w764-6gcq/GHSA-8vfh-w764-6gcq.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", @@ -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/04/GHSA-8vp4-x4mx-xq42/GHSA-8vp4-x4mx-xq42.json b/advisories/unreviewed/2022/04/GHSA-8vp4-x4mx-xq42/GHSA-8vp4-x4mx-xq42.json index 1f7768e88b9..f0e83d35c60 100644 --- a/advisories/unreviewed/2022/04/GHSA-8vp4-x4mx-xq42/GHSA-8vp4-x4mx-xq42.json +++ b/advisories/unreviewed/2022/04/GHSA-8vp4-x4mx-xq42/GHSA-8vp4-x4mx-xq42.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/04/GHSA-8w42-c82m-92px/GHSA-8w42-c82m-92px.json b/advisories/unreviewed/2022/04/GHSA-8w42-c82m-92px/GHSA-8w42-c82m-92px.json index 80836e74866..5ae4f5dcd5c 100644 --- a/advisories/unreviewed/2022/04/GHSA-8w42-c82m-92px/GHSA-8w42-c82m-92px.json +++ b/advisories/unreviewed/2022/04/GHSA-8w42-c82m-92px/GHSA-8w42-c82m-92px.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/04/GHSA-8w67-56w2-2gr6/GHSA-8w67-56w2-2gr6.json b/advisories/unreviewed/2022/04/GHSA-8w67-56w2-2gr6/GHSA-8w67-56w2-2gr6.json index fcce4b57838..aeddf743df4 100644 --- a/advisories/unreviewed/2022/04/GHSA-8w67-56w2-2gr6/GHSA-8w67-56w2-2gr6.json +++ b/advisories/unreviewed/2022/04/GHSA-8w67-56w2-2gr6/GHSA-8w67-56w2-2gr6.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/04/GHSA-8xwr-xmx7-9p56/GHSA-8xwr-xmx7-9p56.json b/advisories/unreviewed/2022/04/GHSA-8xwr-xmx7-9p56/GHSA-8xwr-xmx7-9p56.json index 25861c209df..75832277911 100644 --- a/advisories/unreviewed/2022/04/GHSA-8xwr-xmx7-9p56/GHSA-8xwr-xmx7-9p56.json +++ b/advisories/unreviewed/2022/04/GHSA-8xwr-xmx7-9p56/GHSA-8xwr-xmx7-9p56.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/04/GHSA-922p-95r7-82vf/GHSA-922p-95r7-82vf.json b/advisories/unreviewed/2022/04/GHSA-922p-95r7-82vf/GHSA-922p-95r7-82vf.json index b13b8f1a953..b3e80fc4541 100644 --- a/advisories/unreviewed/2022/04/GHSA-922p-95r7-82vf/GHSA-922p-95r7-82vf.json +++ b/advisories/unreviewed/2022/04/GHSA-922p-95r7-82vf/GHSA-922p-95r7-82vf.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", @@ -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/04/GHSA-9245-jr52-v2xm/GHSA-9245-jr52-v2xm.json b/advisories/unreviewed/2022/04/GHSA-9245-jr52-v2xm/GHSA-9245-jr52-v2xm.json index 3fc1b91e2fc..0a7365e2183 100644 --- a/advisories/unreviewed/2022/04/GHSA-9245-jr52-v2xm/GHSA-9245-jr52-v2xm.json +++ b/advisories/unreviewed/2022/04/GHSA-9245-jr52-v2xm/GHSA-9245-jr52-v2xm.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/04/GHSA-952h-ff56-x6g3/GHSA-952h-ff56-x6g3.json b/advisories/unreviewed/2022/04/GHSA-952h-ff56-x6g3/GHSA-952h-ff56-x6g3.json index 1c828e878d9..f75e67ce462 100644 --- a/advisories/unreviewed/2022/04/GHSA-952h-ff56-x6g3/GHSA-952h-ff56-x6g3.json +++ b/advisories/unreviewed/2022/04/GHSA-952h-ff56-x6g3/GHSA-952h-ff56-x6g3.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/04/GHSA-958g-mwrp-mxhr/GHSA-958g-mwrp-mxhr.json b/advisories/unreviewed/2022/04/GHSA-958g-mwrp-mxhr/GHSA-958g-mwrp-mxhr.json index 76fb0533b8e..949de79fb85 100644 --- a/advisories/unreviewed/2022/04/GHSA-958g-mwrp-mxhr/GHSA-958g-mwrp-mxhr.json +++ b/advisories/unreviewed/2022/04/GHSA-958g-mwrp-mxhr/GHSA-958g-mwrp-mxhr.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/04/GHSA-95jh-v98h-7gww/GHSA-95jh-v98h-7gww.json b/advisories/unreviewed/2022/04/GHSA-95jh-v98h-7gww/GHSA-95jh-v98h-7gww.json index 4a99f079be4..ca13018d763 100644 --- a/advisories/unreviewed/2022/04/GHSA-95jh-v98h-7gww/GHSA-95jh-v98h-7gww.json +++ b/advisories/unreviewed/2022/04/GHSA-95jh-v98h-7gww/GHSA-95jh-v98h-7gww.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/04/GHSA-97q6-8ff5-f4g2/GHSA-97q6-8ff5-f4g2.json b/advisories/unreviewed/2022/04/GHSA-97q6-8ff5-f4g2/GHSA-97q6-8ff5-f4g2.json index f9d49c77688..49360e452b7 100644 --- a/advisories/unreviewed/2022/04/GHSA-97q6-8ff5-f4g2/GHSA-97q6-8ff5-f4g2.json +++ b/advisories/unreviewed/2022/04/GHSA-97q6-8ff5-f4g2/GHSA-97q6-8ff5-f4g2.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-9fwv-mvpv-qrh4/GHSA-9fwv-mvpv-qrh4.json b/advisories/unreviewed/2022/04/GHSA-9fwv-mvpv-qrh4/GHSA-9fwv-mvpv-qrh4.json index 5d24c2aee32..3200af1a5f0 100644 --- a/advisories/unreviewed/2022/04/GHSA-9fwv-mvpv-qrh4/GHSA-9fwv-mvpv-qrh4.json +++ b/advisories/unreviewed/2022/04/GHSA-9fwv-mvpv-qrh4/GHSA-9fwv-mvpv-qrh4.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/04/GHSA-9ggj-qxwx-fj5p/GHSA-9ggj-qxwx-fj5p.json b/advisories/unreviewed/2022/04/GHSA-9ggj-qxwx-fj5p/GHSA-9ggj-qxwx-fj5p.json index ccb5510c140..3e589fb2084 100644 --- a/advisories/unreviewed/2022/04/GHSA-9ggj-qxwx-fj5p/GHSA-9ggj-qxwx-fj5p.json +++ b/advisories/unreviewed/2022/04/GHSA-9ggj-qxwx-fj5p/GHSA-9ggj-qxwx-fj5p.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/04/GHSA-9gjv-g62w-x39g/GHSA-9gjv-g62w-x39g.json b/advisories/unreviewed/2022/04/GHSA-9gjv-g62w-x39g/GHSA-9gjv-g62w-x39g.json index d3fb0f73ba7..09458c92c9d 100644 --- a/advisories/unreviewed/2022/04/GHSA-9gjv-g62w-x39g/GHSA-9gjv-g62w-x39g.json +++ b/advisories/unreviewed/2022/04/GHSA-9gjv-g62w-x39g/GHSA-9gjv-g62w-x39g.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-9gqp-98wr-5xw4/GHSA-9gqp-98wr-5xw4.json b/advisories/unreviewed/2022/04/GHSA-9gqp-98wr-5xw4/GHSA-9gqp-98wr-5xw4.json index 49eb044f44c..07899b59df9 100644 --- a/advisories/unreviewed/2022/04/GHSA-9gqp-98wr-5xw4/GHSA-9gqp-98wr-5xw4.json +++ b/advisories/unreviewed/2022/04/GHSA-9gqp-98wr-5xw4/GHSA-9gqp-98wr-5xw4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/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/04/GHSA-9hcx-gvx4-r4rp/GHSA-9hcx-gvx4-r4rp.json b/advisories/unreviewed/2022/04/GHSA-9hcx-gvx4-r4rp/GHSA-9hcx-gvx4-r4rp.json index 7f0c9e4699f..2f3cca1ba83 100644 --- a/advisories/unreviewed/2022/04/GHSA-9hcx-gvx4-r4rp/GHSA-9hcx-gvx4-r4rp.json +++ b/advisories/unreviewed/2022/04/GHSA-9hcx-gvx4-r4rp/GHSA-9hcx-gvx4-r4rp.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/04/GHSA-9m4h-w5f9-qjgv/GHSA-9m4h-w5f9-qjgv.json b/advisories/unreviewed/2022/04/GHSA-9m4h-w5f9-qjgv/GHSA-9m4h-w5f9-qjgv.json index ef4c24e248c..0cf31051c6a 100644 --- a/advisories/unreviewed/2022/04/GHSA-9m4h-w5f9-qjgv/GHSA-9m4h-w5f9-qjgv.json +++ b/advisories/unreviewed/2022/04/GHSA-9m4h-w5f9-qjgv/GHSA-9m4h-w5f9-qjgv.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", @@ -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/04/GHSA-9q6x-q4vg-q8rg/GHSA-9q6x-q4vg-q8rg.json b/advisories/unreviewed/2022/04/GHSA-9q6x-q4vg-q8rg/GHSA-9q6x-q4vg-q8rg.json index 8b9c1ae4d48..cf3933ae03d 100644 --- a/advisories/unreviewed/2022/04/GHSA-9q6x-q4vg-q8rg/GHSA-9q6x-q4vg-q8rg.json +++ b/advisories/unreviewed/2022/04/GHSA-9q6x-q4vg-q8rg/GHSA-9q6x-q4vg-q8rg.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-9rrh-86fv-rghc/GHSA-9rrh-86fv-rghc.json b/advisories/unreviewed/2022/04/GHSA-9rrh-86fv-rghc/GHSA-9rrh-86fv-rghc.json index 97e475f6b30..c73ec49fd32 100644 --- a/advisories/unreviewed/2022/04/GHSA-9rrh-86fv-rghc/GHSA-9rrh-86fv-rghc.json +++ b/advisories/unreviewed/2022/04/GHSA-9rrh-86fv-rghc/GHSA-9rrh-86fv-rghc.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/04/GHSA-9v79-hrc5-gvgm/GHSA-9v79-hrc5-gvgm.json b/advisories/unreviewed/2022/04/GHSA-9v79-hrc5-gvgm/GHSA-9v79-hrc5-gvgm.json index a0c70ee35e0..e9c12ae252d 100644 --- a/advisories/unreviewed/2022/04/GHSA-9v79-hrc5-gvgm/GHSA-9v79-hrc5-gvgm.json +++ b/advisories/unreviewed/2022/04/GHSA-9v79-hrc5-gvgm/GHSA-9v79-hrc5-gvgm.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/04/GHSA-9w74-wx8f-qmw3/GHSA-9w74-wx8f-qmw3.json b/advisories/unreviewed/2022/04/GHSA-9w74-wx8f-qmw3/GHSA-9w74-wx8f-qmw3.json index 7f89bb23033..7e30976f190 100644 --- a/advisories/unreviewed/2022/04/GHSA-9w74-wx8f-qmw3/GHSA-9w74-wx8f-qmw3.json +++ b/advisories/unreviewed/2022/04/GHSA-9w74-wx8f-qmw3/GHSA-9w74-wx8f-qmw3.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/04/GHSA-9ww9-3699-75hm/GHSA-9ww9-3699-75hm.json b/advisories/unreviewed/2022/04/GHSA-9ww9-3699-75hm/GHSA-9ww9-3699-75hm.json index 244b1180221..bb49e04dc07 100644 --- a/advisories/unreviewed/2022/04/GHSA-9ww9-3699-75hm/GHSA-9ww9-3699-75hm.json +++ b/advisories/unreviewed/2022/04/GHSA-9ww9-3699-75hm/GHSA-9ww9-3699-75hm.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/04/GHSA-9x3c-69rg-65p6/GHSA-9x3c-69rg-65p6.json b/advisories/unreviewed/2022/04/GHSA-9x3c-69rg-65p6/GHSA-9x3c-69rg-65p6.json index 9168fbb1465..3cf85e71b32 100644 --- a/advisories/unreviewed/2022/04/GHSA-9x3c-69rg-65p6/GHSA-9x3c-69rg-65p6.json +++ b/advisories/unreviewed/2022/04/GHSA-9x3c-69rg-65p6/GHSA-9x3c-69rg-65p6.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/04/GHSA-9xmc-7cw7-jxmj/GHSA-9xmc-7cw7-jxmj.json b/advisories/unreviewed/2022/04/GHSA-9xmc-7cw7-jxmj/GHSA-9xmc-7cw7-jxmj.json index 33b3f33c73a..467c0fa6727 100644 --- a/advisories/unreviewed/2022/04/GHSA-9xmc-7cw7-jxmj/GHSA-9xmc-7cw7-jxmj.json +++ b/advisories/unreviewed/2022/04/GHSA-9xmc-7cw7-jxmj/GHSA-9xmc-7cw7-jxmj.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/04/GHSA-9xqq-jmhr-7ggv/GHSA-9xqq-jmhr-7ggv.json b/advisories/unreviewed/2022/04/GHSA-9xqq-jmhr-7ggv/GHSA-9xqq-jmhr-7ggv.json index a1da6f7a28e..cde2afcd138 100644 --- a/advisories/unreviewed/2022/04/GHSA-9xqq-jmhr-7ggv/GHSA-9xqq-jmhr-7ggv.json +++ b/advisories/unreviewed/2022/04/GHSA-9xqq-jmhr-7ggv/GHSA-9xqq-jmhr-7ggv.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/04/GHSA-c22v-8j4p-f9qm/GHSA-c22v-8j4p-f9qm.json b/advisories/unreviewed/2022/04/GHSA-c22v-8j4p-f9qm/GHSA-c22v-8j4p-f9qm.json index 631990051dc..0b4877cbfb8 100644 --- a/advisories/unreviewed/2022/04/GHSA-c22v-8j4p-f9qm/GHSA-c22v-8j4p-f9qm.json +++ b/advisories/unreviewed/2022/04/GHSA-c22v-8j4p-f9qm/GHSA-c22v-8j4p-f9qm.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/04/GHSA-c2r8-h7hq-477v/GHSA-c2r8-h7hq-477v.json b/advisories/unreviewed/2022/04/GHSA-c2r8-h7hq-477v/GHSA-c2r8-h7hq-477v.json index bd1df37447f..7310892feaf 100644 --- a/advisories/unreviewed/2022/04/GHSA-c2r8-h7hq-477v/GHSA-c2r8-h7hq-477v.json +++ b/advisories/unreviewed/2022/04/GHSA-c2r8-h7hq-477v/GHSA-c2r8-h7hq-477v.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", @@ -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/04/GHSA-c4pw-3ff6-5jmm/GHSA-c4pw-3ff6-5jmm.json b/advisories/unreviewed/2022/04/GHSA-c4pw-3ff6-5jmm/GHSA-c4pw-3ff6-5jmm.json index 864a4e22650..d46ec3cb889 100644 --- a/advisories/unreviewed/2022/04/GHSA-c4pw-3ff6-5jmm/GHSA-c4pw-3ff6-5jmm.json +++ b/advisories/unreviewed/2022/04/GHSA-c4pw-3ff6-5jmm/GHSA-c4pw-3ff6-5jmm.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/2022/04/GHSA-c8cv-4m46-wr5q/GHSA-c8cv-4m46-wr5q.json b/advisories/unreviewed/2022/04/GHSA-c8cv-4m46-wr5q/GHSA-c8cv-4m46-wr5q.json index 7755c2a7087..e33ae654684 100644 --- a/advisories/unreviewed/2022/04/GHSA-c8cv-4m46-wr5q/GHSA-c8cv-4m46-wr5q.json +++ b/advisories/unreviewed/2022/04/GHSA-c8cv-4m46-wr5q/GHSA-c8cv-4m46-wr5q.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/04/GHSA-cc4w-27jc-g8pj/GHSA-cc4w-27jc-g8pj.json b/advisories/unreviewed/2022/04/GHSA-cc4w-27jc-g8pj/GHSA-cc4w-27jc-g8pj.json index 5bd828ca986..90b82cc48e5 100644 --- a/advisories/unreviewed/2022/04/GHSA-cc4w-27jc-g8pj/GHSA-cc4w-27jc-g8pj.json +++ b/advisories/unreviewed/2022/04/GHSA-cc4w-27jc-g8pj/GHSA-cc4w-27jc-g8pj.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/04/GHSA-ccjf-jgxm-47qc/GHSA-ccjf-jgxm-47qc.json b/advisories/unreviewed/2022/04/GHSA-ccjf-jgxm-47qc/GHSA-ccjf-jgxm-47qc.json index 652d57bec26..206413a0eeb 100644 --- a/advisories/unreviewed/2022/04/GHSA-ccjf-jgxm-47qc/GHSA-ccjf-jgxm-47qc.json +++ b/advisories/unreviewed/2022/04/GHSA-ccjf-jgxm-47qc/GHSA-ccjf-jgxm-47qc.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/04/GHSA-cf5v-p8qx-329f/GHSA-cf5v-p8qx-329f.json b/advisories/unreviewed/2022/04/GHSA-cf5v-p8qx-329f/GHSA-cf5v-p8qx-329f.json index 1e10358093b..82f91e7f047 100644 --- a/advisories/unreviewed/2022/04/GHSA-cf5v-p8qx-329f/GHSA-cf5v-p8qx-329f.json +++ b/advisories/unreviewed/2022/04/GHSA-cf5v-p8qx-329f/GHSA-cf5v-p8qx-329f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-cgv8-9r56-pqqh/GHSA-cgv8-9r56-pqqh.json b/advisories/unreviewed/2022/04/GHSA-cgv8-9r56-pqqh/GHSA-cgv8-9r56-pqqh.json index 9d3fce44782..3a5bbc3a292 100644 --- a/advisories/unreviewed/2022/04/GHSA-cgv8-9r56-pqqh/GHSA-cgv8-9r56-pqqh.json +++ b/advisories/unreviewed/2022/04/GHSA-cgv8-9r56-pqqh/GHSA-cgv8-9r56-pqqh.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-cgvr-f3h5-pq38/GHSA-cgvr-f3h5-pq38.json b/advisories/unreviewed/2022/04/GHSA-cgvr-f3h5-pq38/GHSA-cgvr-f3h5-pq38.json index a683e7b289a..cd2a6061672 100644 --- a/advisories/unreviewed/2022/04/GHSA-cgvr-f3h5-pq38/GHSA-cgvr-f3h5-pq38.json +++ b/advisories/unreviewed/2022/04/GHSA-cgvr-f3h5-pq38/GHSA-cgvr-f3h5-pq38.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/04/GHSA-chh8-mrq5-h9p6/GHSA-chh8-mrq5-h9p6.json b/advisories/unreviewed/2022/04/GHSA-chh8-mrq5-h9p6/GHSA-chh8-mrq5-h9p6.json index 1392a1884f6..93cbf7b8b05 100644 --- a/advisories/unreviewed/2022/04/GHSA-chh8-mrq5-h9p6/GHSA-chh8-mrq5-h9p6.json +++ b/advisories/unreviewed/2022/04/GHSA-chh8-mrq5-h9p6/GHSA-chh8-mrq5-h9p6.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-cm72-jqm4-jj9v/GHSA-cm72-jqm4-jj9v.json b/advisories/unreviewed/2022/04/GHSA-cm72-jqm4-jj9v/GHSA-cm72-jqm4-jj9v.json index 724d4c4b1fa..78de6d6d0bb 100644 --- a/advisories/unreviewed/2022/04/GHSA-cm72-jqm4-jj9v/GHSA-cm72-jqm4-jj9v.json +++ b/advisories/unreviewed/2022/04/GHSA-cm72-jqm4-jj9v/GHSA-cm72-jqm4-jj9v.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/04/GHSA-cm95-9q8x-72h6/GHSA-cm95-9q8x-72h6.json b/advisories/unreviewed/2022/04/GHSA-cm95-9q8x-72h6/GHSA-cm95-9q8x-72h6.json index ba2efca00c4..245a1622910 100644 --- a/advisories/unreviewed/2022/04/GHSA-cm95-9q8x-72h6/GHSA-cm95-9q8x-72h6.json +++ b/advisories/unreviewed/2022/04/GHSA-cm95-9q8x-72h6/GHSA-cm95-9q8x-72h6.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-cm9m-cxm8-jf6x/GHSA-cm9m-cxm8-jf6x.json b/advisories/unreviewed/2022/04/GHSA-cm9m-cxm8-jf6x/GHSA-cm9m-cxm8-jf6x.json index b033793ccad..5d3b59cedc0 100644 --- a/advisories/unreviewed/2022/04/GHSA-cm9m-cxm8-jf6x/GHSA-cm9m-cxm8-jf6x.json +++ b/advisories/unreviewed/2022/04/GHSA-cm9m-cxm8-jf6x/GHSA-cm9m-cxm8-jf6x.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/04/GHSA-cq9j-5j4q-jxhw/GHSA-cq9j-5j4q-jxhw.json b/advisories/unreviewed/2022/04/GHSA-cq9j-5j4q-jxhw/GHSA-cq9j-5j4q-jxhw.json index ae03e99aeb6..f58130fa76c 100644 --- a/advisories/unreviewed/2022/04/GHSA-cq9j-5j4q-jxhw/GHSA-cq9j-5j4q-jxhw.json +++ b/advisories/unreviewed/2022/04/GHSA-cq9j-5j4q-jxhw/GHSA-cq9j-5j4q-jxhw.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/04/GHSA-cqmc-2w22-q469/GHSA-cqmc-2w22-q469.json b/advisories/unreviewed/2022/04/GHSA-cqmc-2w22-q469/GHSA-cqmc-2w22-q469.json index 7e752b4784f..7eab8bdc54c 100644 --- a/advisories/unreviewed/2022/04/GHSA-cqmc-2w22-q469/GHSA-cqmc-2w22-q469.json +++ b/advisories/unreviewed/2022/04/GHSA-cqmc-2w22-q469/GHSA-cqmc-2w22-q469.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-crgq-qmwc-cc89/GHSA-crgq-qmwc-cc89.json b/advisories/unreviewed/2022/04/GHSA-crgq-qmwc-cc89/GHSA-crgq-qmwc-cc89.json index 7054611b8dc..db9d405827e 100644 --- a/advisories/unreviewed/2022/04/GHSA-crgq-qmwc-cc89/GHSA-crgq-qmwc-cc89.json +++ b/advisories/unreviewed/2022/04/GHSA-crgq-qmwc-cc89/GHSA-crgq-qmwc-cc89.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/04/GHSA-cwwx-6vwp-h7pf/GHSA-cwwx-6vwp-h7pf.json b/advisories/unreviewed/2022/04/GHSA-cwwx-6vwp-h7pf/GHSA-cwwx-6vwp-h7pf.json index e62ab2dc5be..d0038229648 100644 --- a/advisories/unreviewed/2022/04/GHSA-cwwx-6vwp-h7pf/GHSA-cwwx-6vwp-h7pf.json +++ b/advisories/unreviewed/2022/04/GHSA-cwwx-6vwp-h7pf/GHSA-cwwx-6vwp-h7pf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-cx43-qj46-j7wr/GHSA-cx43-qj46-j7wr.json b/advisories/unreviewed/2022/04/GHSA-cx43-qj46-j7wr/GHSA-cx43-qj46-j7wr.json index 3df0f37a725..fefecd3a77f 100644 --- a/advisories/unreviewed/2022/04/GHSA-cx43-qj46-j7wr/GHSA-cx43-qj46-j7wr.json +++ b/advisories/unreviewed/2022/04/GHSA-cx43-qj46-j7wr/GHSA-cx43-qj46-j7wr.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", diff --git a/advisories/unreviewed/2022/04/GHSA-cxgc-jm76-g3rq/GHSA-cxgc-jm76-g3rq.json b/advisories/unreviewed/2022/04/GHSA-cxgc-jm76-g3rq/GHSA-cxgc-jm76-g3rq.json index 2cfd6ea8477..30ccebef5f4 100644 --- a/advisories/unreviewed/2022/04/GHSA-cxgc-jm76-g3rq/GHSA-cxgc-jm76-g3rq.json +++ b/advisories/unreviewed/2022/04/GHSA-cxgc-jm76-g3rq/GHSA-cxgc-jm76-g3rq.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", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "CRITICAL", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/04/GHSA-f446-9vw9-w973/GHSA-f446-9vw9-w973.json b/advisories/unreviewed/2022/04/GHSA-f446-9vw9-w973/GHSA-f446-9vw9-w973.json index 02231823e8f..db7630ced4c 100644 --- a/advisories/unreviewed/2022/04/GHSA-f446-9vw9-w973/GHSA-f446-9vw9-w973.json +++ b/advisories/unreviewed/2022/04/GHSA-f446-9vw9-w973/GHSA-f446-9vw9-w973.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/04/GHSA-f6mj-535f-jh4w/GHSA-f6mj-535f-jh4w.json b/advisories/unreviewed/2022/04/GHSA-f6mj-535f-jh4w/GHSA-f6mj-535f-jh4w.json index f08dc27b993..32bb25b0d48 100644 --- a/advisories/unreviewed/2022/04/GHSA-f6mj-535f-jh4w/GHSA-f6mj-535f-jh4w.json +++ b/advisories/unreviewed/2022/04/GHSA-f6mj-535f-jh4w/GHSA-f6mj-535f-jh4w.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-f933-7c3x-46v4/GHSA-f933-7c3x-46v4.json b/advisories/unreviewed/2022/04/GHSA-f933-7c3x-46v4/GHSA-f933-7c3x-46v4.json index 7d753de4ac0..34cbfc62e08 100644 --- a/advisories/unreviewed/2022/04/GHSA-f933-7c3x-46v4/GHSA-f933-7c3x-46v4.json +++ b/advisories/unreviewed/2022/04/GHSA-f933-7c3x-46v4/GHSA-f933-7c3x-46v4.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/04/GHSA-fcp5-2wfm-xfhh/GHSA-fcp5-2wfm-xfhh.json b/advisories/unreviewed/2022/04/GHSA-fcp5-2wfm-xfhh/GHSA-fcp5-2wfm-xfhh.json index e33f81e90b5..cbae44f61f9 100644 --- a/advisories/unreviewed/2022/04/GHSA-fcp5-2wfm-xfhh/GHSA-fcp5-2wfm-xfhh.json +++ b/advisories/unreviewed/2022/04/GHSA-fcp5-2wfm-xfhh/GHSA-fcp5-2wfm-xfhh.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/04/GHSA-fg36-vr6c-c45r/GHSA-fg36-vr6c-c45r.json b/advisories/unreviewed/2022/04/GHSA-fg36-vr6c-c45r/GHSA-fg36-vr6c-c45r.json index fdbe098f8d8..b86707f3d1d 100644 --- a/advisories/unreviewed/2022/04/GHSA-fg36-vr6c-c45r/GHSA-fg36-vr6c-c45r.json +++ b/advisories/unreviewed/2022/04/GHSA-fg36-vr6c-c45r/GHSA-fg36-vr6c-c45r.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/04/GHSA-fh5m-rrfr-3j94/GHSA-fh5m-rrfr-3j94.json b/advisories/unreviewed/2022/04/GHSA-fh5m-rrfr-3j94/GHSA-fh5m-rrfr-3j94.json index b925e1ad37f..fe5fa574cd9 100644 --- a/advisories/unreviewed/2022/04/GHSA-fh5m-rrfr-3j94/GHSA-fh5m-rrfr-3j94.json +++ b/advisories/unreviewed/2022/04/GHSA-fh5m-rrfr-3j94/GHSA-fh5m-rrfr-3j94.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/04/GHSA-fhfm-h9c8-c9x7/GHSA-fhfm-h9c8-c9x7.json b/advisories/unreviewed/2022/04/GHSA-fhfm-h9c8-c9x7/GHSA-fhfm-h9c8-c9x7.json index 91a0d82baeb..e3f37e9cdf6 100644 --- a/advisories/unreviewed/2022/04/GHSA-fhfm-h9c8-c9x7/GHSA-fhfm-h9c8-c9x7.json +++ b/advisories/unreviewed/2022/04/GHSA-fhfm-h9c8-c9x7/GHSA-fhfm-h9c8-c9x7.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-fhh6-h3ph-38cw/GHSA-fhh6-h3ph-38cw.json b/advisories/unreviewed/2022/04/GHSA-fhh6-h3ph-38cw/GHSA-fhh6-h3ph-38cw.json index 96b339bc9a7..43ee94ffb04 100644 --- a/advisories/unreviewed/2022/04/GHSA-fhh6-h3ph-38cw/GHSA-fhh6-h3ph-38cw.json +++ b/advisories/unreviewed/2022/04/GHSA-fhh6-h3ph-38cw/GHSA-fhh6-h3ph-38cw.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/04/GHSA-fmpq-9gp5-89f5/GHSA-fmpq-9gp5-89f5.json b/advisories/unreviewed/2022/04/GHSA-fmpq-9gp5-89f5/GHSA-fmpq-9gp5-89f5.json index d9811a71ae8..467f1e8d5c0 100644 --- a/advisories/unreviewed/2022/04/GHSA-fmpq-9gp5-89f5/GHSA-fmpq-9gp5-89f5.json +++ b/advisories/unreviewed/2022/04/GHSA-fmpq-9gp5-89f5/GHSA-fmpq-9gp5-89f5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-fp3r-4j3m-54jg/GHSA-fp3r-4j3m-54jg.json b/advisories/unreviewed/2022/04/GHSA-fp3r-4j3m-54jg/GHSA-fp3r-4j3m-54jg.json index c798bb825a3..ec120e2dc92 100644 --- a/advisories/unreviewed/2022/04/GHSA-fp3r-4j3m-54jg/GHSA-fp3r-4j3m-54jg.json +++ b/advisories/unreviewed/2022/04/GHSA-fp3r-4j3m-54jg/GHSA-fp3r-4j3m-54jg.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-fqpv-6grr-r8m7/GHSA-fqpv-6grr-r8m7.json b/advisories/unreviewed/2022/04/GHSA-fqpv-6grr-r8m7/GHSA-fqpv-6grr-r8m7.json index 61e753a74e7..0b51c0423aa 100644 --- a/advisories/unreviewed/2022/04/GHSA-fqpv-6grr-r8m7/GHSA-fqpv-6grr-r8m7.json +++ b/advisories/unreviewed/2022/04/GHSA-fqpv-6grr-r8m7/GHSA-fqpv-6grr-r8m7.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/04/GHSA-fqw9-gq3m-ggrh/GHSA-fqw9-gq3m-ggrh.json b/advisories/unreviewed/2022/04/GHSA-fqw9-gq3m-ggrh/GHSA-fqw9-gq3m-ggrh.json index a5f268aefeb..b3ce5cf8f5e 100644 --- a/advisories/unreviewed/2022/04/GHSA-fqw9-gq3m-ggrh/GHSA-fqw9-gq3m-ggrh.json +++ b/advisories/unreviewed/2022/04/GHSA-fqw9-gq3m-ggrh/GHSA-fqw9-gq3m-ggrh.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/04/GHSA-fr4g-hmc7-w66h/GHSA-fr4g-hmc7-w66h.json b/advisories/unreviewed/2022/04/GHSA-fr4g-hmc7-w66h/GHSA-fr4g-hmc7-w66h.json index cdebd18a407..020801c8299 100644 --- a/advisories/unreviewed/2022/04/GHSA-fr4g-hmc7-w66h/GHSA-fr4g-hmc7-w66h.json +++ b/advisories/unreviewed/2022/04/GHSA-fr4g-hmc7-w66h/GHSA-fr4g-hmc7-w66h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/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/2022/04/GHSA-fx4p-5h4m-vvxr/GHSA-fx4p-5h4m-vvxr.json b/advisories/unreviewed/2022/04/GHSA-fx4p-5h4m-vvxr/GHSA-fx4p-5h4m-vvxr.json index 6c1911a5934..7f890bbbea4 100644 --- a/advisories/unreviewed/2022/04/GHSA-fx4p-5h4m-vvxr/GHSA-fx4p-5h4m-vvxr.json +++ b/advisories/unreviewed/2022/04/GHSA-fx4p-5h4m-vvxr/GHSA-fx4p-5h4m-vvxr.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-fxm9-49w7-pwfx/GHSA-fxm9-49w7-pwfx.json b/advisories/unreviewed/2022/04/GHSA-fxm9-49w7-pwfx/GHSA-fxm9-49w7-pwfx.json index 181ade839a3..3eec8227d90 100644 --- a/advisories/unreviewed/2022/04/GHSA-fxm9-49w7-pwfx/GHSA-fxm9-49w7-pwfx.json +++ b/advisories/unreviewed/2022/04/GHSA-fxm9-49w7-pwfx/GHSA-fxm9-49w7-pwfx.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/04/GHSA-g3w5-vwvh-wpww/GHSA-g3w5-vwvh-wpww.json b/advisories/unreviewed/2022/04/GHSA-g3w5-vwvh-wpww/GHSA-g3w5-vwvh-wpww.json index b9429c388b6..ee194db4378 100644 --- a/advisories/unreviewed/2022/04/GHSA-g3w5-vwvh-wpww/GHSA-g3w5-vwvh-wpww.json +++ b/advisories/unreviewed/2022/04/GHSA-g3w5-vwvh-wpww/GHSA-g3w5-vwvh-wpww.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/04/GHSA-g758-vqjh-f7pq/GHSA-g758-vqjh-f7pq.json b/advisories/unreviewed/2022/04/GHSA-g758-vqjh-f7pq/GHSA-g758-vqjh-f7pq.json index 1ad51cf7454..8d7ff36e62f 100644 --- a/advisories/unreviewed/2022/04/GHSA-g758-vqjh-f7pq/GHSA-g758-vqjh-f7pq.json +++ b/advisories/unreviewed/2022/04/GHSA-g758-vqjh-f7pq/GHSA-g758-vqjh-f7pq.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/04/GHSA-g76m-mhgj-xf94/GHSA-g76m-mhgj-xf94.json b/advisories/unreviewed/2022/04/GHSA-g76m-mhgj-xf94/GHSA-g76m-mhgj-xf94.json index 9ed07eea8fd..c28de391326 100644 --- a/advisories/unreviewed/2022/04/GHSA-g76m-mhgj-xf94/GHSA-g76m-mhgj-xf94.json +++ b/advisories/unreviewed/2022/04/GHSA-g76m-mhgj-xf94/GHSA-g76m-mhgj-xf94.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/04/GHSA-gf7w-pw5x-9jh7/GHSA-gf7w-pw5x-9jh7.json b/advisories/unreviewed/2022/04/GHSA-gf7w-pw5x-9jh7/GHSA-gf7w-pw5x-9jh7.json index b16c0cc1df3..101eff880aa 100644 --- a/advisories/unreviewed/2022/04/GHSA-gf7w-pw5x-9jh7/GHSA-gf7w-pw5x-9jh7.json +++ b/advisories/unreviewed/2022/04/GHSA-gf7w-pw5x-9jh7/GHSA-gf7w-pw5x-9jh7.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/04/GHSA-gprg-39c4-4p7r/GHSA-gprg-39c4-4p7r.json b/advisories/unreviewed/2022/04/GHSA-gprg-39c4-4p7r/GHSA-gprg-39c4-4p7r.json index 1e31e40ddd0..88844931d58 100644 --- a/advisories/unreviewed/2022/04/GHSA-gprg-39c4-4p7r/GHSA-gprg-39c4-4p7r.json +++ b/advisories/unreviewed/2022/04/GHSA-gprg-39c4-4p7r/GHSA-gprg-39c4-4p7r.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/04/GHSA-gqcj-xp3p-vqqj/GHSA-gqcj-xp3p-vqqj.json b/advisories/unreviewed/2022/04/GHSA-gqcj-xp3p-vqqj/GHSA-gqcj-xp3p-vqqj.json index ff8043853c8..f717c0e11fa 100644 --- a/advisories/unreviewed/2022/04/GHSA-gqcj-xp3p-vqqj/GHSA-gqcj-xp3p-vqqj.json +++ b/advisories/unreviewed/2022/04/GHSA-gqcj-xp3p-vqqj/GHSA-gqcj-xp3p-vqqj.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-gqq3-rphm-wjhv/GHSA-gqq3-rphm-wjhv.json b/advisories/unreviewed/2022/04/GHSA-gqq3-rphm-wjhv/GHSA-gqq3-rphm-wjhv.json index e1196a3fe3c..0b7c36bf40e 100644 --- a/advisories/unreviewed/2022/04/GHSA-gqq3-rphm-wjhv/GHSA-gqq3-rphm-wjhv.json +++ b/advisories/unreviewed/2022/04/GHSA-gqq3-rphm-wjhv/GHSA-gqq3-rphm-wjhv.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/04/GHSA-gx49-6279-2p55/GHSA-gx49-6279-2p55.json b/advisories/unreviewed/2022/04/GHSA-gx49-6279-2p55/GHSA-gx49-6279-2p55.json index 938e59727c0..20f7193aa2e 100644 --- a/advisories/unreviewed/2022/04/GHSA-gx49-6279-2p55/GHSA-gx49-6279-2p55.json +++ b/advisories/unreviewed/2022/04/GHSA-gx49-6279-2p55/GHSA-gx49-6279-2p55.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/04/GHSA-gxwh-3w8f-r6p5/GHSA-gxwh-3w8f-r6p5.json b/advisories/unreviewed/2022/04/GHSA-gxwh-3w8f-r6p5/GHSA-gxwh-3w8f-r6p5.json index 975943b6060..8e1c992809f 100644 --- a/advisories/unreviewed/2022/04/GHSA-gxwh-3w8f-r6p5/GHSA-gxwh-3w8f-r6p5.json +++ b/advisories/unreviewed/2022/04/GHSA-gxwh-3w8f-r6p5/GHSA-gxwh-3w8f-r6p5.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/04/GHSA-h35h-vw7m-8g5m/GHSA-h35h-vw7m-8g5m.json b/advisories/unreviewed/2022/04/GHSA-h35h-vw7m-8g5m/GHSA-h35h-vw7m-8g5m.json index 356c350eb92..92c21ccf744 100644 --- a/advisories/unreviewed/2022/04/GHSA-h35h-vw7m-8g5m/GHSA-h35h-vw7m-8g5m.json +++ b/advisories/unreviewed/2022/04/GHSA-h35h-vw7m-8g5m/GHSA-h35h-vw7m-8g5m.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/04/GHSA-h7f4-3733-vwrh/GHSA-h7f4-3733-vwrh.json b/advisories/unreviewed/2022/04/GHSA-h7f4-3733-vwrh/GHSA-h7f4-3733-vwrh.json index fc69da7335b..3a3d19229bf 100644 --- a/advisories/unreviewed/2022/04/GHSA-h7f4-3733-vwrh/GHSA-h7f4-3733-vwrh.json +++ b/advisories/unreviewed/2022/04/GHSA-h7f4-3733-vwrh/GHSA-h7f4-3733-vwrh.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/04/GHSA-h873-265q-38wj/GHSA-h873-265q-38wj.json b/advisories/unreviewed/2022/04/GHSA-h873-265q-38wj/GHSA-h873-265q-38wj.json index b938f41979a..5d5fffdf8bb 100644 --- a/advisories/unreviewed/2022/04/GHSA-h873-265q-38wj/GHSA-h873-265q-38wj.json +++ b/advisories/unreviewed/2022/04/GHSA-h873-265q-38wj/GHSA-h873-265q-38wj.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/04/GHSA-h8fg-8j3g-7p4x/GHSA-h8fg-8j3g-7p4x.json b/advisories/unreviewed/2022/04/GHSA-h8fg-8j3g-7p4x/GHSA-h8fg-8j3g-7p4x.json index 3d957e1071b..4b7668b9629 100644 --- a/advisories/unreviewed/2022/04/GHSA-h8fg-8j3g-7p4x/GHSA-h8fg-8j3g-7p4x.json +++ b/advisories/unreviewed/2022/04/GHSA-h8fg-8j3g-7p4x/GHSA-h8fg-8j3g-7p4x.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-h8pg-x732-6pfg/GHSA-h8pg-x732-6pfg.json b/advisories/unreviewed/2022/04/GHSA-h8pg-x732-6pfg/GHSA-h8pg-x732-6pfg.json index cc4bbd31f3a..1174e1b59d7 100644 --- a/advisories/unreviewed/2022/04/GHSA-h8pg-x732-6pfg/GHSA-h8pg-x732-6pfg.json +++ b/advisories/unreviewed/2022/04/GHSA-h8pg-x732-6pfg/GHSA-h8pg-x732-6pfg.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/04/GHSA-hc9q-fq5q-v8qh/GHSA-hc9q-fq5q-v8qh.json b/advisories/unreviewed/2022/04/GHSA-hc9q-fq5q-v8qh/GHSA-hc9q-fq5q-v8qh.json index e470eb0de7e..d9d0564350c 100644 --- a/advisories/unreviewed/2022/04/GHSA-hc9q-fq5q-v8qh/GHSA-hc9q-fq5q-v8qh.json +++ b/advisories/unreviewed/2022/04/GHSA-hc9q-fq5q-v8qh/GHSA-hc9q-fq5q-v8qh.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/04/GHSA-hj7f-7vcm-jv3j/GHSA-hj7f-7vcm-jv3j.json b/advisories/unreviewed/2022/04/GHSA-hj7f-7vcm-jv3j/GHSA-hj7f-7vcm-jv3j.json index 232d00416c7..0163bfd0390 100644 --- a/advisories/unreviewed/2022/04/GHSA-hj7f-7vcm-jv3j/GHSA-hj7f-7vcm-jv3j.json +++ b/advisories/unreviewed/2022/04/GHSA-hj7f-7vcm-jv3j/GHSA-hj7f-7vcm-jv3j.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/04/GHSA-hm34-cc7r-4p3x/GHSA-hm34-cc7r-4p3x.json b/advisories/unreviewed/2022/04/GHSA-hm34-cc7r-4p3x/GHSA-hm34-cc7r-4p3x.json index 7883b01ae70..839d0461b70 100644 --- a/advisories/unreviewed/2022/04/GHSA-hm34-cc7r-4p3x/GHSA-hm34-cc7r-4p3x.json +++ b/advisories/unreviewed/2022/04/GHSA-hm34-cc7r-4p3x/GHSA-hm34-cc7r-4p3x.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-hp54-qjw8-r2qr/GHSA-hp54-qjw8-r2qr.json b/advisories/unreviewed/2022/04/GHSA-hp54-qjw8-r2qr/GHSA-hp54-qjw8-r2qr.json index 3f7ec91f8ba..6a3f800ee47 100644 --- a/advisories/unreviewed/2022/04/GHSA-hp54-qjw8-r2qr/GHSA-hp54-qjw8-r2qr.json +++ b/advisories/unreviewed/2022/04/GHSA-hp54-qjw8-r2qr/GHSA-hp54-qjw8-r2qr.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/04/GHSA-hp7c-9qj5-xcrq/GHSA-hp7c-9qj5-xcrq.json b/advisories/unreviewed/2022/04/GHSA-hp7c-9qj5-xcrq/GHSA-hp7c-9qj5-xcrq.json index 1615e8d533c..b4fe4f4d1e6 100644 --- a/advisories/unreviewed/2022/04/GHSA-hp7c-9qj5-xcrq/GHSA-hp7c-9qj5-xcrq.json +++ b/advisories/unreviewed/2022/04/GHSA-hp7c-9qj5-xcrq/GHSA-hp7c-9qj5-xcrq.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/04/GHSA-hqcq-542g-382w/GHSA-hqcq-542g-382w.json b/advisories/unreviewed/2022/04/GHSA-hqcq-542g-382w/GHSA-hqcq-542g-382w.json index b9f01f4515c..37b7b8fd0b2 100644 --- a/advisories/unreviewed/2022/04/GHSA-hqcq-542g-382w/GHSA-hqcq-542g-382w.json +++ b/advisories/unreviewed/2022/04/GHSA-hqcq-542g-382w/GHSA-hqcq-542g-382w.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/04/GHSA-hqfj-x4qw-m2h8/GHSA-hqfj-x4qw-m2h8.json b/advisories/unreviewed/2022/04/GHSA-hqfj-x4qw-m2h8/GHSA-hqfj-x4qw-m2h8.json index cb4f2829626..5c6dfff330e 100644 --- a/advisories/unreviewed/2022/04/GHSA-hqfj-x4qw-m2h8/GHSA-hqfj-x4qw-m2h8.json +++ b/advisories/unreviewed/2022/04/GHSA-hqfj-x4qw-m2h8/GHSA-hqfj-x4qw-m2h8.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/04/GHSA-hqxw-pgjc-68m6/GHSA-hqxw-pgjc-68m6.json b/advisories/unreviewed/2022/04/GHSA-hqxw-pgjc-68m6/GHSA-hqxw-pgjc-68m6.json index 9602347d1f0..8174a3a34de 100644 --- a/advisories/unreviewed/2022/04/GHSA-hqxw-pgjc-68m6/GHSA-hqxw-pgjc-68m6.json +++ b/advisories/unreviewed/2022/04/GHSA-hqxw-pgjc-68m6/GHSA-hqxw-pgjc-68m6.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-hvcp-95wm-wv8g/GHSA-hvcp-95wm-wv8g.json b/advisories/unreviewed/2022/04/GHSA-hvcp-95wm-wv8g/GHSA-hvcp-95wm-wv8g.json index 9c4d26e7a48..18ad1fd7d08 100644 --- a/advisories/unreviewed/2022/04/GHSA-hvcp-95wm-wv8g/GHSA-hvcp-95wm-wv8g.json +++ b/advisories/unreviewed/2022/04/GHSA-hvcp-95wm-wv8g/GHSA-hvcp-95wm-wv8g.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/04/GHSA-hvpg-4ggr-r7m3/GHSA-hvpg-4ggr-r7m3.json b/advisories/unreviewed/2022/04/GHSA-hvpg-4ggr-r7m3/GHSA-hvpg-4ggr-r7m3.json index dcbc86564c3..2ecba2784e6 100644 --- a/advisories/unreviewed/2022/04/GHSA-hvpg-4ggr-r7m3/GHSA-hvpg-4ggr-r7m3.json +++ b/advisories/unreviewed/2022/04/GHSA-hvpg-4ggr-r7m3/GHSA-hvpg-4ggr-r7m3.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/04/GHSA-hw6v-rjm4-5m34/GHSA-hw6v-rjm4-5m34.json b/advisories/unreviewed/2022/04/GHSA-hw6v-rjm4-5m34/GHSA-hw6v-rjm4-5m34.json index 8f9d4cc7ee0..1904df0f38c 100644 --- a/advisories/unreviewed/2022/04/GHSA-hw6v-rjm4-5m34/GHSA-hw6v-rjm4-5m34.json +++ b/advisories/unreviewed/2022/04/GHSA-hw6v-rjm4-5m34/GHSA-hw6v-rjm4-5m34.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", @@ -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/04/GHSA-hwj9-m84w-q8mw/GHSA-hwj9-m84w-q8mw.json b/advisories/unreviewed/2022/04/GHSA-hwj9-m84w-q8mw/GHSA-hwj9-m84w-q8mw.json index b9aba793ff9..b814333064c 100644 --- a/advisories/unreviewed/2022/04/GHSA-hwj9-m84w-q8mw/GHSA-hwj9-m84w-q8mw.json +++ b/advisories/unreviewed/2022/04/GHSA-hwj9-m84w-q8mw/GHSA-hwj9-m84w-q8mw.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-hx46-gcq8-4c72/GHSA-hx46-gcq8-4c72.json b/advisories/unreviewed/2022/04/GHSA-hx46-gcq8-4c72/GHSA-hx46-gcq8-4c72.json index ee77a7e8ac6..e0033e63f80 100644 --- a/advisories/unreviewed/2022/04/GHSA-hx46-gcq8-4c72/GHSA-hx46-gcq8-4c72.json +++ b/advisories/unreviewed/2022/04/GHSA-hx46-gcq8-4c72/GHSA-hx46-gcq8-4c72.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/04/GHSA-j2pm-2c5g-ch2x/GHSA-j2pm-2c5g-ch2x.json b/advisories/unreviewed/2022/04/GHSA-j2pm-2c5g-ch2x/GHSA-j2pm-2c5g-ch2x.json index a25eef79858..0f4f9b5723a 100644 --- a/advisories/unreviewed/2022/04/GHSA-j2pm-2c5g-ch2x/GHSA-j2pm-2c5g-ch2x.json +++ b/advisories/unreviewed/2022/04/GHSA-j2pm-2c5g-ch2x/GHSA-j2pm-2c5g-ch2x.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/2022/04/GHSA-j2pq-xrmc-f4r4/GHSA-j2pq-xrmc-f4r4.json b/advisories/unreviewed/2022/04/GHSA-j2pq-xrmc-f4r4/GHSA-j2pq-xrmc-f4r4.json index 86400461edd..eb5fea9b018 100644 --- a/advisories/unreviewed/2022/04/GHSA-j2pq-xrmc-f4r4/GHSA-j2pq-xrmc-f4r4.json +++ b/advisories/unreviewed/2022/04/GHSA-j2pq-xrmc-f4r4/GHSA-j2pq-xrmc-f4r4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/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-j638-92vp-3cfh/GHSA-j638-92vp-3cfh.json b/advisories/unreviewed/2022/04/GHSA-j638-92vp-3cfh/GHSA-j638-92vp-3cfh.json index da773879148..b6a1d2366b7 100644 --- a/advisories/unreviewed/2022/04/GHSA-j638-92vp-3cfh/GHSA-j638-92vp-3cfh.json +++ b/advisories/unreviewed/2022/04/GHSA-j638-92vp-3cfh/GHSA-j638-92vp-3cfh.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/04/GHSA-j8gf-f8mr-xr7w/GHSA-j8gf-f8mr-xr7w.json b/advisories/unreviewed/2022/04/GHSA-j8gf-f8mr-xr7w/GHSA-j8gf-f8mr-xr7w.json index 2bd4e6db99f..6bbf9dafd85 100644 --- a/advisories/unreviewed/2022/04/GHSA-j8gf-f8mr-xr7w/GHSA-j8gf-f8mr-xr7w.json +++ b/advisories/unreviewed/2022/04/GHSA-j8gf-f8mr-xr7w/GHSA-j8gf-f8mr-xr7w.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/04/GHSA-jcwx-x779-8343/GHSA-jcwx-x779-8343.json b/advisories/unreviewed/2022/04/GHSA-jcwx-x779-8343/GHSA-jcwx-x779-8343.json index d87548db7e8..20180402f3c 100644 --- a/advisories/unreviewed/2022/04/GHSA-jcwx-x779-8343/GHSA-jcwx-x779-8343.json +++ b/advisories/unreviewed/2022/04/GHSA-jcwx-x779-8343/GHSA-jcwx-x779-8343.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/04/GHSA-jg9w-wm2g-x7h3/GHSA-jg9w-wm2g-x7h3.json b/advisories/unreviewed/2022/04/GHSA-jg9w-wm2g-x7h3/GHSA-jg9w-wm2g-x7h3.json index dd492870a0c..dc5f4f9cadb 100644 --- a/advisories/unreviewed/2022/04/GHSA-jg9w-wm2g-x7h3/GHSA-jg9w-wm2g-x7h3.json +++ b/advisories/unreviewed/2022/04/GHSA-jg9w-wm2g-x7h3/GHSA-jg9w-wm2g-x7h3.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/04/GHSA-jj78-c9rj-89f4/GHSA-jj78-c9rj-89f4.json b/advisories/unreviewed/2022/04/GHSA-jj78-c9rj-89f4/GHSA-jj78-c9rj-89f4.json index bddab39d5c1..8d14d08d647 100644 --- a/advisories/unreviewed/2022/04/GHSA-jj78-c9rj-89f4/GHSA-jj78-c9rj-89f4.json +++ b/advisories/unreviewed/2022/04/GHSA-jj78-c9rj-89f4/GHSA-jj78-c9rj-89f4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-jmjp-h79x-9f5r/GHSA-jmjp-h79x-9f5r.json b/advisories/unreviewed/2022/04/GHSA-jmjp-h79x-9f5r/GHSA-jmjp-h79x-9f5r.json index ad39ad627f8..3cf769be73d 100644 --- a/advisories/unreviewed/2022/04/GHSA-jmjp-h79x-9f5r/GHSA-jmjp-h79x-9f5r.json +++ b/advisories/unreviewed/2022/04/GHSA-jmjp-h79x-9f5r/GHSA-jmjp-h79x-9f5r.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/04/GHSA-jq3r-gcmg-8jv3/GHSA-jq3r-gcmg-8jv3.json b/advisories/unreviewed/2022/04/GHSA-jq3r-gcmg-8jv3/GHSA-jq3r-gcmg-8jv3.json index 041dafc66c6..c47467f1798 100644 --- a/advisories/unreviewed/2022/04/GHSA-jq3r-gcmg-8jv3/GHSA-jq3r-gcmg-8jv3.json +++ b/advisories/unreviewed/2022/04/GHSA-jq3r-gcmg-8jv3/GHSA-jq3r-gcmg-8jv3.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", @@ -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/04/GHSA-jwqr-7c83-vxpx/GHSA-jwqr-7c83-vxpx.json b/advisories/unreviewed/2022/04/GHSA-jwqr-7c83-vxpx/GHSA-jwqr-7c83-vxpx.json index 126b733505b..d47fa6f6313 100644 --- a/advisories/unreviewed/2022/04/GHSA-jwqr-7c83-vxpx/GHSA-jwqr-7c83-vxpx.json +++ b/advisories/unreviewed/2022/04/GHSA-jwqr-7c83-vxpx/GHSA-jwqr-7c83-vxpx.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", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "CRITICAL", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/04/GHSA-jxwm-2fgw-85f5/GHSA-jxwm-2fgw-85f5.json b/advisories/unreviewed/2022/04/GHSA-jxwm-2fgw-85f5/GHSA-jxwm-2fgw-85f5.json index 67e367d6650..4ae0afdb998 100644 --- a/advisories/unreviewed/2022/04/GHSA-jxwm-2fgw-85f5/GHSA-jxwm-2fgw-85f5.json +++ b/advisories/unreviewed/2022/04/GHSA-jxwm-2fgw-85f5/GHSA-jxwm-2fgw-85f5.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/04/GHSA-m3jp-v66f-7qcp/GHSA-m3jp-v66f-7qcp.json b/advisories/unreviewed/2022/04/GHSA-m3jp-v66f-7qcp/GHSA-m3jp-v66f-7qcp.json index 846ce30f369..9a3c2376ffc 100644 --- a/advisories/unreviewed/2022/04/GHSA-m3jp-v66f-7qcp/GHSA-m3jp-v66f-7qcp.json +++ b/advisories/unreviewed/2022/04/GHSA-m3jp-v66f-7qcp/GHSA-m3jp-v66f-7qcp.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/04/GHSA-m5hv-c47v-gqh5/GHSA-m5hv-c47v-gqh5.json b/advisories/unreviewed/2022/04/GHSA-m5hv-c47v-gqh5/GHSA-m5hv-c47v-gqh5.json index c2959c2e2d1..8e324d87c61 100644 --- a/advisories/unreviewed/2022/04/GHSA-m5hv-c47v-gqh5/GHSA-m5hv-c47v-gqh5.json +++ b/advisories/unreviewed/2022/04/GHSA-m5hv-c47v-gqh5/GHSA-m5hv-c47v-gqh5.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/04/GHSA-m6g3-mrp2-c625/GHSA-m6g3-mrp2-c625.json b/advisories/unreviewed/2022/04/GHSA-m6g3-mrp2-c625/GHSA-m6g3-mrp2-c625.json index 9585c405952..7e879486f6a 100644 --- a/advisories/unreviewed/2022/04/GHSA-m6g3-mrp2-c625/GHSA-m6g3-mrp2-c625.json +++ b/advisories/unreviewed/2022/04/GHSA-m6g3-mrp2-c625/GHSA-m6g3-mrp2-c625.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-mf37-5pqc-748x/GHSA-mf37-5pqc-748x.json b/advisories/unreviewed/2022/04/GHSA-mf37-5pqc-748x/GHSA-mf37-5pqc-748x.json index 27bc647c324..490495df3cd 100644 --- a/advisories/unreviewed/2022/04/GHSA-mf37-5pqc-748x/GHSA-mf37-5pqc-748x.json +++ b/advisories/unreviewed/2022/04/GHSA-mf37-5pqc-748x/GHSA-mf37-5pqc-748x.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/04/GHSA-mfg3-v4jc-xjmm/GHSA-mfg3-v4jc-xjmm.json b/advisories/unreviewed/2022/04/GHSA-mfg3-v4jc-xjmm/GHSA-mfg3-v4jc-xjmm.json index d9f5b42ab41..c3c1e1870be 100644 --- a/advisories/unreviewed/2022/04/GHSA-mfg3-v4jc-xjmm/GHSA-mfg3-v4jc-xjmm.json +++ b/advisories/unreviewed/2022/04/GHSA-mfg3-v4jc-xjmm/GHSA-mfg3-v4jc-xjmm.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-mjr9-7xpx-33j5/GHSA-mjr9-7xpx-33j5.json b/advisories/unreviewed/2022/04/GHSA-mjr9-7xpx-33j5/GHSA-mjr9-7xpx-33j5.json index e7a99ee0406..e5afe89d158 100644 --- a/advisories/unreviewed/2022/04/GHSA-mjr9-7xpx-33j5/GHSA-mjr9-7xpx-33j5.json +++ b/advisories/unreviewed/2022/04/GHSA-mjr9-7xpx-33j5/GHSA-mjr9-7xpx-33j5.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/04/GHSA-mp8j-c5mr-gfx2/GHSA-mp8j-c5mr-gfx2.json b/advisories/unreviewed/2022/04/GHSA-mp8j-c5mr-gfx2/GHSA-mp8j-c5mr-gfx2.json index da5e0e84cea..860164ebdc2 100644 --- a/advisories/unreviewed/2022/04/GHSA-mp8j-c5mr-gfx2/GHSA-mp8j-c5mr-gfx2.json +++ b/advisories/unreviewed/2022/04/GHSA-mp8j-c5mr-gfx2/GHSA-mp8j-c5mr-gfx2.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/04/GHSA-mqhm-fmww-5746/GHSA-mqhm-fmww-5746.json b/advisories/unreviewed/2022/04/GHSA-mqhm-fmww-5746/GHSA-mqhm-fmww-5746.json index 761b1642992..9f2bf59c165 100644 --- a/advisories/unreviewed/2022/04/GHSA-mqhm-fmww-5746/GHSA-mqhm-fmww-5746.json +++ b/advisories/unreviewed/2022/04/GHSA-mqhm-fmww-5746/GHSA-mqhm-fmww-5746.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", @@ -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/04/GHSA-mxf4-gxw9-74f4/GHSA-mxf4-gxw9-74f4.json b/advisories/unreviewed/2022/04/GHSA-mxf4-gxw9-74f4/GHSA-mxf4-gxw9-74f4.json index 612356dd47b..ec268fac8a8 100644 --- a/advisories/unreviewed/2022/04/GHSA-mxf4-gxw9-74f4/GHSA-mxf4-gxw9-74f4.json +++ b/advisories/unreviewed/2022/04/GHSA-mxf4-gxw9-74f4/GHSA-mxf4-gxw9-74f4.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/04/GHSA-mxxm-grww-gxgp/GHSA-mxxm-grww-gxgp.json b/advisories/unreviewed/2022/04/GHSA-mxxm-grww-gxgp/GHSA-mxxm-grww-gxgp.json index ffee6e1c0bd..8dbe406d8f2 100644 --- a/advisories/unreviewed/2022/04/GHSA-mxxm-grww-gxgp/GHSA-mxxm-grww-gxgp.json +++ b/advisories/unreviewed/2022/04/GHSA-mxxm-grww-gxgp/GHSA-mxxm-grww-gxgp.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/04/GHSA-p2f8-j92v-35p7/GHSA-p2f8-j92v-35p7.json b/advisories/unreviewed/2022/04/GHSA-p2f8-j92v-35p7/GHSA-p2f8-j92v-35p7.json index 6819179e2e6..8be8f6c7b6d 100644 --- a/advisories/unreviewed/2022/04/GHSA-p2f8-j92v-35p7/GHSA-p2f8-j92v-35p7.json +++ b/advisories/unreviewed/2022/04/GHSA-p2f8-j92v-35p7/GHSA-p2f8-j92v-35p7.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/04/GHSA-p34c-q2vq-qvvv/GHSA-p34c-q2vq-qvvv.json b/advisories/unreviewed/2022/04/GHSA-p34c-q2vq-qvvv/GHSA-p34c-q2vq-qvvv.json index 4b774a89638..3362684aec4 100644 --- a/advisories/unreviewed/2022/04/GHSA-p34c-q2vq-qvvv/GHSA-p34c-q2vq-qvvv.json +++ b/advisories/unreviewed/2022/04/GHSA-p34c-q2vq-qvvv/GHSA-p34c-q2vq-qvvv.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/04/GHSA-p3fq-pfcv-6ghv/GHSA-p3fq-pfcv-6ghv.json b/advisories/unreviewed/2022/04/GHSA-p3fq-pfcv-6ghv/GHSA-p3fq-pfcv-6ghv.json index e2ed997fa35..41b8591e7fe 100644 --- a/advisories/unreviewed/2022/04/GHSA-p3fq-pfcv-6ghv/GHSA-p3fq-pfcv-6ghv.json +++ b/advisories/unreviewed/2022/04/GHSA-p3fq-pfcv-6ghv/GHSA-p3fq-pfcv-6ghv.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-p3jw-7f7j-xp7w/GHSA-p3jw-7f7j-xp7w.json b/advisories/unreviewed/2022/04/GHSA-p3jw-7f7j-xp7w/GHSA-p3jw-7f7j-xp7w.json index a1ce45652db..e0c8d9405c3 100644 --- a/advisories/unreviewed/2022/04/GHSA-p3jw-7f7j-xp7w/GHSA-p3jw-7f7j-xp7w.json +++ b/advisories/unreviewed/2022/04/GHSA-p3jw-7f7j-xp7w/GHSA-p3jw-7f7j-xp7w.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/04/GHSA-p4pm-f55x-p72x/GHSA-p4pm-f55x-p72x.json b/advisories/unreviewed/2022/04/GHSA-p4pm-f55x-p72x/GHSA-p4pm-f55x-p72x.json index acbbca3d189..2c1edfabc7d 100644 --- a/advisories/unreviewed/2022/04/GHSA-p4pm-f55x-p72x/GHSA-p4pm-f55x-p72x.json +++ b/advisories/unreviewed/2022/04/GHSA-p4pm-f55x-p72x/GHSA-p4pm-f55x-p72x.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/04/GHSA-p59x-65gx-jx5x/GHSA-p59x-65gx-jx5x.json b/advisories/unreviewed/2022/04/GHSA-p59x-65gx-jx5x/GHSA-p59x-65gx-jx5x.json index 13c3b900936..ebcecbae334 100644 --- a/advisories/unreviewed/2022/04/GHSA-p59x-65gx-jx5x/GHSA-p59x-65gx-jx5x.json +++ b/advisories/unreviewed/2022/04/GHSA-p59x-65gx-jx5x/GHSA-p59x-65gx-jx5x.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/04/GHSA-p5fw-vpw3-w4rx/GHSA-p5fw-vpw3-w4rx.json b/advisories/unreviewed/2022/04/GHSA-p5fw-vpw3-w4rx/GHSA-p5fw-vpw3-w4rx.json index c0b8a4442be..1350e30db54 100644 --- a/advisories/unreviewed/2022/04/GHSA-p5fw-vpw3-w4rx/GHSA-p5fw-vpw3-w4rx.json +++ b/advisories/unreviewed/2022/04/GHSA-p5fw-vpw3-w4rx/GHSA-p5fw-vpw3-w4rx.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", @@ -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/04/GHSA-pf39-475g-67qc/GHSA-pf39-475g-67qc.json b/advisories/unreviewed/2022/04/GHSA-pf39-475g-67qc/GHSA-pf39-475g-67qc.json index 74aa3eebb85..0ec6888b868 100644 --- a/advisories/unreviewed/2022/04/GHSA-pf39-475g-67qc/GHSA-pf39-475g-67qc.json +++ b/advisories/unreviewed/2022/04/GHSA-pf39-475g-67qc/GHSA-pf39-475g-67qc.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/04/GHSA-pjv9-rw8r-7262/GHSA-pjv9-rw8r-7262.json b/advisories/unreviewed/2022/04/GHSA-pjv9-rw8r-7262/GHSA-pjv9-rw8r-7262.json index 640cf39f006..4f2bb85ebd9 100644 --- a/advisories/unreviewed/2022/04/GHSA-pjv9-rw8r-7262/GHSA-pjv9-rw8r-7262.json +++ b/advisories/unreviewed/2022/04/GHSA-pjv9-rw8r-7262/GHSA-pjv9-rw8r-7262.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/04/GHSA-pm2f-322j-vg72/GHSA-pm2f-322j-vg72.json b/advisories/unreviewed/2022/04/GHSA-pm2f-322j-vg72/GHSA-pm2f-322j-vg72.json index 248904d928c..a7d8e3d25c6 100644 --- a/advisories/unreviewed/2022/04/GHSA-pm2f-322j-vg72/GHSA-pm2f-322j-vg72.json +++ b/advisories/unreviewed/2022/04/GHSA-pm2f-322j-vg72/GHSA-pm2f-322j-vg72.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/04/GHSA-pmqg-x896-75hw/GHSA-pmqg-x896-75hw.json b/advisories/unreviewed/2022/04/GHSA-pmqg-x896-75hw/GHSA-pmqg-x896-75hw.json index f86e5b0f3f9..477d477a59f 100644 --- a/advisories/unreviewed/2022/04/GHSA-pmqg-x896-75hw/GHSA-pmqg-x896-75hw.json +++ b/advisories/unreviewed/2022/04/GHSA-pmqg-x896-75hw/GHSA-pmqg-x896-75hw.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/04/GHSA-ppx8-ggp8-43v8/GHSA-ppx8-ggp8-43v8.json b/advisories/unreviewed/2022/04/GHSA-ppx8-ggp8-43v8/GHSA-ppx8-ggp8-43v8.json index 9d09c43ecbb..f3bdc383c95 100644 --- a/advisories/unreviewed/2022/04/GHSA-ppx8-ggp8-43v8/GHSA-ppx8-ggp8-43v8.json +++ b/advisories/unreviewed/2022/04/GHSA-ppx8-ggp8-43v8/GHSA-ppx8-ggp8-43v8.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/04/GHSA-prcc-4qf3-mc5c/GHSA-prcc-4qf3-mc5c.json b/advisories/unreviewed/2022/04/GHSA-prcc-4qf3-mc5c/GHSA-prcc-4qf3-mc5c.json index 925844aadf0..7f1819f4f18 100644 --- a/advisories/unreviewed/2022/04/GHSA-prcc-4qf3-mc5c/GHSA-prcc-4qf3-mc5c.json +++ b/advisories/unreviewed/2022/04/GHSA-prcc-4qf3-mc5c/GHSA-prcc-4qf3-mc5c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/04/GHSA-prm2-47w6-22x5/GHSA-prm2-47w6-22x5.json b/advisories/unreviewed/2022/04/GHSA-prm2-47w6-22x5/GHSA-prm2-47w6-22x5.json index f6c32f0cf74..97d233ab118 100644 --- a/advisories/unreviewed/2022/04/GHSA-prm2-47w6-22x5/GHSA-prm2-47w6-22x5.json +++ b/advisories/unreviewed/2022/04/GHSA-prm2-47w6-22x5/GHSA-prm2-47w6-22x5.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/04/GHSA-px83-mv29-qm8q/GHSA-px83-mv29-qm8q.json b/advisories/unreviewed/2022/04/GHSA-px83-mv29-qm8q/GHSA-px83-mv29-qm8q.json index f4a436b5d2f..225afa2ef6c 100644 --- a/advisories/unreviewed/2022/04/GHSA-px83-mv29-qm8q/GHSA-px83-mv29-qm8q.json +++ b/advisories/unreviewed/2022/04/GHSA-px83-mv29-qm8q/GHSA-px83-mv29-qm8q.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/04/GHSA-q242-rh63-p6m2/GHSA-q242-rh63-p6m2.json b/advisories/unreviewed/2022/04/GHSA-q242-rh63-p6m2/GHSA-q242-rh63-p6m2.json index 87022599228..7d1da0e94e6 100644 --- a/advisories/unreviewed/2022/04/GHSA-q242-rh63-p6m2/GHSA-q242-rh63-p6m2.json +++ b/advisories/unreviewed/2022/04/GHSA-q242-rh63-p6m2/GHSA-q242-rh63-p6m2.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-q29p-v757-7hr4/GHSA-q29p-v757-7hr4.json b/advisories/unreviewed/2022/04/GHSA-q29p-v757-7hr4/GHSA-q29p-v757-7hr4.json index fd59a22f6ff..9ace33968f1 100644 --- a/advisories/unreviewed/2022/04/GHSA-q29p-v757-7hr4/GHSA-q29p-v757-7hr4.json +++ b/advisories/unreviewed/2022/04/GHSA-q29p-v757-7hr4/GHSA-q29p-v757-7hr4.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/04/GHSA-q2c9-5675-hvxj/GHSA-q2c9-5675-hvxj.json b/advisories/unreviewed/2022/04/GHSA-q2c9-5675-hvxj/GHSA-q2c9-5675-hvxj.json index 1b64577b087..2b64d78d7f6 100644 --- a/advisories/unreviewed/2022/04/GHSA-q2c9-5675-hvxj/GHSA-q2c9-5675-hvxj.json +++ b/advisories/unreviewed/2022/04/GHSA-q2c9-5675-hvxj/GHSA-q2c9-5675-hvxj.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/04/GHSA-q437-w69m-98g7/GHSA-q437-w69m-98g7.json b/advisories/unreviewed/2022/04/GHSA-q437-w69m-98g7/GHSA-q437-w69m-98g7.json index 8a26996a630..db537d36211 100644 --- a/advisories/unreviewed/2022/04/GHSA-q437-w69m-98g7/GHSA-q437-w69m-98g7.json +++ b/advisories/unreviewed/2022/04/GHSA-q437-w69m-98g7/GHSA-q437-w69m-98g7.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-q5qq-pfcr-g336/GHSA-q5qq-pfcr-g336.json b/advisories/unreviewed/2022/04/GHSA-q5qq-pfcr-g336/GHSA-q5qq-pfcr-g336.json index 2015e49c039..503850fc02e 100644 --- a/advisories/unreviewed/2022/04/GHSA-q5qq-pfcr-g336/GHSA-q5qq-pfcr-g336.json +++ b/advisories/unreviewed/2022/04/GHSA-q5qq-pfcr-g336/GHSA-q5qq-pfcr-g336.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/04/GHSA-q6fx-xrr4-6vh5/GHSA-q6fx-xrr4-6vh5.json b/advisories/unreviewed/2022/04/GHSA-q6fx-xrr4-6vh5/GHSA-q6fx-xrr4-6vh5.json index 794ba5ee146..ec364e2619e 100644 --- a/advisories/unreviewed/2022/04/GHSA-q6fx-xrr4-6vh5/GHSA-q6fx-xrr4-6vh5.json +++ b/advisories/unreviewed/2022/04/GHSA-q6fx-xrr4-6vh5/GHSA-q6fx-xrr4-6vh5.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/04/GHSA-q7f3-29mw-j94h/GHSA-q7f3-29mw-j94h.json b/advisories/unreviewed/2022/04/GHSA-q7f3-29mw-j94h/GHSA-q7f3-29mw-j94h.json index ca2e7458423..ee7bb3ccf2f 100644 --- a/advisories/unreviewed/2022/04/GHSA-q7f3-29mw-j94h/GHSA-q7f3-29mw-j94h.json +++ b/advisories/unreviewed/2022/04/GHSA-q7f3-29mw-j94h/GHSA-q7f3-29mw-j94h.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/04/GHSA-q8xr-xg3m-54mx/GHSA-q8xr-xg3m-54mx.json b/advisories/unreviewed/2022/04/GHSA-q8xr-xg3m-54mx/GHSA-q8xr-xg3m-54mx.json index 88547c026ff..7ba39e74ad2 100644 --- a/advisories/unreviewed/2022/04/GHSA-q8xr-xg3m-54mx/GHSA-q8xr-xg3m-54mx.json +++ b/advisories/unreviewed/2022/04/GHSA-q8xr-xg3m-54mx/GHSA-q8xr-xg3m-54mx.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/04/GHSA-qcx6-wgpr-5gxc/GHSA-qcx6-wgpr-5gxc.json b/advisories/unreviewed/2022/04/GHSA-qcx6-wgpr-5gxc/GHSA-qcx6-wgpr-5gxc.json index 8003910c3f0..77ae15af51f 100644 --- a/advisories/unreviewed/2022/04/GHSA-qcx6-wgpr-5gxc/GHSA-qcx6-wgpr-5gxc.json +++ b/advisories/unreviewed/2022/04/GHSA-qcx6-wgpr-5gxc/GHSA-qcx6-wgpr-5gxc.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/2022/04/GHSA-qf82-v8c9-p3px/GHSA-qf82-v8c9-p3px.json b/advisories/unreviewed/2022/04/GHSA-qf82-v8c9-p3px/GHSA-qf82-v8c9-p3px.json index 3f77e5d3d9b..a3d6f9f472c 100644 --- a/advisories/unreviewed/2022/04/GHSA-qf82-v8c9-p3px/GHSA-qf82-v8c9-p3px.json +++ b/advisories/unreviewed/2022/04/GHSA-qf82-v8c9-p3px/GHSA-qf82-v8c9-p3px.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/04/GHSA-qgfv-6fjw-p65r/GHSA-qgfv-6fjw-p65r.json b/advisories/unreviewed/2022/04/GHSA-qgfv-6fjw-p65r/GHSA-qgfv-6fjw-p65r.json index 4f6b5094e9d..17c28d05c28 100644 --- a/advisories/unreviewed/2022/04/GHSA-qgfv-6fjw-p65r/GHSA-qgfv-6fjw-p65r.json +++ b/advisories/unreviewed/2022/04/GHSA-qgfv-6fjw-p65r/GHSA-qgfv-6fjw-p65r.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/04/GHSA-qhfh-mv65-6j8c/GHSA-qhfh-mv65-6j8c.json b/advisories/unreviewed/2022/04/GHSA-qhfh-mv65-6j8c/GHSA-qhfh-mv65-6j8c.json index fc7f3f33952..11fbfb46655 100644 --- a/advisories/unreviewed/2022/04/GHSA-qhfh-mv65-6j8c/GHSA-qhfh-mv65-6j8c.json +++ b/advisories/unreviewed/2022/04/GHSA-qhfh-mv65-6j8c/GHSA-qhfh-mv65-6j8c.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-qjqv-pjh5-jmcf/GHSA-qjqv-pjh5-jmcf.json b/advisories/unreviewed/2022/04/GHSA-qjqv-pjh5-jmcf/GHSA-qjqv-pjh5-jmcf.json index a5c8831aec2..776fe9a7018 100644 --- a/advisories/unreviewed/2022/04/GHSA-qjqv-pjh5-jmcf/GHSA-qjqv-pjh5-jmcf.json +++ b/advisories/unreviewed/2022/04/GHSA-qjqv-pjh5-jmcf/GHSA-qjqv-pjh5-jmcf.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/04/GHSA-qm7j-j8v5-52qc/GHSA-qm7j-j8v5-52qc.json b/advisories/unreviewed/2022/04/GHSA-qm7j-j8v5-52qc/GHSA-qm7j-j8v5-52qc.json index 89c524579ab..88254641354 100644 --- a/advisories/unreviewed/2022/04/GHSA-qm7j-j8v5-52qc/GHSA-qm7j-j8v5-52qc.json +++ b/advisories/unreviewed/2022/04/GHSA-qm7j-j8v5-52qc/GHSA-qm7j-j8v5-52qc.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/04/GHSA-qwcc-f7fm-5q6x/GHSA-qwcc-f7fm-5q6x.json b/advisories/unreviewed/2022/04/GHSA-qwcc-f7fm-5q6x/GHSA-qwcc-f7fm-5q6x.json index 27056fc0627..e41965ebd97 100644 --- a/advisories/unreviewed/2022/04/GHSA-qwcc-f7fm-5q6x/GHSA-qwcc-f7fm-5q6x.json +++ b/advisories/unreviewed/2022/04/GHSA-qwcc-f7fm-5q6x/GHSA-qwcc-f7fm-5q6x.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", @@ -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/04/GHSA-qxh2-x3x4-mxxw/GHSA-qxh2-x3x4-mxxw.json b/advisories/unreviewed/2022/04/GHSA-qxh2-x3x4-mxxw/GHSA-qxh2-x3x4-mxxw.json index f7fc0bbb4df..fa9920596a5 100644 --- a/advisories/unreviewed/2022/04/GHSA-qxh2-x3x4-mxxw/GHSA-qxh2-x3x4-mxxw.json +++ b/advisories/unreviewed/2022/04/GHSA-qxh2-x3x4-mxxw/GHSA-qxh2-x3x4-mxxw.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/04/GHSA-r28m-fphr-v4pf/GHSA-r28m-fphr-v4pf.json b/advisories/unreviewed/2022/04/GHSA-r28m-fphr-v4pf/GHSA-r28m-fphr-v4pf.json index 6041c8951f5..93f9cfe7570 100644 --- a/advisories/unreviewed/2022/04/GHSA-r28m-fphr-v4pf/GHSA-r28m-fphr-v4pf.json +++ b/advisories/unreviewed/2022/04/GHSA-r28m-fphr-v4pf/GHSA-r28m-fphr-v4pf.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", @@ -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/04/GHSA-r2jv-247m-vh2j/GHSA-r2jv-247m-vh2j.json b/advisories/unreviewed/2022/04/GHSA-r2jv-247m-vh2j/GHSA-r2jv-247m-vh2j.json index bf084b3d956..c2e8254bbd6 100644 --- a/advisories/unreviewed/2022/04/GHSA-r2jv-247m-vh2j/GHSA-r2jv-247m-vh2j.json +++ b/advisories/unreviewed/2022/04/GHSA-r2jv-247m-vh2j/GHSA-r2jv-247m-vh2j.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/04/GHSA-r2qx-qm2q-j2rj/GHSA-r2qx-qm2q-j2rj.json b/advisories/unreviewed/2022/04/GHSA-r2qx-qm2q-j2rj/GHSA-r2qx-qm2q-j2rj.json index 7eebed769ce..9d73b6a6041 100644 --- a/advisories/unreviewed/2022/04/GHSA-r2qx-qm2q-j2rj/GHSA-r2qx-qm2q-j2rj.json +++ b/advisories/unreviewed/2022/04/GHSA-r2qx-qm2q-j2rj/GHSA-r2qx-qm2q-j2rj.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/04/GHSA-r38h-c57m-fw47/GHSA-r38h-c57m-fw47.json b/advisories/unreviewed/2022/04/GHSA-r38h-c57m-fw47/GHSA-r38h-c57m-fw47.json index fe138bb4b40..929569cb059 100644 --- a/advisories/unreviewed/2022/04/GHSA-r38h-c57m-fw47/GHSA-r38h-c57m-fw47.json +++ b/advisories/unreviewed/2022/04/GHSA-r38h-c57m-fw47/GHSA-r38h-c57m-fw47.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/04/GHSA-r4q9-qxgx-r39m/GHSA-r4q9-qxgx-r39m.json b/advisories/unreviewed/2022/04/GHSA-r4q9-qxgx-r39m/GHSA-r4q9-qxgx-r39m.json index 8eff52e9b96..011a7beed2a 100644 --- a/advisories/unreviewed/2022/04/GHSA-r4q9-qxgx-r39m/GHSA-r4q9-qxgx-r39m.json +++ b/advisories/unreviewed/2022/04/GHSA-r4q9-qxgx-r39m/GHSA-r4q9-qxgx-r39m.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/04/GHSA-r528-v228-qhgf/GHSA-r528-v228-qhgf.json b/advisories/unreviewed/2022/04/GHSA-r528-v228-qhgf/GHSA-r528-v228-qhgf.json index b8b180d1e83..8f5b6c5ef3c 100644 --- a/advisories/unreviewed/2022/04/GHSA-r528-v228-qhgf/GHSA-r528-v228-qhgf.json +++ b/advisories/unreviewed/2022/04/GHSA-r528-v228-qhgf/GHSA-r528-v228-qhgf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "CRITICAL", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/04/GHSA-r59w-2f4x-hvpr/GHSA-r59w-2f4x-hvpr.json b/advisories/unreviewed/2022/04/GHSA-r59w-2f4x-hvpr/GHSA-r59w-2f4x-hvpr.json index 6b1b544f773..b098bdbebef 100644 --- a/advisories/unreviewed/2022/04/GHSA-r59w-2f4x-hvpr/GHSA-r59w-2f4x-hvpr.json +++ b/advisories/unreviewed/2022/04/GHSA-r59w-2f4x-hvpr/GHSA-r59w-2f4x-hvpr.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", diff --git a/advisories/unreviewed/2022/04/GHSA-r5q5-38r7-m6xx/GHSA-r5q5-38r7-m6xx.json b/advisories/unreviewed/2022/04/GHSA-r5q5-38r7-m6xx/GHSA-r5q5-38r7-m6xx.json index ebaadd56aab..7957eccbf62 100644 --- a/advisories/unreviewed/2022/04/GHSA-r5q5-38r7-m6xx/GHSA-r5q5-38r7-m6xx.json +++ b/advisories/unreviewed/2022/04/GHSA-r5q5-38r7-m6xx/GHSA-r5q5-38r7-m6xx.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/04/GHSA-r7cj-8247-q996/GHSA-r7cj-8247-q996.json b/advisories/unreviewed/2022/04/GHSA-r7cj-8247-q996/GHSA-r7cj-8247-q996.json index 0e69e58842a..fbab21dbf88 100644 --- a/advisories/unreviewed/2022/04/GHSA-r7cj-8247-q996/GHSA-r7cj-8247-q996.json +++ b/advisories/unreviewed/2022/04/GHSA-r7cj-8247-q996/GHSA-r7cj-8247-q996.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/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/04/GHSA-r8jj-pf8x-383m/GHSA-r8jj-pf8x-383m.json b/advisories/unreviewed/2022/04/GHSA-r8jj-pf8x-383m/GHSA-r8jj-pf8x-383m.json index a2ccabb3bcb..3deb9f3f950 100644 --- a/advisories/unreviewed/2022/04/GHSA-r8jj-pf8x-383m/GHSA-r8jj-pf8x-383m.json +++ b/advisories/unreviewed/2022/04/GHSA-r8jj-pf8x-383m/GHSA-r8jj-pf8x-383m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H" } ], - "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/04/GHSA-rhjq-68v2-wq5j/GHSA-rhjq-68v2-wq5j.json b/advisories/unreviewed/2022/04/GHSA-rhjq-68v2-wq5j/GHSA-rhjq-68v2-wq5j.json index fd42d56f25a..3984ce78f23 100644 --- a/advisories/unreviewed/2022/04/GHSA-rhjq-68v2-wq5j/GHSA-rhjq-68v2-wq5j.json +++ b/advisories/unreviewed/2022/04/GHSA-rhjq-68v2-wq5j/GHSA-rhjq-68v2-wq5j.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/04/GHSA-rj3w-6743-fpcw/GHSA-rj3w-6743-fpcw.json b/advisories/unreviewed/2022/04/GHSA-rj3w-6743-fpcw/GHSA-rj3w-6743-fpcw.json index 7d1ee89b5e5..b5c47462c8d 100644 --- a/advisories/unreviewed/2022/04/GHSA-rj3w-6743-fpcw/GHSA-rj3w-6743-fpcw.json +++ b/advisories/unreviewed/2022/04/GHSA-rj3w-6743-fpcw/GHSA-rj3w-6743-fpcw.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", @@ -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/04/GHSA-rjq3-c2jr-r9rq/GHSA-rjq3-c2jr-r9rq.json b/advisories/unreviewed/2022/04/GHSA-rjq3-c2jr-r9rq/GHSA-rjq3-c2jr-r9rq.json index 1d61b16f556..cfd176e6af1 100644 --- a/advisories/unreviewed/2022/04/GHSA-rjq3-c2jr-r9rq/GHSA-rjq3-c2jr-r9rq.json +++ b/advisories/unreviewed/2022/04/GHSA-rjq3-c2jr-r9rq/GHSA-rjq3-c2jr-r9rq.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/04/GHSA-rq6x-9xq3-jm42/GHSA-rq6x-9xq3-jm42.json b/advisories/unreviewed/2022/04/GHSA-rq6x-9xq3-jm42/GHSA-rq6x-9xq3-jm42.json index 672391f6d7f..a9c1f8ab730 100644 --- a/advisories/unreviewed/2022/04/GHSA-rq6x-9xq3-jm42/GHSA-rq6x-9xq3-jm42.json +++ b/advisories/unreviewed/2022/04/GHSA-rq6x-9xq3-jm42/GHSA-rq6x-9xq3-jm42.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/04/GHSA-rq9r-r987-7r36/GHSA-rq9r-r987-7r36.json b/advisories/unreviewed/2022/04/GHSA-rq9r-r987-7r36/GHSA-rq9r-r987-7r36.json index a607004d8f7..79cf8e37eaf 100644 --- a/advisories/unreviewed/2022/04/GHSA-rq9r-r987-7r36/GHSA-rq9r-r987-7r36.json +++ b/advisories/unreviewed/2022/04/GHSA-rq9r-r987-7r36/GHSA-rq9r-r987-7r36.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/2022/04/GHSA-rrj3-j7px-f5g5/GHSA-rrj3-j7px-f5g5.json b/advisories/unreviewed/2022/04/GHSA-rrj3-j7px-f5g5/GHSA-rrj3-j7px-f5g5.json index d69707cb8ad..853927787d8 100644 --- a/advisories/unreviewed/2022/04/GHSA-rrj3-j7px-f5g5/GHSA-rrj3-j7px-f5g5.json +++ b/advisories/unreviewed/2022/04/GHSA-rrj3-j7px-f5g5/GHSA-rrj3-j7px-f5g5.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-rw7c-r2hj-99vq/GHSA-rw7c-r2hj-99vq.json b/advisories/unreviewed/2022/04/GHSA-rw7c-r2hj-99vq/GHSA-rw7c-r2hj-99vq.json index 52b12a38b4e..d9b7906d81a 100644 --- a/advisories/unreviewed/2022/04/GHSA-rw7c-r2hj-99vq/GHSA-rw7c-r2hj-99vq.json +++ b/advisories/unreviewed/2022/04/GHSA-rw7c-r2hj-99vq/GHSA-rw7c-r2hj-99vq.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/04/GHSA-rxg7-fjph-p5j8/GHSA-rxg7-fjph-p5j8.json b/advisories/unreviewed/2022/04/GHSA-rxg7-fjph-p5j8/GHSA-rxg7-fjph-p5j8.json index 30a0590ef66..d262b9c1f54 100644 --- a/advisories/unreviewed/2022/04/GHSA-rxg7-fjph-p5j8/GHSA-rxg7-fjph-p5j8.json +++ b/advisories/unreviewed/2022/04/GHSA-rxg7-fjph-p5j8/GHSA-rxg7-fjph-p5j8.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/04/GHSA-v28f-cf4w-7rcj/GHSA-v28f-cf4w-7rcj.json b/advisories/unreviewed/2022/04/GHSA-v28f-cf4w-7rcj/GHSA-v28f-cf4w-7rcj.json index 3528b905886..63edcc53ad7 100644 --- a/advisories/unreviewed/2022/04/GHSA-v28f-cf4w-7rcj/GHSA-v28f-cf4w-7rcj.json +++ b/advisories/unreviewed/2022/04/GHSA-v28f-cf4w-7rcj/GHSA-v28f-cf4w-7rcj.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-v45w-c5xw-545j/GHSA-v45w-c5xw-545j.json b/advisories/unreviewed/2022/04/GHSA-v45w-c5xw-545j/GHSA-v45w-c5xw-545j.json index f743137c828..a39356254f1 100644 --- a/advisories/unreviewed/2022/04/GHSA-v45w-c5xw-545j/GHSA-v45w-c5xw-545j.json +++ b/advisories/unreviewed/2022/04/GHSA-v45w-c5xw-545j/GHSA-v45w-c5xw-545j.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/04/GHSA-v4p3-h3rx-q79h/GHSA-v4p3-h3rx-q79h.json b/advisories/unreviewed/2022/04/GHSA-v4p3-h3rx-q79h/GHSA-v4p3-h3rx-q79h.json index 6b9c9fc0bdd..fda069d61fe 100644 --- a/advisories/unreviewed/2022/04/GHSA-v4p3-h3rx-q79h/GHSA-v4p3-h3rx-q79h.json +++ b/advisories/unreviewed/2022/04/GHSA-v4p3-h3rx-q79h/GHSA-v4p3-h3rx-q79h.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/04/GHSA-v4rh-4p67-hmvf/GHSA-v4rh-4p67-hmvf.json b/advisories/unreviewed/2022/04/GHSA-v4rh-4p67-hmvf/GHSA-v4rh-4p67-hmvf.json index 353e5982068..2a71667b064 100644 --- a/advisories/unreviewed/2022/04/GHSA-v4rh-4p67-hmvf/GHSA-v4rh-4p67-hmvf.json +++ b/advisories/unreviewed/2022/04/GHSA-v4rh-4p67-hmvf/GHSA-v4rh-4p67-hmvf.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", @@ -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/04/GHSA-v6gh-mj92-4mvj/GHSA-v6gh-mj92-4mvj.json b/advisories/unreviewed/2022/04/GHSA-v6gh-mj92-4mvj/GHSA-v6gh-mj92-4mvj.json index beaf5e2d018..a1fe4910984 100644 --- a/advisories/unreviewed/2022/04/GHSA-v6gh-mj92-4mvj/GHSA-v6gh-mj92-4mvj.json +++ b/advisories/unreviewed/2022/04/GHSA-v6gh-mj92-4mvj/GHSA-v6gh-mj92-4mvj.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/04/GHSA-v856-qf8f-mpx8/GHSA-v856-qf8f-mpx8.json b/advisories/unreviewed/2022/04/GHSA-v856-qf8f-mpx8/GHSA-v856-qf8f-mpx8.json index dbe375bf8f3..f1ee703d63b 100644 --- a/advisories/unreviewed/2022/04/GHSA-v856-qf8f-mpx8/GHSA-v856-qf8f-mpx8.json +++ b/advisories/unreviewed/2022/04/GHSA-v856-qf8f-mpx8/GHSA-v856-qf8f-mpx8.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/04/GHSA-v86f-gr22-g9hh/GHSA-v86f-gr22-g9hh.json b/advisories/unreviewed/2022/04/GHSA-v86f-gr22-g9hh/GHSA-v86f-gr22-g9hh.json index 460de163613..f4d01345293 100644 --- a/advisories/unreviewed/2022/04/GHSA-v86f-gr22-g9hh/GHSA-v86f-gr22-g9hh.json +++ b/advisories/unreviewed/2022/04/GHSA-v86f-gr22-g9hh/GHSA-v86f-gr22-g9hh.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-v9rf-4g2w-68jc/GHSA-v9rf-4g2w-68jc.json b/advisories/unreviewed/2022/04/GHSA-v9rf-4g2w-68jc/GHSA-v9rf-4g2w-68jc.json index 7902520d0f1..590e5b126da 100644 --- a/advisories/unreviewed/2022/04/GHSA-v9rf-4g2w-68jc/GHSA-v9rf-4g2w-68jc.json +++ b/advisories/unreviewed/2022/04/GHSA-v9rf-4g2w-68jc/GHSA-v9rf-4g2w-68jc.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/04/GHSA-vjgw-cc8r-582j/GHSA-vjgw-cc8r-582j.json b/advisories/unreviewed/2022/04/GHSA-vjgw-cc8r-582j/GHSA-vjgw-cc8r-582j.json index 7f0ddc7595f..1a02b245235 100644 --- a/advisories/unreviewed/2022/04/GHSA-vjgw-cc8r-582j/GHSA-vjgw-cc8r-582j.json +++ b/advisories/unreviewed/2022/04/GHSA-vjgw-cc8r-582j/GHSA-vjgw-cc8r-582j.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/04/GHSA-vqpx-8vjh-qxx9/GHSA-vqpx-8vjh-qxx9.json b/advisories/unreviewed/2022/04/GHSA-vqpx-8vjh-qxx9/GHSA-vqpx-8vjh-qxx9.json index b8a895eac65..359bbf216bc 100644 --- a/advisories/unreviewed/2022/04/GHSA-vqpx-8vjh-qxx9/GHSA-vqpx-8vjh-qxx9.json +++ b/advisories/unreviewed/2022/04/GHSA-vqpx-8vjh-qxx9/GHSA-vqpx-8vjh-qxx9.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-vrqc-vwgr-qqp5/GHSA-vrqc-vwgr-qqp5.json b/advisories/unreviewed/2022/04/GHSA-vrqc-vwgr-qqp5/GHSA-vrqc-vwgr-qqp5.json index 82d9cf58eed..655214b0d5f 100644 --- a/advisories/unreviewed/2022/04/GHSA-vrqc-vwgr-qqp5/GHSA-vrqc-vwgr-qqp5.json +++ b/advisories/unreviewed/2022/04/GHSA-vrqc-vwgr-qqp5/GHSA-vrqc-vwgr-qqp5.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-vv88-544v-pvq3/GHSA-vv88-544v-pvq3.json b/advisories/unreviewed/2022/04/GHSA-vv88-544v-pvq3/GHSA-vv88-544v-pvq3.json index 80ba08eaa85..2c3db5054cc 100644 --- a/advisories/unreviewed/2022/04/GHSA-vv88-544v-pvq3/GHSA-vv88-544v-pvq3.json +++ b/advisories/unreviewed/2022/04/GHSA-vv88-544v-pvq3/GHSA-vv88-544v-pvq3.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/04/GHSA-vvr5-h9mx-r3g3/GHSA-vvr5-h9mx-r3g3.json b/advisories/unreviewed/2022/04/GHSA-vvr5-h9mx-r3g3/GHSA-vvr5-h9mx-r3g3.json index 36477d5d4bd..ff0f98c6d78 100644 --- a/advisories/unreviewed/2022/04/GHSA-vvr5-h9mx-r3g3/GHSA-vvr5-h9mx-r3g3.json +++ b/advisories/unreviewed/2022/04/GHSA-vvr5-h9mx-r3g3/GHSA-vvr5-h9mx-r3g3.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/04/GHSA-vw4r-hfrp-33hm/GHSA-vw4r-hfrp-33hm.json b/advisories/unreviewed/2022/04/GHSA-vw4r-hfrp-33hm/GHSA-vw4r-hfrp-33hm.json index ed0465c9241..c970e158b0e 100644 --- a/advisories/unreviewed/2022/04/GHSA-vw4r-hfrp-33hm/GHSA-vw4r-hfrp-33hm.json +++ b/advisories/unreviewed/2022/04/GHSA-vw4r-hfrp-33hm/GHSA-vw4r-hfrp-33hm.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/04/GHSA-vxv9-8j84-cmpr/GHSA-vxv9-8j84-cmpr.json b/advisories/unreviewed/2022/04/GHSA-vxv9-8j84-cmpr/GHSA-vxv9-8j84-cmpr.json index ab333b84440..29bf6ba3732 100644 --- a/advisories/unreviewed/2022/04/GHSA-vxv9-8j84-cmpr/GHSA-vxv9-8j84-cmpr.json +++ b/advisories/unreviewed/2022/04/GHSA-vxv9-8j84-cmpr/GHSA-vxv9-8j84-cmpr.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/04/GHSA-w5wr-x6gc-hqrq/GHSA-w5wr-x6gc-hqrq.json b/advisories/unreviewed/2022/04/GHSA-w5wr-x6gc-hqrq/GHSA-w5wr-x6gc-hqrq.json index 6a5029e70aa..88ac321c7e0 100644 --- a/advisories/unreviewed/2022/04/GHSA-w5wr-x6gc-hqrq/GHSA-w5wr-x6gc-hqrq.json +++ b/advisories/unreviewed/2022/04/GHSA-w5wr-x6gc-hqrq/GHSA-w5wr-x6gc-hqrq.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/04/GHSA-w84h-qx8f-fg59/GHSA-w84h-qx8f-fg59.json b/advisories/unreviewed/2022/04/GHSA-w84h-qx8f-fg59/GHSA-w84h-qx8f-fg59.json index a74f861defb..fa4416f1f0a 100644 --- a/advisories/unreviewed/2022/04/GHSA-w84h-qx8f-fg59/GHSA-w84h-qx8f-fg59.json +++ b/advisories/unreviewed/2022/04/GHSA-w84h-qx8f-fg59/GHSA-w84h-qx8f-fg59.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/04/GHSA-w93w-26gf-h3c5/GHSA-w93w-26gf-h3c5.json b/advisories/unreviewed/2022/04/GHSA-w93w-26gf-h3c5/GHSA-w93w-26gf-h3c5.json index 61a5f21bd61..09b307cacbb 100644 --- a/advisories/unreviewed/2022/04/GHSA-w93w-26gf-h3c5/GHSA-w93w-26gf-h3c5.json +++ b/advisories/unreviewed/2022/04/GHSA-w93w-26gf-h3c5/GHSA-w93w-26gf-h3c5.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-w96w-f34f-w457/GHSA-w96w-f34f-w457.json b/advisories/unreviewed/2022/04/GHSA-w96w-f34f-w457/GHSA-w96w-f34f-w457.json index ea3ae7970bb..e4236f649d3 100644 --- a/advisories/unreviewed/2022/04/GHSA-w96w-f34f-w457/GHSA-w96w-f34f-w457.json +++ b/advisories/unreviewed/2022/04/GHSA-w96w-f34f-w457/GHSA-w96w-f34f-w457.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/04/GHSA-w992-vgrp-856g/GHSA-w992-vgrp-856g.json b/advisories/unreviewed/2022/04/GHSA-w992-vgrp-856g/GHSA-w992-vgrp-856g.json index 5f0d210450f..7cb2004c596 100644 --- a/advisories/unreviewed/2022/04/GHSA-w992-vgrp-856g/GHSA-w992-vgrp-856g.json +++ b/advisories/unreviewed/2022/04/GHSA-w992-vgrp-856g/GHSA-w992-vgrp-856g.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/04/GHSA-wc34-6466-jm47/GHSA-wc34-6466-jm47.json b/advisories/unreviewed/2022/04/GHSA-wc34-6466-jm47/GHSA-wc34-6466-jm47.json index 0cb2707b0b5..62fe1284a00 100644 --- a/advisories/unreviewed/2022/04/GHSA-wc34-6466-jm47/GHSA-wc34-6466-jm47.json +++ b/advisories/unreviewed/2022/04/GHSA-wc34-6466-jm47/GHSA-wc34-6466-jm47.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/04/GHSA-wcf3-m96w-97fg/GHSA-wcf3-m96w-97fg.json b/advisories/unreviewed/2022/04/GHSA-wcf3-m96w-97fg/GHSA-wcf3-m96w-97fg.json index bcda6f6d77e..1a279886340 100644 --- a/advisories/unreviewed/2022/04/GHSA-wcf3-m96w-97fg/GHSA-wcf3-m96w-97fg.json +++ b/advisories/unreviewed/2022/04/GHSA-wcf3-m96w-97fg/GHSA-wcf3-m96w-97fg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/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/04/GHSA-wcqr-93w9-8g64/GHSA-wcqr-93w9-8g64.json b/advisories/unreviewed/2022/04/GHSA-wcqr-93w9-8g64/GHSA-wcqr-93w9-8g64.json index 34f7f73769e..bf71fd82fc7 100644 --- a/advisories/unreviewed/2022/04/GHSA-wcqr-93w9-8g64/GHSA-wcqr-93w9-8g64.json +++ b/advisories/unreviewed/2022/04/GHSA-wcqr-93w9-8g64/GHSA-wcqr-93w9-8g64.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/04/GHSA-wg22-wcgm-8m72/GHSA-wg22-wcgm-8m72.json b/advisories/unreviewed/2022/04/GHSA-wg22-wcgm-8m72/GHSA-wg22-wcgm-8m72.json index 3297b07f739..1740cfe6cfe 100644 --- a/advisories/unreviewed/2022/04/GHSA-wg22-wcgm-8m72/GHSA-wg22-wcgm-8m72.json +++ b/advisories/unreviewed/2022/04/GHSA-wg22-wcgm-8m72/GHSA-wg22-wcgm-8m72.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/04/GHSA-wjrq-7g43-926p/GHSA-wjrq-7g43-926p.json b/advisories/unreviewed/2022/04/GHSA-wjrq-7g43-926p/GHSA-wjrq-7g43-926p.json index 55231d2fea8..1f90c78258d 100644 --- a/advisories/unreviewed/2022/04/GHSA-wjrq-7g43-926p/GHSA-wjrq-7g43-926p.json +++ b/advisories/unreviewed/2022/04/GHSA-wjrq-7g43-926p/GHSA-wjrq-7g43-926p.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/04/GHSA-wmmv-6988-fqcv/GHSA-wmmv-6988-fqcv.json b/advisories/unreviewed/2022/04/GHSA-wmmv-6988-fqcv/GHSA-wmmv-6988-fqcv.json index 344adb57cb2..38c5b14e048 100644 --- a/advisories/unreviewed/2022/04/GHSA-wmmv-6988-fqcv/GHSA-wmmv-6988-fqcv.json +++ b/advisories/unreviewed/2022/04/GHSA-wmmv-6988-fqcv/GHSA-wmmv-6988-fqcv.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/04/GHSA-wq69-vpq9-x8vq/GHSA-wq69-vpq9-x8vq.json b/advisories/unreviewed/2022/04/GHSA-wq69-vpq9-x8vq/GHSA-wq69-vpq9-x8vq.json index 4d921ecb128..af1acd0a2e7 100644 --- a/advisories/unreviewed/2022/04/GHSA-wq69-vpq9-x8vq/GHSA-wq69-vpq9-x8vq.json +++ b/advisories/unreviewed/2022/04/GHSA-wq69-vpq9-x8vq/GHSA-wq69-vpq9-x8vq.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/04/GHSA-wqp4-939p-2r72/GHSA-wqp4-939p-2r72.json b/advisories/unreviewed/2022/04/GHSA-wqp4-939p-2r72/GHSA-wqp4-939p-2r72.json index 005b01e55c9..df868224468 100644 --- a/advisories/unreviewed/2022/04/GHSA-wqp4-939p-2r72/GHSA-wqp4-939p-2r72.json +++ b/advisories/unreviewed/2022/04/GHSA-wqp4-939p-2r72/GHSA-wqp4-939p-2r72.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-x2hv-v22j-8jpc/GHSA-x2hv-v22j-8jpc.json b/advisories/unreviewed/2022/04/GHSA-x2hv-v22j-8jpc/GHSA-x2hv-v22j-8jpc.json index e6772c3d69d..04225a71253 100644 --- a/advisories/unreviewed/2022/04/GHSA-x2hv-v22j-8jpc/GHSA-x2hv-v22j-8jpc.json +++ b/advisories/unreviewed/2022/04/GHSA-x2hv-v22j-8jpc/GHSA-x2hv-v22j-8jpc.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/04/GHSA-x3x6-v5xq-6287/GHSA-x3x6-v5xq-6287.json b/advisories/unreviewed/2022/04/GHSA-x3x6-v5xq-6287/GHSA-x3x6-v5xq-6287.json index fad60ada4fc..9c942ee23af 100644 --- a/advisories/unreviewed/2022/04/GHSA-x3x6-v5xq-6287/GHSA-x3x6-v5xq-6287.json +++ b/advisories/unreviewed/2022/04/GHSA-x3x6-v5xq-6287/GHSA-x3x6-v5xq-6287.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/04/GHSA-x68v-pfcv-26fm/GHSA-x68v-pfcv-26fm.json b/advisories/unreviewed/2022/04/GHSA-x68v-pfcv-26fm/GHSA-x68v-pfcv-26fm.json index 54f7f748ee0..678fa0110ad 100644 --- a/advisories/unreviewed/2022/04/GHSA-x68v-pfcv-26fm/GHSA-x68v-pfcv-26fm.json +++ b/advisories/unreviewed/2022/04/GHSA-x68v-pfcv-26fm/GHSA-x68v-pfcv-26fm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/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-x8w2-gg3q-hjwf/GHSA-x8w2-gg3q-hjwf.json b/advisories/unreviewed/2022/04/GHSA-x8w2-gg3q-hjwf/GHSA-x8w2-gg3q-hjwf.json index 5e8de09f664..5ac6ec73d80 100644 --- a/advisories/unreviewed/2022/04/GHSA-x8w2-gg3q-hjwf/GHSA-x8w2-gg3q-hjwf.json +++ b/advisories/unreviewed/2022/04/GHSA-x8w2-gg3q-hjwf/GHSA-x8w2-gg3q-hjwf.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/04/GHSA-xc7v-jvj9-p5fm/GHSA-xc7v-jvj9-p5fm.json b/advisories/unreviewed/2022/04/GHSA-xc7v-jvj9-p5fm/GHSA-xc7v-jvj9-p5fm.json index 2c6bbda302d..611bc9893ba 100644 --- a/advisories/unreviewed/2022/04/GHSA-xc7v-jvj9-p5fm/GHSA-xc7v-jvj9-p5fm.json +++ b/advisories/unreviewed/2022/04/GHSA-xc7v-jvj9-p5fm/GHSA-xc7v-jvj9-p5fm.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/04/GHSA-xh22-xj4j-gfvw/GHSA-xh22-xj4j-gfvw.json b/advisories/unreviewed/2022/04/GHSA-xh22-xj4j-gfvw/GHSA-xh22-xj4j-gfvw.json index 73ef494a753..c1a2181b485 100644 --- a/advisories/unreviewed/2022/04/GHSA-xh22-xj4j-gfvw/GHSA-xh22-xj4j-gfvw.json +++ b/advisories/unreviewed/2022/04/GHSA-xh22-xj4j-gfvw/GHSA-xh22-xj4j-gfvw.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/04/GHSA-xh66-6mj6-94rg/GHSA-xh66-6mj6-94rg.json b/advisories/unreviewed/2022/04/GHSA-xh66-6mj6-94rg/GHSA-xh66-6mj6-94rg.json index 91800bb0b7c..479d2403d8a 100644 --- a/advisories/unreviewed/2022/04/GHSA-xh66-6mj6-94rg/GHSA-xh66-6mj6-94rg.json +++ b/advisories/unreviewed/2022/04/GHSA-xh66-6mj6-94rg/GHSA-xh66-6mj6-94rg.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-xhvg-qmw2-rr5r/GHSA-xhvg-qmw2-rr5r.json b/advisories/unreviewed/2022/04/GHSA-xhvg-qmw2-rr5r/GHSA-xhvg-qmw2-rr5r.json index 8b1a7b64997..bfad55b1c47 100644 --- a/advisories/unreviewed/2022/04/GHSA-xhvg-qmw2-rr5r/GHSA-xhvg-qmw2-rr5r.json +++ b/advisories/unreviewed/2022/04/GHSA-xhvg-qmw2-rr5r/GHSA-xhvg-qmw2-rr5r.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/04/GHSA-xpv7-p5h9-8rgm/GHSA-xpv7-p5h9-8rgm.json b/advisories/unreviewed/2022/04/GHSA-xpv7-p5h9-8rgm/GHSA-xpv7-p5h9-8rgm.json index fd3090731e1..669fa0c35dc 100644 --- a/advisories/unreviewed/2022/04/GHSA-xpv7-p5h9-8rgm/GHSA-xpv7-p5h9-8rgm.json +++ b/advisories/unreviewed/2022/04/GHSA-xpv7-p5h9-8rgm/GHSA-xpv7-p5h9-8rgm.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/04/GHSA-xrf6-5mxj-vq5c/GHSA-xrf6-5mxj-vq5c.json b/advisories/unreviewed/2022/04/GHSA-xrf6-5mxj-vq5c/GHSA-xrf6-5mxj-vq5c.json index 062d97ac8cc..63e4454374a 100644 --- a/advisories/unreviewed/2022/04/GHSA-xrf6-5mxj-vq5c/GHSA-xrf6-5mxj-vq5c.json +++ b/advisories/unreviewed/2022/04/GHSA-xrf6-5mxj-vq5c/GHSA-xrf6-5mxj-vq5c.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/04/GHSA-xrj6-96j3-q3jj/GHSA-xrj6-96j3-q3jj.json b/advisories/unreviewed/2022/04/GHSA-xrj6-96j3-q3jj/GHSA-xrj6-96j3-q3jj.json index 11990570aa2..9f12565a426 100644 --- a/advisories/unreviewed/2022/04/GHSA-xrj6-96j3-q3jj/GHSA-xrj6-96j3-q3jj.json +++ b/advisories/unreviewed/2022/04/GHSA-xrj6-96j3-q3jj/GHSA-xrj6-96j3-q3jj.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/04/GHSA-xw8x-6f24-54jx/GHSA-xw8x-6f24-54jx.json b/advisories/unreviewed/2022/04/GHSA-xw8x-6f24-54jx/GHSA-xw8x-6f24-54jx.json index ef717b0afbc..6778ece717b 100644 --- a/advisories/unreviewed/2022/04/GHSA-xw8x-6f24-54jx/GHSA-xw8x-6f24-54jx.json +++ b/advisories/unreviewed/2022/04/GHSA-xw8x-6f24-54jx/GHSA-xw8x-6f24-54jx.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/04/GHSA-xx75-rcgc-pc97/GHSA-xx75-rcgc-pc97.json b/advisories/unreviewed/2022/04/GHSA-xx75-rcgc-pc97/GHSA-xx75-rcgc-pc97.json index 720e9bebc17..9d2c55affb6 100644 --- a/advisories/unreviewed/2022/04/GHSA-xx75-rcgc-pc97/GHSA-xx75-rcgc-pc97.json +++ b/advisories/unreviewed/2022/04/GHSA-xx75-rcgc-pc97/GHSA-xx75-rcgc-pc97.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-xxhr-8f54-6m66/GHSA-xxhr-8f54-6m66.json b/advisories/unreviewed/2022/04/GHSA-xxhr-8f54-6m66/GHSA-xxhr-8f54-6m66.json index 8d8c028ef08..07b4eab9961 100644 --- a/advisories/unreviewed/2022/04/GHSA-xxhr-8f54-6m66/GHSA-xxhr-8f54-6m66.json +++ b/advisories/unreviewed/2022/04/GHSA-xxhr-8f54-6m66/GHSA-xxhr-8f54-6m66.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-23w9-x4hx-5jv5/GHSA-23w9-x4hx-5jv5.json b/advisories/unreviewed/2022/05/GHSA-23w9-x4hx-5jv5/GHSA-23w9-x4hx-5jv5.json index 3a1d94b56ed..7a83008caed 100644 --- a/advisories/unreviewed/2022/05/GHSA-23w9-x4hx-5jv5/GHSA-23w9-x4hx-5jv5.json +++ b/advisories/unreviewed/2022/05/GHSA-23w9-x4hx-5jv5/GHSA-23w9-x4hx-5jv5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-23xj-w5qm-57j6/GHSA-23xj-w5qm-57j6.json b/advisories/unreviewed/2022/05/GHSA-23xj-w5qm-57j6/GHSA-23xj-w5qm-57j6.json index 8e7f3b0e22c..8532f1510b5 100644 --- a/advisories/unreviewed/2022/05/GHSA-23xj-w5qm-57j6/GHSA-23xj-w5qm-57j6.json +++ b/advisories/unreviewed/2022/05/GHSA-23xj-w5qm-57j6/GHSA-23xj-w5qm-57j6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-243r-v7fg-m2ff/GHSA-243r-v7fg-m2ff.json b/advisories/unreviewed/2022/05/GHSA-243r-v7fg-m2ff/GHSA-243r-v7fg-m2ff.json index 6806dab4706..5394cd1a3e2 100644 --- a/advisories/unreviewed/2022/05/GHSA-243r-v7fg-m2ff/GHSA-243r-v7fg-m2ff.json +++ b/advisories/unreviewed/2022/05/GHSA-243r-v7fg-m2ff/GHSA-243r-v7fg-m2ff.json @@ -7,12 +7,8 @@ "CVE-2008-4901" ], "details": "SQL injection vulnerability in admin/admin.php in Article Publisher Pro 1.5 allows remote attackers to execute arbitrary SQL commands via the username parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-24wq-x2jh-mcf8/GHSA-24wq-x2jh-mcf8.json b/advisories/unreviewed/2022/05/GHSA-24wq-x2jh-mcf8/GHSA-24wq-x2jh-mcf8.json index 63a942b2629..d19c8b39940 100644 --- a/advisories/unreviewed/2022/05/GHSA-24wq-x2jh-mcf8/GHSA-24wq-x2jh-mcf8.json +++ b/advisories/unreviewed/2022/05/GHSA-24wq-x2jh-mcf8/GHSA-24wq-x2jh-mcf8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-2698-gwhq-x693/GHSA-2698-gwhq-x693.json b/advisories/unreviewed/2022/05/GHSA-2698-gwhq-x693/GHSA-2698-gwhq-x693.json index 59a1fdd9bde..fa7da69e4c0 100644 --- a/advisories/unreviewed/2022/05/GHSA-2698-gwhq-x693/GHSA-2698-gwhq-x693.json +++ b/advisories/unreviewed/2022/05/GHSA-2698-gwhq-x693/GHSA-2698-gwhq-x693.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-26qp-7xwg-8f45/GHSA-26qp-7xwg-8f45.json b/advisories/unreviewed/2022/05/GHSA-26qp-7xwg-8f45/GHSA-26qp-7xwg-8f45.json index ff604e6fa1c..ef0b1f34c62 100644 --- a/advisories/unreviewed/2022/05/GHSA-26qp-7xwg-8f45/GHSA-26qp-7xwg-8f45.json +++ b/advisories/unreviewed/2022/05/GHSA-26qp-7xwg-8f45/GHSA-26qp-7xwg-8f45.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-28qj-36f6-4995/GHSA-28qj-36f6-4995.json b/advisories/unreviewed/2022/05/GHSA-28qj-36f6-4995/GHSA-28qj-36f6-4995.json index d00cee08962..66ffd36b174 100644 --- a/advisories/unreviewed/2022/05/GHSA-28qj-36f6-4995/GHSA-28qj-36f6-4995.json +++ b/advisories/unreviewed/2022/05/GHSA-28qj-36f6-4995/GHSA-28qj-36f6-4995.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2c42-f2qj-vh3h/GHSA-2c42-f2qj-vh3h.json b/advisories/unreviewed/2022/05/GHSA-2c42-f2qj-vh3h/GHSA-2c42-f2qj-vh3h.json index ea0d20c9c4d..9e3b8dba075 100644 --- a/advisories/unreviewed/2022/05/GHSA-2c42-f2qj-vh3h/GHSA-2c42-f2qj-vh3h.json +++ b/advisories/unreviewed/2022/05/GHSA-2c42-f2qj-vh3h/GHSA-2c42-f2qj-vh3h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2f5j-3w2j-7mxv/GHSA-2f5j-3w2j-7mxv.json b/advisories/unreviewed/2022/05/GHSA-2f5j-3w2j-7mxv/GHSA-2f5j-3w2j-7mxv.json index a3516c5de0f..2fb9331d0d0 100644 --- a/advisories/unreviewed/2022/05/GHSA-2f5j-3w2j-7mxv/GHSA-2f5j-3w2j-7mxv.json +++ b/advisories/unreviewed/2022/05/GHSA-2f5j-3w2j-7mxv/GHSA-2f5j-3w2j-7mxv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/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-2f83-vmch-qqv5/GHSA-2f83-vmch-qqv5.json b/advisories/unreviewed/2022/05/GHSA-2f83-vmch-qqv5/GHSA-2f83-vmch-qqv5.json index bc0d4dee977..b2ca2dc74ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-2f83-vmch-qqv5/GHSA-2f83-vmch-qqv5.json +++ b/advisories/unreviewed/2022/05/GHSA-2f83-vmch-qqv5/GHSA-2f83-vmch-qqv5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2f9p-2hqc-99x2/GHSA-2f9p-2hqc-99x2.json b/advisories/unreviewed/2022/05/GHSA-2f9p-2hqc-99x2/GHSA-2f9p-2hqc-99x2.json index a45b573bd6b..80af28ee5c8 100644 --- a/advisories/unreviewed/2022/05/GHSA-2f9p-2hqc-99x2/GHSA-2f9p-2hqc-99x2.json +++ b/advisories/unreviewed/2022/05/GHSA-2f9p-2hqc-99x2/GHSA-2f9p-2hqc-99x2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2gqv-9xv4-43w4/GHSA-2gqv-9xv4-43w4.json b/advisories/unreviewed/2022/05/GHSA-2gqv-9xv4-43w4/GHSA-2gqv-9xv4-43w4.json index 531ca6dbad2..345760cdac6 100644 --- a/advisories/unreviewed/2022/05/GHSA-2gqv-9xv4-43w4/GHSA-2gqv-9xv4-43w4.json +++ b/advisories/unreviewed/2022/05/GHSA-2gqv-9xv4-43w4/GHSA-2gqv-9xv4-43w4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2h34-774g-95vx/GHSA-2h34-774g-95vx.json b/advisories/unreviewed/2022/05/GHSA-2h34-774g-95vx/GHSA-2h34-774g-95vx.json index 9c549f220c1..2fbed0af354 100644 --- a/advisories/unreviewed/2022/05/GHSA-2h34-774g-95vx/GHSA-2h34-774g-95vx.json +++ b/advisories/unreviewed/2022/05/GHSA-2h34-774g-95vx/GHSA-2h34-774g-95vx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-2h6v-4cpv-9pv7/GHSA-2h6v-4cpv-9pv7.json b/advisories/unreviewed/2022/05/GHSA-2h6v-4cpv-9pv7/GHSA-2h6v-4cpv-9pv7.json index 21d9499c4e8..c85bc95aec6 100644 --- a/advisories/unreviewed/2022/05/GHSA-2h6v-4cpv-9pv7/GHSA-2h6v-4cpv-9pv7.json +++ b/advisories/unreviewed/2022/05/GHSA-2h6v-4cpv-9pv7/GHSA-2h6v-4cpv-9pv7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2hff-27rx-7v32/GHSA-2hff-27rx-7v32.json b/advisories/unreviewed/2022/05/GHSA-2hff-27rx-7v32/GHSA-2hff-27rx-7v32.json index 7d428a36f6b..8c00df1dc18 100644 --- a/advisories/unreviewed/2022/05/GHSA-2hff-27rx-7v32/GHSA-2hff-27rx-7v32.json +++ b/advisories/unreviewed/2022/05/GHSA-2hff-27rx-7v32/GHSA-2hff-27rx-7v32.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2j77-34rv-wx26/GHSA-2j77-34rv-wx26.json b/advisories/unreviewed/2022/05/GHSA-2j77-34rv-wx26/GHSA-2j77-34rv-wx26.json index d4b3bf67bd9..ad39310a757 100644 --- a/advisories/unreviewed/2022/05/GHSA-2j77-34rv-wx26/GHSA-2j77-34rv-wx26.json +++ b/advisories/unreviewed/2022/05/GHSA-2j77-34rv-wx26/GHSA-2j77-34rv-wx26.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2jhf-2r9j-fv84/GHSA-2jhf-2r9j-fv84.json b/advisories/unreviewed/2022/05/GHSA-2jhf-2r9j-fv84/GHSA-2jhf-2r9j-fv84.json index 2611937c030..7bf9a266198 100644 --- a/advisories/unreviewed/2022/05/GHSA-2jhf-2r9j-fv84/GHSA-2jhf-2r9j-fv84.json +++ b/advisories/unreviewed/2022/05/GHSA-2jhf-2r9j-fv84/GHSA-2jhf-2r9j-fv84.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2jmv-57qj-jwg6/GHSA-2jmv-57qj-jwg6.json b/advisories/unreviewed/2022/05/GHSA-2jmv-57qj-jwg6/GHSA-2jmv-57qj-jwg6.json index d6de63d98a5..16c1cbfda28 100644 --- a/advisories/unreviewed/2022/05/GHSA-2jmv-57qj-jwg6/GHSA-2jmv-57qj-jwg6.json +++ b/advisories/unreviewed/2022/05/GHSA-2jmv-57qj-jwg6/GHSA-2jmv-57qj-jwg6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-2jrw-7rm5-qgh5/GHSA-2jrw-7rm5-qgh5.json b/advisories/unreviewed/2022/05/GHSA-2jrw-7rm5-qgh5/GHSA-2jrw-7rm5-qgh5.json index 55903e9d386..e6bde4c8ba7 100644 --- a/advisories/unreviewed/2022/05/GHSA-2jrw-7rm5-qgh5/GHSA-2jrw-7rm5-qgh5.json +++ b/advisories/unreviewed/2022/05/GHSA-2jrw-7rm5-qgh5/GHSA-2jrw-7rm5-qgh5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2jwq-w43x-63xx/GHSA-2jwq-w43x-63xx.json b/advisories/unreviewed/2022/05/GHSA-2jwq-w43x-63xx/GHSA-2jwq-w43x-63xx.json index 6c2d165e60f..c0b91c37e30 100644 --- a/advisories/unreviewed/2022/05/GHSA-2jwq-w43x-63xx/GHSA-2jwq-w43x-63xx.json +++ b/advisories/unreviewed/2022/05/GHSA-2jwq-w43x-63xx/GHSA-2jwq-w43x-63xx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2m64-484g-392f/GHSA-2m64-484g-392f.json b/advisories/unreviewed/2022/05/GHSA-2m64-484g-392f/GHSA-2m64-484g-392f.json index 5427c6380c7..8e05581f529 100644 --- a/advisories/unreviewed/2022/05/GHSA-2m64-484g-392f/GHSA-2m64-484g-392f.json +++ b/advisories/unreviewed/2022/05/GHSA-2m64-484g-392f/GHSA-2m64-484g-392f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2pxr-78xf-pr6j/GHSA-2pxr-78xf-pr6j.json b/advisories/unreviewed/2022/05/GHSA-2pxr-78xf-pr6j/GHSA-2pxr-78xf-pr6j.json index 1926047c9ac..0e5814b45fa 100644 --- a/advisories/unreviewed/2022/05/GHSA-2pxr-78xf-pr6j/GHSA-2pxr-78xf-pr6j.json +++ b/advisories/unreviewed/2022/05/GHSA-2pxr-78xf-pr6j/GHSA-2pxr-78xf-pr6j.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-2q7w-563q-mg4x/GHSA-2q7w-563q-mg4x.json b/advisories/unreviewed/2022/05/GHSA-2q7w-563q-mg4x/GHSA-2q7w-563q-mg4x.json index cf2dfb588b4..8b0f4c649fe 100644 --- a/advisories/unreviewed/2022/05/GHSA-2q7w-563q-mg4x/GHSA-2q7w-563q-mg4x.json +++ b/advisories/unreviewed/2022/05/GHSA-2q7w-563q-mg4x/GHSA-2q7w-563q-mg4x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2qvp-mpqh-52mg/GHSA-2qvp-mpqh-52mg.json b/advisories/unreviewed/2022/05/GHSA-2qvp-mpqh-52mg/GHSA-2qvp-mpqh-52mg.json index fee43f254d7..cc58e2d41c6 100644 --- a/advisories/unreviewed/2022/05/GHSA-2qvp-mpqh-52mg/GHSA-2qvp-mpqh-52mg.json +++ b/advisories/unreviewed/2022/05/GHSA-2qvp-mpqh-52mg/GHSA-2qvp-mpqh-52mg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-2qwc-c9m4-m7fx/GHSA-2qwc-c9m4-m7fx.json b/advisories/unreviewed/2022/05/GHSA-2qwc-c9m4-m7fx/GHSA-2qwc-c9m4-m7fx.json index 57305e79e60..c382802aa07 100644 --- a/advisories/unreviewed/2022/05/GHSA-2qwc-c9m4-m7fx/GHSA-2qwc-c9m4-m7fx.json +++ b/advisories/unreviewed/2022/05/GHSA-2qwc-c9m4-m7fx/GHSA-2qwc-c9m4-m7fx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2r66-4gq8-p5c6/GHSA-2r66-4gq8-p5c6.json b/advisories/unreviewed/2022/05/GHSA-2r66-4gq8-p5c6/GHSA-2r66-4gq8-p5c6.json index 2702572f4dc..e116f18a290 100644 --- a/advisories/unreviewed/2022/05/GHSA-2r66-4gq8-p5c6/GHSA-2r66-4gq8-p5c6.json +++ b/advisories/unreviewed/2022/05/GHSA-2r66-4gq8-p5c6/GHSA-2r66-4gq8-p5c6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2rww-6w7q-w5gq/GHSA-2rww-6w7q-w5gq.json b/advisories/unreviewed/2022/05/GHSA-2rww-6w7q-w5gq/GHSA-2rww-6w7q-w5gq.json index 417cea35a5b..5663e8b730f 100644 --- a/advisories/unreviewed/2022/05/GHSA-2rww-6w7q-w5gq/GHSA-2rww-6w7q-w5gq.json +++ b/advisories/unreviewed/2022/05/GHSA-2rww-6w7q-w5gq/GHSA-2rww-6w7q-w5gq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2v36-ccwm-6xw3/GHSA-2v36-ccwm-6xw3.json b/advisories/unreviewed/2022/05/GHSA-2v36-ccwm-6xw3/GHSA-2v36-ccwm-6xw3.json index 34cfac08dd6..2d85d07423c 100644 --- a/advisories/unreviewed/2022/05/GHSA-2v36-ccwm-6xw3/GHSA-2v36-ccwm-6xw3.json +++ b/advisories/unreviewed/2022/05/GHSA-2v36-ccwm-6xw3/GHSA-2v36-ccwm-6xw3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2vfx-6mjq-9ccv/GHSA-2vfx-6mjq-9ccv.json b/advisories/unreviewed/2022/05/GHSA-2vfx-6mjq-9ccv/GHSA-2vfx-6mjq-9ccv.json index f967aeb6a43..f5fe3d2799e 100644 --- a/advisories/unreviewed/2022/05/GHSA-2vfx-6mjq-9ccv/GHSA-2vfx-6mjq-9ccv.json +++ b/advisories/unreviewed/2022/05/GHSA-2vfx-6mjq-9ccv/GHSA-2vfx-6mjq-9ccv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2vw8-r286-4wvc/GHSA-2vw8-r286-4wvc.json b/advisories/unreviewed/2022/05/GHSA-2vw8-r286-4wvc/GHSA-2vw8-r286-4wvc.json index 1fb53febfef..ed876b4d893 100644 --- a/advisories/unreviewed/2022/05/GHSA-2vw8-r286-4wvc/GHSA-2vw8-r286-4wvc.json +++ b/advisories/unreviewed/2022/05/GHSA-2vw8-r286-4wvc/GHSA-2vw8-r286-4wvc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-2xmq-j92f-3mrq/GHSA-2xmq-j92f-3mrq.json b/advisories/unreviewed/2022/05/GHSA-2xmq-j92f-3mrq/GHSA-2xmq-j92f-3mrq.json index 0001eab06d1..192bf42563a 100644 --- a/advisories/unreviewed/2022/05/GHSA-2xmq-j92f-3mrq/GHSA-2xmq-j92f-3mrq.json +++ b/advisories/unreviewed/2022/05/GHSA-2xmq-j92f-3mrq/GHSA-2xmq-j92f-3mrq.json @@ -7,12 +7,8 @@ "CVE-2008-5629" ], "details": "SQL injection vulnerability in index.php in Turnkey Arcade Script allows remote attackers to execute arbitrary SQL commands via the id parameter in a play action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2xxh-xxr9-5c4q/GHSA-2xxh-xxr9-5c4q.json b/advisories/unreviewed/2022/05/GHSA-2xxh-xxr9-5c4q/GHSA-2xxh-xxr9-5c4q.json index 1aa816ce082..d15e94242fb 100644 --- a/advisories/unreviewed/2022/05/GHSA-2xxh-xxr9-5c4q/GHSA-2xxh-xxr9-5c4q.json +++ b/advisories/unreviewed/2022/05/GHSA-2xxh-xxr9-5c4q/GHSA-2xxh-xxr9-5c4q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-326h-x9c2-5cxj/GHSA-326h-x9c2-5cxj.json b/advisories/unreviewed/2022/05/GHSA-326h-x9c2-5cxj/GHSA-326h-x9c2-5cxj.json index c8454570ebc..aa033f79677 100644 --- a/advisories/unreviewed/2022/05/GHSA-326h-x9c2-5cxj/GHSA-326h-x9c2-5cxj.json +++ b/advisories/unreviewed/2022/05/GHSA-326h-x9c2-5cxj/GHSA-326h-x9c2-5cxj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-32xm-x7pr-x3m2/GHSA-32xm-x7pr-x3m2.json b/advisories/unreviewed/2022/05/GHSA-32xm-x7pr-x3m2/GHSA-32xm-x7pr-x3m2.json index 95e2f7d2e85..57e8f080eaa 100644 --- a/advisories/unreviewed/2022/05/GHSA-32xm-x7pr-x3m2/GHSA-32xm-x7pr-x3m2.json +++ b/advisories/unreviewed/2022/05/GHSA-32xm-x7pr-x3m2/GHSA-32xm-x7pr-x3m2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-33mj-c75m-m568/GHSA-33mj-c75m-m568.json b/advisories/unreviewed/2022/05/GHSA-33mj-c75m-m568/GHSA-33mj-c75m-m568.json index 3420e24ef2a..23da7c489be 100644 --- a/advisories/unreviewed/2022/05/GHSA-33mj-c75m-m568/GHSA-33mj-c75m-m568.json +++ b/advisories/unreviewed/2022/05/GHSA-33mj-c75m-m568/GHSA-33mj-c75m-m568.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-34j7-jj72-r63p/GHSA-34j7-jj72-r63p.json b/advisories/unreviewed/2022/05/GHSA-34j7-jj72-r63p/GHSA-34j7-jj72-r63p.json index 4c2f45fc0dd..f96df1b60ee 100644 --- a/advisories/unreviewed/2022/05/GHSA-34j7-jj72-r63p/GHSA-34j7-jj72-r63p.json +++ b/advisories/unreviewed/2022/05/GHSA-34j7-jj72-r63p/GHSA-34j7-jj72-r63p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-35q9-jwmm-wx6j/GHSA-35q9-jwmm-wx6j.json b/advisories/unreviewed/2022/05/GHSA-35q9-jwmm-wx6j/GHSA-35q9-jwmm-wx6j.json index 7140b6fece6..cc704fa4f05 100644 --- a/advisories/unreviewed/2022/05/GHSA-35q9-jwmm-wx6j/GHSA-35q9-jwmm-wx6j.json +++ b/advisories/unreviewed/2022/05/GHSA-35q9-jwmm-wx6j/GHSA-35q9-jwmm-wx6j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-35v3-9ffw-rmxv/GHSA-35v3-9ffw-rmxv.json b/advisories/unreviewed/2022/05/GHSA-35v3-9ffw-rmxv/GHSA-35v3-9ffw-rmxv.json index c9f36bcd7cc..6c55eb97543 100644 --- a/advisories/unreviewed/2022/05/GHSA-35v3-9ffw-rmxv/GHSA-35v3-9ffw-rmxv.json +++ b/advisories/unreviewed/2022/05/GHSA-35v3-9ffw-rmxv/GHSA-35v3-9ffw-rmxv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-389r-v5pg-54r7/GHSA-389r-v5pg-54r7.json b/advisories/unreviewed/2022/05/GHSA-389r-v5pg-54r7/GHSA-389r-v5pg-54r7.json index 22ea365f10d..70694d71fbb 100644 --- a/advisories/unreviewed/2022/05/GHSA-389r-v5pg-54r7/GHSA-389r-v5pg-54r7.json +++ b/advisories/unreviewed/2022/05/GHSA-389r-v5pg-54r7/GHSA-389r-v5pg-54r7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-3937-c38r-7v8c/GHSA-3937-c38r-7v8c.json b/advisories/unreviewed/2022/05/GHSA-3937-c38r-7v8c/GHSA-3937-c38r-7v8c.json index b026e3b7baa..2a9e0276748 100644 --- a/advisories/unreviewed/2022/05/GHSA-3937-c38r-7v8c/GHSA-3937-c38r-7v8c.json +++ b/advisories/unreviewed/2022/05/GHSA-3937-c38r-7v8c/GHSA-3937-c38r-7v8c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-39x4-239r-6266/GHSA-39x4-239r-6266.json b/advisories/unreviewed/2022/05/GHSA-39x4-239r-6266/GHSA-39x4-239r-6266.json index 8555a57c118..8e4418900b7 100644 --- a/advisories/unreviewed/2022/05/GHSA-39x4-239r-6266/GHSA-39x4-239r-6266.json +++ b/advisories/unreviewed/2022/05/GHSA-39x4-239r-6266/GHSA-39x4-239r-6266.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-3cgx-3q2g-968r/GHSA-3cgx-3q2g-968r.json b/advisories/unreviewed/2022/05/GHSA-3cgx-3q2g-968r/GHSA-3cgx-3q2g-968r.json index 5e94bc92c0a..8b69282c510 100644 --- a/advisories/unreviewed/2022/05/GHSA-3cgx-3q2g-968r/GHSA-3cgx-3q2g-968r.json +++ b/advisories/unreviewed/2022/05/GHSA-3cgx-3q2g-968r/GHSA-3cgx-3q2g-968r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-3f99-xvp7-g4c7/GHSA-3f99-xvp7-g4c7.json b/advisories/unreviewed/2022/05/GHSA-3f99-xvp7-g4c7/GHSA-3f99-xvp7-g4c7.json index 46e0d45c376..6f8028e915b 100644 --- a/advisories/unreviewed/2022/05/GHSA-3f99-xvp7-g4c7/GHSA-3f99-xvp7-g4c7.json +++ b/advisories/unreviewed/2022/05/GHSA-3f99-xvp7-g4c7/GHSA-3f99-xvp7-g4c7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-3fhg-h6jr-rg4q/GHSA-3fhg-h6jr-rg4q.json b/advisories/unreviewed/2022/05/GHSA-3fhg-h6jr-rg4q/GHSA-3fhg-h6jr-rg4q.json index 36d961de578..7d614236054 100644 --- a/advisories/unreviewed/2022/05/GHSA-3fhg-h6jr-rg4q/GHSA-3fhg-h6jr-rg4q.json +++ b/advisories/unreviewed/2022/05/GHSA-3fhg-h6jr-rg4q/GHSA-3fhg-h6jr-rg4q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -43,9 +41,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "CRITICAL", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3hgc-wjh7-g8wr/GHSA-3hgc-wjh7-g8wr.json b/advisories/unreviewed/2022/05/GHSA-3hgc-wjh7-g8wr/GHSA-3hgc-wjh7-g8wr.json index fa712db1df6..2a7a423d1e1 100644 --- a/advisories/unreviewed/2022/05/GHSA-3hgc-wjh7-g8wr/GHSA-3hgc-wjh7-g8wr.json +++ b/advisories/unreviewed/2022/05/GHSA-3hgc-wjh7-g8wr/GHSA-3hgc-wjh7-g8wr.json @@ -7,12 +7,8 @@ "CVE-2012-4902" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in Template CMS 2.1.1 and earlier allow remote attackers to hijack the authentication of administrators for requests that (1) create an administrator user via an add action to admin/index.php or (2) conduct static PHP code injection attacks via the themes_editor parameter in an edit_template action to admin/index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3j5p-vc95-vxgc/GHSA-3j5p-vc95-vxgc.json b/advisories/unreviewed/2022/05/GHSA-3j5p-vc95-vxgc/GHSA-3j5p-vc95-vxgc.json index c582b26be5d..17358550ad3 100644 --- a/advisories/unreviewed/2022/05/GHSA-3j5p-vc95-vxgc/GHSA-3j5p-vc95-vxgc.json +++ b/advisories/unreviewed/2022/05/GHSA-3j5p-vc95-vxgc/GHSA-3j5p-vc95-vxgc.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-3mgh-2cwf-8r9v/GHSA-3mgh-2cwf-8r9v.json b/advisories/unreviewed/2022/05/GHSA-3mgh-2cwf-8r9v/GHSA-3mgh-2cwf-8r9v.json index 044b3b6687e..6ed76b89d2f 100644 --- a/advisories/unreviewed/2022/05/GHSA-3mgh-2cwf-8r9v/GHSA-3mgh-2cwf-8r9v.json +++ b/advisories/unreviewed/2022/05/GHSA-3mgh-2cwf-8r9v/GHSA-3mgh-2cwf-8r9v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-3mxj-4pp4-c6m4/GHSA-3mxj-4pp4-c6m4.json b/advisories/unreviewed/2022/05/GHSA-3mxj-4pp4-c6m4/GHSA-3mxj-4pp4-c6m4.json index dbea2e54010..35213e4a5a4 100644 --- a/advisories/unreviewed/2022/05/GHSA-3mxj-4pp4-c6m4/GHSA-3mxj-4pp4-c6m4.json +++ b/advisories/unreviewed/2022/05/GHSA-3mxj-4pp4-c6m4/GHSA-3mxj-4pp4-c6m4.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-3qv9-4g62-x4w2/GHSA-3qv9-4g62-x4w2.json b/advisories/unreviewed/2022/05/GHSA-3qv9-4g62-x4w2/GHSA-3qv9-4g62-x4w2.json index 21412e708ba..b00f3686a5f 100644 --- a/advisories/unreviewed/2022/05/GHSA-3qv9-4g62-x4w2/GHSA-3qv9-4g62-x4w2.json +++ b/advisories/unreviewed/2022/05/GHSA-3qv9-4g62-x4w2/GHSA-3qv9-4g62-x4w2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/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/05/GHSA-3rx6-q2qg-r8cc/GHSA-3rx6-q2qg-r8cc.json b/advisories/unreviewed/2022/05/GHSA-3rx6-q2qg-r8cc/GHSA-3rx6-q2qg-r8cc.json index fc334104f5d..7871335b2dd 100644 --- a/advisories/unreviewed/2022/05/GHSA-3rx6-q2qg-r8cc/GHSA-3rx6-q2qg-r8cc.json +++ b/advisories/unreviewed/2022/05/GHSA-3rx6-q2qg-r8cc/GHSA-3rx6-q2qg-r8cc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-3v77-c57x-prrv/GHSA-3v77-c57x-prrv.json b/advisories/unreviewed/2022/05/GHSA-3v77-c57x-prrv/GHSA-3v77-c57x-prrv.json index 7ee7cbf4c59..0c619244925 100644 --- a/advisories/unreviewed/2022/05/GHSA-3v77-c57x-prrv/GHSA-3v77-c57x-prrv.json +++ b/advisories/unreviewed/2022/05/GHSA-3v77-c57x-prrv/GHSA-3v77-c57x-prrv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-3vmf-xvv7-6hgf/GHSA-3vmf-xvv7-6hgf.json b/advisories/unreviewed/2022/05/GHSA-3vmf-xvv7-6hgf/GHSA-3vmf-xvv7-6hgf.json index b3fd6dafa80..4a44b3f90e2 100644 --- a/advisories/unreviewed/2022/05/GHSA-3vmf-xvv7-6hgf/GHSA-3vmf-xvv7-6hgf.json +++ b/advisories/unreviewed/2022/05/GHSA-3vmf-xvv7-6hgf/GHSA-3vmf-xvv7-6hgf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-3wj5-xm6v-9hmq/GHSA-3wj5-xm6v-9hmq.json b/advisories/unreviewed/2022/05/GHSA-3wj5-xm6v-9hmq/GHSA-3wj5-xm6v-9hmq.json index d7141af5c2b..451cef39957 100644 --- a/advisories/unreviewed/2022/05/GHSA-3wj5-xm6v-9hmq/GHSA-3wj5-xm6v-9hmq.json +++ b/advisories/unreviewed/2022/05/GHSA-3wj5-xm6v-9hmq/GHSA-3wj5-xm6v-9hmq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-3wjq-88q9-5hmg/GHSA-3wjq-88q9-5hmg.json b/advisories/unreviewed/2022/05/GHSA-3wjq-88q9-5hmg/GHSA-3wjq-88q9-5hmg.json index 91f6fcfe5d3..c72e1a4bf18 100644 --- a/advisories/unreviewed/2022/05/GHSA-3wjq-88q9-5hmg/GHSA-3wjq-88q9-5hmg.json +++ b/advisories/unreviewed/2022/05/GHSA-3wjq-88q9-5hmg/GHSA-3wjq-88q9-5hmg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-3xrh-vj72-56p7/GHSA-3xrh-vj72-56p7.json b/advisories/unreviewed/2022/05/GHSA-3xrh-vj72-56p7/GHSA-3xrh-vj72-56p7.json index e8f60079df2..667634bccb8 100644 --- a/advisories/unreviewed/2022/05/GHSA-3xrh-vj72-56p7/GHSA-3xrh-vj72-56p7.json +++ b/advisories/unreviewed/2022/05/GHSA-3xrh-vj72-56p7/GHSA-3xrh-vj72-56p7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-432w-hgxc-f9cx/GHSA-432w-hgxc-f9cx.json b/advisories/unreviewed/2022/05/GHSA-432w-hgxc-f9cx/GHSA-432w-hgxc-f9cx.json index 1754428bd92..102a570f826 100644 --- a/advisories/unreviewed/2022/05/GHSA-432w-hgxc-f9cx/GHSA-432w-hgxc-f9cx.json +++ b/advisories/unreviewed/2022/05/GHSA-432w-hgxc-f9cx/GHSA-432w-hgxc-f9cx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4348-9wcm-575r/GHSA-4348-9wcm-575r.json b/advisories/unreviewed/2022/05/GHSA-4348-9wcm-575r/GHSA-4348-9wcm-575r.json index b4485cb9f17..e861398761f 100644 --- a/advisories/unreviewed/2022/05/GHSA-4348-9wcm-575r/GHSA-4348-9wcm-575r.json +++ b/advisories/unreviewed/2022/05/GHSA-4348-9wcm-575r/GHSA-4348-9wcm-575r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-43f6-crvm-c3cv/GHSA-43f6-crvm-c3cv.json b/advisories/unreviewed/2022/05/GHSA-43f6-crvm-c3cv/GHSA-43f6-crvm-c3cv.json index fdd0231d9da..9123beac79d 100644 --- a/advisories/unreviewed/2022/05/GHSA-43f6-crvm-c3cv/GHSA-43f6-crvm-c3cv.json +++ b/advisories/unreviewed/2022/05/GHSA-43f6-crvm-c3cv/GHSA-43f6-crvm-c3cv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:P/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-43mg-4cxq-6mjp/GHSA-43mg-4cxq-6mjp.json b/advisories/unreviewed/2022/05/GHSA-43mg-4cxq-6mjp/GHSA-43mg-4cxq-6mjp.json index 692c8f05417..89281f0d5c6 100644 --- a/advisories/unreviewed/2022/05/GHSA-43mg-4cxq-6mjp/GHSA-43mg-4cxq-6mjp.json +++ b/advisories/unreviewed/2022/05/GHSA-43mg-4cxq-6mjp/GHSA-43mg-4cxq-6mjp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/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-4468-gjjg-mh5q/GHSA-4468-gjjg-mh5q.json b/advisories/unreviewed/2022/05/GHSA-4468-gjjg-mh5q/GHSA-4468-gjjg-mh5q.json index 5c51b4ce7e9..519e2c00d1c 100644 --- a/advisories/unreviewed/2022/05/GHSA-4468-gjjg-mh5q/GHSA-4468-gjjg-mh5q.json +++ b/advisories/unreviewed/2022/05/GHSA-4468-gjjg-mh5q/GHSA-4468-gjjg-mh5q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-453x-hw83-4xf5/GHSA-453x-hw83-4xf5.json b/advisories/unreviewed/2022/05/GHSA-453x-hw83-4xf5/GHSA-453x-hw83-4xf5.json index eb77cbaf494..bb3e41b4522 100644 --- a/advisories/unreviewed/2022/05/GHSA-453x-hw83-4xf5/GHSA-453x-hw83-4xf5.json +++ b/advisories/unreviewed/2022/05/GHSA-453x-hw83-4xf5/GHSA-453x-hw83-4xf5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-454q-7qq2-3pwv/GHSA-454q-7qq2-3pwv.json b/advisories/unreviewed/2022/05/GHSA-454q-7qq2-3pwv/GHSA-454q-7qq2-3pwv.json index 8546c72d265..662199910e3 100644 --- a/advisories/unreviewed/2022/05/GHSA-454q-7qq2-3pwv/GHSA-454q-7qq2-3pwv.json +++ b/advisories/unreviewed/2022/05/GHSA-454q-7qq2-3pwv/GHSA-454q-7qq2-3pwv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4585-79j7-22mc/GHSA-4585-79j7-22mc.json b/advisories/unreviewed/2022/05/GHSA-4585-79j7-22mc/GHSA-4585-79j7-22mc.json index 90349420391..78e3e9a6a33 100644 --- a/advisories/unreviewed/2022/05/GHSA-4585-79j7-22mc/GHSA-4585-79j7-22mc.json +++ b/advisories/unreviewed/2022/05/GHSA-4585-79j7-22mc/GHSA-4585-79j7-22mc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-458q-p5fc-j68h/GHSA-458q-p5fc-j68h.json b/advisories/unreviewed/2022/05/GHSA-458q-p5fc-j68h/GHSA-458q-p5fc-j68h.json index 18684ca4275..aafe505f59b 100644 --- a/advisories/unreviewed/2022/05/GHSA-458q-p5fc-j68h/GHSA-458q-p5fc-j68h.json +++ b/advisories/unreviewed/2022/05/GHSA-458q-p5fc-j68h/GHSA-458q-p5fc-j68h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-458r-vh8h-c3cp/GHSA-458r-vh8h-c3cp.json b/advisories/unreviewed/2022/05/GHSA-458r-vh8h-c3cp/GHSA-458r-vh8h-c3cp.json index e9ea3462e52..10537d2b424 100644 --- a/advisories/unreviewed/2022/05/GHSA-458r-vh8h-c3cp/GHSA-458r-vh8h-c3cp.json +++ b/advisories/unreviewed/2022/05/GHSA-458r-vh8h-c3cp/GHSA-458r-vh8h-c3cp.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", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "CRITICAL", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-476g-pgxp-v92x/GHSA-476g-pgxp-v92x.json b/advisories/unreviewed/2022/05/GHSA-476g-pgxp-v92x/GHSA-476g-pgxp-v92x.json index 021235834b1..81d60e6f638 100644 --- a/advisories/unreviewed/2022/05/GHSA-476g-pgxp-v92x/GHSA-476g-pgxp-v92x.json +++ b/advisories/unreviewed/2022/05/GHSA-476g-pgxp-v92x/GHSA-476g-pgxp-v92x.json @@ -7,12 +7,8 @@ "CVE-2013-1903" ], "details": "PostgreSQL, possibly 9.2.x before 9.2.4, 9.1.x before 9.1.9, 9.0.x before 9.0.13, 8.4.x before 8.4.17, and 8.3.x before 8.3.23 incorrectly provides the superuser password to scripts related to \"graphical installers for Linux and Mac OS X,\" 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-4836-47vq-jwrg/GHSA-4836-47vq-jwrg.json b/advisories/unreviewed/2022/05/GHSA-4836-47vq-jwrg/GHSA-4836-47vq-jwrg.json index af00ef6541d..e4d7654bbc3 100644 --- a/advisories/unreviewed/2022/05/GHSA-4836-47vq-jwrg/GHSA-4836-47vq-jwrg.json +++ b/advisories/unreviewed/2022/05/GHSA-4836-47vq-jwrg/GHSA-4836-47vq-jwrg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:P/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-495p-h335-825x/GHSA-495p-h335-825x.json b/advisories/unreviewed/2022/05/GHSA-495p-h335-825x/GHSA-495p-h335-825x.json index 70d341b6a49..35f3d587841 100644 --- a/advisories/unreviewed/2022/05/GHSA-495p-h335-825x/GHSA-495p-h335-825x.json +++ b/advisories/unreviewed/2022/05/GHSA-495p-h335-825x/GHSA-495p-h335-825x.json @@ -7,12 +7,8 @@ "CVE-2008-6222" ], "details": "Directory traversal vulnerability in the Pro Desk Support Center (com_pro_desk) component 1.0 and 1.2 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the include_file parameter to index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4c93-8286-pv76/GHSA-4c93-8286-pv76.json b/advisories/unreviewed/2022/05/GHSA-4c93-8286-pv76/GHSA-4c93-8286-pv76.json index 9a2fa5b3a13..a93c8ef0d2c 100644 --- a/advisories/unreviewed/2022/05/GHSA-4c93-8286-pv76/GHSA-4c93-8286-pv76.json +++ b/advisories/unreviewed/2022/05/GHSA-4c93-8286-pv76/GHSA-4c93-8286-pv76.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4cjm-5fqc-2f6p/GHSA-4cjm-5fqc-2f6p.json b/advisories/unreviewed/2022/05/GHSA-4cjm-5fqc-2f6p/GHSA-4cjm-5fqc-2f6p.json index ee9825ff37f..11e1521e9e3 100644 --- a/advisories/unreviewed/2022/05/GHSA-4cjm-5fqc-2f6p/GHSA-4cjm-5fqc-2f6p.json +++ b/advisories/unreviewed/2022/05/GHSA-4cjm-5fqc-2f6p/GHSA-4cjm-5fqc-2f6p.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-4cmg-c87q-55jx/GHSA-4cmg-c87q-55jx.json b/advisories/unreviewed/2022/05/GHSA-4cmg-c87q-55jx/GHSA-4cmg-c87q-55jx.json index 4a7721ddca1..d2b49f734ba 100644 --- a/advisories/unreviewed/2022/05/GHSA-4cmg-c87q-55jx/GHSA-4cmg-c87q-55jx.json +++ b/advisories/unreviewed/2022/05/GHSA-4cmg-c87q-55jx/GHSA-4cmg-c87q-55jx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4fc6-9gw2-gxcg/GHSA-4fc6-9gw2-gxcg.json b/advisories/unreviewed/2022/05/GHSA-4fc6-9gw2-gxcg/GHSA-4fc6-9gw2-gxcg.json index ff0341dc9f4..43032339290 100644 --- a/advisories/unreviewed/2022/05/GHSA-4fc6-9gw2-gxcg/GHSA-4fc6-9gw2-gxcg.json +++ b/advisories/unreviewed/2022/05/GHSA-4fc6-9gw2-gxcg/GHSA-4fc6-9gw2-gxcg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4fg8-6wmq-2r6x/GHSA-4fg8-6wmq-2r6x.json b/advisories/unreviewed/2022/05/GHSA-4fg8-6wmq-2r6x/GHSA-4fg8-6wmq-2r6x.json index 20bc860e1ad..128b4f0462a 100644 --- a/advisories/unreviewed/2022/05/GHSA-4fg8-6wmq-2r6x/GHSA-4fg8-6wmq-2r6x.json +++ b/advisories/unreviewed/2022/05/GHSA-4fg8-6wmq-2r6x/GHSA-4fg8-6wmq-2r6x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4fr9-73w7-j6w3/GHSA-4fr9-73w7-j6w3.json b/advisories/unreviewed/2022/05/GHSA-4fr9-73w7-j6w3/GHSA-4fr9-73w7-j6w3.json index 384f38e7336..4cc2c11ba09 100644 --- a/advisories/unreviewed/2022/05/GHSA-4fr9-73w7-j6w3/GHSA-4fr9-73w7-j6w3.json +++ b/advisories/unreviewed/2022/05/GHSA-4fr9-73w7-j6w3/GHSA-4fr9-73w7-j6w3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4j5w-436p-3969/GHSA-4j5w-436p-3969.json b/advisories/unreviewed/2022/05/GHSA-4j5w-436p-3969/GHSA-4j5w-436p-3969.json index 5fee492f567..2aac07b06d4 100644 --- a/advisories/unreviewed/2022/05/GHSA-4j5w-436p-3969/GHSA-4j5w-436p-3969.json +++ b/advisories/unreviewed/2022/05/GHSA-4j5w-436p-3969/GHSA-4j5w-436p-3969.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4jx6-488q-wrq2/GHSA-4jx6-488q-wrq2.json b/advisories/unreviewed/2022/05/GHSA-4jx6-488q-wrq2/GHSA-4jx6-488q-wrq2.json index 00c7dafa58b..441f117bbed 100644 --- a/advisories/unreviewed/2022/05/GHSA-4jx6-488q-wrq2/GHSA-4jx6-488q-wrq2.json +++ b/advisories/unreviewed/2022/05/GHSA-4jx6-488q-wrq2/GHSA-4jx6-488q-wrq2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4qcp-2hxv-7xjm/GHSA-4qcp-2hxv-7xjm.json b/advisories/unreviewed/2022/05/GHSA-4qcp-2hxv-7xjm/GHSA-4qcp-2hxv-7xjm.json index 1b0af65212f..6482a5c2115 100644 --- a/advisories/unreviewed/2022/05/GHSA-4qcp-2hxv-7xjm/GHSA-4qcp-2hxv-7xjm.json +++ b/advisories/unreviewed/2022/05/GHSA-4qcp-2hxv-7xjm/GHSA-4qcp-2hxv-7xjm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4qwv-vr3x-m78x/GHSA-4qwv-vr3x-m78x.json b/advisories/unreviewed/2022/05/GHSA-4qwv-vr3x-m78x/GHSA-4qwv-vr3x-m78x.json index 2a2c85c8516..0a5a82e98d8 100644 --- a/advisories/unreviewed/2022/05/GHSA-4qwv-vr3x-m78x/GHSA-4qwv-vr3x-m78x.json +++ b/advisories/unreviewed/2022/05/GHSA-4qwv-vr3x-m78x/GHSA-4qwv-vr3x-m78x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4rf9-x8g3-5q7c/GHSA-4rf9-x8g3-5q7c.json b/advisories/unreviewed/2022/05/GHSA-4rf9-x8g3-5q7c/GHSA-4rf9-x8g3-5q7c.json index d307dbd29d6..91633bc6b6d 100644 --- a/advisories/unreviewed/2022/05/GHSA-4rf9-x8g3-5q7c/GHSA-4rf9-x8g3-5q7c.json +++ b/advisories/unreviewed/2022/05/GHSA-4rf9-x8g3-5q7c/GHSA-4rf9-x8g3-5q7c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-4w5x-gf9f-6rv2/GHSA-4w5x-gf9f-6rv2.json b/advisories/unreviewed/2022/05/GHSA-4w5x-gf9f-6rv2/GHSA-4w5x-gf9f-6rv2.json index 024e1cb4ee6..42dc56aec0e 100644 --- a/advisories/unreviewed/2022/05/GHSA-4w5x-gf9f-6rv2/GHSA-4w5x-gf9f-6rv2.json +++ b/advisories/unreviewed/2022/05/GHSA-4w5x-gf9f-6rv2/GHSA-4w5x-gf9f-6rv2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4wcf-rvqr-8vvv/GHSA-4wcf-rvqr-8vvv.json b/advisories/unreviewed/2022/05/GHSA-4wcf-rvqr-8vvv/GHSA-4wcf-rvqr-8vvv.json index 5f3d9bee0ac..8d50b329968 100644 --- a/advisories/unreviewed/2022/05/GHSA-4wcf-rvqr-8vvv/GHSA-4wcf-rvqr-8vvv.json +++ b/advisories/unreviewed/2022/05/GHSA-4wcf-rvqr-8vvv/GHSA-4wcf-rvqr-8vvv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4wfq-hx23-m5c5/GHSA-4wfq-hx23-m5c5.json b/advisories/unreviewed/2022/05/GHSA-4wfq-hx23-m5c5/GHSA-4wfq-hx23-m5c5.json index d5f33382b99..068f97ba231 100644 --- a/advisories/unreviewed/2022/05/GHSA-4wfq-hx23-m5c5/GHSA-4wfq-hx23-m5c5.json +++ b/advisories/unreviewed/2022/05/GHSA-4wfq-hx23-m5c5/GHSA-4wfq-hx23-m5c5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4ww3-4m78-2f4v/GHSA-4ww3-4m78-2f4v.json b/advisories/unreviewed/2022/05/GHSA-4ww3-4m78-2f4v/GHSA-4ww3-4m78-2f4v.json index 8eb8f853e6b..4cf941242b9 100644 --- a/advisories/unreviewed/2022/05/GHSA-4ww3-4m78-2f4v/GHSA-4ww3-4m78-2f4v.json +++ b/advisories/unreviewed/2022/05/GHSA-4ww3-4m78-2f4v/GHSA-4ww3-4m78-2f4v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-4x83-gp9m-6f2g/GHSA-4x83-gp9m-6f2g.json b/advisories/unreviewed/2022/05/GHSA-4x83-gp9m-6f2g/GHSA-4x83-gp9m-6f2g.json index 49d6a176a5c..e27a1b63aca 100644 --- a/advisories/unreviewed/2022/05/GHSA-4x83-gp9m-6f2g/GHSA-4x83-gp9m-6f2g.json +++ b/advisories/unreviewed/2022/05/GHSA-4x83-gp9m-6f2g/GHSA-4x83-gp9m-6f2g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-532m-9cc8-mggr/GHSA-532m-9cc8-mggr.json b/advisories/unreviewed/2022/05/GHSA-532m-9cc8-mggr/GHSA-532m-9cc8-mggr.json index b6b3639b2b4..bb2c968e94b 100644 --- a/advisories/unreviewed/2022/05/GHSA-532m-9cc8-mggr/GHSA-532m-9cc8-mggr.json +++ b/advisories/unreviewed/2022/05/GHSA-532m-9cc8-mggr/GHSA-532m-9cc8-mggr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-543f-wjv2-xwr9/GHSA-543f-wjv2-xwr9.json b/advisories/unreviewed/2022/05/GHSA-543f-wjv2-xwr9/GHSA-543f-wjv2-xwr9.json index c3ab0167726..9ca6c5d613e 100644 --- a/advisories/unreviewed/2022/05/GHSA-543f-wjv2-xwr9/GHSA-543f-wjv2-xwr9.json +++ b/advisories/unreviewed/2022/05/GHSA-543f-wjv2-xwr9/GHSA-543f-wjv2-xwr9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-546g-7hgg-7vw6/GHSA-546g-7hgg-7vw6.json b/advisories/unreviewed/2022/05/GHSA-546g-7hgg-7vw6/GHSA-546g-7hgg-7vw6.json index 2a3d71286b3..b0ac903e6b1 100644 --- a/advisories/unreviewed/2022/05/GHSA-546g-7hgg-7vw6/GHSA-546g-7hgg-7vw6.json +++ b/advisories/unreviewed/2022/05/GHSA-546g-7hgg-7vw6/GHSA-546g-7hgg-7vw6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5482-ppc7-c3cr/GHSA-5482-ppc7-c3cr.json b/advisories/unreviewed/2022/05/GHSA-5482-ppc7-c3cr/GHSA-5482-ppc7-c3cr.json index b0484cb73f4..8ea11398e6c 100644 --- a/advisories/unreviewed/2022/05/GHSA-5482-ppc7-c3cr/GHSA-5482-ppc7-c3cr.json +++ b/advisories/unreviewed/2022/05/GHSA-5482-ppc7-c3cr/GHSA-5482-ppc7-c3cr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-54h5-qvh3-364q/GHSA-54h5-qvh3-364q.json b/advisories/unreviewed/2022/05/GHSA-54h5-qvh3-364q/GHSA-54h5-qvh3-364q.json index eb3855baee0..4fabc4d97f8 100644 --- a/advisories/unreviewed/2022/05/GHSA-54h5-qvh3-364q/GHSA-54h5-qvh3-364q.json +++ b/advisories/unreviewed/2022/05/GHSA-54h5-qvh3-364q/GHSA-54h5-qvh3-364q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-54mr-8wf4-qmv5/GHSA-54mr-8wf4-qmv5.json b/advisories/unreviewed/2022/05/GHSA-54mr-8wf4-qmv5/GHSA-54mr-8wf4-qmv5.json index e3790b1d7ab..6f318eea9f2 100644 --- a/advisories/unreviewed/2022/05/GHSA-54mr-8wf4-qmv5/GHSA-54mr-8wf4-qmv5.json +++ b/advisories/unreviewed/2022/05/GHSA-54mr-8wf4-qmv5/GHSA-54mr-8wf4-qmv5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-557j-q8f6-hw9g/GHSA-557j-q8f6-hw9g.json b/advisories/unreviewed/2022/05/GHSA-557j-q8f6-hw9g/GHSA-557j-q8f6-hw9g.json index 0d06d218be2..7986118708b 100644 --- a/advisories/unreviewed/2022/05/GHSA-557j-q8f6-hw9g/GHSA-557j-q8f6-hw9g.json +++ b/advisories/unreviewed/2022/05/GHSA-557j-q8f6-hw9g/GHSA-557j-q8f6-hw9g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-56mf-j933-fjr4/GHSA-56mf-j933-fjr4.json b/advisories/unreviewed/2022/05/GHSA-56mf-j933-fjr4/GHSA-56mf-j933-fjr4.json index eb2f3375bed..76382a66ecc 100644 --- a/advisories/unreviewed/2022/05/GHSA-56mf-j933-fjr4/GHSA-56mf-j933-fjr4.json +++ b/advisories/unreviewed/2022/05/GHSA-56mf-j933-fjr4/GHSA-56mf-j933-fjr4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5877-vr7v-v7mg/GHSA-5877-vr7v-v7mg.json b/advisories/unreviewed/2022/05/GHSA-5877-vr7v-v7mg/GHSA-5877-vr7v-v7mg.json index 642a45ed8ae..59096a8dc4b 100644 --- a/advisories/unreviewed/2022/05/GHSA-5877-vr7v-v7mg/GHSA-5877-vr7v-v7mg.json +++ b/advisories/unreviewed/2022/05/GHSA-5877-vr7v-v7mg/GHSA-5877-vr7v-v7mg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-5957-vgcr-mr9h/GHSA-5957-vgcr-mr9h.json b/advisories/unreviewed/2022/05/GHSA-5957-vgcr-mr9h/GHSA-5957-vgcr-mr9h.json index d471166c3db..5fa3c4886ce 100644 --- a/advisories/unreviewed/2022/05/GHSA-5957-vgcr-mr9h/GHSA-5957-vgcr-mr9h.json +++ b/advisories/unreviewed/2022/05/GHSA-5957-vgcr-mr9h/GHSA-5957-vgcr-mr9h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-59vq-8fqx-j35q/GHSA-59vq-8fqx-j35q.json b/advisories/unreviewed/2022/05/GHSA-59vq-8fqx-j35q/GHSA-59vq-8fqx-j35q.json index b89e1344e5b..0862f357157 100644 --- a/advisories/unreviewed/2022/05/GHSA-59vq-8fqx-j35q/GHSA-59vq-8fqx-j35q.json +++ b/advisories/unreviewed/2022/05/GHSA-59vq-8fqx-j35q/GHSA-59vq-8fqx-j35q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-5c74-rc32-qc6j/GHSA-5c74-rc32-qc6j.json b/advisories/unreviewed/2022/05/GHSA-5c74-rc32-qc6j/GHSA-5c74-rc32-qc6j.json index 6d36523b163..ccd6754cbf3 100644 --- a/advisories/unreviewed/2022/05/GHSA-5c74-rc32-qc6j/GHSA-5c74-rc32-qc6j.json +++ b/advisories/unreviewed/2022/05/GHSA-5c74-rc32-qc6j/GHSA-5c74-rc32-qc6j.json @@ -7,12 +7,8 @@ "CVE-2008-5967" ], "details": "admin/index.php in PHP iCalendar 2.3.4, 2.24, and earlier does not require administrative authentication for an addupdate action, which allows remote attackers to upload a calendar (aka .ics) file with arbitrary content to the calendars/ directory outside the web root.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5c7h-h9w5-xc43/GHSA-5c7h-h9w5-xc43.json b/advisories/unreviewed/2022/05/GHSA-5c7h-h9w5-xc43/GHSA-5c7h-h9w5-xc43.json index 27feb947b61..29c3faca655 100644 --- a/advisories/unreviewed/2022/05/GHSA-5c7h-h9w5-xc43/GHSA-5c7h-h9w5-xc43.json +++ b/advisories/unreviewed/2022/05/GHSA-5c7h-h9w5-xc43/GHSA-5c7h-h9w5-xc43.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-5f4m-xcxv-243g/GHSA-5f4m-xcxv-243g.json b/advisories/unreviewed/2022/05/GHSA-5f4m-xcxv-243g/GHSA-5f4m-xcxv-243g.json index 575482f12b4..28ecd2b882e 100644 --- a/advisories/unreviewed/2022/05/GHSA-5f4m-xcxv-243g/GHSA-5f4m-xcxv-243g.json +++ b/advisories/unreviewed/2022/05/GHSA-5f4m-xcxv-243g/GHSA-5f4m-xcxv-243g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-5f59-85hr-w8q2/GHSA-5f59-85hr-w8q2.json b/advisories/unreviewed/2022/05/GHSA-5f59-85hr-w8q2/GHSA-5f59-85hr-w8q2.json index bfa0fcdbcaf..f783ce3f13d 100644 --- a/advisories/unreviewed/2022/05/GHSA-5f59-85hr-w8q2/GHSA-5f59-85hr-w8q2.json +++ b/advisories/unreviewed/2022/05/GHSA-5f59-85hr-w8q2/GHSA-5f59-85hr-w8q2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5hmv-vx65-78rh/GHSA-5hmv-vx65-78rh.json b/advisories/unreviewed/2022/05/GHSA-5hmv-vx65-78rh/GHSA-5hmv-vx65-78rh.json index f91208d14ce..4b0619f8c66 100644 --- a/advisories/unreviewed/2022/05/GHSA-5hmv-vx65-78rh/GHSA-5hmv-vx65-78rh.json +++ b/advisories/unreviewed/2022/05/GHSA-5hmv-vx65-78rh/GHSA-5hmv-vx65-78rh.json @@ -7,12 +7,8 @@ "CVE-2008-6188" ], "details": "SQL injection vulnerability in people/editprofile.php in Gforge 4.6 rc1 and earlier allows remote attackers to execute arbitrary SQL commands via the skill_edit[] parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5hq2-6346-wf37/GHSA-5hq2-6346-wf37.json b/advisories/unreviewed/2022/05/GHSA-5hq2-6346-wf37/GHSA-5hq2-6346-wf37.json index 78ea22d5df8..c8890d08ac2 100644 --- a/advisories/unreviewed/2022/05/GHSA-5hq2-6346-wf37/GHSA-5hq2-6346-wf37.json +++ b/advisories/unreviewed/2022/05/GHSA-5hq2-6346-wf37/GHSA-5hq2-6346-wf37.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-5hq7-c9mv-ggvg/GHSA-5hq7-c9mv-ggvg.json b/advisories/unreviewed/2022/05/GHSA-5hq7-c9mv-ggvg/GHSA-5hq7-c9mv-ggvg.json index f19bfc69230..9eee8aafee6 100644 --- a/advisories/unreviewed/2022/05/GHSA-5hq7-c9mv-ggvg/GHSA-5hq7-c9mv-ggvg.json +++ b/advisories/unreviewed/2022/05/GHSA-5hq7-c9mv-ggvg/GHSA-5hq7-c9mv-ggvg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5m6p-94pg-48mf/GHSA-5m6p-94pg-48mf.json b/advisories/unreviewed/2022/05/GHSA-5m6p-94pg-48mf/GHSA-5m6p-94pg-48mf.json index 12cea6c4683..e51da132d58 100644 --- a/advisories/unreviewed/2022/05/GHSA-5m6p-94pg-48mf/GHSA-5m6p-94pg-48mf.json +++ b/advisories/unreviewed/2022/05/GHSA-5m6p-94pg-48mf/GHSA-5m6p-94pg-48mf.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-5prp-mxf5-2cqp/GHSA-5prp-mxf5-2cqp.json b/advisories/unreviewed/2022/05/GHSA-5prp-mxf5-2cqp/GHSA-5prp-mxf5-2cqp.json index 36010ea7f60..ecb882d080b 100644 --- a/advisories/unreviewed/2022/05/GHSA-5prp-mxf5-2cqp/GHSA-5prp-mxf5-2cqp.json +++ b/advisories/unreviewed/2022/05/GHSA-5prp-mxf5-2cqp/GHSA-5prp-mxf5-2cqp.json @@ -7,12 +7,8 @@ "CVE-2008-5653" ], "details": "SQL injection vulnerability in the loginADP function in ajaxp.php in MyioSoft AjaxPortal 3.0 allows remote attackers to execute arbitrary SQL commands via the rsargs parameter, as reachable through the username parameter. 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-5qc6-rgmp-qp3c/GHSA-5qc6-rgmp-qp3c.json b/advisories/unreviewed/2022/05/GHSA-5qc6-rgmp-qp3c/GHSA-5qc6-rgmp-qp3c.json index f1834fa1c4e..aefac6b7f03 100644 --- a/advisories/unreviewed/2022/05/GHSA-5qc6-rgmp-qp3c/GHSA-5qc6-rgmp-qp3c.json +++ b/advisories/unreviewed/2022/05/GHSA-5qc6-rgmp-qp3c/GHSA-5qc6-rgmp-qp3c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5qrw-7676-v3px/GHSA-5qrw-7676-v3px.json b/advisories/unreviewed/2022/05/GHSA-5qrw-7676-v3px/GHSA-5qrw-7676-v3px.json index 3a78b999428..e2f17a2fdda 100644 --- a/advisories/unreviewed/2022/05/GHSA-5qrw-7676-v3px/GHSA-5qrw-7676-v3px.json +++ b/advisories/unreviewed/2022/05/GHSA-5qrw-7676-v3px/GHSA-5qrw-7676-v3px.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5r63-47vh-wqp6/GHSA-5r63-47vh-wqp6.json b/advisories/unreviewed/2022/05/GHSA-5r63-47vh-wqp6/GHSA-5r63-47vh-wqp6.json index 9e7ba5b6cb5..b13ed2e8dcc 100644 --- a/advisories/unreviewed/2022/05/GHSA-5r63-47vh-wqp6/GHSA-5r63-47vh-wqp6.json +++ b/advisories/unreviewed/2022/05/GHSA-5r63-47vh-wqp6/GHSA-5r63-47vh-wqp6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5r8g-rpf6-gvw3/GHSA-5r8g-rpf6-gvw3.json b/advisories/unreviewed/2022/05/GHSA-5r8g-rpf6-gvw3/GHSA-5r8g-rpf6-gvw3.json index 8f46aec87d4..7f190a4af46 100644 --- a/advisories/unreviewed/2022/05/GHSA-5r8g-rpf6-gvw3/GHSA-5r8g-rpf6-gvw3.json +++ b/advisories/unreviewed/2022/05/GHSA-5r8g-rpf6-gvw3/GHSA-5r8g-rpf6-gvw3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5rg9-c252-x9x9/GHSA-5rg9-c252-x9x9.json b/advisories/unreviewed/2022/05/GHSA-5rg9-c252-x9x9/GHSA-5rg9-c252-x9x9.json index 46ffd0f7039..fdc837c76c1 100644 --- a/advisories/unreviewed/2022/05/GHSA-5rg9-c252-x9x9/GHSA-5rg9-c252-x9x9.json +++ b/advisories/unreviewed/2022/05/GHSA-5rg9-c252-x9x9/GHSA-5rg9-c252-x9x9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5rxx-pvxx-jw4m/GHSA-5rxx-pvxx-jw4m.json b/advisories/unreviewed/2022/05/GHSA-5rxx-pvxx-jw4m/GHSA-5rxx-pvxx-jw4m.json index 43027a26cb3..683a30cec0d 100644 --- a/advisories/unreviewed/2022/05/GHSA-5rxx-pvxx-jw4m/GHSA-5rxx-pvxx-jw4m.json +++ b/advisories/unreviewed/2022/05/GHSA-5rxx-pvxx-jw4m/GHSA-5rxx-pvxx-jw4m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5v2j-q264-q2xm/GHSA-5v2j-q264-q2xm.json b/advisories/unreviewed/2022/05/GHSA-5v2j-q264-q2xm/GHSA-5v2j-q264-q2xm.json index eab05b5660b..61176311c2d 100644 --- a/advisories/unreviewed/2022/05/GHSA-5v2j-q264-q2xm/GHSA-5v2j-q264-q2xm.json +++ b/advisories/unreviewed/2022/05/GHSA-5v2j-q264-q2xm/GHSA-5v2j-q264-q2xm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5vmw-7fpp-p5vx/GHSA-5vmw-7fpp-p5vx.json b/advisories/unreviewed/2022/05/GHSA-5vmw-7fpp-p5vx/GHSA-5vmw-7fpp-p5vx.json index 1e1b9590904..88c543f758d 100644 --- a/advisories/unreviewed/2022/05/GHSA-5vmw-7fpp-p5vx/GHSA-5vmw-7fpp-p5vx.json +++ b/advisories/unreviewed/2022/05/GHSA-5vmw-7fpp-p5vx/GHSA-5vmw-7fpp-p5vx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-5w9f-5949-m2r9/GHSA-5w9f-5949-m2r9.json b/advisories/unreviewed/2022/05/GHSA-5w9f-5949-m2r9/GHSA-5w9f-5949-m2r9.json index b54831b22c0..4cf270c8576 100644 --- a/advisories/unreviewed/2022/05/GHSA-5w9f-5949-m2r9/GHSA-5w9f-5949-m2r9.json +++ b/advisories/unreviewed/2022/05/GHSA-5w9f-5949-m2r9/GHSA-5w9f-5949-m2r9.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-5xwj-pj7m-qfv5/GHSA-5xwj-pj7m-qfv5.json b/advisories/unreviewed/2022/05/GHSA-5xwj-pj7m-qfv5/GHSA-5xwj-pj7m-qfv5.json index 26558ec542f..f3559427377 100644 --- a/advisories/unreviewed/2022/05/GHSA-5xwj-pj7m-qfv5/GHSA-5xwj-pj7m-qfv5.json +++ b/advisories/unreviewed/2022/05/GHSA-5xwj-pj7m-qfv5/GHSA-5xwj-pj7m-qfv5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-62pq-5f48-mpmh/GHSA-62pq-5f48-mpmh.json b/advisories/unreviewed/2022/05/GHSA-62pq-5f48-mpmh/GHSA-62pq-5f48-mpmh.json index 671e553cbd7..32e82db57cb 100644 --- a/advisories/unreviewed/2022/05/GHSA-62pq-5f48-mpmh/GHSA-62pq-5f48-mpmh.json +++ b/advisories/unreviewed/2022/05/GHSA-62pq-5f48-mpmh/GHSA-62pq-5f48-mpmh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-634p-j2xc-x69m/GHSA-634p-j2xc-x69m.json b/advisories/unreviewed/2022/05/GHSA-634p-j2xc-x69m/GHSA-634p-j2xc-x69m.json index 589859de6a6..03fc57d62a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-634p-j2xc-x69m/GHSA-634p-j2xc-x69m.json +++ b/advisories/unreviewed/2022/05/GHSA-634p-j2xc-x69m/GHSA-634p-j2xc-x69m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-64m3-rrjw-39mv/GHSA-64m3-rrjw-39mv.json b/advisories/unreviewed/2022/05/GHSA-64m3-rrjw-39mv/GHSA-64m3-rrjw-39mv.json index 1f4a40dd96f..92961874aa4 100644 --- a/advisories/unreviewed/2022/05/GHSA-64m3-rrjw-39mv/GHSA-64m3-rrjw-39mv.json +++ b/advisories/unreviewed/2022/05/GHSA-64m3-rrjw-39mv/GHSA-64m3-rrjw-39mv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-64w2-f474-7rh8/GHSA-64w2-f474-7rh8.json b/advisories/unreviewed/2022/05/GHSA-64w2-f474-7rh8/GHSA-64w2-f474-7rh8.json index f184de92c74..034f46d5cce 100644 --- a/advisories/unreviewed/2022/05/GHSA-64w2-f474-7rh8/GHSA-64w2-f474-7rh8.json +++ b/advisories/unreviewed/2022/05/GHSA-64w2-f474-7rh8/GHSA-64w2-f474-7rh8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-64xg-r5m8-5xmh/GHSA-64xg-r5m8-5xmh.json b/advisories/unreviewed/2022/05/GHSA-64xg-r5m8-5xmh/GHSA-64xg-r5m8-5xmh.json index 125a59fbdde..96466ec290e 100644 --- a/advisories/unreviewed/2022/05/GHSA-64xg-r5m8-5xmh/GHSA-64xg-r5m8-5xmh.json +++ b/advisories/unreviewed/2022/05/GHSA-64xg-r5m8-5xmh/GHSA-64xg-r5m8-5xmh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-65fr-cwfq-p8x4/GHSA-65fr-cwfq-p8x4.json b/advisories/unreviewed/2022/05/GHSA-65fr-cwfq-p8x4/GHSA-65fr-cwfq-p8x4.json index 0fae2b36726..b626e0204ce 100644 --- a/advisories/unreviewed/2022/05/GHSA-65fr-cwfq-p8x4/GHSA-65fr-cwfq-p8x4.json +++ b/advisories/unreviewed/2022/05/GHSA-65fr-cwfq-p8x4/GHSA-65fr-cwfq-p8x4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-663g-ww93-9qmp/GHSA-663g-ww93-9qmp.json b/advisories/unreviewed/2022/05/GHSA-663g-ww93-9qmp/GHSA-663g-ww93-9qmp.json index 38638f03bfd..ef404aa5fca 100644 --- a/advisories/unreviewed/2022/05/GHSA-663g-ww93-9qmp/GHSA-663g-ww93-9qmp.json +++ b/advisories/unreviewed/2022/05/GHSA-663g-ww93-9qmp/GHSA-663g-ww93-9qmp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/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-66xf-hmj3-jj6x/GHSA-66xf-hmj3-jj6x.json b/advisories/unreviewed/2022/05/GHSA-66xf-hmj3-jj6x/GHSA-66xf-hmj3-jj6x.json index d03169d5d81..028d3694d18 100644 --- a/advisories/unreviewed/2022/05/GHSA-66xf-hmj3-jj6x/GHSA-66xf-hmj3-jj6x.json +++ b/advisories/unreviewed/2022/05/GHSA-66xf-hmj3-jj6x/GHSA-66xf-hmj3-jj6x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-67gp-7p67-q86p/GHSA-67gp-7p67-q86p.json b/advisories/unreviewed/2022/05/GHSA-67gp-7p67-q86p/GHSA-67gp-7p67-q86p.json index 236e6a5fbac..8731bb1daeb 100644 --- a/advisories/unreviewed/2022/05/GHSA-67gp-7p67-q86p/GHSA-67gp-7p67-q86p.json +++ b/advisories/unreviewed/2022/05/GHSA-67gp-7p67-q86p/GHSA-67gp-7p67-q86p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-67gw-pr7f-99hr/GHSA-67gw-pr7f-99hr.json b/advisories/unreviewed/2022/05/GHSA-67gw-pr7f-99hr/GHSA-67gw-pr7f-99hr.json index cb1512e24a2..3ea6ff703bc 100644 --- a/advisories/unreviewed/2022/05/GHSA-67gw-pr7f-99hr/GHSA-67gw-pr7f-99hr.json +++ b/advisories/unreviewed/2022/05/GHSA-67gw-pr7f-99hr/GHSA-67gw-pr7f-99hr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "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-6862-7pfr-cg3p/GHSA-6862-7pfr-cg3p.json b/advisories/unreviewed/2022/05/GHSA-6862-7pfr-cg3p/GHSA-6862-7pfr-cg3p.json index 5836c8709d2..a6c693af09b 100644 --- a/advisories/unreviewed/2022/05/GHSA-6862-7pfr-cg3p/GHSA-6862-7pfr-cg3p.json +++ b/advisories/unreviewed/2022/05/GHSA-6862-7pfr-cg3p/GHSA-6862-7pfr-cg3p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-68pp-qpjg-xvph/GHSA-68pp-qpjg-xvph.json b/advisories/unreviewed/2022/05/GHSA-68pp-qpjg-xvph/GHSA-68pp-qpjg-xvph.json index 6967b94537f..70bdd091031 100644 --- a/advisories/unreviewed/2022/05/GHSA-68pp-qpjg-xvph/GHSA-68pp-qpjg-xvph.json +++ b/advisories/unreviewed/2022/05/GHSA-68pp-qpjg-xvph/GHSA-68pp-qpjg-xvph.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6f44-vpf9-9cwm/GHSA-6f44-vpf9-9cwm.json b/advisories/unreviewed/2022/05/GHSA-6f44-vpf9-9cwm/GHSA-6f44-vpf9-9cwm.json index e9d058b1e9f..255a9e9f8ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-6f44-vpf9-9cwm/GHSA-6f44-vpf9-9cwm.json +++ b/advisories/unreviewed/2022/05/GHSA-6f44-vpf9-9cwm/GHSA-6f44-vpf9-9cwm.json @@ -7,12 +7,8 @@ "CVE-2008-6246" ], "details": "SQL injection vulnerability in category.php in Scripts For Sites (SFS) EZ Webring allows remote attackers to execute arbitrary SQL commands via the cat parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6g3q-vw52-vh9q/GHSA-6g3q-vw52-vh9q.json b/advisories/unreviewed/2022/05/GHSA-6g3q-vw52-vh9q/GHSA-6g3q-vw52-vh9q.json index 340e50ab31f..05869a7c91c 100644 --- a/advisories/unreviewed/2022/05/GHSA-6g3q-vw52-vh9q/GHSA-6g3q-vw52-vh9q.json +++ b/advisories/unreviewed/2022/05/GHSA-6g3q-vw52-vh9q/GHSA-6g3q-vw52-vh9q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-6g5p-3fcx-hm6m/GHSA-6g5p-3fcx-hm6m.json b/advisories/unreviewed/2022/05/GHSA-6g5p-3fcx-hm6m/GHSA-6g5p-3fcx-hm6m.json index 62bd2ed6c1a..0ccb33a1e9d 100644 --- a/advisories/unreviewed/2022/05/GHSA-6g5p-3fcx-hm6m/GHSA-6g5p-3fcx-hm6m.json +++ b/advisories/unreviewed/2022/05/GHSA-6g5p-3fcx-hm6m/GHSA-6g5p-3fcx-hm6m.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-6h45-925j-w6rp/GHSA-6h45-925j-w6rp.json b/advisories/unreviewed/2022/05/GHSA-6h45-925j-w6rp/GHSA-6h45-925j-w6rp.json index e9b294cb613..1e67f8e9a48 100644 --- a/advisories/unreviewed/2022/05/GHSA-6h45-925j-w6rp/GHSA-6h45-925j-w6rp.json +++ b/advisories/unreviewed/2022/05/GHSA-6h45-925j-w6rp/GHSA-6h45-925j-w6rp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-6h6x-q2r8-wr4r/GHSA-6h6x-q2r8-wr4r.json b/advisories/unreviewed/2022/05/GHSA-6h6x-q2r8-wr4r/GHSA-6h6x-q2r8-wr4r.json index b112c007380..25a7d415ae6 100644 --- a/advisories/unreviewed/2022/05/GHSA-6h6x-q2r8-wr4r/GHSA-6h6x-q2r8-wr4r.json +++ b/advisories/unreviewed/2022/05/GHSA-6h6x-q2r8-wr4r/GHSA-6h6x-q2r8-wr4r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6hhx-86qx-9ffc/GHSA-6hhx-86qx-9ffc.json b/advisories/unreviewed/2022/05/GHSA-6hhx-86qx-9ffc/GHSA-6hhx-86qx-9ffc.json index 28f6ebeb90f..ada365ad5ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-6hhx-86qx-9ffc/GHSA-6hhx-86qx-9ffc.json +++ b/advisories/unreviewed/2022/05/GHSA-6hhx-86qx-9ffc/GHSA-6hhx-86qx-9ffc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6hrv-qqj8-pvx9/GHSA-6hrv-qqj8-pvx9.json b/advisories/unreviewed/2022/05/GHSA-6hrv-qqj8-pvx9/GHSA-6hrv-qqj8-pvx9.json index d48da888248..809b8b4f0ca 100644 --- a/advisories/unreviewed/2022/05/GHSA-6hrv-qqj8-pvx9/GHSA-6hrv-qqj8-pvx9.json +++ b/advisories/unreviewed/2022/05/GHSA-6hrv-qqj8-pvx9/GHSA-6hrv-qqj8-pvx9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6j28-9mg6-fwmq/GHSA-6j28-9mg6-fwmq.json b/advisories/unreviewed/2022/05/GHSA-6j28-9mg6-fwmq/GHSA-6j28-9mg6-fwmq.json index 31b86b8a68d..b70eeaccd01 100644 --- a/advisories/unreviewed/2022/05/GHSA-6j28-9mg6-fwmq/GHSA-6j28-9mg6-fwmq.json +++ b/advisories/unreviewed/2022/05/GHSA-6j28-9mg6-fwmq/GHSA-6j28-9mg6-fwmq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6j82-xvg5-hgf6/GHSA-6j82-xvg5-hgf6.json b/advisories/unreviewed/2022/05/GHSA-6j82-xvg5-hgf6/GHSA-6j82-xvg5-hgf6.json index 7de1d862d6a..7bdfa090dbf 100644 --- a/advisories/unreviewed/2022/05/GHSA-6j82-xvg5-hgf6/GHSA-6j82-xvg5-hgf6.json +++ b/advisories/unreviewed/2022/05/GHSA-6j82-xvg5-hgf6/GHSA-6j82-xvg5-hgf6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6mpc-6pf6-9cp5/GHSA-6mpc-6pf6-9cp5.json b/advisories/unreviewed/2022/05/GHSA-6mpc-6pf6-9cp5/GHSA-6mpc-6pf6-9cp5.json index 15591c2867a..319b26a0bb7 100644 --- a/advisories/unreviewed/2022/05/GHSA-6mpc-6pf6-9cp5/GHSA-6mpc-6pf6-9cp5.json +++ b/advisories/unreviewed/2022/05/GHSA-6mpc-6pf6-9cp5/GHSA-6mpc-6pf6-9cp5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6p9p-f22m-f5x3/GHSA-6p9p-f22m-f5x3.json b/advisories/unreviewed/2022/05/GHSA-6p9p-f22m-f5x3/GHSA-6p9p-f22m-f5x3.json index 94d1860af04..87158abea8b 100644 --- a/advisories/unreviewed/2022/05/GHSA-6p9p-f22m-f5x3/GHSA-6p9p-f22m-f5x3.json +++ b/advisories/unreviewed/2022/05/GHSA-6p9p-f22m-f5x3/GHSA-6p9p-f22m-f5x3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6pp3-vjj9-vc2x/GHSA-6pp3-vjj9-vc2x.json b/advisories/unreviewed/2022/05/GHSA-6pp3-vjj9-vc2x/GHSA-6pp3-vjj9-vc2x.json index 3cdfa0d5715..9459fca51d8 100644 --- a/advisories/unreviewed/2022/05/GHSA-6pp3-vjj9-vc2x/GHSA-6pp3-vjj9-vc2x.json +++ b/advisories/unreviewed/2022/05/GHSA-6pp3-vjj9-vc2x/GHSA-6pp3-vjj9-vc2x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6q75-456q-rjf2/GHSA-6q75-456q-rjf2.json b/advisories/unreviewed/2022/05/GHSA-6q75-456q-rjf2/GHSA-6q75-456q-rjf2.json index 942f9faf7fb..ca73a69cecf 100644 --- a/advisories/unreviewed/2022/05/GHSA-6q75-456q-rjf2/GHSA-6q75-456q-rjf2.json +++ b/advisories/unreviewed/2022/05/GHSA-6q75-456q-rjf2/GHSA-6q75-456q-rjf2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6vrj-jhh6-638v/GHSA-6vrj-jhh6-638v.json b/advisories/unreviewed/2022/05/GHSA-6vrj-jhh6-638v/GHSA-6vrj-jhh6-638v.json index f570d77a886..a99b49e1efc 100644 --- a/advisories/unreviewed/2022/05/GHSA-6vrj-jhh6-638v/GHSA-6vrj-jhh6-638v.json +++ b/advisories/unreviewed/2022/05/GHSA-6vrj-jhh6-638v/GHSA-6vrj-jhh6-638v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6w7c-7wm5-77rg/GHSA-6w7c-7wm5-77rg.json b/advisories/unreviewed/2022/05/GHSA-6w7c-7wm5-77rg/GHSA-6w7c-7wm5-77rg.json index b41bf9204d4..f085954fac8 100644 --- a/advisories/unreviewed/2022/05/GHSA-6w7c-7wm5-77rg/GHSA-6w7c-7wm5-77rg.json +++ b/advisories/unreviewed/2022/05/GHSA-6w7c-7wm5-77rg/GHSA-6w7c-7wm5-77rg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-6x9p-fwgv-g747/GHSA-6x9p-fwgv-g747.json b/advisories/unreviewed/2022/05/GHSA-6x9p-fwgv-g747/GHSA-6x9p-fwgv-g747.json index b594132667e..2ce8ea0ed82 100644 --- a/advisories/unreviewed/2022/05/GHSA-6x9p-fwgv-g747/GHSA-6x9p-fwgv-g747.json +++ b/advisories/unreviewed/2022/05/GHSA-6x9p-fwgv-g747/GHSA-6x9p-fwgv-g747.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-7232-xfcf-h99w/GHSA-7232-xfcf-h99w.json b/advisories/unreviewed/2022/05/GHSA-7232-xfcf-h99w/GHSA-7232-xfcf-h99w.json index 4b450115b2c..62c8859956f 100644 --- a/advisories/unreviewed/2022/05/GHSA-7232-xfcf-h99w/GHSA-7232-xfcf-h99w.json +++ b/advisories/unreviewed/2022/05/GHSA-7232-xfcf-h99w/GHSA-7232-xfcf-h99w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/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-725r-cwf2-8w4q/GHSA-725r-cwf2-8w4q.json b/advisories/unreviewed/2022/05/GHSA-725r-cwf2-8w4q/GHSA-725r-cwf2-8w4q.json index c138d22ab72..4218f82a2ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-725r-cwf2-8w4q/GHSA-725r-cwf2-8w4q.json +++ b/advisories/unreviewed/2022/05/GHSA-725r-cwf2-8w4q/GHSA-725r-cwf2-8w4q.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-73rf-m3q4-jpq4/GHSA-73rf-m3q4-jpq4.json b/advisories/unreviewed/2022/05/GHSA-73rf-m3q4-jpq4/GHSA-73rf-m3q4-jpq4.json index 5a5e2530dc5..895c5e8d087 100644 --- a/advisories/unreviewed/2022/05/GHSA-73rf-m3q4-jpq4/GHSA-73rf-m3q4-jpq4.json +++ b/advisories/unreviewed/2022/05/GHSA-73rf-m3q4-jpq4/GHSA-73rf-m3q4-jpq4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-7429-3j4f-m57h/GHSA-7429-3j4f-m57h.json b/advisories/unreviewed/2022/05/GHSA-7429-3j4f-m57h/GHSA-7429-3j4f-m57h.json index 6597507d582..58d12ea99f0 100644 --- a/advisories/unreviewed/2022/05/GHSA-7429-3j4f-m57h/GHSA-7429-3j4f-m57h.json +++ b/advisories/unreviewed/2022/05/GHSA-7429-3j4f-m57h/GHSA-7429-3j4f-m57h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-74xr-j6fq-776m/GHSA-74xr-j6fq-776m.json b/advisories/unreviewed/2022/05/GHSA-74xr-j6fq-776m/GHSA-74xr-j6fq-776m.json index f3bdb09af40..6a71b53ec01 100644 --- a/advisories/unreviewed/2022/05/GHSA-74xr-j6fq-776m/GHSA-74xr-j6fq-776m.json +++ b/advisories/unreviewed/2022/05/GHSA-74xr-j6fq-776m/GHSA-74xr-j6fq-776m.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-75g9-6vww-84x4/GHSA-75g9-6vww-84x4.json b/advisories/unreviewed/2022/05/GHSA-75g9-6vww-84x4/GHSA-75g9-6vww-84x4.json index 72abf1c8bc1..1efe66b4439 100644 --- a/advisories/unreviewed/2022/05/GHSA-75g9-6vww-84x4/GHSA-75g9-6vww-84x4.json +++ b/advisories/unreviewed/2022/05/GHSA-75g9-6vww-84x4/GHSA-75g9-6vww-84x4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-75h9-f495-r8mw/GHSA-75h9-f495-r8mw.json b/advisories/unreviewed/2022/05/GHSA-75h9-f495-r8mw/GHSA-75h9-f495-r8mw.json index 6bc3b99ca14..630b257e4a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-75h9-f495-r8mw/GHSA-75h9-f495-r8mw.json +++ b/advisories/unreviewed/2022/05/GHSA-75h9-f495-r8mw/GHSA-75h9-f495-r8mw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-75qp-pq7r-pff6/GHSA-75qp-pq7r-pff6.json b/advisories/unreviewed/2022/05/GHSA-75qp-pq7r-pff6/GHSA-75qp-pq7r-pff6.json index f393c1adc22..4d37ca73db9 100644 --- a/advisories/unreviewed/2022/05/GHSA-75qp-pq7r-pff6/GHSA-75qp-pq7r-pff6.json +++ b/advisories/unreviewed/2022/05/GHSA-75qp-pq7r-pff6/GHSA-75qp-pq7r-pff6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-795q-99jq-47p3/GHSA-795q-99jq-47p3.json b/advisories/unreviewed/2022/05/GHSA-795q-99jq-47p3/GHSA-795q-99jq-47p3.json index de8d5cbf8aa..d261e0e9bfd 100644 --- a/advisories/unreviewed/2022/05/GHSA-795q-99jq-47p3/GHSA-795q-99jq-47p3.json +++ b/advisories/unreviewed/2022/05/GHSA-795q-99jq-47p3/GHSA-795q-99jq-47p3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-799h-44w5-5p5w/GHSA-799h-44w5-5p5w.json b/advisories/unreviewed/2022/05/GHSA-799h-44w5-5p5w/GHSA-799h-44w5-5p5w.json index ea1daeb8cec..3abd5fb6d5c 100644 --- a/advisories/unreviewed/2022/05/GHSA-799h-44w5-5p5w/GHSA-799h-44w5-5p5w.json +++ b/advisories/unreviewed/2022/05/GHSA-799h-44w5-5p5w/GHSA-799h-44w5-5p5w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-79qj-f29w-53m2/GHSA-79qj-f29w-53m2.json b/advisories/unreviewed/2022/05/GHSA-79qj-f29w-53m2/GHSA-79qj-f29w-53m2.json index 016e5c775dc..d5b54abb935 100644 --- a/advisories/unreviewed/2022/05/GHSA-79qj-f29w-53m2/GHSA-79qj-f29w-53m2.json +++ b/advisories/unreviewed/2022/05/GHSA-79qj-f29w-53m2/GHSA-79qj-f29w-53m2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-79rx-j79v-gf4h/GHSA-79rx-j79v-gf4h.json b/advisories/unreviewed/2022/05/GHSA-79rx-j79v-gf4h/GHSA-79rx-j79v-gf4h.json index 2ee9b9e585a..37fa7cc6a1f 100644 --- a/advisories/unreviewed/2022/05/GHSA-79rx-j79v-gf4h/GHSA-79rx-j79v-gf4h.json +++ b/advisories/unreviewed/2022/05/GHSA-79rx-j79v-gf4h/GHSA-79rx-j79v-gf4h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-7fmj-22mc-jr8j/GHSA-7fmj-22mc-jr8j.json b/advisories/unreviewed/2022/05/GHSA-7fmj-22mc-jr8j/GHSA-7fmj-22mc-jr8j.json index 54218d3c153..ef285cc5d2a 100644 --- a/advisories/unreviewed/2022/05/GHSA-7fmj-22mc-jr8j/GHSA-7fmj-22mc-jr8j.json +++ b/advisories/unreviewed/2022/05/GHSA-7fmj-22mc-jr8j/GHSA-7fmj-22mc-jr8j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:L/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/05/GHSA-7jcw-wx83-m4vv/GHSA-7jcw-wx83-m4vv.json b/advisories/unreviewed/2022/05/GHSA-7jcw-wx83-m4vv/GHSA-7jcw-wx83-m4vv.json index c2a47f1d769..32bd0f837e3 100644 --- a/advisories/unreviewed/2022/05/GHSA-7jcw-wx83-m4vv/GHSA-7jcw-wx83-m4vv.json +++ b/advisories/unreviewed/2022/05/GHSA-7jcw-wx83-m4vv/GHSA-7jcw-wx83-m4vv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-7jh3-rp6c-hrq8/GHSA-7jh3-rp6c-hrq8.json b/advisories/unreviewed/2022/05/GHSA-7jh3-rp6c-hrq8/GHSA-7jh3-rp6c-hrq8.json index 2cc358c7ad5..9bee3792520 100644 --- a/advisories/unreviewed/2022/05/GHSA-7jh3-rp6c-hrq8/GHSA-7jh3-rp6c-hrq8.json +++ b/advisories/unreviewed/2022/05/GHSA-7jh3-rp6c-hrq8/GHSA-7jh3-rp6c-hrq8.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-7jmr-j6mm-j9qr/GHSA-7jmr-j6mm-j9qr.json b/advisories/unreviewed/2022/05/GHSA-7jmr-j6mm-j9qr/GHSA-7jmr-j6mm-j9qr.json index 3d0b14ef577..f9cfbf8958d 100644 --- a/advisories/unreviewed/2022/05/GHSA-7jmr-j6mm-j9qr/GHSA-7jmr-j6mm-j9qr.json +++ b/advisories/unreviewed/2022/05/GHSA-7jmr-j6mm-j9qr/GHSA-7jmr-j6mm-j9qr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-7m25-frf9-3xj6/GHSA-7m25-frf9-3xj6.json b/advisories/unreviewed/2022/05/GHSA-7m25-frf9-3xj6/GHSA-7m25-frf9-3xj6.json index be9e5457c47..ec3511f0dac 100644 --- a/advisories/unreviewed/2022/05/GHSA-7m25-frf9-3xj6/GHSA-7m25-frf9-3xj6.json +++ b/advisories/unreviewed/2022/05/GHSA-7m25-frf9-3xj6/GHSA-7m25-frf9-3xj6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-7p9j-qh8p-v7c6/GHSA-7p9j-qh8p-v7c6.json b/advisories/unreviewed/2022/05/GHSA-7p9j-qh8p-v7c6/GHSA-7p9j-qh8p-v7c6.json index 7bce6ff5848..fe8cd47919b 100644 --- a/advisories/unreviewed/2022/05/GHSA-7p9j-qh8p-v7c6/GHSA-7p9j-qh8p-v7c6.json +++ b/advisories/unreviewed/2022/05/GHSA-7p9j-qh8p-v7c6/GHSA-7p9j-qh8p-v7c6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-7pjq-c627-pmr3/GHSA-7pjq-c627-pmr3.json b/advisories/unreviewed/2022/05/GHSA-7pjq-c627-pmr3/GHSA-7pjq-c627-pmr3.json index 5088f05c216..718756f5d55 100644 --- a/advisories/unreviewed/2022/05/GHSA-7pjq-c627-pmr3/GHSA-7pjq-c627-pmr3.json +++ b/advisories/unreviewed/2022/05/GHSA-7pjq-c627-pmr3/GHSA-7pjq-c627-pmr3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-7pm6-vg99-59c2/GHSA-7pm6-vg99-59c2.json b/advisories/unreviewed/2022/05/GHSA-7pm6-vg99-59c2/GHSA-7pm6-vg99-59c2.json index 3a35925501f..784966e662a 100644 --- a/advisories/unreviewed/2022/05/GHSA-7pm6-vg99-59c2/GHSA-7pm6-vg99-59c2.json +++ b/advisories/unreviewed/2022/05/GHSA-7pm6-vg99-59c2/GHSA-7pm6-vg99-59c2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-7pmw-wx59-gh4v/GHSA-7pmw-wx59-gh4v.json b/advisories/unreviewed/2022/05/GHSA-7pmw-wx59-gh4v/GHSA-7pmw-wx59-gh4v.json index d92c91b3fe6..b23fb709e3d 100644 --- a/advisories/unreviewed/2022/05/GHSA-7pmw-wx59-gh4v/GHSA-7pmw-wx59-gh4v.json +++ b/advisories/unreviewed/2022/05/GHSA-7pmw-wx59-gh4v/GHSA-7pmw-wx59-gh4v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-7q94-pm2h-4gwx/GHSA-7q94-pm2h-4gwx.json b/advisories/unreviewed/2022/05/GHSA-7q94-pm2h-4gwx/GHSA-7q94-pm2h-4gwx.json index 1f868e103f6..6d89d5647ee 100644 --- a/advisories/unreviewed/2022/05/GHSA-7q94-pm2h-4gwx/GHSA-7q94-pm2h-4gwx.json +++ b/advisories/unreviewed/2022/05/GHSA-7q94-pm2h-4gwx/GHSA-7q94-pm2h-4gwx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-7v4w-jxg8-p56q/GHSA-7v4w-jxg8-p56q.json b/advisories/unreviewed/2022/05/GHSA-7v4w-jxg8-p56q/GHSA-7v4w-jxg8-p56q.json index 20fd7eea8ca..a21796e3746 100644 --- a/advisories/unreviewed/2022/05/GHSA-7v4w-jxg8-p56q/GHSA-7v4w-jxg8-p56q.json +++ b/advisories/unreviewed/2022/05/GHSA-7v4w-jxg8-p56q/GHSA-7v4w-jxg8-p56q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-7vvf-ghq4-pw24/GHSA-7vvf-ghq4-pw24.json b/advisories/unreviewed/2022/05/GHSA-7vvf-ghq4-pw24/GHSA-7vvf-ghq4-pw24.json index ffc0662cad6..1621ba1fd40 100644 --- a/advisories/unreviewed/2022/05/GHSA-7vvf-ghq4-pw24/GHSA-7vvf-ghq4-pw24.json +++ b/advisories/unreviewed/2022/05/GHSA-7vvf-ghq4-pw24/GHSA-7vvf-ghq4-pw24.json @@ -7,12 +7,8 @@ "CVE-2015-0359" ], "details": "Double free vulnerability in Adobe Flash Player before 13.0.0.281 and 14.x through 17.x before 17.0.0.169 on Windows and OS X and before 11.2.202.457 on Linux allows attackers to execute arbitrary code via unspecified vectors, a different vulnerability than CVE-2015-0346.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -56,9 +52,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-7wcg-hrgc-r929/GHSA-7wcg-hrgc-r929.json b/advisories/unreviewed/2022/05/GHSA-7wcg-hrgc-r929/GHSA-7wcg-hrgc-r929.json index 362ad052e22..51ab1deb748 100644 --- a/advisories/unreviewed/2022/05/GHSA-7wcg-hrgc-r929/GHSA-7wcg-hrgc-r929.json +++ b/advisories/unreviewed/2022/05/GHSA-7wcg-hrgc-r929/GHSA-7wcg-hrgc-r929.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-7x56-pwr8-339q/GHSA-7x56-pwr8-339q.json b/advisories/unreviewed/2022/05/GHSA-7x56-pwr8-339q/GHSA-7x56-pwr8-339q.json index 5fa9cdb8367..b0b404d5513 100644 --- a/advisories/unreviewed/2022/05/GHSA-7x56-pwr8-339q/GHSA-7x56-pwr8-339q.json +++ b/advisories/unreviewed/2022/05/GHSA-7x56-pwr8-339q/GHSA-7x56-pwr8-339q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-829m-7f46-r3j5/GHSA-829m-7f46-r3j5.json b/advisories/unreviewed/2022/05/GHSA-829m-7f46-r3j5/GHSA-829m-7f46-r3j5.json index ca2b87153e0..b9a6c7a72db 100644 --- a/advisories/unreviewed/2022/05/GHSA-829m-7f46-r3j5/GHSA-829m-7f46-r3j5.json +++ b/advisories/unreviewed/2022/05/GHSA-829m-7f46-r3j5/GHSA-829m-7f46-r3j5.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-84gc-wc9h-fcv8/GHSA-84gc-wc9h-fcv8.json b/advisories/unreviewed/2022/05/GHSA-84gc-wc9h-fcv8/GHSA-84gc-wc9h-fcv8.json index d46814c5ff4..ffabc21701b 100644 --- a/advisories/unreviewed/2022/05/GHSA-84gc-wc9h-fcv8/GHSA-84gc-wc9h-fcv8.json +++ b/advisories/unreviewed/2022/05/GHSA-84gc-wc9h-fcv8/GHSA-84gc-wc9h-fcv8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-85fw-j8xj-pmwj/GHSA-85fw-j8xj-pmwj.json b/advisories/unreviewed/2022/05/GHSA-85fw-j8xj-pmwj/GHSA-85fw-j8xj-pmwj.json index 4a31000b81d..0c858f32462 100644 --- a/advisories/unreviewed/2022/05/GHSA-85fw-j8xj-pmwj/GHSA-85fw-j8xj-pmwj.json +++ b/advisories/unreviewed/2022/05/GHSA-85fw-j8xj-pmwj/GHSA-85fw-j8xj-pmwj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-85xp-pw8p-jjg3/GHSA-85xp-pw8p-jjg3.json b/advisories/unreviewed/2022/05/GHSA-85xp-pw8p-jjg3/GHSA-85xp-pw8p-jjg3.json index e49a59973fd..651dbb982cf 100644 --- a/advisories/unreviewed/2022/05/GHSA-85xp-pw8p-jjg3/GHSA-85xp-pw8p-jjg3.json +++ b/advisories/unreviewed/2022/05/GHSA-85xp-pw8p-jjg3/GHSA-85xp-pw8p-jjg3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-86j5-cqgv-xc38/GHSA-86j5-cqgv-xc38.json b/advisories/unreviewed/2022/05/GHSA-86j5-cqgv-xc38/GHSA-86j5-cqgv-xc38.json index 76d5758fdd9..70a1efa8244 100644 --- a/advisories/unreviewed/2022/05/GHSA-86j5-cqgv-xc38/GHSA-86j5-cqgv-xc38.json +++ b/advisories/unreviewed/2022/05/GHSA-86j5-cqgv-xc38/GHSA-86j5-cqgv-xc38.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8766-hj6c-9qw4/GHSA-8766-hj6c-9qw4.json b/advisories/unreviewed/2022/05/GHSA-8766-hj6c-9qw4/GHSA-8766-hj6c-9qw4.json index dea3b439b57..59b2d544f48 100644 --- a/advisories/unreviewed/2022/05/GHSA-8766-hj6c-9qw4/GHSA-8766-hj6c-9qw4.json +++ b/advisories/unreviewed/2022/05/GHSA-8766-hj6c-9qw4/GHSA-8766-hj6c-9qw4.json @@ -7,12 +7,8 @@ "CVE-2015-0206" ], "details": "Memory leak in the dtls1_buffer_record function in d1_pkt.c in OpenSSL 1.0.0 before 1.0.0p and 1.0.1 before 1.0.1k allows remote attackers to cause a denial of service (memory consumption) by sending many duplicate records for the next epoch, leading to failure of replay detection.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-886v-2333-mwrh/GHSA-886v-2333-mwrh.json b/advisories/unreviewed/2022/05/GHSA-886v-2333-mwrh/GHSA-886v-2333-mwrh.json index 85d1722cea8..2f4e7604eb6 100644 --- a/advisories/unreviewed/2022/05/GHSA-886v-2333-mwrh/GHSA-886v-2333-mwrh.json +++ b/advisories/unreviewed/2022/05/GHSA-886v-2333-mwrh/GHSA-886v-2333-mwrh.json @@ -7,12 +7,8 @@ "CVE-2008-5365" ], "details": "SQL injection vulnerability in VoteHistory.asp in ActiveWebSoftwares ActiveVotes 2.2 allows remote attackers to execute arbitrary SQL commands via the AccountID parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-888w-87q8-3mjj/GHSA-888w-87q8-3mjj.json b/advisories/unreviewed/2022/05/GHSA-888w-87q8-3mjj/GHSA-888w-87q8-3mjj.json index 1c11163463e..9a68bd9247e 100644 --- a/advisories/unreviewed/2022/05/GHSA-888w-87q8-3mjj/GHSA-888w-87q8-3mjj.json +++ b/advisories/unreviewed/2022/05/GHSA-888w-87q8-3mjj/GHSA-888w-87q8-3mjj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-8949-pxh3-9x3f/GHSA-8949-pxh3-9x3f.json b/advisories/unreviewed/2022/05/GHSA-8949-pxh3-9x3f/GHSA-8949-pxh3-9x3f.json index 2daf72baa8c..82df4c92cd2 100644 --- a/advisories/unreviewed/2022/05/GHSA-8949-pxh3-9x3f/GHSA-8949-pxh3-9x3f.json +++ b/advisories/unreviewed/2022/05/GHSA-8949-pxh3-9x3f/GHSA-8949-pxh3-9x3f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-89v2-rphr-p2pf/GHSA-89v2-rphr-p2pf.json b/advisories/unreviewed/2022/05/GHSA-89v2-rphr-p2pf/GHSA-89v2-rphr-p2pf.json index 4656c54090f..1a9ba48f564 100644 --- a/advisories/unreviewed/2022/05/GHSA-89v2-rphr-p2pf/GHSA-89v2-rphr-p2pf.json +++ b/advisories/unreviewed/2022/05/GHSA-89v2-rphr-p2pf/GHSA-89v2-rphr-p2pf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8c4c-pjc2-qr4r/GHSA-8c4c-pjc2-qr4r.json b/advisories/unreviewed/2022/05/GHSA-8c4c-pjc2-qr4r/GHSA-8c4c-pjc2-qr4r.json index ca73124cc12..ee35f021076 100644 --- a/advisories/unreviewed/2022/05/GHSA-8c4c-pjc2-qr4r/GHSA-8c4c-pjc2-qr4r.json +++ b/advisories/unreviewed/2022/05/GHSA-8c4c-pjc2-qr4r/GHSA-8c4c-pjc2-qr4r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8ch9-48h9-cqjf/GHSA-8ch9-48h9-cqjf.json b/advisories/unreviewed/2022/05/GHSA-8ch9-48h9-cqjf/GHSA-8ch9-48h9-cqjf.json index 4114a1d1df9..7343cf7fb72 100644 --- a/advisories/unreviewed/2022/05/GHSA-8ch9-48h9-cqjf/GHSA-8ch9-48h9-cqjf.json +++ b/advisories/unreviewed/2022/05/GHSA-8ch9-48h9-cqjf/GHSA-8ch9-48h9-cqjf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8fg6-v49c-hw4m/GHSA-8fg6-v49c-hw4m.json b/advisories/unreviewed/2022/05/GHSA-8fg6-v49c-hw4m/GHSA-8fg6-v49c-hw4m.json index e220cbc1e42..d1cdb965868 100644 --- a/advisories/unreviewed/2022/05/GHSA-8fg6-v49c-hw4m/GHSA-8fg6-v49c-hw4m.json +++ b/advisories/unreviewed/2022/05/GHSA-8fg6-v49c-hw4m/GHSA-8fg6-v49c-hw4m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8g24-3pxp-63wv/GHSA-8g24-3pxp-63wv.json b/advisories/unreviewed/2022/05/GHSA-8g24-3pxp-63wv/GHSA-8g24-3pxp-63wv.json index 165cf89a318..7146dfaa0fd 100644 --- a/advisories/unreviewed/2022/05/GHSA-8g24-3pxp-63wv/GHSA-8g24-3pxp-63wv.json +++ b/advisories/unreviewed/2022/05/GHSA-8g24-3pxp-63wv/GHSA-8g24-3pxp-63wv.json @@ -7,12 +7,8 @@ "CVE-2008-6187" ], "details": "SQL injection vulnerability in frs/shownotes.php in Gforge 4.5.19 and earlier allows remote attackers to execute arbitrary SQL commands via the release_id parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8h36-898g-vfff/GHSA-8h36-898g-vfff.json b/advisories/unreviewed/2022/05/GHSA-8h36-898g-vfff/GHSA-8h36-898g-vfff.json index f2fa6ecdb87..6f4b31496b6 100644 --- a/advisories/unreviewed/2022/05/GHSA-8h36-898g-vfff/GHSA-8h36-898g-vfff.json +++ b/advisories/unreviewed/2022/05/GHSA-8h36-898g-vfff/GHSA-8h36-898g-vfff.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8hg4-49xf-f7r7/GHSA-8hg4-49xf-f7r7.json b/advisories/unreviewed/2022/05/GHSA-8hg4-49xf-f7r7/GHSA-8hg4-49xf-f7r7.json index 69b4b8113de..4ec03d27441 100644 --- a/advisories/unreviewed/2022/05/GHSA-8hg4-49xf-f7r7/GHSA-8hg4-49xf-f7r7.json +++ b/advisories/unreviewed/2022/05/GHSA-8hg4-49xf-f7r7/GHSA-8hg4-49xf-f7r7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8hx3-9h7m-779q/GHSA-8hx3-9h7m-779q.json b/advisories/unreviewed/2022/05/GHSA-8hx3-9h7m-779q/GHSA-8hx3-9h7m-779q.json index e8e41c33d30..2bcb522c3f4 100644 --- a/advisories/unreviewed/2022/05/GHSA-8hx3-9h7m-779q/GHSA-8hx3-9h7m-779q.json +++ b/advisories/unreviewed/2022/05/GHSA-8hx3-9h7m-779q/GHSA-8hx3-9h7m-779q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8mg5-cwcv-658x/GHSA-8mg5-cwcv-658x.json b/advisories/unreviewed/2022/05/GHSA-8mg5-cwcv-658x/GHSA-8mg5-cwcv-658x.json index 643b78dd0e8..a645e83c770 100644 --- a/advisories/unreviewed/2022/05/GHSA-8mg5-cwcv-658x/GHSA-8mg5-cwcv-658x.json +++ b/advisories/unreviewed/2022/05/GHSA-8mg5-cwcv-658x/GHSA-8mg5-cwcv-658x.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-8mxf-jjr3-r9ff/GHSA-8mxf-jjr3-r9ff.json b/advisories/unreviewed/2022/05/GHSA-8mxf-jjr3-r9ff/GHSA-8mxf-jjr3-r9ff.json index b3e68fd354a..85119d45bbb 100644 --- a/advisories/unreviewed/2022/05/GHSA-8mxf-jjr3-r9ff/GHSA-8mxf-jjr3-r9ff.json +++ b/advisories/unreviewed/2022/05/GHSA-8mxf-jjr3-r9ff/GHSA-8mxf-jjr3-r9ff.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8p7x-6v2f-7qv5/GHSA-8p7x-6v2f-7qv5.json b/advisories/unreviewed/2022/05/GHSA-8p7x-6v2f-7qv5/GHSA-8p7x-6v2f-7qv5.json index c1d43375d85..1dda03374ad 100644 --- a/advisories/unreviewed/2022/05/GHSA-8p7x-6v2f-7qv5/GHSA-8p7x-6v2f-7qv5.json +++ b/advisories/unreviewed/2022/05/GHSA-8p7x-6v2f-7qv5/GHSA-8p7x-6v2f-7qv5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8pcq-p3m2-3v2h/GHSA-8pcq-p3m2-3v2h.json b/advisories/unreviewed/2022/05/GHSA-8pcq-p3m2-3v2h/GHSA-8pcq-p3m2-3v2h.json index e55941fa104..b77c6799bdb 100644 --- a/advisories/unreviewed/2022/05/GHSA-8pcq-p3m2-3v2h/GHSA-8pcq-p3m2-3v2h.json +++ b/advisories/unreviewed/2022/05/GHSA-8pcq-p3m2-3v2h/GHSA-8pcq-p3m2-3v2h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8rh2-p978-gvcf/GHSA-8rh2-p978-gvcf.json b/advisories/unreviewed/2022/05/GHSA-8rh2-p978-gvcf/GHSA-8rh2-p978-gvcf.json index a6a9762b072..6b1ed299eee 100644 --- a/advisories/unreviewed/2022/05/GHSA-8rh2-p978-gvcf/GHSA-8rh2-p978-gvcf.json +++ b/advisories/unreviewed/2022/05/GHSA-8rh2-p978-gvcf/GHSA-8rh2-p978-gvcf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8v5q-pxx6-xf6f/GHSA-8v5q-pxx6-xf6f.json b/advisories/unreviewed/2022/05/GHSA-8v5q-pxx6-xf6f/GHSA-8v5q-pxx6-xf6f.json index 6d597a957ca..ac962f87b8a 100644 --- a/advisories/unreviewed/2022/05/GHSA-8v5q-pxx6-xf6f/GHSA-8v5q-pxx6-xf6f.json +++ b/advisories/unreviewed/2022/05/GHSA-8v5q-pxx6-xf6f/GHSA-8v5q-pxx6-xf6f.json @@ -7,12 +7,8 @@ "CVE-2015-7748" ], "details": "Juniper chassis with Trio (Trinity) chipset line cards and Junos OS 13.3 before 13.3R8, 14.1 before 14.1R6, 14.2 before 14.2R5, and 15.1 before 15.1R2 allow remote attackers to cause a denial of service (MPC line card crash) via a crafted uBFD packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8vhj-8348-wg28/GHSA-8vhj-8348-wg28.json b/advisories/unreviewed/2022/05/GHSA-8vhj-8348-wg28/GHSA-8vhj-8348-wg28.json index beb35cbcd32..f46ec905702 100644 --- a/advisories/unreviewed/2022/05/GHSA-8vhj-8348-wg28/GHSA-8vhj-8348-wg28.json +++ b/advisories/unreviewed/2022/05/GHSA-8vhj-8348-wg28/GHSA-8vhj-8348-wg28.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8vhv-r72q-4rpj/GHSA-8vhv-r72q-4rpj.json b/advisories/unreviewed/2022/05/GHSA-8vhv-r72q-4rpj/GHSA-8vhv-r72q-4rpj.json index 62aee0e64f3..80ddb3525a7 100644 --- a/advisories/unreviewed/2022/05/GHSA-8vhv-r72q-4rpj/GHSA-8vhv-r72q-4rpj.json +++ b/advisories/unreviewed/2022/05/GHSA-8vhv-r72q-4rpj/GHSA-8vhv-r72q-4rpj.json @@ -7,12 +7,8 @@ "CVE-2012-4901" ], "details": "Cross-site scripting (XSS) vulnerability in Template CMS 2.1.1 and earlier allows remote attackers to inject arbitrary web script or HTML via the themes_editor parameter in an add_template action to admin/index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8vr6-57gw-vwjf/GHSA-8vr6-57gw-vwjf.json b/advisories/unreviewed/2022/05/GHSA-8vr6-57gw-vwjf/GHSA-8vr6-57gw-vwjf.json index 9f288cab41c..b84e1448dc0 100644 --- a/advisories/unreviewed/2022/05/GHSA-8vr6-57gw-vwjf/GHSA-8vr6-57gw-vwjf.json +++ b/advisories/unreviewed/2022/05/GHSA-8vr6-57gw-vwjf/GHSA-8vr6-57gw-vwjf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:H/PR:N/UI:R/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-8wgj-ppmq-6hv7/GHSA-8wgj-ppmq-6hv7.json b/advisories/unreviewed/2022/05/GHSA-8wgj-ppmq-6hv7/GHSA-8wgj-ppmq-6hv7.json index 0d327bc4f2d..5b104dc26cf 100644 --- a/advisories/unreviewed/2022/05/GHSA-8wgj-ppmq-6hv7/GHSA-8wgj-ppmq-6hv7.json +++ b/advisories/unreviewed/2022/05/GHSA-8wgj-ppmq-6hv7/GHSA-8wgj-ppmq-6hv7.json @@ -7,12 +7,8 @@ "CVE-2012-6534" ], "details": "Novell Sentinel Log Manager before 1.2.0.3 allows remote attackers to create data retention policies via a crafted text/x-gwt-rpc request to novelllogmanager/datastorageservice.rpc, and allows remote authenticated Report Administrators to create data retention policies via a search-results \"Save Query As\" \"Save As Retention Policy\" action.", - "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-8x23-cv7v-ph4m/GHSA-8x23-cv7v-ph4m.json b/advisories/unreviewed/2022/05/GHSA-8x23-cv7v-ph4m/GHSA-8x23-cv7v-ph4m.json index cf913d00bf7..556ec694a20 100644 --- a/advisories/unreviewed/2022/05/GHSA-8x23-cv7v-ph4m/GHSA-8x23-cv7v-ph4m.json +++ b/advisories/unreviewed/2022/05/GHSA-8x23-cv7v-ph4m/GHSA-8x23-cv7v-ph4m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8x2v-v72m-hxfv/GHSA-8x2v-v72m-hxfv.json b/advisories/unreviewed/2022/05/GHSA-8x2v-v72m-hxfv/GHSA-8x2v-v72m-hxfv.json index 663615865f1..31aaff61422 100644 --- a/advisories/unreviewed/2022/05/GHSA-8x2v-v72m-hxfv/GHSA-8x2v-v72m-hxfv.json +++ b/advisories/unreviewed/2022/05/GHSA-8x2v-v72m-hxfv/GHSA-8x2v-v72m-hxfv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-8x3c-2p9f-fc83/GHSA-8x3c-2p9f-fc83.json b/advisories/unreviewed/2022/05/GHSA-8x3c-2p9f-fc83/GHSA-8x3c-2p9f-fc83.json index 96adecaeccc..769ad942f2a 100644 --- a/advisories/unreviewed/2022/05/GHSA-8x3c-2p9f-fc83/GHSA-8x3c-2p9f-fc83.json +++ b/advisories/unreviewed/2022/05/GHSA-8x3c-2p9f-fc83/GHSA-8x3c-2p9f-fc83.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-8xf9-99h8-pgv2/GHSA-8xf9-99h8-pgv2.json b/advisories/unreviewed/2022/05/GHSA-8xf9-99h8-pgv2/GHSA-8xf9-99h8-pgv2.json index 2341eadfab5..136eea9ba06 100644 --- a/advisories/unreviewed/2022/05/GHSA-8xf9-99h8-pgv2/GHSA-8xf9-99h8-pgv2.json +++ b/advisories/unreviewed/2022/05/GHSA-8xf9-99h8-pgv2/GHSA-8xf9-99h8-pgv2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-93w9-c6pq-39fv/GHSA-93w9-c6pq-39fv.json b/advisories/unreviewed/2022/05/GHSA-93w9-c6pq-39fv/GHSA-93w9-c6pq-39fv.json index 26e2ff8949e..b87d8065f44 100644 --- a/advisories/unreviewed/2022/05/GHSA-93w9-c6pq-39fv/GHSA-93w9-c6pq-39fv.json +++ b/advisories/unreviewed/2022/05/GHSA-93w9-c6pq-39fv/GHSA-93w9-c6pq-39fv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-94mv-wvq3-pm2g/GHSA-94mv-wvq3-pm2g.json b/advisories/unreviewed/2022/05/GHSA-94mv-wvq3-pm2g/GHSA-94mv-wvq3-pm2g.json index cb215a5b9ad..d6d849f986e 100644 --- a/advisories/unreviewed/2022/05/GHSA-94mv-wvq3-pm2g/GHSA-94mv-wvq3-pm2g.json +++ b/advisories/unreviewed/2022/05/GHSA-94mv-wvq3-pm2g/GHSA-94mv-wvq3-pm2g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-94pj-jgcq-pjjg/GHSA-94pj-jgcq-pjjg.json b/advisories/unreviewed/2022/05/GHSA-94pj-jgcq-pjjg/GHSA-94pj-jgcq-pjjg.json index a36d14c87e9..5fc66f3b29f 100644 --- a/advisories/unreviewed/2022/05/GHSA-94pj-jgcq-pjjg/GHSA-94pj-jgcq-pjjg.json +++ b/advisories/unreviewed/2022/05/GHSA-94pj-jgcq-pjjg/GHSA-94pj-jgcq-pjjg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-967x-rm5x-wjfc/GHSA-967x-rm5x-wjfc.json b/advisories/unreviewed/2022/05/GHSA-967x-rm5x-wjfc/GHSA-967x-rm5x-wjfc.json index a61aaa3820a..57e5be191bd 100644 --- a/advisories/unreviewed/2022/05/GHSA-967x-rm5x-wjfc/GHSA-967x-rm5x-wjfc.json +++ b/advisories/unreviewed/2022/05/GHSA-967x-rm5x-wjfc/GHSA-967x-rm5x-wjfc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-96mc-wq6x-h9ff/GHSA-96mc-wq6x-h9ff.json b/advisories/unreviewed/2022/05/GHSA-96mc-wq6x-h9ff/GHSA-96mc-wq6x-h9ff.json index 135174c301a..c2f18311de3 100644 --- a/advisories/unreviewed/2022/05/GHSA-96mc-wq6x-h9ff/GHSA-96mc-wq6x-h9ff.json +++ b/advisories/unreviewed/2022/05/GHSA-96mc-wq6x-h9ff/GHSA-96mc-wq6x-h9ff.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-97q5-m7rf-rp7v/GHSA-97q5-m7rf-rp7v.json b/advisories/unreviewed/2022/05/GHSA-97q5-m7rf-rp7v/GHSA-97q5-m7rf-rp7v.json index c5a951a5ca2..3aff63745f6 100644 --- a/advisories/unreviewed/2022/05/GHSA-97q5-m7rf-rp7v/GHSA-97q5-m7rf-rp7v.json +++ b/advisories/unreviewed/2022/05/GHSA-97q5-m7rf-rp7v/GHSA-97q5-m7rf-rp7v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-98f3-8hgr-68rf/GHSA-98f3-8hgr-68rf.json b/advisories/unreviewed/2022/05/GHSA-98f3-8hgr-68rf/GHSA-98f3-8hgr-68rf.json index cd20b2fe782..0c00771dd07 100644 --- a/advisories/unreviewed/2022/05/GHSA-98f3-8hgr-68rf/GHSA-98f3-8hgr-68rf.json +++ b/advisories/unreviewed/2022/05/GHSA-98f3-8hgr-68rf/GHSA-98f3-8hgr-68rf.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-9f2v-x3cc-5p4f/GHSA-9f2v-x3cc-5p4f.json b/advisories/unreviewed/2022/05/GHSA-9f2v-x3cc-5p4f/GHSA-9f2v-x3cc-5p4f.json index f869a784a93..f77d55b6ac1 100644 --- a/advisories/unreviewed/2022/05/GHSA-9f2v-x3cc-5p4f/GHSA-9f2v-x3cc-5p4f.json +++ b/advisories/unreviewed/2022/05/GHSA-9f2v-x3cc-5p4f/GHSA-9f2v-x3cc-5p4f.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-9g7h-vhg8-wmp9/GHSA-9g7h-vhg8-wmp9.json b/advisories/unreviewed/2022/05/GHSA-9g7h-vhg8-wmp9/GHSA-9g7h-vhg8-wmp9.json index 999ea8ce8f5..6e1f1100c36 100644 --- a/advisories/unreviewed/2022/05/GHSA-9g7h-vhg8-wmp9/GHSA-9g7h-vhg8-wmp9.json +++ b/advisories/unreviewed/2022/05/GHSA-9g7h-vhg8-wmp9/GHSA-9g7h-vhg8-wmp9.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-9gc3-6fq8-9hxj/GHSA-9gc3-6fq8-9hxj.json b/advisories/unreviewed/2022/05/GHSA-9gc3-6fq8-9hxj/GHSA-9gc3-6fq8-9hxj.json index e94e17b8c12..878e2320839 100644 --- a/advisories/unreviewed/2022/05/GHSA-9gc3-6fq8-9hxj/GHSA-9gc3-6fq8-9hxj.json +++ b/advisories/unreviewed/2022/05/GHSA-9gc3-6fq8-9hxj/GHSA-9gc3-6fq8-9hxj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9gm2-vj3x-997g/GHSA-9gm2-vj3x-997g.json b/advisories/unreviewed/2022/05/GHSA-9gm2-vj3x-997g/GHSA-9gm2-vj3x-997g.json index aa4a1790733..12619e116ed 100644 --- a/advisories/unreviewed/2022/05/GHSA-9gm2-vj3x-997g/GHSA-9gm2-vj3x-997g.json +++ b/advisories/unreviewed/2022/05/GHSA-9gm2-vj3x-997g/GHSA-9gm2-vj3x-997g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9h6r-qwrc-c6m6/GHSA-9h6r-qwrc-c6m6.json b/advisories/unreviewed/2022/05/GHSA-9h6r-qwrc-c6m6/GHSA-9h6r-qwrc-c6m6.json index d45ec77ebd4..de66f761eeb 100644 --- a/advisories/unreviewed/2022/05/GHSA-9h6r-qwrc-c6m6/GHSA-9h6r-qwrc-c6m6.json +++ b/advisories/unreviewed/2022/05/GHSA-9h6r-qwrc-c6m6/GHSA-9h6r-qwrc-c6m6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9hh6-wxjm-j7jw/GHSA-9hh6-wxjm-j7jw.json b/advisories/unreviewed/2022/05/GHSA-9hh6-wxjm-j7jw/GHSA-9hh6-wxjm-j7jw.json index f5862e52828..a53c8eaeef1 100644 --- a/advisories/unreviewed/2022/05/GHSA-9hh6-wxjm-j7jw/GHSA-9hh6-wxjm-j7jw.json +++ b/advisories/unreviewed/2022/05/GHSA-9hh6-wxjm-j7jw/GHSA-9hh6-wxjm-j7jw.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-9hj9-gmjq-vgh8/GHSA-9hj9-gmjq-vgh8.json b/advisories/unreviewed/2022/05/GHSA-9hj9-gmjq-vgh8/GHSA-9hj9-gmjq-vgh8.json index 0ded26bd0bf..8b43e56b699 100644 --- a/advisories/unreviewed/2022/05/GHSA-9hj9-gmjq-vgh8/GHSA-9hj9-gmjq-vgh8.json +++ b/advisories/unreviewed/2022/05/GHSA-9hj9-gmjq-vgh8/GHSA-9hj9-gmjq-vgh8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9mqw-wh74-5cm9/GHSA-9mqw-wh74-5cm9.json b/advisories/unreviewed/2022/05/GHSA-9mqw-wh74-5cm9/GHSA-9mqw-wh74-5cm9.json index 3410b0fac90..a34de0924f6 100644 --- a/advisories/unreviewed/2022/05/GHSA-9mqw-wh74-5cm9/GHSA-9mqw-wh74-5cm9.json +++ b/advisories/unreviewed/2022/05/GHSA-9mqw-wh74-5cm9/GHSA-9mqw-wh74-5cm9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9p62-qh48-3frr/GHSA-9p62-qh48-3frr.json b/advisories/unreviewed/2022/05/GHSA-9p62-qh48-3frr/GHSA-9p62-qh48-3frr.json index f8c30bb33e6..6ce027a2c66 100644 --- a/advisories/unreviewed/2022/05/GHSA-9p62-qh48-3frr/GHSA-9p62-qh48-3frr.json +++ b/advisories/unreviewed/2022/05/GHSA-9p62-qh48-3frr/GHSA-9p62-qh48-3frr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9p87-pv6m-h275/GHSA-9p87-pv6m-h275.json b/advisories/unreviewed/2022/05/GHSA-9p87-pv6m-h275/GHSA-9p87-pv6m-h275.json index a5afbad8650..0e360f2a2cc 100644 --- a/advisories/unreviewed/2022/05/GHSA-9p87-pv6m-h275/GHSA-9p87-pv6m-h275.json +++ b/advisories/unreviewed/2022/05/GHSA-9p87-pv6m-h275/GHSA-9p87-pv6m-h275.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/2022/05/GHSA-9pvx-8875-j83g/GHSA-9pvx-8875-j83g.json b/advisories/unreviewed/2022/05/GHSA-9pvx-8875-j83g/GHSA-9pvx-8875-j83g.json index 0e04f951351..392f31a54d6 100644 --- a/advisories/unreviewed/2022/05/GHSA-9pvx-8875-j83g/GHSA-9pvx-8875-j83g.json +++ b/advisories/unreviewed/2022/05/GHSA-9pvx-8875-j83g/GHSA-9pvx-8875-j83g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9q58-vr2c-5h84/GHSA-9q58-vr2c-5h84.json b/advisories/unreviewed/2022/05/GHSA-9q58-vr2c-5h84/GHSA-9q58-vr2c-5h84.json index 6425967c3a1..aef228be298 100644 --- a/advisories/unreviewed/2022/05/GHSA-9q58-vr2c-5h84/GHSA-9q58-vr2c-5h84.json +++ b/advisories/unreviewed/2022/05/GHSA-9q58-vr2c-5h84/GHSA-9q58-vr2c-5h84.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9qjj-992h-xcj8/GHSA-9qjj-992h-xcj8.json b/advisories/unreviewed/2022/05/GHSA-9qjj-992h-xcj8/GHSA-9qjj-992h-xcj8.json index 16740a4bd7b..c8a04cc07cb 100644 --- a/advisories/unreviewed/2022/05/GHSA-9qjj-992h-xcj8/GHSA-9qjj-992h-xcj8.json +++ b/advisories/unreviewed/2022/05/GHSA-9qjj-992h-xcj8/GHSA-9qjj-992h-xcj8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9qqc-r4wr-ffcc/GHSA-9qqc-r4wr-ffcc.json b/advisories/unreviewed/2022/05/GHSA-9qqc-r4wr-ffcc/GHSA-9qqc-r4wr-ffcc.json index 479a51fdad6..26591bf0ae4 100644 --- a/advisories/unreviewed/2022/05/GHSA-9qqc-r4wr-ffcc/GHSA-9qqc-r4wr-ffcc.json +++ b/advisories/unreviewed/2022/05/GHSA-9qqc-r4wr-ffcc/GHSA-9qqc-r4wr-ffcc.json @@ -7,12 +7,8 @@ "CVE-2012-5959" ], "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) before 1.6.18 allows remote attackers to execute arbitrary code via a long UDN (aka uuid) field within a string that contains a :: (colon colon) in a UDP packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9r48-826f-2635/GHSA-9r48-826f-2635.json b/advisories/unreviewed/2022/05/GHSA-9r48-826f-2635/GHSA-9r48-826f-2635.json index d43dba29af4..65b033f9e98 100644 --- a/advisories/unreviewed/2022/05/GHSA-9r48-826f-2635/GHSA-9r48-826f-2635.json +++ b/advisories/unreviewed/2022/05/GHSA-9r48-826f-2635/GHSA-9r48-826f-2635.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9rp4-56w9-gv8x/GHSA-9rp4-56w9-gv8x.json b/advisories/unreviewed/2022/05/GHSA-9rp4-56w9-gv8x/GHSA-9rp4-56w9-gv8x.json index 92d72023eb6..649144320f0 100644 --- a/advisories/unreviewed/2022/05/GHSA-9rp4-56w9-gv8x/GHSA-9rp4-56w9-gv8x.json +++ b/advisories/unreviewed/2022/05/GHSA-9rp4-56w9-gv8x/GHSA-9rp4-56w9-gv8x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9rrf-xh99-j7p6/GHSA-9rrf-xh99-j7p6.json b/advisories/unreviewed/2022/05/GHSA-9rrf-xh99-j7p6/GHSA-9rrf-xh99-j7p6.json index 37c3add1b0c..a228356eb08 100644 --- a/advisories/unreviewed/2022/05/GHSA-9rrf-xh99-j7p6/GHSA-9rrf-xh99-j7p6.json +++ b/advisories/unreviewed/2022/05/GHSA-9rrf-xh99-j7p6/GHSA-9rrf-xh99-j7p6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9wh9-2m7m-52vq/GHSA-9wh9-2m7m-52vq.json b/advisories/unreviewed/2022/05/GHSA-9wh9-2m7m-52vq/GHSA-9wh9-2m7m-52vq.json index 7453e7b5e4e..641a678b98d 100644 --- a/advisories/unreviewed/2022/05/GHSA-9wh9-2m7m-52vq/GHSA-9wh9-2m7m-52vq.json +++ b/advisories/unreviewed/2022/05/GHSA-9wh9-2m7m-52vq/GHSA-9wh9-2m7m-52vq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-9x37-8fpw-x4hf/GHSA-9x37-8fpw-x4hf.json b/advisories/unreviewed/2022/05/GHSA-9x37-8fpw-x4hf/GHSA-9x37-8fpw-x4hf.json index bcbd1073905..6080fe41cc5 100644 --- a/advisories/unreviewed/2022/05/GHSA-9x37-8fpw-x4hf/GHSA-9x37-8fpw-x4hf.json +++ b/advisories/unreviewed/2022/05/GHSA-9x37-8fpw-x4hf/GHSA-9x37-8fpw-x4hf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9xqh-7jmj-xvw6/GHSA-9xqh-7jmj-xvw6.json b/advisories/unreviewed/2022/05/GHSA-9xqh-7jmj-xvw6/GHSA-9xqh-7jmj-xvw6.json index 39b2c60c279..c88a05c2a58 100644 --- a/advisories/unreviewed/2022/05/GHSA-9xqh-7jmj-xvw6/GHSA-9xqh-7jmj-xvw6.json +++ b/advisories/unreviewed/2022/05/GHSA-9xqh-7jmj-xvw6/GHSA-9xqh-7jmj-xvw6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-c25x-pq2r-jrx2/GHSA-c25x-pq2r-jrx2.json b/advisories/unreviewed/2022/05/GHSA-c25x-pq2r-jrx2/GHSA-c25x-pq2r-jrx2.json index c4961e466f6..dab06e04a12 100644 --- a/advisories/unreviewed/2022/05/GHSA-c25x-pq2r-jrx2/GHSA-c25x-pq2r-jrx2.json +++ b/advisories/unreviewed/2022/05/GHSA-c25x-pq2r-jrx2/GHSA-c25x-pq2r-jrx2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-c3q7-gppj-rw4w/GHSA-c3q7-gppj-rw4w.json b/advisories/unreviewed/2022/05/GHSA-c3q7-gppj-rw4w/GHSA-c3q7-gppj-rw4w.json index 1a2351f8818..559c70d2a05 100644 --- a/advisories/unreviewed/2022/05/GHSA-c3q7-gppj-rw4w/GHSA-c3q7-gppj-rw4w.json +++ b/advisories/unreviewed/2022/05/GHSA-c3q7-gppj-rw4w/GHSA-c3q7-gppj-rw4w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:L/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/05/GHSA-c47f-685j-ch36/GHSA-c47f-685j-ch36.json b/advisories/unreviewed/2022/05/GHSA-c47f-685j-ch36/GHSA-c47f-685j-ch36.json index c4580014b0a..75f8579ec96 100644 --- a/advisories/unreviewed/2022/05/GHSA-c47f-685j-ch36/GHSA-c47f-685j-ch36.json +++ b/advisories/unreviewed/2022/05/GHSA-c47f-685j-ch36/GHSA-c47f-685j-ch36.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-c7fc-jfqx-cmfh/GHSA-c7fc-jfqx-cmfh.json b/advisories/unreviewed/2022/05/GHSA-c7fc-jfqx-cmfh/GHSA-c7fc-jfqx-cmfh.json index fee208fe5a4..bba1c6b0541 100644 --- a/advisories/unreviewed/2022/05/GHSA-c7fc-jfqx-cmfh/GHSA-c7fc-jfqx-cmfh.json +++ b/advisories/unreviewed/2022/05/GHSA-c7fc-jfqx-cmfh/GHSA-c7fc-jfqx-cmfh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-c7fh-pcxq-pr84/GHSA-c7fh-pcxq-pr84.json b/advisories/unreviewed/2022/05/GHSA-c7fh-pcxq-pr84/GHSA-c7fh-pcxq-pr84.json index bc6d5553cab..746d793aa5b 100644 --- a/advisories/unreviewed/2022/05/GHSA-c7fh-pcxq-pr84/GHSA-c7fh-pcxq-pr84.json +++ b/advisories/unreviewed/2022/05/GHSA-c7fh-pcxq-pr84/GHSA-c7fh-pcxq-pr84.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-c857-2vfc-6jrh/GHSA-c857-2vfc-6jrh.json b/advisories/unreviewed/2022/05/GHSA-c857-2vfc-6jrh/GHSA-c857-2vfc-6jrh.json index f65a2826908..5eb6c644471 100644 --- a/advisories/unreviewed/2022/05/GHSA-c857-2vfc-6jrh/GHSA-c857-2vfc-6jrh.json +++ b/advisories/unreviewed/2022/05/GHSA-c857-2vfc-6jrh/GHSA-c857-2vfc-6jrh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/PR:N/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": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-c8mr-q8q8-phqr/GHSA-c8mr-q8q8-phqr.json b/advisories/unreviewed/2022/05/GHSA-c8mr-q8q8-phqr/GHSA-c8mr-q8q8-phqr.json index 64400516db2..f47833c1e3c 100644 --- a/advisories/unreviewed/2022/05/GHSA-c8mr-q8q8-phqr/GHSA-c8mr-q8q8-phqr.json +++ b/advisories/unreviewed/2022/05/GHSA-c8mr-q8q8-phqr/GHSA-c8mr-q8q8-phqr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/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": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-c987-x9gw-7q2w/GHSA-c987-x9gw-7q2w.json b/advisories/unreviewed/2022/05/GHSA-c987-x9gw-7q2w/GHSA-c987-x9gw-7q2w.json index 147faa0d168..a0e564af313 100644 --- a/advisories/unreviewed/2022/05/GHSA-c987-x9gw-7q2w/GHSA-c987-x9gw-7q2w.json +++ b/advisories/unreviewed/2022/05/GHSA-c987-x9gw-7q2w/GHSA-c987-x9gw-7q2w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-c98g-3j4g-pjfx/GHSA-c98g-3j4g-pjfx.json b/advisories/unreviewed/2022/05/GHSA-c98g-3j4g-pjfx/GHSA-c98g-3j4g-pjfx.json index 58994f2854c..2c3c5057627 100644 --- a/advisories/unreviewed/2022/05/GHSA-c98g-3j4g-pjfx/GHSA-c98g-3j4g-pjfx.json +++ b/advisories/unreviewed/2022/05/GHSA-c98g-3j4g-pjfx/GHSA-c98g-3j4g-pjfx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-c9wc-3x6x-mqrc/GHSA-c9wc-3x6x-mqrc.json b/advisories/unreviewed/2022/05/GHSA-c9wc-3x6x-mqrc/GHSA-c9wc-3x6x-mqrc.json index b186ce81ddd..2d91e010290 100644 --- a/advisories/unreviewed/2022/05/GHSA-c9wc-3x6x-mqrc/GHSA-c9wc-3x6x-mqrc.json +++ b/advisories/unreviewed/2022/05/GHSA-c9wc-3x6x-mqrc/GHSA-c9wc-3x6x-mqrc.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-c9x7-2m4h-xx46/GHSA-c9x7-2m4h-xx46.json b/advisories/unreviewed/2022/05/GHSA-c9x7-2m4h-xx46/GHSA-c9x7-2m4h-xx46.json index 8a84854ef8b..d07d3f41067 100644 --- a/advisories/unreviewed/2022/05/GHSA-c9x7-2m4h-xx46/GHSA-c9x7-2m4h-xx46.json +++ b/advisories/unreviewed/2022/05/GHSA-c9x7-2m4h-xx46/GHSA-c9x7-2m4h-xx46.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-ccc3-mxjj-2w5r/GHSA-ccc3-mxjj-2w5r.json b/advisories/unreviewed/2022/05/GHSA-ccc3-mxjj-2w5r/GHSA-ccc3-mxjj-2w5r.json index d0c0b302819..1823260e8d8 100644 --- a/advisories/unreviewed/2022/05/GHSA-ccc3-mxjj-2w5r/GHSA-ccc3-mxjj-2w5r.json +++ b/advisories/unreviewed/2022/05/GHSA-ccc3-mxjj-2w5r/GHSA-ccc3-mxjj-2w5r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-cff3-32h4-75xm/GHSA-cff3-32h4-75xm.json b/advisories/unreviewed/2022/05/GHSA-cff3-32h4-75xm/GHSA-cff3-32h4-75xm.json index d5811224b6c..9356062c2a2 100644 --- a/advisories/unreviewed/2022/05/GHSA-cff3-32h4-75xm/GHSA-cff3-32h4-75xm.json +++ b/advisories/unreviewed/2022/05/GHSA-cff3-32h4-75xm/GHSA-cff3-32h4-75xm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-cj27-g6p4-x5g9/GHSA-cj27-g6p4-x5g9.json b/advisories/unreviewed/2022/05/GHSA-cj27-g6p4-x5g9/GHSA-cj27-g6p4-x5g9.json index 1f2400bc957..b34b264cdbe 100644 --- a/advisories/unreviewed/2022/05/GHSA-cj27-g6p4-x5g9/GHSA-cj27-g6p4-x5g9.json +++ b/advisories/unreviewed/2022/05/GHSA-cj27-g6p4-x5g9/GHSA-cj27-g6p4-x5g9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-cjfh-8g4p-vw2h/GHSA-cjfh-8g4p-vw2h.json b/advisories/unreviewed/2022/05/GHSA-cjfh-8g4p-vw2h/GHSA-cjfh-8g4p-vw2h.json index c5d5b0b7422..46e848d6c7e 100644 --- a/advisories/unreviewed/2022/05/GHSA-cjfh-8g4p-vw2h/GHSA-cjfh-8g4p-vw2h.json +++ b/advisories/unreviewed/2022/05/GHSA-cjfh-8g4p-vw2h/GHSA-cjfh-8g4p-vw2h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-cjvp-hx2p-94mp/GHSA-cjvp-hx2p-94mp.json b/advisories/unreviewed/2022/05/GHSA-cjvp-hx2p-94mp/GHSA-cjvp-hx2p-94mp.json index 228e27dd48d..88e9434bd0c 100644 --- a/advisories/unreviewed/2022/05/GHSA-cjvp-hx2p-94mp/GHSA-cjvp-hx2p-94mp.json +++ b/advisories/unreviewed/2022/05/GHSA-cjvp-hx2p-94mp/GHSA-cjvp-hx2p-94mp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-cmxm-6c5m-r5c5/GHSA-cmxm-6c5m-r5c5.json b/advisories/unreviewed/2022/05/GHSA-cmxm-6c5m-r5c5/GHSA-cmxm-6c5m-r5c5.json index 5115337f0e6..2febca87afa 100644 --- a/advisories/unreviewed/2022/05/GHSA-cmxm-6c5m-r5c5/GHSA-cmxm-6c5m-r5c5.json +++ b/advisories/unreviewed/2022/05/GHSA-cmxm-6c5m-r5c5/GHSA-cmxm-6c5m-r5c5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-cp47-gcrh-fx43/GHSA-cp47-gcrh-fx43.json b/advisories/unreviewed/2022/05/GHSA-cp47-gcrh-fx43/GHSA-cp47-gcrh-fx43.json index e3e33ac0c6f..31793fb050e 100644 --- a/advisories/unreviewed/2022/05/GHSA-cp47-gcrh-fx43/GHSA-cp47-gcrh-fx43.json +++ b/advisories/unreviewed/2022/05/GHSA-cp47-gcrh-fx43/GHSA-cp47-gcrh-fx43.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/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": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cpgf-3whm-jr4g/GHSA-cpgf-3whm-jr4g.json b/advisories/unreviewed/2022/05/GHSA-cpgf-3whm-jr4g/GHSA-cpgf-3whm-jr4g.json index 70b9aaca1ac..643eb97ecbb 100644 --- a/advisories/unreviewed/2022/05/GHSA-cpgf-3whm-jr4g/GHSA-cpgf-3whm-jr4g.json +++ b/advisories/unreviewed/2022/05/GHSA-cpgf-3whm-jr4g/GHSA-cpgf-3whm-jr4g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-cpx4-fhhq-52jh/GHSA-cpx4-fhhq-52jh.json b/advisories/unreviewed/2022/05/GHSA-cpx4-fhhq-52jh/GHSA-cpx4-fhhq-52jh.json index 48404c4a9f5..422959a4c36 100644 --- a/advisories/unreviewed/2022/05/GHSA-cpx4-fhhq-52jh/GHSA-cpx4-fhhq-52jh.json +++ b/advisories/unreviewed/2022/05/GHSA-cpx4-fhhq-52jh/GHSA-cpx4-fhhq-52jh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-cq3j-4cx7-jf75/GHSA-cq3j-4cx7-jf75.json b/advisories/unreviewed/2022/05/GHSA-cq3j-4cx7-jf75/GHSA-cq3j-4cx7-jf75.json index 66023368c11..5454f9d321a 100644 --- a/advisories/unreviewed/2022/05/GHSA-cq3j-4cx7-jf75/GHSA-cq3j-4cx7-jf75.json +++ b/advisories/unreviewed/2022/05/GHSA-cq3j-4cx7-jf75/GHSA-cq3j-4cx7-jf75.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-cq4v-g876-98x8/GHSA-cq4v-g876-98x8.json b/advisories/unreviewed/2022/05/GHSA-cq4v-g876-98x8/GHSA-cq4v-g876-98x8.json index f1e1e334e1a..7cb22609f20 100644 --- a/advisories/unreviewed/2022/05/GHSA-cq4v-g876-98x8/GHSA-cq4v-g876-98x8.json +++ b/advisories/unreviewed/2022/05/GHSA-cq4v-g876-98x8/GHSA-cq4v-g876-98x8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-cr5c-cg9w-crrh/GHSA-cr5c-cg9w-crrh.json b/advisories/unreviewed/2022/05/GHSA-cr5c-cg9w-crrh/GHSA-cr5c-cg9w-crrh.json index 23a386c92e2..3586d98394e 100644 --- a/advisories/unreviewed/2022/05/GHSA-cr5c-cg9w-crrh/GHSA-cr5c-cg9w-crrh.json +++ b/advisories/unreviewed/2022/05/GHSA-cr5c-cg9w-crrh/GHSA-cr5c-cg9w-crrh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-crqw-384v-38qx/GHSA-crqw-384v-38qx.json b/advisories/unreviewed/2022/05/GHSA-crqw-384v-38qx/GHSA-crqw-384v-38qx.json index c946974ac57..e218904a708 100644 --- a/advisories/unreviewed/2022/05/GHSA-crqw-384v-38qx/GHSA-crqw-384v-38qx.json +++ b/advisories/unreviewed/2022/05/GHSA-crqw-384v-38qx/GHSA-crqw-384v-38qx.json @@ -7,12 +7,8 @@ "CVE-2008-4894" ], "details": "Directory traversal vulnerability in templates/mytribiqsite/tribal-GPL-1066/includes/header.inc.php in Tribiq CMS 5.0.10a, when register_globals is enabled and magic_quotes_gpc is disabled, allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the template_path parameter. NOTE: it was later reported that this issue also affects 5.0.12c.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cwm6-75qh-6g98/GHSA-cwm6-75qh-6g98.json b/advisories/unreviewed/2022/05/GHSA-cwm6-75qh-6g98/GHSA-cwm6-75qh-6g98.json index 0b103424a5e..39146cd5b07 100644 --- a/advisories/unreviewed/2022/05/GHSA-cwm6-75qh-6g98/GHSA-cwm6-75qh-6g98.json +++ b/advisories/unreviewed/2022/05/GHSA-cwm6-75qh-6g98/GHSA-cwm6-75qh-6g98.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-cxc7-r9g5-wmcp/GHSA-cxc7-r9g5-wmcp.json b/advisories/unreviewed/2022/05/GHSA-cxc7-r9g5-wmcp/GHSA-cxc7-r9g5-wmcp.json index 17947de3fad..a724bf07880 100644 --- a/advisories/unreviewed/2022/05/GHSA-cxc7-r9g5-wmcp/GHSA-cxc7-r9g5-wmcp.json +++ b/advisories/unreviewed/2022/05/GHSA-cxc7-r9g5-wmcp/GHSA-cxc7-r9g5-wmcp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-f2rh-fxr8-8grv/GHSA-f2rh-fxr8-8grv.json b/advisories/unreviewed/2022/05/GHSA-f2rh-fxr8-8grv/GHSA-f2rh-fxr8-8grv.json index 94d07cdb160..11e30ff70c6 100644 --- a/advisories/unreviewed/2022/05/GHSA-f2rh-fxr8-8grv/GHSA-f2rh-fxr8-8grv.json +++ b/advisories/unreviewed/2022/05/GHSA-f2rh-fxr8-8grv/GHSA-f2rh-fxr8-8grv.json @@ -7,12 +7,8 @@ "CVE-2008-6012" ], "details": "Directory traversal vulnerability in index.php in Pritlog 0.4 and earlier, when magic_quotes_gpc is disabled, allows remote attackers to read arbitrary files via a .. (dot dot) in the filename parameter in a viewEntry action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f353-xvwp-q8f8/GHSA-f353-xvwp-q8f8.json b/advisories/unreviewed/2022/05/GHSA-f353-xvwp-q8f8/GHSA-f353-xvwp-q8f8.json index f35b40bf886..10190eb84ad 100644 --- a/advisories/unreviewed/2022/05/GHSA-f353-xvwp-q8f8/GHSA-f353-xvwp-q8f8.json +++ b/advisories/unreviewed/2022/05/GHSA-f353-xvwp-q8f8/GHSA-f353-xvwp-q8f8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-f36j-q56c-jw5x/GHSA-f36j-q56c-jw5x.json b/advisories/unreviewed/2022/05/GHSA-f36j-q56c-jw5x/GHSA-f36j-q56c-jw5x.json index 36bc440cbbb..7547f082c76 100644 --- a/advisories/unreviewed/2022/05/GHSA-f36j-q56c-jw5x/GHSA-f36j-q56c-jw5x.json +++ b/advisories/unreviewed/2022/05/GHSA-f36j-q56c-jw5x/GHSA-f36j-q56c-jw5x.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-f3fv-7pqw-59cx/GHSA-f3fv-7pqw-59cx.json b/advisories/unreviewed/2022/05/GHSA-f3fv-7pqw-59cx/GHSA-f3fv-7pqw-59cx.json index 4be73d905f4..a78544a6fc4 100644 --- a/advisories/unreviewed/2022/05/GHSA-f3fv-7pqw-59cx/GHSA-f3fv-7pqw-59cx.json +++ b/advisories/unreviewed/2022/05/GHSA-f3fv-7pqw-59cx/GHSA-f3fv-7pqw-59cx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-f3wx-m2x3-f8rg/GHSA-f3wx-m2x3-f8rg.json b/advisories/unreviewed/2022/05/GHSA-f3wx-m2x3-f8rg/GHSA-f3wx-m2x3-f8rg.json index 967916f266a..8d2a09c5661 100644 --- a/advisories/unreviewed/2022/05/GHSA-f3wx-m2x3-f8rg/GHSA-f3wx-m2x3-f8rg.json +++ b/advisories/unreviewed/2022/05/GHSA-f3wx-m2x3-f8rg/GHSA-f3wx-m2x3-f8rg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-f49w-6988-3gr2/GHSA-f49w-6988-3gr2.json b/advisories/unreviewed/2022/05/GHSA-f49w-6988-3gr2/GHSA-f49w-6988-3gr2.json index 41a385fd28f..c92bc9eeeb0 100644 --- a/advisories/unreviewed/2022/05/GHSA-f49w-6988-3gr2/GHSA-f49w-6988-3gr2.json +++ b/advisories/unreviewed/2022/05/GHSA-f49w-6988-3gr2/GHSA-f49w-6988-3gr2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:H/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-f54v-vjvp-jcqm/GHSA-f54v-vjvp-jcqm.json b/advisories/unreviewed/2022/05/GHSA-f54v-vjvp-jcqm/GHSA-f54v-vjvp-jcqm.json index 53e4fadceb1..e0aa2cae1de 100644 --- a/advisories/unreviewed/2022/05/GHSA-f54v-vjvp-jcqm/GHSA-f54v-vjvp-jcqm.json +++ b/advisories/unreviewed/2022/05/GHSA-f54v-vjvp-jcqm/GHSA-f54v-vjvp-jcqm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-f5f3-8xp5-mxv4/GHSA-f5f3-8xp5-mxv4.json b/advisories/unreviewed/2022/05/GHSA-f5f3-8xp5-mxv4/GHSA-f5f3-8xp5-mxv4.json index d7fc81daf0a..08216a49dd6 100644 --- a/advisories/unreviewed/2022/05/GHSA-f5f3-8xp5-mxv4/GHSA-f5f3-8xp5-mxv4.json +++ b/advisories/unreviewed/2022/05/GHSA-f5f3-8xp5-mxv4/GHSA-f5f3-8xp5-mxv4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-f734-79qw-8mxg/GHSA-f734-79qw-8mxg.json b/advisories/unreviewed/2022/05/GHSA-f734-79qw-8mxg/GHSA-f734-79qw-8mxg.json index 79527a245f1..03e7951907b 100644 --- a/advisories/unreviewed/2022/05/GHSA-f734-79qw-8mxg/GHSA-f734-79qw-8mxg.json +++ b/advisories/unreviewed/2022/05/GHSA-f734-79qw-8mxg/GHSA-f734-79qw-8mxg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-f7rr-mq2q-gq94/GHSA-f7rr-mq2q-gq94.json b/advisories/unreviewed/2022/05/GHSA-f7rr-mq2q-gq94/GHSA-f7rr-mq2q-gq94.json index 0451031f50e..46dccc1ae8b 100644 --- a/advisories/unreviewed/2022/05/GHSA-f7rr-mq2q-gq94/GHSA-f7rr-mq2q-gq94.json +++ b/advisories/unreviewed/2022/05/GHSA-f7rr-mq2q-gq94/GHSA-f7rr-mq2q-gq94.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-f7xw-6mf4-2fx8/GHSA-f7xw-6mf4-2fx8.json b/advisories/unreviewed/2022/05/GHSA-f7xw-6mf4-2fx8/GHSA-f7xw-6mf4-2fx8.json index e957db3e146..3916e785669 100644 --- a/advisories/unreviewed/2022/05/GHSA-f7xw-6mf4-2fx8/GHSA-f7xw-6mf4-2fx8.json +++ b/advisories/unreviewed/2022/05/GHSA-f7xw-6mf4-2fx8/GHSA-f7xw-6mf4-2fx8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-ff25-28p3-2296/GHSA-ff25-28p3-2296.json b/advisories/unreviewed/2022/05/GHSA-ff25-28p3-2296/GHSA-ff25-28p3-2296.json index 031ccd32635..9fa8e7b2c5e 100644 --- a/advisories/unreviewed/2022/05/GHSA-ff25-28p3-2296/GHSA-ff25-28p3-2296.json +++ b/advisories/unreviewed/2022/05/GHSA-ff25-28p3-2296/GHSA-ff25-28p3-2296.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-ffv8-9h6w-3f22/GHSA-ffv8-9h6w-3f22.json b/advisories/unreviewed/2022/05/GHSA-ffv8-9h6w-3f22/GHSA-ffv8-9h6w-3f22.json index 9af2941d52f..56292683c8a 100644 --- a/advisories/unreviewed/2022/05/GHSA-ffv8-9h6w-3f22/GHSA-ffv8-9h6w-3f22.json +++ b/advisories/unreviewed/2022/05/GHSA-ffv8-9h6w-3f22/GHSA-ffv8-9h6w-3f22.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-fg2p-pvfj-38xm/GHSA-fg2p-pvfj-38xm.json b/advisories/unreviewed/2022/05/GHSA-fg2p-pvfj-38xm/GHSA-fg2p-pvfj-38xm.json index a192d862bf0..ac14c05beea 100644 --- a/advisories/unreviewed/2022/05/GHSA-fg2p-pvfj-38xm/GHSA-fg2p-pvfj-38xm.json +++ b/advisories/unreviewed/2022/05/GHSA-fg2p-pvfj-38xm/GHSA-fg2p-pvfj-38xm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-fggm-r2g4-7pv4/GHSA-fggm-r2g4-7pv4.json b/advisories/unreviewed/2022/05/GHSA-fggm-r2g4-7pv4/GHSA-fggm-r2g4-7pv4.json index fc6e81712de..a786c7b066e 100644 --- a/advisories/unreviewed/2022/05/GHSA-fggm-r2g4-7pv4/GHSA-fggm-r2g4-7pv4.json +++ b/advisories/unreviewed/2022/05/GHSA-fggm-r2g4-7pv4/GHSA-fggm-r2g4-7pv4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/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-fgpm-wwg7-9x32/GHSA-fgpm-wwg7-9x32.json b/advisories/unreviewed/2022/05/GHSA-fgpm-wwg7-9x32/GHSA-fgpm-wwg7-9x32.json index 72929be3310..2d35ddbd64e 100644 --- a/advisories/unreviewed/2022/05/GHSA-fgpm-wwg7-9x32/GHSA-fgpm-wwg7-9x32.json +++ b/advisories/unreviewed/2022/05/GHSA-fgpm-wwg7-9x32/GHSA-fgpm-wwg7-9x32.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-fhrx-5jw7-mjj5/GHSA-fhrx-5jw7-mjj5.json b/advisories/unreviewed/2022/05/GHSA-fhrx-5jw7-mjj5/GHSA-fhrx-5jw7-mjj5.json index bb1da507a10..1b1252370c7 100644 --- a/advisories/unreviewed/2022/05/GHSA-fhrx-5jw7-mjj5/GHSA-fhrx-5jw7-mjj5.json +++ b/advisories/unreviewed/2022/05/GHSA-fhrx-5jw7-mjj5/GHSA-fhrx-5jw7-mjj5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-fq56-2x8j-2w4x/GHSA-fq56-2x8j-2w4x.json b/advisories/unreviewed/2022/05/GHSA-fq56-2x8j-2w4x/GHSA-fq56-2x8j-2w4x.json index cfaa8e70b73..2218edbde9f 100644 --- a/advisories/unreviewed/2022/05/GHSA-fq56-2x8j-2w4x/GHSA-fq56-2x8j-2w4x.json +++ b/advisories/unreviewed/2022/05/GHSA-fq56-2x8j-2w4x/GHSA-fq56-2x8j-2w4x.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-fq5m-x7x9-m984/GHSA-fq5m-x7x9-m984.json b/advisories/unreviewed/2022/05/GHSA-fq5m-x7x9-m984/GHSA-fq5m-x7x9-m984.json index 50f740ee04c..75704bfc1a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-fq5m-x7x9-m984/GHSA-fq5m-x7x9-m984.json +++ b/advisories/unreviewed/2022/05/GHSA-fq5m-x7x9-m984/GHSA-fq5m-x7x9-m984.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-fr7x-7pwg-jqwx/GHSA-fr7x-7pwg-jqwx.json b/advisories/unreviewed/2022/05/GHSA-fr7x-7pwg-jqwx/GHSA-fr7x-7pwg-jqwx.json index 58386af409f..38526973f8e 100644 --- a/advisories/unreviewed/2022/05/GHSA-fr7x-7pwg-jqwx/GHSA-fr7x-7pwg-jqwx.json +++ b/advisories/unreviewed/2022/05/GHSA-fr7x-7pwg-jqwx/GHSA-fr7x-7pwg-jqwx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-frhg-jc97-4w7g/GHSA-frhg-jc97-4w7g.json b/advisories/unreviewed/2022/05/GHSA-frhg-jc97-4w7g/GHSA-frhg-jc97-4w7g.json index 81fa5d8a473..cd691cecd5c 100644 --- a/advisories/unreviewed/2022/05/GHSA-frhg-jc97-4w7g/GHSA-frhg-jc97-4w7g.json +++ b/advisories/unreviewed/2022/05/GHSA-frhg-jc97-4w7g/GHSA-frhg-jc97-4w7g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-frqr-h5gh-5cr8/GHSA-frqr-h5gh-5cr8.json b/advisories/unreviewed/2022/05/GHSA-frqr-h5gh-5cr8/GHSA-frqr-h5gh-5cr8.json index 2cfa48b1797..189a49a2164 100644 --- a/advisories/unreviewed/2022/05/GHSA-frqr-h5gh-5cr8/GHSA-frqr-h5gh-5cr8.json +++ b/advisories/unreviewed/2022/05/GHSA-frqr-h5gh-5cr8/GHSA-frqr-h5gh-5cr8.json @@ -7,12 +7,8 @@ "CVE-2008-5654" ], "details": "SQL injection vulnerability in the loginADP function in ajaxp.php in MyioSoft EasyCalendar 4.0 allows remote attackers to execute arbitrary SQL commands via the rsargs parameter, as reachable through the username parameter, a different vector than CVE-2008-1344. 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-fv75-hj93-9jpp/GHSA-fv75-hj93-9jpp.json b/advisories/unreviewed/2022/05/GHSA-fv75-hj93-9jpp/GHSA-fv75-hj93-9jpp.json index 08aa766f55b..cf9cda82c58 100644 --- a/advisories/unreviewed/2022/05/GHSA-fv75-hj93-9jpp/GHSA-fv75-hj93-9jpp.json +++ b/advisories/unreviewed/2022/05/GHSA-fv75-hj93-9jpp/GHSA-fv75-hj93-9jpp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-fv8g-76fc-64v8/GHSA-fv8g-76fc-64v8.json b/advisories/unreviewed/2022/05/GHSA-fv8g-76fc-64v8/GHSA-fv8g-76fc-64v8.json index 1319bcab4cf..70a610b950a 100644 --- a/advisories/unreviewed/2022/05/GHSA-fv8g-76fc-64v8/GHSA-fv8g-76fc-64v8.json +++ b/advisories/unreviewed/2022/05/GHSA-fv8g-76fc-64v8/GHSA-fv8g-76fc-64v8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-fw7p-w2p7-vc8c/GHSA-fw7p-w2p7-vc8c.json b/advisories/unreviewed/2022/05/GHSA-fw7p-w2p7-vc8c/GHSA-fw7p-w2p7-vc8c.json index 26677b83574..34c3c377ada 100644 --- a/advisories/unreviewed/2022/05/GHSA-fw7p-w2p7-vc8c/GHSA-fw7p-w2p7-vc8c.json +++ b/advisories/unreviewed/2022/05/GHSA-fw7p-w2p7-vc8c/GHSA-fw7p-w2p7-vc8c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-fw9g-4j33-q83h/GHSA-fw9g-4j33-q83h.json b/advisories/unreviewed/2022/05/GHSA-fw9g-4j33-q83h/GHSA-fw9g-4j33-q83h.json index 4df2d67e589..c852449a0ff 100644 --- a/advisories/unreviewed/2022/05/GHSA-fw9g-4j33-q83h/GHSA-fw9g-4j33-q83h.json +++ b/advisories/unreviewed/2022/05/GHSA-fw9g-4j33-q83h/GHSA-fw9g-4j33-q83h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:P/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-fwf9-3423-q9qf/GHSA-fwf9-3423-q9qf.json b/advisories/unreviewed/2022/05/GHSA-fwf9-3423-q9qf/GHSA-fwf9-3423-q9qf.json index f2ed807aff2..25ea4cff888 100644 --- a/advisories/unreviewed/2022/05/GHSA-fwf9-3423-q9qf/GHSA-fwf9-3423-q9qf.json +++ b/advisories/unreviewed/2022/05/GHSA-fwf9-3423-q9qf/GHSA-fwf9-3423-q9qf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-fwv3-2h58-f368/GHSA-fwv3-2h58-f368.json b/advisories/unreviewed/2022/05/GHSA-fwv3-2h58-f368/GHSA-fwv3-2h58-f368.json index 9670d85ec15..c1f072f8c0c 100644 --- a/advisories/unreviewed/2022/05/GHSA-fwv3-2h58-f368/GHSA-fwv3-2h58-f368.json +++ b/advisories/unreviewed/2022/05/GHSA-fwv3-2h58-f368/GHSA-fwv3-2h58-f368.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-fxf8-r2qj-hv7c/GHSA-fxf8-r2qj-hv7c.json b/advisories/unreviewed/2022/05/GHSA-fxf8-r2qj-hv7c/GHSA-fxf8-r2qj-hv7c.json index 92d24725440..4f10b1ddd9d 100644 --- a/advisories/unreviewed/2022/05/GHSA-fxf8-r2qj-hv7c/GHSA-fxf8-r2qj-hv7c.json +++ b/advisories/unreviewed/2022/05/GHSA-fxf8-r2qj-hv7c/GHSA-fxf8-r2qj-hv7c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-fxgx-wx82-gp8w/GHSA-fxgx-wx82-gp8w.json b/advisories/unreviewed/2022/05/GHSA-fxgx-wx82-gp8w/GHSA-fxgx-wx82-gp8w.json index 0e907583eec..b84af0be5a9 100644 --- a/advisories/unreviewed/2022/05/GHSA-fxgx-wx82-gp8w/GHSA-fxgx-wx82-gp8w.json +++ b/advisories/unreviewed/2022/05/GHSA-fxgx-wx82-gp8w/GHSA-fxgx-wx82-gp8w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/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/2022/05/GHSA-fxr7-h3mw-m5v7/GHSA-fxr7-h3mw-m5v7.json b/advisories/unreviewed/2022/05/GHSA-fxr7-h3mw-m5v7/GHSA-fxr7-h3mw-m5v7.json index a2e5449a198..5a3f20a90f6 100644 --- a/advisories/unreviewed/2022/05/GHSA-fxr7-h3mw-m5v7/GHSA-fxr7-h3mw-m5v7.json +++ b/advisories/unreviewed/2022/05/GHSA-fxr7-h3mw-m5v7/GHSA-fxr7-h3mw-m5v7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-g24h-3fh8-7mx5/GHSA-g24h-3fh8-7mx5.json b/advisories/unreviewed/2022/05/GHSA-g24h-3fh8-7mx5/GHSA-g24h-3fh8-7mx5.json index b5251a3e217..007d90f8b98 100644 --- a/advisories/unreviewed/2022/05/GHSA-g24h-3fh8-7mx5/GHSA-g24h-3fh8-7mx5.json +++ b/advisories/unreviewed/2022/05/GHSA-g24h-3fh8-7mx5/GHSA-g24h-3fh8-7mx5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:P/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-g49c-3hp9-ch4h/GHSA-g49c-3hp9-ch4h.json b/advisories/unreviewed/2022/05/GHSA-g49c-3hp9-ch4h/GHSA-g49c-3hp9-ch4h.json index 544ddb1226f..f9f5a9e1e7c 100644 --- a/advisories/unreviewed/2022/05/GHSA-g49c-3hp9-ch4h/GHSA-g49c-3hp9-ch4h.json +++ b/advisories/unreviewed/2022/05/GHSA-g49c-3hp9-ch4h/GHSA-g49c-3hp9-ch4h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-g5hp-cqmw-rc35/GHSA-g5hp-cqmw-rc35.json b/advisories/unreviewed/2022/05/GHSA-g5hp-cqmw-rc35/GHSA-g5hp-cqmw-rc35.json index d32c1748743..daf6d3cc2ed 100644 --- a/advisories/unreviewed/2022/05/GHSA-g5hp-cqmw-rc35/GHSA-g5hp-cqmw-rc35.json +++ b/advisories/unreviewed/2022/05/GHSA-g5hp-cqmw-rc35/GHSA-g5hp-cqmw-rc35.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-g5mf-9jgg-r5w7/GHSA-g5mf-9jgg-r5w7.json b/advisories/unreviewed/2022/05/GHSA-g5mf-9jgg-r5w7/GHSA-g5mf-9jgg-r5w7.json index 8559e4a596a..297f9f7dd5e 100644 --- a/advisories/unreviewed/2022/05/GHSA-g5mf-9jgg-r5w7/GHSA-g5mf-9jgg-r5w7.json +++ b/advisories/unreviewed/2022/05/GHSA-g5mf-9jgg-r5w7/GHSA-g5mf-9jgg-r5w7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-g68c-q8jf-x5f9/GHSA-g68c-q8jf-x5f9.json b/advisories/unreviewed/2022/05/GHSA-g68c-q8jf-x5f9/GHSA-g68c-q8jf-x5f9.json index f6c3d18403d..430d710e396 100644 --- a/advisories/unreviewed/2022/05/GHSA-g68c-q8jf-x5f9/GHSA-g68c-q8jf-x5f9.json +++ b/advisories/unreviewed/2022/05/GHSA-g68c-q8jf-x5f9/GHSA-g68c-q8jf-x5f9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-g7jv-pwgr-pp8c/GHSA-g7jv-pwgr-pp8c.json b/advisories/unreviewed/2022/05/GHSA-g7jv-pwgr-pp8c/GHSA-g7jv-pwgr-pp8c.json index 2b77d1537af..f6c18726d7b 100644 --- a/advisories/unreviewed/2022/05/GHSA-g7jv-pwgr-pp8c/GHSA-g7jv-pwgr-pp8c.json +++ b/advisories/unreviewed/2022/05/GHSA-g7jv-pwgr-pp8c/GHSA-g7jv-pwgr-pp8c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-g7p2-xm35-9jqq/GHSA-g7p2-xm35-9jqq.json b/advisories/unreviewed/2022/05/GHSA-g7p2-xm35-9jqq/GHSA-g7p2-xm35-9jqq.json index aa96c869dbb..2dc0d50e8c1 100644 --- a/advisories/unreviewed/2022/05/GHSA-g7p2-xm35-9jqq/GHSA-g7p2-xm35-9jqq.json +++ b/advisories/unreviewed/2022/05/GHSA-g7p2-xm35-9jqq/GHSA-g7p2-xm35-9jqq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-g878-w47w-f2x8/GHSA-g878-w47w-f2x8.json b/advisories/unreviewed/2022/05/GHSA-g878-w47w-f2x8/GHSA-g878-w47w-f2x8.json index 0c03482de3b..427e25c175f 100644 --- a/advisories/unreviewed/2022/05/GHSA-g878-w47w-f2x8/GHSA-g878-w47w-f2x8.json +++ b/advisories/unreviewed/2022/05/GHSA-g878-w47w-f2x8/GHSA-g878-w47w-f2x8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-g8hm-3653-6gm8/GHSA-g8hm-3653-6gm8.json b/advisories/unreviewed/2022/05/GHSA-g8hm-3653-6gm8/GHSA-g8hm-3653-6gm8.json index efdbf12a548..5325d14fd69 100644 --- a/advisories/unreviewed/2022/05/GHSA-g8hm-3653-6gm8/GHSA-g8hm-3653-6gm8.json +++ b/advisories/unreviewed/2022/05/GHSA-g8hm-3653-6gm8/GHSA-g8hm-3653-6gm8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-g8v9-rw5p-59vq/GHSA-g8v9-rw5p-59vq.json b/advisories/unreviewed/2022/05/GHSA-g8v9-rw5p-59vq/GHSA-g8v9-rw5p-59vq.json index 85cf2430b96..df80e7d003a 100644 --- a/advisories/unreviewed/2022/05/GHSA-g8v9-rw5p-59vq/GHSA-g8v9-rw5p-59vq.json +++ b/advisories/unreviewed/2022/05/GHSA-g8v9-rw5p-59vq/GHSA-g8v9-rw5p-59vq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-g8vh-644m-955p/GHSA-g8vh-644m-955p.json b/advisories/unreviewed/2022/05/GHSA-g8vh-644m-955p/GHSA-g8vh-644m-955p.json index 1ee0f60352b..36521d6f851 100644 --- a/advisories/unreviewed/2022/05/GHSA-g8vh-644m-955p/GHSA-g8vh-644m-955p.json +++ b/advisories/unreviewed/2022/05/GHSA-g8vh-644m-955p/GHSA-g8vh-644m-955p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-g8vx-xgrm-hvh4/GHSA-g8vx-xgrm-hvh4.json b/advisories/unreviewed/2022/05/GHSA-g8vx-xgrm-hvh4/GHSA-g8vx-xgrm-hvh4.json index b5e2f6dabc0..21eef542e9f 100644 --- a/advisories/unreviewed/2022/05/GHSA-g8vx-xgrm-hvh4/GHSA-g8vx-xgrm-hvh4.json +++ b/advisories/unreviewed/2022/05/GHSA-g8vx-xgrm-hvh4/GHSA-g8vx-xgrm-hvh4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:H/PR:N/UI:R/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/05/GHSA-g8wr-p6f5-frrv/GHSA-g8wr-p6f5-frrv.json b/advisories/unreviewed/2022/05/GHSA-g8wr-p6f5-frrv/GHSA-g8wr-p6f5-frrv.json index 80b4d8e1414..6faa2cd0563 100644 --- a/advisories/unreviewed/2022/05/GHSA-g8wr-p6f5-frrv/GHSA-g8wr-p6f5-frrv.json +++ b/advisories/unreviewed/2022/05/GHSA-g8wr-p6f5-frrv/GHSA-g8wr-p6f5-frrv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-g9cp-6gcc-mw2r/GHSA-g9cp-6gcc-mw2r.json b/advisories/unreviewed/2022/05/GHSA-g9cp-6gcc-mw2r/GHSA-g9cp-6gcc-mw2r.json index 8b9af8f6f4c..19a88369d2a 100644 --- a/advisories/unreviewed/2022/05/GHSA-g9cp-6gcc-mw2r/GHSA-g9cp-6gcc-mw2r.json +++ b/advisories/unreviewed/2022/05/GHSA-g9cp-6gcc-mw2r/GHSA-g9cp-6gcc-mw2r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-gc66-m722-v8hj/GHSA-gc66-m722-v8hj.json b/advisories/unreviewed/2022/05/GHSA-gc66-m722-v8hj/GHSA-gc66-m722-v8hj.json index 339eb796999..be457d1992d 100644 --- a/advisories/unreviewed/2022/05/GHSA-gc66-m722-v8hj/GHSA-gc66-m722-v8hj.json +++ b/advisories/unreviewed/2022/05/GHSA-gc66-m722-v8hj/GHSA-gc66-m722-v8hj.json @@ -7,12 +7,8 @@ "CVE-2014-7910" ], "details": "Multiple unspecified vulnerabilities in Google Chrome before 39.0.2171.65 allow attackers to cause a denial of service or possibly have other impact via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -172,9 +168,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gfv7-rxg4-pgwq/GHSA-gfv7-rxg4-pgwq.json b/advisories/unreviewed/2022/05/GHSA-gfv7-rxg4-pgwq/GHSA-gfv7-rxg4-pgwq.json index 162d2626c3a..c0b140a73a5 100644 --- a/advisories/unreviewed/2022/05/GHSA-gfv7-rxg4-pgwq/GHSA-gfv7-rxg4-pgwq.json +++ b/advisories/unreviewed/2022/05/GHSA-gfv7-rxg4-pgwq/GHSA-gfv7-rxg4-pgwq.json @@ -7,12 +7,8 @@ "CVE-2008-5838" ], "details": "SQL injection vulnerability in search_results.php in E-Php Scripts E-Shop (aka E-Php Shopping Cart) Shopping Cart Script allows remote attackers to execute arbitrary SQL commands via the cid parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-ggw2-ggph-4wc2/GHSA-ggw2-ggph-4wc2.json b/advisories/unreviewed/2022/05/GHSA-ggw2-ggph-4wc2/GHSA-ggw2-ggph-4wc2.json index 365d7c60efa..8912809357f 100644 --- a/advisories/unreviewed/2022/05/GHSA-ggw2-ggph-4wc2/GHSA-ggw2-ggph-4wc2.json +++ b/advisories/unreviewed/2022/05/GHSA-ggw2-ggph-4wc2/GHSA-ggw2-ggph-4wc2.json @@ -7,12 +7,8 @@ "CVE-2008-6224" ], "details": "Directory traversal vulnerability in visualizza.php in Way Of The Warrior (WOTW) 5.0 and earlier allows remote attackers to read arbitrary files via a .. (dot dot) in the plancia parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gh87-66c7-84h3/GHSA-gh87-66c7-84h3.json b/advisories/unreviewed/2022/05/GHSA-gh87-66c7-84h3/GHSA-gh87-66c7-84h3.json index f39856771ee..6d5e7008ded 100644 --- a/advisories/unreviewed/2022/05/GHSA-gh87-66c7-84h3/GHSA-gh87-66c7-84h3.json +++ b/advisories/unreviewed/2022/05/GHSA-gh87-66c7-84h3/GHSA-gh87-66c7-84h3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-ghhw-49p3-j59c/GHSA-ghhw-49p3-j59c.json b/advisories/unreviewed/2022/05/GHSA-ghhw-49p3-j59c/GHSA-ghhw-49p3-j59c.json index 45aa34e0917..a2dcf9a3b00 100644 --- a/advisories/unreviewed/2022/05/GHSA-ghhw-49p3-j59c/GHSA-ghhw-49p3-j59c.json +++ b/advisories/unreviewed/2022/05/GHSA-ghhw-49p3-j59c/GHSA-ghhw-49p3-j59c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-ghvf-p35v-w5xj/GHSA-ghvf-p35v-w5xj.json b/advisories/unreviewed/2022/05/GHSA-ghvf-p35v-w5xj/GHSA-ghvf-p35v-w5xj.json index 008dc6832fc..a8f7b890348 100644 --- a/advisories/unreviewed/2022/05/GHSA-ghvf-p35v-w5xj/GHSA-ghvf-p35v-w5xj.json +++ b/advisories/unreviewed/2022/05/GHSA-ghvf-p35v-w5xj/GHSA-ghvf-p35v-w5xj.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-ghvw-mhmc-2m87/GHSA-ghvw-mhmc-2m87.json b/advisories/unreviewed/2022/05/GHSA-ghvw-mhmc-2m87/GHSA-ghvw-mhmc-2m87.json index f923baddb3c..15f1a1b99d6 100644 --- a/advisories/unreviewed/2022/05/GHSA-ghvw-mhmc-2m87/GHSA-ghvw-mhmc-2m87.json +++ b/advisories/unreviewed/2022/05/GHSA-ghvw-mhmc-2m87/GHSA-ghvw-mhmc-2m87.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-gj44-w36v-8cf7/GHSA-gj44-w36v-8cf7.json b/advisories/unreviewed/2022/05/GHSA-gj44-w36v-8cf7/GHSA-gj44-w36v-8cf7.json index 4afa40807df..771c41c8709 100644 --- a/advisories/unreviewed/2022/05/GHSA-gj44-w36v-8cf7/GHSA-gj44-w36v-8cf7.json +++ b/advisories/unreviewed/2022/05/GHSA-gj44-w36v-8cf7/GHSA-gj44-w36v-8cf7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-gmgq-7pfx-82wq/GHSA-gmgq-7pfx-82wq.json b/advisories/unreviewed/2022/05/GHSA-gmgq-7pfx-82wq/GHSA-gmgq-7pfx-82wq.json index e8342987b44..25d47dfe2c0 100644 --- a/advisories/unreviewed/2022/05/GHSA-gmgq-7pfx-82wq/GHSA-gmgq-7pfx-82wq.json +++ b/advisories/unreviewed/2022/05/GHSA-gmgq-7pfx-82wq/GHSA-gmgq-7pfx-82wq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-gphq-45wg-3xc7/GHSA-gphq-45wg-3xc7.json b/advisories/unreviewed/2022/05/GHSA-gphq-45wg-3xc7/GHSA-gphq-45wg-3xc7.json index 519d977af05..1c7be37246a 100644 --- a/advisories/unreviewed/2022/05/GHSA-gphq-45wg-3xc7/GHSA-gphq-45wg-3xc7.json +++ b/advisories/unreviewed/2022/05/GHSA-gphq-45wg-3xc7/GHSA-gphq-45wg-3xc7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L" } ], - "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-gq9f-8792-6cjf/GHSA-gq9f-8792-6cjf.json b/advisories/unreviewed/2022/05/GHSA-gq9f-8792-6cjf/GHSA-gq9f-8792-6cjf.json index da8cb19ecf2..55d3d571547 100644 --- a/advisories/unreviewed/2022/05/GHSA-gq9f-8792-6cjf/GHSA-gq9f-8792-6cjf.json +++ b/advisories/unreviewed/2022/05/GHSA-gq9f-8792-6cjf/GHSA-gq9f-8792-6cjf.json @@ -7,12 +7,8 @@ "CVE-2008-5198" ], "details": "SQL injection vulnerability in memberlist.php in Acmlmboard 1.A2 allows remote attackers to execute arbitrary SQL commands via the pow parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gqq8-7gjv-cc55/GHSA-gqq8-7gjv-cc55.json b/advisories/unreviewed/2022/05/GHSA-gqq8-7gjv-cc55/GHSA-gqq8-7gjv-cc55.json index aa0bbe21577..9c0766e8071 100644 --- a/advisories/unreviewed/2022/05/GHSA-gqq8-7gjv-cc55/GHSA-gqq8-7gjv-cc55.json +++ b/advisories/unreviewed/2022/05/GHSA-gqq8-7gjv-cc55/GHSA-gqq8-7gjv-cc55.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-gr8p-9m7h-wxjx/GHSA-gr8p-9m7h-wxjx.json b/advisories/unreviewed/2022/05/GHSA-gr8p-9m7h-wxjx/GHSA-gr8p-9m7h-wxjx.json index aea15e1d198..efef84591e0 100644 --- a/advisories/unreviewed/2022/05/GHSA-gr8p-9m7h-wxjx/GHSA-gr8p-9m7h-wxjx.json +++ b/advisories/unreviewed/2022/05/GHSA-gr8p-9m7h-wxjx/GHSA-gr8p-9m7h-wxjx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-grxx-hc63-h45x/GHSA-grxx-hc63-h45x.json b/advisories/unreviewed/2022/05/GHSA-grxx-hc63-h45x/GHSA-grxx-hc63-h45x.json index 13b794fc710..49cd42995d6 100644 --- a/advisories/unreviewed/2022/05/GHSA-grxx-hc63-h45x/GHSA-grxx-hc63-h45x.json +++ b/advisories/unreviewed/2022/05/GHSA-grxx-hc63-h45x/GHSA-grxx-hc63-h45x.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-gv3x-vgc4-rh6v/GHSA-gv3x-vgc4-rh6v.json b/advisories/unreviewed/2022/05/GHSA-gv3x-vgc4-rh6v/GHSA-gv3x-vgc4-rh6v.json index 45abc24cc23..cc3538e91f3 100644 --- a/advisories/unreviewed/2022/05/GHSA-gv3x-vgc4-rh6v/GHSA-gv3x-vgc4-rh6v.json +++ b/advisories/unreviewed/2022/05/GHSA-gv3x-vgc4-rh6v/GHSA-gv3x-vgc4-rh6v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-gv4g-r4ww-fm48/GHSA-gv4g-r4ww-fm48.json b/advisories/unreviewed/2022/05/GHSA-gv4g-r4ww-fm48/GHSA-gv4g-r4ww-fm48.json index 2c7851b3190..60226ab5dda 100644 --- a/advisories/unreviewed/2022/05/GHSA-gv4g-r4ww-fm48/GHSA-gv4g-r4ww-fm48.json +++ b/advisories/unreviewed/2022/05/GHSA-gv4g-r4ww-fm48/GHSA-gv4g-r4ww-fm48.json @@ -7,12 +7,8 @@ "CVE-2008-6223" ], "details": "PHP remote file inclusion vulnerability in visualizza.php in Way Of The Warrior (WOTW) 5.0 and earlier allows remote attackers to execute arbitrary PHP code via a URL in the plancia parameter to crea.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gw56-f2ch-v6jj/GHSA-gw56-f2ch-v6jj.json b/advisories/unreviewed/2022/05/GHSA-gw56-f2ch-v6jj/GHSA-gw56-f2ch-v6jj.json index 0aafe8a45b3..5f51febd182 100644 --- a/advisories/unreviewed/2022/05/GHSA-gw56-f2ch-v6jj/GHSA-gw56-f2ch-v6jj.json +++ b/advisories/unreviewed/2022/05/GHSA-gw56-f2ch-v6jj/GHSA-gw56-f2ch-v6jj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-gwf9-4399-2fh7/GHSA-gwf9-4399-2fh7.json b/advisories/unreviewed/2022/05/GHSA-gwf9-4399-2fh7/GHSA-gwf9-4399-2fh7.json index 3ecadd17f89..ff9e56329df 100644 --- a/advisories/unreviewed/2022/05/GHSA-gwf9-4399-2fh7/GHSA-gwf9-4399-2fh7.json +++ b/advisories/unreviewed/2022/05/GHSA-gwf9-4399-2fh7/GHSA-gwf9-4399-2fh7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-gwfw-6j5c-m8hw/GHSA-gwfw-6j5c-m8hw.json b/advisories/unreviewed/2022/05/GHSA-gwfw-6j5c-m8hw/GHSA-gwfw-6j5c-m8hw.json index 541f0601fc1..a907e9aa347 100644 --- a/advisories/unreviewed/2022/05/GHSA-gwfw-6j5c-m8hw/GHSA-gwfw-6j5c-m8hw.json +++ b/advisories/unreviewed/2022/05/GHSA-gwfw-6j5c-m8hw/GHSA-gwfw-6j5c-m8hw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-gwhp-hcwr-wmwv/GHSA-gwhp-hcwr-wmwv.json b/advisories/unreviewed/2022/05/GHSA-gwhp-hcwr-wmwv/GHSA-gwhp-hcwr-wmwv.json index 150386a7e6b..cf1586a35ef 100644 --- a/advisories/unreviewed/2022/05/GHSA-gwhp-hcwr-wmwv/GHSA-gwhp-hcwr-wmwv.json +++ b/advisories/unreviewed/2022/05/GHSA-gwhp-hcwr-wmwv/GHSA-gwhp-hcwr-wmwv.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-gxw4-rxhh-r3fv/GHSA-gxw4-rxhh-r3fv.json b/advisories/unreviewed/2022/05/GHSA-gxw4-rxhh-r3fv/GHSA-gxw4-rxhh-r3fv.json index 176328225a4..237c2820d09 100644 --- a/advisories/unreviewed/2022/05/GHSA-gxw4-rxhh-r3fv/GHSA-gxw4-rxhh-r3fv.json +++ b/advisories/unreviewed/2022/05/GHSA-gxw4-rxhh-r3fv/GHSA-gxw4-rxhh-r3fv.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-h4qg-c68v-j68v/GHSA-h4qg-c68v-j68v.json b/advisories/unreviewed/2022/05/GHSA-h4qg-c68v-j68v/GHSA-h4qg-c68v-j68v.json index b05007676b6..28bbcd485df 100644 --- a/advisories/unreviewed/2022/05/GHSA-h4qg-c68v-j68v/GHSA-h4qg-c68v-j68v.json +++ b/advisories/unreviewed/2022/05/GHSA-h4qg-c68v-j68v/GHSA-h4qg-c68v-j68v.json @@ -7,12 +7,8 @@ "CVE-2008-6148" ], "details": "SQL injection vulnerability in the Live Ticker (com_liveticker) module 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the tid parameter in a viewticker action to index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h4w7-vw3q-3g8m/GHSA-h4w7-vw3q-3g8m.json b/advisories/unreviewed/2022/05/GHSA-h4w7-vw3q-3g8m/GHSA-h4w7-vw3q-3g8m.json index 1ccad6741a4..b965cc738da 100644 --- a/advisories/unreviewed/2022/05/GHSA-h4w7-vw3q-3g8m/GHSA-h4w7-vw3q-3g8m.json +++ b/advisories/unreviewed/2022/05/GHSA-h4w7-vw3q-3g8m/GHSA-h4w7-vw3q-3g8m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:P/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-h52p-2422-cqh2/GHSA-h52p-2422-cqh2.json b/advisories/unreviewed/2022/05/GHSA-h52p-2422-cqh2/GHSA-h52p-2422-cqh2.json index a06165f0ea7..95d24fe330b 100644 --- a/advisories/unreviewed/2022/05/GHSA-h52p-2422-cqh2/GHSA-h52p-2422-cqh2.json +++ b/advisories/unreviewed/2022/05/GHSA-h52p-2422-cqh2/GHSA-h52p-2422-cqh2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-h6c9-rcfp-hgrg/GHSA-h6c9-rcfp-hgrg.json b/advisories/unreviewed/2022/05/GHSA-h6c9-rcfp-hgrg/GHSA-h6c9-rcfp-hgrg.json index 118524c2d36..5d1f5b1b3c5 100644 --- a/advisories/unreviewed/2022/05/GHSA-h6c9-rcfp-hgrg/GHSA-h6c9-rcfp-hgrg.json +++ b/advisories/unreviewed/2022/05/GHSA-h6c9-rcfp-hgrg/GHSA-h6c9-rcfp-hgrg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-h6qg-xgjq-67wg/GHSA-h6qg-xgjq-67wg.json b/advisories/unreviewed/2022/05/GHSA-h6qg-xgjq-67wg/GHSA-h6qg-xgjq-67wg.json index cd0574c96bb..0e07f2f7306 100644 --- a/advisories/unreviewed/2022/05/GHSA-h6qg-xgjq-67wg/GHSA-h6qg-xgjq-67wg.json +++ b/advisories/unreviewed/2022/05/GHSA-h6qg-xgjq-67wg/GHSA-h6qg-xgjq-67wg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-h6xx-4xh8-fc8q/GHSA-h6xx-4xh8-fc8q.json b/advisories/unreviewed/2022/05/GHSA-h6xx-4xh8-fc8q/GHSA-h6xx-4xh8-fc8q.json index 57f11066c61..47573c26e61 100644 --- a/advisories/unreviewed/2022/05/GHSA-h6xx-4xh8-fc8q/GHSA-h6xx-4xh8-fc8q.json +++ b/advisories/unreviewed/2022/05/GHSA-h6xx-4xh8-fc8q/GHSA-h6xx-4xh8-fc8q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:H/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/05/GHSA-h7qv-h3x6-j32c/GHSA-h7qv-h3x6-j32c.json b/advisories/unreviewed/2022/05/GHSA-h7qv-h3x6-j32c/GHSA-h7qv-h3x6-j32c.json index 401598a84aa..4b181cd2f7d 100644 --- a/advisories/unreviewed/2022/05/GHSA-h7qv-h3x6-j32c/GHSA-h7qv-h3x6-j32c.json +++ b/advisories/unreviewed/2022/05/GHSA-h7qv-h3x6-j32c/GHSA-h7qv-h3x6-j32c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-h836-f2j9-x39j/GHSA-h836-f2j9-x39j.json b/advisories/unreviewed/2022/05/GHSA-h836-f2j9-x39j/GHSA-h836-f2j9-x39j.json index 8e431880ac5..67c9b2a7cd8 100644 --- a/advisories/unreviewed/2022/05/GHSA-h836-f2j9-x39j/GHSA-h836-f2j9-x39j.json +++ b/advisories/unreviewed/2022/05/GHSA-h836-f2j9-x39j/GHSA-h836-f2j9-x39j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-h8q7-w38g-5fjh/GHSA-h8q7-w38g-5fjh.json b/advisories/unreviewed/2022/05/GHSA-h8q7-w38g-5fjh/GHSA-h8q7-w38g-5fjh.json index 9645cb70a8c..864347b67ce 100644 --- a/advisories/unreviewed/2022/05/GHSA-h8q7-w38g-5fjh/GHSA-h8q7-w38g-5fjh.json +++ b/advisories/unreviewed/2022/05/GHSA-h8q7-w38g-5fjh/GHSA-h8q7-w38g-5fjh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-h978-qhj9-9fjc/GHSA-h978-qhj9-9fjc.json b/advisories/unreviewed/2022/05/GHSA-h978-qhj9-9fjc/GHSA-h978-qhj9-9fjc.json index 977fce8fe8d..3053678ed98 100644 --- a/advisories/unreviewed/2022/05/GHSA-h978-qhj9-9fjc/GHSA-h978-qhj9-9fjc.json +++ b/advisories/unreviewed/2022/05/GHSA-h978-qhj9-9fjc/GHSA-h978-qhj9-9fjc.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-h9gx-m632-fj3h/GHSA-h9gx-m632-fj3h.json b/advisories/unreviewed/2022/05/GHSA-h9gx-m632-fj3h/GHSA-h9gx-m632-fj3h.json index 3f4101bfc14..0c108b2e40b 100644 --- a/advisories/unreviewed/2022/05/GHSA-h9gx-m632-fj3h/GHSA-h9gx-m632-fj3h.json +++ b/advisories/unreviewed/2022/05/GHSA-h9gx-m632-fj3h/GHSA-h9gx-m632-fj3h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-hf3v-hjcm-7jjh/GHSA-hf3v-hjcm-7jjh.json b/advisories/unreviewed/2022/05/GHSA-hf3v-hjcm-7jjh/GHSA-hf3v-hjcm-7jjh.json index d081f5cd1fa..d9041e7da03 100644 --- a/advisories/unreviewed/2022/05/GHSA-hf3v-hjcm-7jjh/GHSA-hf3v-hjcm-7jjh.json +++ b/advisories/unreviewed/2022/05/GHSA-hf3v-hjcm-7jjh/GHSA-hf3v-hjcm-7jjh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hf7q-7j88-7wcw/GHSA-hf7q-7j88-7wcw.json b/advisories/unreviewed/2022/05/GHSA-hf7q-7j88-7wcw/GHSA-hf7q-7j88-7wcw.json index be166f5067a..788b85aae8d 100644 --- a/advisories/unreviewed/2022/05/GHSA-hf7q-7j88-7wcw/GHSA-hf7q-7j88-7wcw.json +++ b/advisories/unreviewed/2022/05/GHSA-hf7q-7j88-7wcw/GHSA-hf7q-7j88-7wcw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hfw9-32j7-4c97/GHSA-hfw9-32j7-4c97.json b/advisories/unreviewed/2022/05/GHSA-hfw9-32j7-4c97/GHSA-hfw9-32j7-4c97.json index 05cb27cf076..6efc29b858d 100644 --- a/advisories/unreviewed/2022/05/GHSA-hfw9-32j7-4c97/GHSA-hfw9-32j7-4c97.json +++ b/advisories/unreviewed/2022/05/GHSA-hfw9-32j7-4c97/GHSA-hfw9-32j7-4c97.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hgwx-q73m-3qhx/GHSA-hgwx-q73m-3qhx.json b/advisories/unreviewed/2022/05/GHSA-hgwx-q73m-3qhx/GHSA-hgwx-q73m-3qhx.json index b38c738321c..774a08d137e 100644 --- a/advisories/unreviewed/2022/05/GHSA-hgwx-q73m-3qhx/GHSA-hgwx-q73m-3qhx.json +++ b/advisories/unreviewed/2022/05/GHSA-hgwx-q73m-3qhx/GHSA-hgwx-q73m-3qhx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hgxr-h254-rmg5/GHSA-hgxr-h254-rmg5.json b/advisories/unreviewed/2022/05/GHSA-hgxr-h254-rmg5/GHSA-hgxr-h254-rmg5.json index 250befc47be..64988d2933a 100644 --- a/advisories/unreviewed/2022/05/GHSA-hgxr-h254-rmg5/GHSA-hgxr-h254-rmg5.json +++ b/advisories/unreviewed/2022/05/GHSA-hgxr-h254-rmg5/GHSA-hgxr-h254-rmg5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hh54-9j4p-xcwq/GHSA-hh54-9j4p-xcwq.json b/advisories/unreviewed/2022/05/GHSA-hh54-9j4p-xcwq/GHSA-hh54-9j4p-xcwq.json index 955da0fc350..2b52fd02a65 100644 --- a/advisories/unreviewed/2022/05/GHSA-hh54-9j4p-xcwq/GHSA-hh54-9j4p-xcwq.json +++ b/advisories/unreviewed/2022/05/GHSA-hh54-9j4p-xcwq/GHSA-hh54-9j4p-xcwq.json @@ -7,12 +7,8 @@ "CVE-2008-5968" ], "details": "Directory traversal vulnerability in print.php in PHP iCalendar 2.24 and earlier allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the cookie_language parameter in a phpicalendar_* cookie, a different vector than CVE-2006-1292.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hjmv-hqm5-66xp/GHSA-hjmv-hqm5-66xp.json b/advisories/unreviewed/2022/05/GHSA-hjmv-hqm5-66xp/GHSA-hjmv-hqm5-66xp.json index 474f8746864..20fc53dbbc9 100644 --- a/advisories/unreviewed/2022/05/GHSA-hjmv-hqm5-66xp/GHSA-hjmv-hqm5-66xp.json +++ b/advisories/unreviewed/2022/05/GHSA-hjmv-hqm5-66xp/GHSA-hjmv-hqm5-66xp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hmqq-mf9r-frq9/GHSA-hmqq-mf9r-frq9.json b/advisories/unreviewed/2022/05/GHSA-hmqq-mf9r-frq9/GHSA-hmqq-mf9r-frq9.json index e53d94650ef..e5c2271a149 100644 --- a/advisories/unreviewed/2022/05/GHSA-hmqq-mf9r-frq9/GHSA-hmqq-mf9r-frq9.json +++ b/advisories/unreviewed/2022/05/GHSA-hmqq-mf9r-frq9/GHSA-hmqq-mf9r-frq9.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-hppr-6qxj-jhgx/GHSA-hppr-6qxj-jhgx.json b/advisories/unreviewed/2022/05/GHSA-hppr-6qxj-jhgx/GHSA-hppr-6qxj-jhgx.json index bec4e52af6d..cdb66051eda 100644 --- a/advisories/unreviewed/2022/05/GHSA-hppr-6qxj-jhgx/GHSA-hppr-6qxj-jhgx.json +++ b/advisories/unreviewed/2022/05/GHSA-hppr-6qxj-jhgx/GHSA-hppr-6qxj-jhgx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hpwq-frgc-5pqj/GHSA-hpwq-frgc-5pqj.json b/advisories/unreviewed/2022/05/GHSA-hpwq-frgc-5pqj/GHSA-hpwq-frgc-5pqj.json index b9d31e09def..4dbe67fb48d 100644 --- a/advisories/unreviewed/2022/05/GHSA-hpwq-frgc-5pqj/GHSA-hpwq-frgc-5pqj.json +++ b/advisories/unreviewed/2022/05/GHSA-hpwq-frgc-5pqj/GHSA-hpwq-frgc-5pqj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hq53-mv5v-6vc3/GHSA-hq53-mv5v-6vc3.json b/advisories/unreviewed/2022/05/GHSA-hq53-mv5v-6vc3/GHSA-hq53-mv5v-6vc3.json index d5a1977ad25..a9b34996a3b 100644 --- a/advisories/unreviewed/2022/05/GHSA-hq53-mv5v-6vc3/GHSA-hq53-mv5v-6vc3.json +++ b/advisories/unreviewed/2022/05/GHSA-hq53-mv5v-6vc3/GHSA-hq53-mv5v-6vc3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hqhg-9272-49m2/GHSA-hqhg-9272-49m2.json b/advisories/unreviewed/2022/05/GHSA-hqhg-9272-49m2/GHSA-hqhg-9272-49m2.json index 0685f083c6b..504e29db595 100644 --- a/advisories/unreviewed/2022/05/GHSA-hqhg-9272-49m2/GHSA-hqhg-9272-49m2.json +++ b/advisories/unreviewed/2022/05/GHSA-hqhg-9272-49m2/GHSA-hqhg-9272-49m2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hqj8-fxg9-m3xp/GHSA-hqj8-fxg9-m3xp.json b/advisories/unreviewed/2022/05/GHSA-hqj8-fxg9-m3xp/GHSA-hqj8-fxg9-m3xp.json index d1af6bcfda1..edd32610fc6 100644 --- a/advisories/unreviewed/2022/05/GHSA-hqj8-fxg9-m3xp/GHSA-hqj8-fxg9-m3xp.json +++ b/advisories/unreviewed/2022/05/GHSA-hqj8-fxg9-m3xp/GHSA-hqj8-fxg9-m3xp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hqm6-f4g5-xfh2/GHSA-hqm6-f4g5-xfh2.json b/advisories/unreviewed/2022/05/GHSA-hqm6-f4g5-xfh2/GHSA-hqm6-f4g5-xfh2.json index e3a86cd4281..6e7d10e5a20 100644 --- a/advisories/unreviewed/2022/05/GHSA-hqm6-f4g5-xfh2/GHSA-hqm6-f4g5-xfh2.json +++ b/advisories/unreviewed/2022/05/GHSA-hqm6-f4g5-xfh2/GHSA-hqm6-f4g5-xfh2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-hrxr-3c76-p924/GHSA-hrxr-3c76-p924.json b/advisories/unreviewed/2022/05/GHSA-hrxr-3c76-p924/GHSA-hrxr-3c76-p924.json index 20192a83f35..638660b6cbb 100644 --- a/advisories/unreviewed/2022/05/GHSA-hrxr-3c76-p924/GHSA-hrxr-3c76-p924.json +++ b/advisories/unreviewed/2022/05/GHSA-hrxr-3c76-p924/GHSA-hrxr-3c76-p924.json @@ -7,12 +7,8 @@ "CVE-2014-3571" ], "details": "OpenSSL before 0.9.8zd, 1.0.0 before 1.0.0p, and 1.0.1 before 1.0.1k allows remote attackers to cause a denial of service (NULL pointer dereference and application crash) via a crafted DTLS message that is processed with a different read operation for the handshake header than for the handshake body, related to the dtls1_get_record function in d1_pkt.c and the ssl3_read_n function in s3_pkt.c.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -168,9 +164,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-hvf6-fpf2-m893/GHSA-hvf6-fpf2-m893.json b/advisories/unreviewed/2022/05/GHSA-hvf6-fpf2-m893/GHSA-hvf6-fpf2-m893.json index b950c45e5e5..f6d296250be 100644 --- a/advisories/unreviewed/2022/05/GHSA-hvf6-fpf2-m893/GHSA-hvf6-fpf2-m893.json +++ b/advisories/unreviewed/2022/05/GHSA-hvf6-fpf2-m893/GHSA-hvf6-fpf2-m893.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hvhm-rx46-5x8p/GHSA-hvhm-rx46-5x8p.json b/advisories/unreviewed/2022/05/GHSA-hvhm-rx46-5x8p/GHSA-hvhm-rx46-5x8p.json index 7ba594b6433..3b397719980 100644 --- a/advisories/unreviewed/2022/05/GHSA-hvhm-rx46-5x8p/GHSA-hvhm-rx46-5x8p.json +++ b/advisories/unreviewed/2022/05/GHSA-hvhm-rx46-5x8p/GHSA-hvhm-rx46-5x8p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hvr7-m8vg-qgvm/GHSA-hvr7-m8vg-qgvm.json b/advisories/unreviewed/2022/05/GHSA-hvr7-m8vg-qgvm/GHSA-hvr7-m8vg-qgvm.json index e0c7ae0d86e..ff8dbc6f12d 100644 --- a/advisories/unreviewed/2022/05/GHSA-hvr7-m8vg-qgvm/GHSA-hvr7-m8vg-qgvm.json +++ b/advisories/unreviewed/2022/05/GHSA-hvr7-m8vg-qgvm/GHSA-hvr7-m8vg-qgvm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hwgf-28q6-h8jx/GHSA-hwgf-28q6-h8jx.json b/advisories/unreviewed/2022/05/GHSA-hwgf-28q6-h8jx/GHSA-hwgf-28q6-h8jx.json index dc5cdb09a09..6479fb3dd6a 100644 --- a/advisories/unreviewed/2022/05/GHSA-hwgf-28q6-h8jx/GHSA-hwgf-28q6-h8jx.json +++ b/advisories/unreviewed/2022/05/GHSA-hwgf-28q6-h8jx/GHSA-hwgf-28q6-h8jx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hwqv-39jv-4986/GHSA-hwqv-39jv-4986.json b/advisories/unreviewed/2022/05/GHSA-hwqv-39jv-4986/GHSA-hwqv-39jv-4986.json index 824d680b45f..f26a3327827 100644 --- a/advisories/unreviewed/2022/05/GHSA-hwqv-39jv-4986/GHSA-hwqv-39jv-4986.json +++ b/advisories/unreviewed/2022/05/GHSA-hwqv-39jv-4986/GHSA-hwqv-39jv-4986.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-hx4m-g72x-h4h6/GHSA-hx4m-g72x-h4h6.json b/advisories/unreviewed/2022/05/GHSA-hx4m-g72x-h4h6/GHSA-hx4m-g72x-h4h6.json index d3c9adfa4c3..91b88cda275 100644 --- a/advisories/unreviewed/2022/05/GHSA-hx4m-g72x-h4h6/GHSA-hx4m-g72x-h4h6.json +++ b/advisories/unreviewed/2022/05/GHSA-hx4m-g72x-h4h6/GHSA-hx4m-g72x-h4h6.json @@ -7,12 +7,8 @@ "CVE-2008-6247" ], "details": "SQL injection vulnerability in topsite.php in Scripts For Sites (SFS) EZ Top Sites allows remote attackers to execute arbitrary SQL commands via the ts parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j25j-4g2v-jq68/GHSA-j25j-4g2v-jq68.json b/advisories/unreviewed/2022/05/GHSA-j25j-4g2v-jq68/GHSA-j25j-4g2v-jq68.json index e3fcc1c71a6..db5ee93d779 100644 --- a/advisories/unreviewed/2022/05/GHSA-j25j-4g2v-jq68/GHSA-j25j-4g2v-jq68.json +++ b/advisories/unreviewed/2022/05/GHSA-j25j-4g2v-jq68/GHSA-j25j-4g2v-jq68.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-j2hr-3xh6-w2c7/GHSA-j2hr-3xh6-w2c7.json b/advisories/unreviewed/2022/05/GHSA-j2hr-3xh6-w2c7/GHSA-j2hr-3xh6-w2c7.json index d3340762ece..e9a2cd8acf9 100644 --- a/advisories/unreviewed/2022/05/GHSA-j2hr-3xh6-w2c7/GHSA-j2hr-3xh6-w2c7.json +++ b/advisories/unreviewed/2022/05/GHSA-j2hr-3xh6-w2c7/GHSA-j2hr-3xh6-w2c7.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-j33p-xv8j-c84j/GHSA-j33p-xv8j-c84j.json b/advisories/unreviewed/2022/05/GHSA-j33p-xv8j-c84j/GHSA-j33p-xv8j-c84j.json index 0470a915bfa..41b9bdede7d 100644 --- a/advisories/unreviewed/2022/05/GHSA-j33p-xv8j-c84j/GHSA-j33p-xv8j-c84j.json +++ b/advisories/unreviewed/2022/05/GHSA-j33p-xv8j-c84j/GHSA-j33p-xv8j-c84j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-j3vr-8x6h-pjqh/GHSA-j3vr-8x6h-pjqh.json b/advisories/unreviewed/2022/05/GHSA-j3vr-8x6h-pjqh/GHSA-j3vr-8x6h-pjqh.json index 8e01266a5f7..9a956650e62 100644 --- a/advisories/unreviewed/2022/05/GHSA-j3vr-8x6h-pjqh/GHSA-j3vr-8x6h-pjqh.json +++ b/advisories/unreviewed/2022/05/GHSA-j3vr-8x6h-pjqh/GHSA-j3vr-8x6h-pjqh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-j45r-mrwm-9mjx/GHSA-j45r-mrwm-9mjx.json b/advisories/unreviewed/2022/05/GHSA-j45r-mrwm-9mjx/GHSA-j45r-mrwm-9mjx.json index dd71d1e3954..db4719efb53 100644 --- a/advisories/unreviewed/2022/05/GHSA-j45r-mrwm-9mjx/GHSA-j45r-mrwm-9mjx.json +++ b/advisories/unreviewed/2022/05/GHSA-j45r-mrwm-9mjx/GHSA-j45r-mrwm-9mjx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-j499-9qp5-g67j/GHSA-j499-9qp5-g67j.json b/advisories/unreviewed/2022/05/GHSA-j499-9qp5-g67j/GHSA-j499-9qp5-g67j.json index 465a634b524..6c1bee020ca 100644 --- a/advisories/unreviewed/2022/05/GHSA-j499-9qp5-g67j/GHSA-j499-9qp5-g67j.json +++ b/advisories/unreviewed/2022/05/GHSA-j499-9qp5-g67j/GHSA-j499-9qp5-g67j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-j4j9-23m6-8hmf/GHSA-j4j9-23m6-8hmf.json b/advisories/unreviewed/2022/05/GHSA-j4j9-23m6-8hmf/GHSA-j4j9-23m6-8hmf.json index b4fec897e21..39f51c5c174 100644 --- a/advisories/unreviewed/2022/05/GHSA-j4j9-23m6-8hmf/GHSA-j4j9-23m6-8hmf.json +++ b/advisories/unreviewed/2022/05/GHSA-j4j9-23m6-8hmf/GHSA-j4j9-23m6-8hmf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-j4m5-683m-43cm/GHSA-j4m5-683m-43cm.json b/advisories/unreviewed/2022/05/GHSA-j4m5-683m-43cm/GHSA-j4m5-683m-43cm.json index 9ec75e9cee9..3e6894cc93c 100644 --- a/advisories/unreviewed/2022/05/GHSA-j4m5-683m-43cm/GHSA-j4m5-683m-43cm.json +++ b/advisories/unreviewed/2022/05/GHSA-j4m5-683m-43cm/GHSA-j4m5-683m-43cm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-j4r6-m4xp-qv88/GHSA-j4r6-m4xp-qv88.json b/advisories/unreviewed/2022/05/GHSA-j4r6-m4xp-qv88/GHSA-j4r6-m4xp-qv88.json index 7d413abb6b7..7c9265c737b 100644 --- a/advisories/unreviewed/2022/05/GHSA-j4r6-m4xp-qv88/GHSA-j4r6-m4xp-qv88.json +++ b/advisories/unreviewed/2022/05/GHSA-j4r6-m4xp-qv88/GHSA-j4r6-m4xp-qv88.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-j5jg-936c-hwh6/GHSA-j5jg-936c-hwh6.json b/advisories/unreviewed/2022/05/GHSA-j5jg-936c-hwh6/GHSA-j5jg-936c-hwh6.json index 986fd6e48e3..8cf3a63b183 100644 --- a/advisories/unreviewed/2022/05/GHSA-j5jg-936c-hwh6/GHSA-j5jg-936c-hwh6.json +++ b/advisories/unreviewed/2022/05/GHSA-j5jg-936c-hwh6/GHSA-j5jg-936c-hwh6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-j5xf-xm75-p34v/GHSA-j5xf-xm75-p34v.json b/advisories/unreviewed/2022/05/GHSA-j5xf-xm75-p34v/GHSA-j5xf-xm75-p34v.json index 7d3823568b3..0e186c9360a 100644 --- a/advisories/unreviewed/2022/05/GHSA-j5xf-xm75-p34v/GHSA-j5xf-xm75-p34v.json +++ b/advisories/unreviewed/2022/05/GHSA-j5xf-xm75-p34v/GHSA-j5xf-xm75-p34v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-j62f-48c7-864m/GHSA-j62f-48c7-864m.json b/advisories/unreviewed/2022/05/GHSA-j62f-48c7-864m/GHSA-j62f-48c7-864m.json index a9521453e95..fb87403304c 100644 --- a/advisories/unreviewed/2022/05/GHSA-j62f-48c7-864m/GHSA-j62f-48c7-864m.json +++ b/advisories/unreviewed/2022/05/GHSA-j62f-48c7-864m/GHSA-j62f-48c7-864m.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-j6q4-xcch-955f/GHSA-j6q4-xcch-955f.json b/advisories/unreviewed/2022/05/GHSA-j6q4-xcch-955f/GHSA-j6q4-xcch-955f.json index 1a2c0292855..4f747d02742 100644 --- a/advisories/unreviewed/2022/05/GHSA-j6q4-xcch-955f/GHSA-j6q4-xcch-955f.json +++ b/advisories/unreviewed/2022/05/GHSA-j6q4-xcch-955f/GHSA-j6q4-xcch-955f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-j76r-xrrw-x647/GHSA-j76r-xrrw-x647.json b/advisories/unreviewed/2022/05/GHSA-j76r-xrrw-x647/GHSA-j76r-xrrw-x647.json index 485568669e3..c0c49196751 100644 --- a/advisories/unreviewed/2022/05/GHSA-j76r-xrrw-x647/GHSA-j76r-xrrw-x647.json +++ b/advisories/unreviewed/2022/05/GHSA-j76r-xrrw-x647/GHSA-j76r-xrrw-x647.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/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": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-j8c3-cpqh-9xmp/GHSA-j8c3-cpqh-9xmp.json b/advisories/unreviewed/2022/05/GHSA-j8c3-cpqh-9xmp/GHSA-j8c3-cpqh-9xmp.json index b9901c6f0b0..a544113ce50 100644 --- a/advisories/unreviewed/2022/05/GHSA-j8c3-cpqh-9xmp/GHSA-j8c3-cpqh-9xmp.json +++ b/advisories/unreviewed/2022/05/GHSA-j8c3-cpqh-9xmp/GHSA-j8c3-cpqh-9xmp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-j977-fhp2-2rf4/GHSA-j977-fhp2-2rf4.json b/advisories/unreviewed/2022/05/GHSA-j977-fhp2-2rf4/GHSA-j977-fhp2-2rf4.json index ccf11cfcf2b..722901fca81 100644 --- a/advisories/unreviewed/2022/05/GHSA-j977-fhp2-2rf4/GHSA-j977-fhp2-2rf4.json +++ b/advisories/unreviewed/2022/05/GHSA-j977-fhp2-2rf4/GHSA-j977-fhp2-2rf4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-j9g4-m9h5-f47p/GHSA-j9g4-m9h5-f47p.json b/advisories/unreviewed/2022/05/GHSA-j9g4-m9h5-f47p/GHSA-j9g4-m9h5-f47p.json index 2cb2b328635..31a60b6457b 100644 --- a/advisories/unreviewed/2022/05/GHSA-j9g4-m9h5-f47p/GHSA-j9g4-m9h5-f47p.json +++ b/advisories/unreviewed/2022/05/GHSA-j9g4-m9h5-f47p/GHSA-j9g4-m9h5-f47p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jf3v-6m2c-pvc9/GHSA-jf3v-6m2c-pvc9.json b/advisories/unreviewed/2022/05/GHSA-jf3v-6m2c-pvc9/GHSA-jf3v-6m2c-pvc9.json index 1d53926b539..d370570b460 100644 --- a/advisories/unreviewed/2022/05/GHSA-jf3v-6m2c-pvc9/GHSA-jf3v-6m2c-pvc9.json +++ b/advisories/unreviewed/2022/05/GHSA-jf3v-6m2c-pvc9/GHSA-jf3v-6m2c-pvc9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jf3w-9wv7-xjmg/GHSA-jf3w-9wv7-xjmg.json b/advisories/unreviewed/2022/05/GHSA-jf3w-9wv7-xjmg/GHSA-jf3w-9wv7-xjmg.json index 4431e231c47..df1f6506cdd 100644 --- a/advisories/unreviewed/2022/05/GHSA-jf3w-9wv7-xjmg/GHSA-jf3w-9wv7-xjmg.json +++ b/advisories/unreviewed/2022/05/GHSA-jf3w-9wv7-xjmg/GHSA-jf3w-9wv7-xjmg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jfpc-56gv-hh9g/GHSA-jfpc-56gv-hh9g.json b/advisories/unreviewed/2022/05/GHSA-jfpc-56gv-hh9g/GHSA-jfpc-56gv-hh9g.json index 7e1df14fd5b..b40080406ee 100644 --- a/advisories/unreviewed/2022/05/GHSA-jfpc-56gv-hh9g/GHSA-jfpc-56gv-hh9g.json +++ b/advisories/unreviewed/2022/05/GHSA-jfpc-56gv-hh9g/GHSA-jfpc-56gv-hh9g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-jfr3-x5vj-74jf/GHSA-jfr3-x5vj-74jf.json b/advisories/unreviewed/2022/05/GHSA-jfr3-x5vj-74jf/GHSA-jfr3-x5vj-74jf.json index a26277a589c..71cf4fc1889 100644 --- a/advisories/unreviewed/2022/05/GHSA-jfr3-x5vj-74jf/GHSA-jfr3-x5vj-74jf.json +++ b/advisories/unreviewed/2022/05/GHSA-jfr3-x5vj-74jf/GHSA-jfr3-x5vj-74jf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jgj8-6rfv-fv92/GHSA-jgj8-6rfv-fv92.json b/advisories/unreviewed/2022/05/GHSA-jgj8-6rfv-fv92/GHSA-jgj8-6rfv-fv92.json index d6b9d6edff9..0ed4c0f66ca 100644 --- a/advisories/unreviewed/2022/05/GHSA-jgj8-6rfv-fv92/GHSA-jgj8-6rfv-fv92.json +++ b/advisories/unreviewed/2022/05/GHSA-jgj8-6rfv-fv92/GHSA-jgj8-6rfv-fv92.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jhf5-m3c7-36jw/GHSA-jhf5-m3c7-36jw.json b/advisories/unreviewed/2022/05/GHSA-jhf5-m3c7-36jw/GHSA-jhf5-m3c7-36jw.json index 4e125d440fd..a78ae744665 100644 --- a/advisories/unreviewed/2022/05/GHSA-jhf5-m3c7-36jw/GHSA-jhf5-m3c7-36jw.json +++ b/advisories/unreviewed/2022/05/GHSA-jhf5-m3c7-36jw/GHSA-jhf5-m3c7-36jw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jhwq-fpc4-43ff/GHSA-jhwq-fpc4-43ff.json b/advisories/unreviewed/2022/05/GHSA-jhwq-fpc4-43ff/GHSA-jhwq-fpc4-43ff.json index 22933b5446b..f30a8dd1180 100644 --- a/advisories/unreviewed/2022/05/GHSA-jhwq-fpc4-43ff/GHSA-jhwq-fpc4-43ff.json +++ b/advisories/unreviewed/2022/05/GHSA-jhwq-fpc4-43ff/GHSA-jhwq-fpc4-43ff.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jj7f-wqmm-8q5f/GHSA-jj7f-wqmm-8q5f.json b/advisories/unreviewed/2022/05/GHSA-jj7f-wqmm-8q5f/GHSA-jj7f-wqmm-8q5f.json index 72f36ab1787..20f753f0cc8 100644 --- a/advisories/unreviewed/2022/05/GHSA-jj7f-wqmm-8q5f/GHSA-jj7f-wqmm-8q5f.json +++ b/advisories/unreviewed/2022/05/GHSA-jj7f-wqmm-8q5f/GHSA-jj7f-wqmm-8q5f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jjj2-vh9g-2mhv/GHSA-jjj2-vh9g-2mhv.json b/advisories/unreviewed/2022/05/GHSA-jjj2-vh9g-2mhv/GHSA-jjj2-vh9g-2mhv.json index c42c3147880..f3439849375 100644 --- a/advisories/unreviewed/2022/05/GHSA-jjj2-vh9g-2mhv/GHSA-jjj2-vh9g-2mhv.json +++ b/advisories/unreviewed/2022/05/GHSA-jjj2-vh9g-2mhv/GHSA-jjj2-vh9g-2mhv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jjq8-qc5v-fxgh/GHSA-jjq8-qc5v-fxgh.json b/advisories/unreviewed/2022/05/GHSA-jjq8-qc5v-fxgh/GHSA-jjq8-qc5v-fxgh.json index a94eb41b44d..e6b13c26b42 100644 --- a/advisories/unreviewed/2022/05/GHSA-jjq8-qc5v-fxgh/GHSA-jjq8-qc5v-fxgh.json +++ b/advisories/unreviewed/2022/05/GHSA-jjq8-qc5v-fxgh/GHSA-jjq8-qc5v-fxgh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jjwv-3452-3m7g/GHSA-jjwv-3452-3m7g.json b/advisories/unreviewed/2022/05/GHSA-jjwv-3452-3m7g/GHSA-jjwv-3452-3m7g.json index 07b340fe8c6..a52bcb0cd94 100644 --- a/advisories/unreviewed/2022/05/GHSA-jjwv-3452-3m7g/GHSA-jjwv-3452-3m7g.json +++ b/advisories/unreviewed/2022/05/GHSA-jjwv-3452-3m7g/GHSA-jjwv-3452-3m7g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jjx5-3cpj-f2vq/GHSA-jjx5-3cpj-f2vq.json b/advisories/unreviewed/2022/05/GHSA-jjx5-3cpj-f2vq/GHSA-jjx5-3cpj-f2vq.json index a9446803792..3060ab1969f 100644 --- a/advisories/unreviewed/2022/05/GHSA-jjx5-3cpj-f2vq/GHSA-jjx5-3cpj-f2vq.json +++ b/advisories/unreviewed/2022/05/GHSA-jjx5-3cpj-f2vq/GHSA-jjx5-3cpj-f2vq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jm58-rgvp-hppf/GHSA-jm58-rgvp-hppf.json b/advisories/unreviewed/2022/05/GHSA-jm58-rgvp-hppf/GHSA-jm58-rgvp-hppf.json index 6eef1bdbd96..9024787983a 100644 --- a/advisories/unreviewed/2022/05/GHSA-jm58-rgvp-hppf/GHSA-jm58-rgvp-hppf.json +++ b/advisories/unreviewed/2022/05/GHSA-jm58-rgvp-hppf/GHSA-jm58-rgvp-hppf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jm85-849j-wmxc/GHSA-jm85-849j-wmxc.json b/advisories/unreviewed/2022/05/GHSA-jm85-849j-wmxc/GHSA-jm85-849j-wmxc.json index e1e5228dc47..cc225f7760d 100644 --- a/advisories/unreviewed/2022/05/GHSA-jm85-849j-wmxc/GHSA-jm85-849j-wmxc.json +++ b/advisories/unreviewed/2022/05/GHSA-jm85-849j-wmxc/GHSA-jm85-849j-wmxc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jmrh-5577-gq9m/GHSA-jmrh-5577-gq9m.json b/advisories/unreviewed/2022/05/GHSA-jmrh-5577-gq9m/GHSA-jmrh-5577-gq9m.json index fbf2afa9a07..92f00fa63d4 100644 --- a/advisories/unreviewed/2022/05/GHSA-jmrh-5577-gq9m/GHSA-jmrh-5577-gq9m.json +++ b/advisories/unreviewed/2022/05/GHSA-jmrh-5577-gq9m/GHSA-jmrh-5577-gq9m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jp3v-f6x6-386j/GHSA-jp3v-f6x6-386j.json b/advisories/unreviewed/2022/05/GHSA-jp3v-f6x6-386j/GHSA-jp3v-f6x6-386j.json index 5aed442963d..9a5e3e3ea10 100644 --- a/advisories/unreviewed/2022/05/GHSA-jp3v-f6x6-386j/GHSA-jp3v-f6x6-386j.json +++ b/advisories/unreviewed/2022/05/GHSA-jp3v-f6x6-386j/GHSA-jp3v-f6x6-386j.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jr35-jx6w-vgpg/GHSA-jr35-jx6w-vgpg.json b/advisories/unreviewed/2022/05/GHSA-jr35-jx6w-vgpg/GHSA-jr35-jx6w-vgpg.json index 1c294e6e8ba..2ad772a0e02 100644 --- a/advisories/unreviewed/2022/05/GHSA-jr35-jx6w-vgpg/GHSA-jr35-jx6w-vgpg.json +++ b/advisories/unreviewed/2022/05/GHSA-jr35-jx6w-vgpg/GHSA-jr35-jx6w-vgpg.json @@ -7,12 +7,8 @@ "CVE-2008-6150" ], "details": "SQL injection vulnerability in classdis.asp in SepCity Classified Ads allows remote attackers to execute arbitrary SQL commands via the ID parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jvxg-m38c-9fg2/GHSA-jvxg-m38c-9fg2.json b/advisories/unreviewed/2022/05/GHSA-jvxg-m38c-9fg2/GHSA-jvxg-m38c-9fg2.json index a2e8284ae57..fdb03b57410 100644 --- a/advisories/unreviewed/2022/05/GHSA-jvxg-m38c-9fg2/GHSA-jvxg-m38c-9fg2.json +++ b/advisories/unreviewed/2022/05/GHSA-jvxg-m38c-9fg2/GHSA-jvxg-m38c-9fg2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jw46-6mcf-vp4g/GHSA-jw46-6mcf-vp4g.json b/advisories/unreviewed/2022/05/GHSA-jw46-6mcf-vp4g/GHSA-jw46-6mcf-vp4g.json index 459eb1fac99..5c975f58013 100644 --- a/advisories/unreviewed/2022/05/GHSA-jw46-6mcf-vp4g/GHSA-jw46-6mcf-vp4g.json +++ b/advisories/unreviewed/2022/05/GHSA-jw46-6mcf-vp4g/GHSA-jw46-6mcf-vp4g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-jwf8-rwxf-xm9p/GHSA-jwf8-rwxf-xm9p.json b/advisories/unreviewed/2022/05/GHSA-jwf8-rwxf-xm9p/GHSA-jwf8-rwxf-xm9p.json index ca3d0e5a38a..1c655785468 100644 --- a/advisories/unreviewed/2022/05/GHSA-jwf8-rwxf-xm9p/GHSA-jwf8-rwxf-xm9p.json +++ b/advisories/unreviewed/2022/05/GHSA-jwf8-rwxf-xm9p/GHSA-jwf8-rwxf-xm9p.json @@ -7,12 +7,8 @@ "CVE-2008-5054" ], "details": "Multiple SQL injection vulnerabilities in Develop It Easy Membership System 1.3 allow remote attackers to execute arbitrary SQL commands via the (1) email and (2) password parameters to customer_login.php and the (3) user_name and (4) user_pass parameters to admin/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-jxqv-8prh-c98f/GHSA-jxqv-8prh-c98f.json b/advisories/unreviewed/2022/05/GHSA-jxqv-8prh-c98f/GHSA-jxqv-8prh-c98f.json index 435aadfe409..7a4fc56248e 100644 --- a/advisories/unreviewed/2022/05/GHSA-jxqv-8prh-c98f/GHSA-jxqv-8prh-c98f.json +++ b/advisories/unreviewed/2022/05/GHSA-jxqv-8prh-c98f/GHSA-jxqv-8prh-c98f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-m2cm-qxmx-chc2/GHSA-m2cm-qxmx-chc2.json b/advisories/unreviewed/2022/05/GHSA-m2cm-qxmx-chc2/GHSA-m2cm-qxmx-chc2.json index 2b99b3d2288..b1a47172b92 100644 --- a/advisories/unreviewed/2022/05/GHSA-m2cm-qxmx-chc2/GHSA-m2cm-qxmx-chc2.json +++ b/advisories/unreviewed/2022/05/GHSA-m2cm-qxmx-chc2/GHSA-m2cm-qxmx-chc2.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-m2pr-75qg-2hhp/GHSA-m2pr-75qg-2hhp.json b/advisories/unreviewed/2022/05/GHSA-m2pr-75qg-2hhp/GHSA-m2pr-75qg-2hhp.json index 7998b223527..d4de3332153 100644 --- a/advisories/unreviewed/2022/05/GHSA-m2pr-75qg-2hhp/GHSA-m2pr-75qg-2hhp.json +++ b/advisories/unreviewed/2022/05/GHSA-m2pr-75qg-2hhp/GHSA-m2pr-75qg-2hhp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-m47h-9qh9-j5vr/GHSA-m47h-9qh9-j5vr.json b/advisories/unreviewed/2022/05/GHSA-m47h-9qh9-j5vr/GHSA-m47h-9qh9-j5vr.json index d68ca59e7bc..7ab0e818341 100644 --- a/advisories/unreviewed/2022/05/GHSA-m47h-9qh9-j5vr/GHSA-m47h-9qh9-j5vr.json +++ b/advisories/unreviewed/2022/05/GHSA-m47h-9qh9-j5vr/GHSA-m47h-9qh9-j5vr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-m57x-qpp9-24x7/GHSA-m57x-qpp9-24x7.json b/advisories/unreviewed/2022/05/GHSA-m57x-qpp9-24x7/GHSA-m57x-qpp9-24x7.json index eac35c16a3e..71544922c97 100644 --- a/advisories/unreviewed/2022/05/GHSA-m57x-qpp9-24x7/GHSA-m57x-qpp9-24x7.json +++ b/advisories/unreviewed/2022/05/GHSA-m57x-qpp9-24x7/GHSA-m57x-qpp9-24x7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-m5hh-hr2q-3272/GHSA-m5hh-hr2q-3272.json b/advisories/unreviewed/2022/05/GHSA-m5hh-hr2q-3272/GHSA-m5hh-hr2q-3272.json index 96fcb1858d5..167930da0f5 100644 --- a/advisories/unreviewed/2022/05/GHSA-m5hh-hr2q-3272/GHSA-m5hh-hr2q-3272.json +++ b/advisories/unreviewed/2022/05/GHSA-m5hh-hr2q-3272/GHSA-m5hh-hr2q-3272.json @@ -7,12 +7,8 @@ "CVE-2008-6253" ], "details": "Directory traversal vulnerability in data/inc/lib/pcltar.lib.php in Pluck 4.5.3, when register_globals is enabled, allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the g_pcltar_lib_dir parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m68x-f3rw-rxhq/GHSA-m68x-f3rw-rxhq.json b/advisories/unreviewed/2022/05/GHSA-m68x-f3rw-rxhq/GHSA-m68x-f3rw-rxhq.json index 8f0acfaf10f..5616b30cf09 100644 --- a/advisories/unreviewed/2022/05/GHSA-m68x-f3rw-rxhq/GHSA-m68x-f3rw-rxhq.json +++ b/advisories/unreviewed/2022/05/GHSA-m68x-f3rw-rxhq/GHSA-m68x-f3rw-rxhq.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-m6cj-cjc9-rh2w/GHSA-m6cj-cjc9-rh2w.json b/advisories/unreviewed/2022/05/GHSA-m6cj-cjc9-rh2w/GHSA-m6cj-cjc9-rh2w.json index 9dfcbdaab4c..4e75fec0be7 100644 --- a/advisories/unreviewed/2022/05/GHSA-m6cj-cjc9-rh2w/GHSA-m6cj-cjc9-rh2w.json +++ b/advisories/unreviewed/2022/05/GHSA-m6cj-cjc9-rh2w/GHSA-m6cj-cjc9-rh2w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-m6h8-3qmh-9pqc/GHSA-m6h8-3qmh-9pqc.json b/advisories/unreviewed/2022/05/GHSA-m6h8-3qmh-9pqc/GHSA-m6h8-3qmh-9pqc.json index b6fa921ba9d..cd1ae9932d6 100644 --- a/advisories/unreviewed/2022/05/GHSA-m6h8-3qmh-9pqc/GHSA-m6h8-3qmh-9pqc.json +++ b/advisories/unreviewed/2022/05/GHSA-m6h8-3qmh-9pqc/GHSA-m6h8-3qmh-9pqc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-m7gf-gf3x-4j77/GHSA-m7gf-gf3x-4j77.json b/advisories/unreviewed/2022/05/GHSA-m7gf-gf3x-4j77/GHSA-m7gf-gf3x-4j77.json index d2930e2bcab..6b723a7b648 100644 --- a/advisories/unreviewed/2022/05/GHSA-m7gf-gf3x-4j77/GHSA-m7gf-gf3x-4j77.json +++ b/advisories/unreviewed/2022/05/GHSA-m7gf-gf3x-4j77/GHSA-m7gf-gf3x-4j77.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-m84m-89rp-f35r/GHSA-m84m-89rp-f35r.json b/advisories/unreviewed/2022/05/GHSA-m84m-89rp-f35r/GHSA-m84m-89rp-f35r.json index d2695b1e12e..add834c100f 100644 --- a/advisories/unreviewed/2022/05/GHSA-m84m-89rp-f35r/GHSA-m84m-89rp-f35r.json +++ b/advisories/unreviewed/2022/05/GHSA-m84m-89rp-f35r/GHSA-m84m-89rp-f35r.json @@ -7,12 +7,8 @@ "CVE-2008-5058" ], "details": "SQL injection vulnerability in siteadmin/loginsucess.php in Pre Simple CMS allows remote attackers to execute arbitrary SQL commands via the user parameter, as reachable from siteadmin/adminlogin.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-m889-hwjr-3rrm/GHSA-m889-hwjr-3rrm.json b/advisories/unreviewed/2022/05/GHSA-m889-hwjr-3rrm/GHSA-m889-hwjr-3rrm.json index 954d470e645..0b7c509bc82 100644 --- a/advisories/unreviewed/2022/05/GHSA-m889-hwjr-3rrm/GHSA-m889-hwjr-3rrm.json +++ b/advisories/unreviewed/2022/05/GHSA-m889-hwjr-3rrm/GHSA-m889-hwjr-3rrm.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-m8gq-67c7-r7qw/GHSA-m8gq-67c7-r7qw.json b/advisories/unreviewed/2022/05/GHSA-m8gq-67c7-r7qw/GHSA-m8gq-67c7-r7qw.json index 888b83332b1..d453cdfa8ef 100644 --- a/advisories/unreviewed/2022/05/GHSA-m8gq-67c7-r7qw/GHSA-m8gq-67c7-r7qw.json +++ b/advisories/unreviewed/2022/05/GHSA-m8gq-67c7-r7qw/GHSA-m8gq-67c7-r7qw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-m96f-f8pc-696h/GHSA-m96f-f8pc-696h.json b/advisories/unreviewed/2022/05/GHSA-m96f-f8pc-696h/GHSA-m96f-f8pc-696h.json index 67d6b8b5a8b..1c0eb299d92 100644 --- a/advisories/unreviewed/2022/05/GHSA-m96f-f8pc-696h/GHSA-m96f-f8pc-696h.json +++ b/advisories/unreviewed/2022/05/GHSA-m96f-f8pc-696h/GHSA-m96f-f8pc-696h.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-m9gx-vxfw-c8w4/GHSA-m9gx-vxfw-c8w4.json b/advisories/unreviewed/2022/05/GHSA-m9gx-vxfw-c8w4/GHSA-m9gx-vxfw-c8w4.json index 1eb9335a871..58415844c59 100644 --- a/advisories/unreviewed/2022/05/GHSA-m9gx-vxfw-c8w4/GHSA-m9gx-vxfw-c8w4.json +++ b/advisories/unreviewed/2022/05/GHSA-m9gx-vxfw-c8w4/GHSA-m9gx-vxfw-c8w4.json @@ -7,12 +7,8 @@ "CVE-2013-1902" ], "details": "PostgreSQL, 9.2.x before 9.2.4, 9.1.x before 9.1.9, 9.0.x before 9.0.13, 8.4.x before 8.4.17, and 8.3.x before 8.3.23 generates insecure temporary files with predictable filenames, which has unspecified impact and attack vectors related to \"graphical installers for Linux and Mac OS X.\"", - "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-m9p9-rwr4-hjqp/GHSA-m9p9-rwr4-hjqp.json b/advisories/unreviewed/2022/05/GHSA-m9p9-rwr4-hjqp/GHSA-m9p9-rwr4-hjqp.json index 2d8f756dabb..631d8e87402 100644 --- a/advisories/unreviewed/2022/05/GHSA-m9p9-rwr4-hjqp/GHSA-m9p9-rwr4-hjqp.json +++ b/advisories/unreviewed/2022/05/GHSA-m9p9-rwr4-hjqp/GHSA-m9p9-rwr4-hjqp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-m9vp-2f39-7j2h/GHSA-m9vp-2f39-7j2h.json b/advisories/unreviewed/2022/05/GHSA-m9vp-2f39-7j2h/GHSA-m9vp-2f39-7j2h.json index 17e3ae496a0..25109761d8a 100644 --- a/advisories/unreviewed/2022/05/GHSA-m9vp-2f39-7j2h/GHSA-m9vp-2f39-7j2h.json +++ b/advisories/unreviewed/2022/05/GHSA-m9vp-2f39-7j2h/GHSA-m9vp-2f39-7j2h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mc2q-6788-6mr3/GHSA-mc2q-6788-6mr3.json b/advisories/unreviewed/2022/05/GHSA-mc2q-6788-6mr3/GHSA-mc2q-6788-6mr3.json index cffafc2d824..a656d889095 100644 --- a/advisories/unreviewed/2022/05/GHSA-mc2q-6788-6mr3/GHSA-mc2q-6788-6mr3.json +++ b/advisories/unreviewed/2022/05/GHSA-mc2q-6788-6mr3/GHSA-mc2q-6788-6mr3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/PR:N/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-mg4x-c4g8-f6h5/GHSA-mg4x-c4g8-f6h5.json b/advisories/unreviewed/2022/05/GHSA-mg4x-c4g8-f6h5/GHSA-mg4x-c4g8-f6h5.json index 510325152bd..ad17358e343 100644 --- a/advisories/unreviewed/2022/05/GHSA-mg4x-c4g8-f6h5/GHSA-mg4x-c4g8-f6h5.json +++ b/advisories/unreviewed/2022/05/GHSA-mg4x-c4g8-f6h5/GHSA-mg4x-c4g8-f6h5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mj44-jh6j-228p/GHSA-mj44-jh6j-228p.json b/advisories/unreviewed/2022/05/GHSA-mj44-jh6j-228p/GHSA-mj44-jh6j-228p.json index 11aa5218e93..d6217e622ac 100644 --- a/advisories/unreviewed/2022/05/GHSA-mj44-jh6j-228p/GHSA-mj44-jh6j-228p.json +++ b/advisories/unreviewed/2022/05/GHSA-mj44-jh6j-228p/GHSA-mj44-jh6j-228p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mjhf-58vh-qhwh/GHSA-mjhf-58vh-qhwh.json b/advisories/unreviewed/2022/05/GHSA-mjhf-58vh-qhwh/GHSA-mjhf-58vh-qhwh.json index e3a949b66c1..2bc37a565f8 100644 --- a/advisories/unreviewed/2022/05/GHSA-mjhf-58vh-qhwh/GHSA-mjhf-58vh-qhwh.json +++ b/advisories/unreviewed/2022/05/GHSA-mjhf-58vh-qhwh/GHSA-mjhf-58vh-qhwh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mm7q-m26q-8937/GHSA-mm7q-m26q-8937.json b/advisories/unreviewed/2022/05/GHSA-mm7q-m26q-8937/GHSA-mm7q-m26q-8937.json index 5acca95e1b5..821e612519f 100644 --- a/advisories/unreviewed/2022/05/GHSA-mm7q-m26q-8937/GHSA-mm7q-m26q-8937.json +++ b/advisories/unreviewed/2022/05/GHSA-mm7q-m26q-8937/GHSA-mm7q-m26q-8937.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mmgm-rxwc-9mcf/GHSA-mmgm-rxwc-9mcf.json b/advisories/unreviewed/2022/05/GHSA-mmgm-rxwc-9mcf/GHSA-mmgm-rxwc-9mcf.json index 5ac2a471a1c..101b2cd2c6d 100644 --- a/advisories/unreviewed/2022/05/GHSA-mmgm-rxwc-9mcf/GHSA-mmgm-rxwc-9mcf.json +++ b/advisories/unreviewed/2022/05/GHSA-mmgm-rxwc-9mcf/GHSA-mmgm-rxwc-9mcf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mr2j-x367-gmvc/GHSA-mr2j-x367-gmvc.json b/advisories/unreviewed/2022/05/GHSA-mr2j-x367-gmvc/GHSA-mr2j-x367-gmvc.json index 13bd0742141..201da6d99df 100644 --- a/advisories/unreviewed/2022/05/GHSA-mr2j-x367-gmvc/GHSA-mr2j-x367-gmvc.json +++ b/advisories/unreviewed/2022/05/GHSA-mr2j-x367-gmvc/GHSA-mr2j-x367-gmvc.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-mrh4-hmcp-wf2f/GHSA-mrh4-hmcp-wf2f.json b/advisories/unreviewed/2022/05/GHSA-mrh4-hmcp-wf2f/GHSA-mrh4-hmcp-wf2f.json index c70dd61ad7c..934a82e754c 100644 --- a/advisories/unreviewed/2022/05/GHSA-mrh4-hmcp-wf2f/GHSA-mrh4-hmcp-wf2f.json +++ b/advisories/unreviewed/2022/05/GHSA-mrh4-hmcp-wf2f/GHSA-mrh4-hmcp-wf2f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mvj4-99gv-jh35/GHSA-mvj4-99gv-jh35.json b/advisories/unreviewed/2022/05/GHSA-mvj4-99gv-jh35/GHSA-mvj4-99gv-jh35.json index c2caf63c388..de6462a74e5 100644 --- a/advisories/unreviewed/2022/05/GHSA-mvj4-99gv-jh35/GHSA-mvj4-99gv-jh35.json +++ b/advisories/unreviewed/2022/05/GHSA-mvj4-99gv-jh35/GHSA-mvj4-99gv-jh35.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mwhf-26jg-mg5x/GHSA-mwhf-26jg-mg5x.json b/advisories/unreviewed/2022/05/GHSA-mwhf-26jg-mg5x/GHSA-mwhf-26jg-mg5x.json index f67dea9a5dc..0191bc9e19f 100644 --- a/advisories/unreviewed/2022/05/GHSA-mwhf-26jg-mg5x/GHSA-mwhf-26jg-mg5x.json +++ b/advisories/unreviewed/2022/05/GHSA-mwhf-26jg-mg5x/GHSA-mwhf-26jg-mg5x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mwmc-6chq-x9m4/GHSA-mwmc-6chq-x9m4.json b/advisories/unreviewed/2022/05/GHSA-mwmc-6chq-x9m4/GHSA-mwmc-6chq-x9m4.json index cc40ea2e81c..397b427c4ae 100644 --- a/advisories/unreviewed/2022/05/GHSA-mwmc-6chq-x9m4/GHSA-mwmc-6chq-x9m4.json +++ b/advisories/unreviewed/2022/05/GHSA-mwmc-6chq-x9m4/GHSA-mwmc-6chq-x9m4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mx25-4f6c-7jcr/GHSA-mx25-4f6c-7jcr.json b/advisories/unreviewed/2022/05/GHSA-mx25-4f6c-7jcr/GHSA-mx25-4f6c-7jcr.json index b67a1a205c6..ac205b35f9d 100644 --- a/advisories/unreviewed/2022/05/GHSA-mx25-4f6c-7jcr/GHSA-mx25-4f6c-7jcr.json +++ b/advisories/unreviewed/2022/05/GHSA-mx25-4f6c-7jcr/GHSA-mx25-4f6c-7jcr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mx35-m958-4chv/GHSA-mx35-m958-4chv.json b/advisories/unreviewed/2022/05/GHSA-mx35-m958-4chv/GHSA-mx35-m958-4chv.json index 1da51b2039d..ff864751879 100644 --- a/advisories/unreviewed/2022/05/GHSA-mx35-m958-4chv/GHSA-mx35-m958-4chv.json +++ b/advisories/unreviewed/2022/05/GHSA-mx35-m958-4chv/GHSA-mx35-m958-4chv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mx94-7r95-gvhj/GHSA-mx94-7r95-gvhj.json b/advisories/unreviewed/2022/05/GHSA-mx94-7r95-gvhj/GHSA-mx94-7r95-gvhj.json index d344c9b4246..fdcf8e4a5b3 100644 --- a/advisories/unreviewed/2022/05/GHSA-mx94-7r95-gvhj/GHSA-mx94-7r95-gvhj.json +++ b/advisories/unreviewed/2022/05/GHSA-mx94-7r95-gvhj/GHSA-mx94-7r95-gvhj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-mxg6-5pv2-x2rf/GHSA-mxg6-5pv2-x2rf.json b/advisories/unreviewed/2022/05/GHSA-mxg6-5pv2-x2rf/GHSA-mxg6-5pv2-x2rf.json index 5c01ec46f8b..cfc8a004a36 100644 --- a/advisories/unreviewed/2022/05/GHSA-mxg6-5pv2-x2rf/GHSA-mxg6-5pv2-x2rf.json +++ b/advisories/unreviewed/2022/05/GHSA-mxg6-5pv2-x2rf/GHSA-mxg6-5pv2-x2rf.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-p2jv-394x-276f/GHSA-p2jv-394x-276f.json b/advisories/unreviewed/2022/05/GHSA-p2jv-394x-276f/GHSA-p2jv-394x-276f.json index c2fe61b2057..d4c4de3c72b 100644 --- a/advisories/unreviewed/2022/05/GHSA-p2jv-394x-276f/GHSA-p2jv-394x-276f.json +++ b/advisories/unreviewed/2022/05/GHSA-p2jv-394x-276f/GHSA-p2jv-394x-276f.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-p2qv-gcg8-hpwq/GHSA-p2qv-gcg8-hpwq.json b/advisories/unreviewed/2022/05/GHSA-p2qv-gcg8-hpwq/GHSA-p2qv-gcg8-hpwq.json index 019e1d20def..69481ac3d89 100644 --- a/advisories/unreviewed/2022/05/GHSA-p2qv-gcg8-hpwq/GHSA-p2qv-gcg8-hpwq.json +++ b/advisories/unreviewed/2022/05/GHSA-p2qv-gcg8-hpwq/GHSA-p2qv-gcg8-hpwq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-p2vh-c677-7fm4/GHSA-p2vh-c677-7fm4.json b/advisories/unreviewed/2022/05/GHSA-p2vh-c677-7fm4/GHSA-p2vh-c677-7fm4.json index 48bff95a464..1d87b9279cb 100644 --- a/advisories/unreviewed/2022/05/GHSA-p2vh-c677-7fm4/GHSA-p2vh-c677-7fm4.json +++ b/advisories/unreviewed/2022/05/GHSA-p2vh-c677-7fm4/GHSA-p2vh-c677-7fm4.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-p3c6-gpgq-fm87/GHSA-p3c6-gpgq-fm87.json b/advisories/unreviewed/2022/05/GHSA-p3c6-gpgq-fm87/GHSA-p3c6-gpgq-fm87.json index a07a1d366de..9403d0bf937 100644 --- a/advisories/unreviewed/2022/05/GHSA-p3c6-gpgq-fm87/GHSA-p3c6-gpgq-fm87.json +++ b/advisories/unreviewed/2022/05/GHSA-p3c6-gpgq-fm87/GHSA-p3c6-gpgq-fm87.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-p5qm-gm4q-39qm/GHSA-p5qm-gm4q-39qm.json b/advisories/unreviewed/2022/05/GHSA-p5qm-gm4q-39qm/GHSA-p5qm-gm4q-39qm.json index 277cf5c64be..33dff1c04be 100644 --- a/advisories/unreviewed/2022/05/GHSA-p5qm-gm4q-39qm/GHSA-p5qm-gm4q-39qm.json +++ b/advisories/unreviewed/2022/05/GHSA-p5qm-gm4q-39qm/GHSA-p5qm-gm4q-39qm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-p5r9-537g-hxph/GHSA-p5r9-537g-hxph.json b/advisories/unreviewed/2022/05/GHSA-p5r9-537g-hxph/GHSA-p5r9-537g-hxph.json index 62db21419e0..d05438452fd 100644 --- a/advisories/unreviewed/2022/05/GHSA-p5r9-537g-hxph/GHSA-p5r9-537g-hxph.json +++ b/advisories/unreviewed/2022/05/GHSA-p5r9-537g-hxph/GHSA-p5r9-537g-hxph.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-p63m-mrx7-xw7f/GHSA-p63m-mrx7-xw7f.json b/advisories/unreviewed/2022/05/GHSA-p63m-mrx7-xw7f/GHSA-p63m-mrx7-xw7f.json index 9a6b32e235d..eb98fd0fda1 100644 --- a/advisories/unreviewed/2022/05/GHSA-p63m-mrx7-xw7f/GHSA-p63m-mrx7-xw7f.json +++ b/advisories/unreviewed/2022/05/GHSA-p63m-mrx7-xw7f/GHSA-p63m-mrx7-xw7f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-p8qg-x349-xw2g/GHSA-p8qg-x349-xw2g.json b/advisories/unreviewed/2022/05/GHSA-p8qg-x349-xw2g/GHSA-p8qg-x349-xw2g.json index f9fd9a449e6..0a3797e407e 100644 --- a/advisories/unreviewed/2022/05/GHSA-p8qg-x349-xw2g/GHSA-p8qg-x349-xw2g.json +++ b/advisories/unreviewed/2022/05/GHSA-p8qg-x349-xw2g/GHSA-p8qg-x349-xw2g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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-pfp2-9h56-hppr/GHSA-pfp2-9h56-hppr.json b/advisories/unreviewed/2022/05/GHSA-pfp2-9h56-hppr/GHSA-pfp2-9h56-hppr.json index 8dff2ed4410..14f932b37f6 100644 --- a/advisories/unreviewed/2022/05/GHSA-pfp2-9h56-hppr/GHSA-pfp2-9h56-hppr.json +++ b/advisories/unreviewed/2022/05/GHSA-pfp2-9h56-hppr/GHSA-pfp2-9h56-hppr.json @@ -7,12 +7,8 @@ "CVE-2008-6201" ], "details": "Directory traversal vulnerability in help.php in the eskuel module in KwsPHP 1.3.456, as available before 20080416, allows remote attackers to execute arbitrary commands via the action parameter. 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-pfv7-x7vw-569q/GHSA-pfv7-x7vw-569q.json b/advisories/unreviewed/2022/05/GHSA-pfv7-x7vw-569q/GHSA-pfv7-x7vw-569q.json index 8f4fe10ddeb..9e4034f9101 100644 --- a/advisories/unreviewed/2022/05/GHSA-pfv7-x7vw-569q/GHSA-pfv7-x7vw-569q.json +++ b/advisories/unreviewed/2022/05/GHSA-pfv7-x7vw-569q/GHSA-pfv7-x7vw-569q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-pjx8-jpc3-483f/GHSA-pjx8-jpc3-483f.json b/advisories/unreviewed/2022/05/GHSA-pjx8-jpc3-483f/GHSA-pjx8-jpc3-483f.json index d63c022b1af..c8093cf8eac 100644 --- a/advisories/unreviewed/2022/05/GHSA-pjx8-jpc3-483f/GHSA-pjx8-jpc3-483f.json +++ b/advisories/unreviewed/2022/05/GHSA-pjx8-jpc3-483f/GHSA-pjx8-jpc3-483f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-pmv4-h8p5-cgxp/GHSA-pmv4-h8p5-cgxp.json b/advisories/unreviewed/2022/05/GHSA-pmv4-h8p5-cgxp/GHSA-pmv4-h8p5-cgxp.json index eb3e5d51801..7027de70873 100644 --- a/advisories/unreviewed/2022/05/GHSA-pmv4-h8p5-cgxp/GHSA-pmv4-h8p5-cgxp.json +++ b/advisories/unreviewed/2022/05/GHSA-pmv4-h8p5-cgxp/GHSA-pmv4-h8p5-cgxp.json @@ -7,12 +7,8 @@ "CVE-2008-5178" ], "details": "Heap-based buffer overflow in Opera 9.62 on Windows allows remote attackers to execute arbitrary code via a long file:// URI. NOTE: this might overlap CVE-2008-5680.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pr2r-pf6p-36jw/GHSA-pr2r-pf6p-36jw.json b/advisories/unreviewed/2022/05/GHSA-pr2r-pf6p-36jw/GHSA-pr2r-pf6p-36jw.json index e44570fee9b..5970a55d916 100644 --- a/advisories/unreviewed/2022/05/GHSA-pr2r-pf6p-36jw/GHSA-pr2r-pf6p-36jw.json +++ b/advisories/unreviewed/2022/05/GHSA-pr2r-pf6p-36jw/GHSA-pr2r-pf6p-36jw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-pv8q-4h9r-5jwj/GHSA-pv8q-4h9r-5jwj.json b/advisories/unreviewed/2022/05/GHSA-pv8q-4h9r-5jwj/GHSA-pv8q-4h9r-5jwj.json index a9463be43be..1be0d522d42 100644 --- a/advisories/unreviewed/2022/05/GHSA-pv8q-4h9r-5jwj/GHSA-pv8q-4h9r-5jwj.json +++ b/advisories/unreviewed/2022/05/GHSA-pv8q-4h9r-5jwj/GHSA-pv8q-4h9r-5jwj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-px7g-rhc6-8qw6/GHSA-px7g-rhc6-8qw6.json b/advisories/unreviewed/2022/05/GHSA-px7g-rhc6-8qw6/GHSA-px7g-rhc6-8qw6.json index 9cb0632f130..613ebcf1633 100644 --- a/advisories/unreviewed/2022/05/GHSA-px7g-rhc6-8qw6/GHSA-px7g-rhc6-8qw6.json +++ b/advisories/unreviewed/2022/05/GHSA-px7g-rhc6-8qw6/GHSA-px7g-rhc6-8qw6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-px82-2wcc-qq8w/GHSA-px82-2wcc-qq8w.json b/advisories/unreviewed/2022/05/GHSA-px82-2wcc-qq8w/GHSA-px82-2wcc-qq8w.json index 79ca6bcd87c..13ebbd1eb8e 100644 --- a/advisories/unreviewed/2022/05/GHSA-px82-2wcc-qq8w/GHSA-px82-2wcc-qq8w.json +++ b/advisories/unreviewed/2022/05/GHSA-px82-2wcc-qq8w/GHSA-px82-2wcc-qq8w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-q4wg-m7gq-8rhw/GHSA-q4wg-m7gq-8rhw.json b/advisories/unreviewed/2022/05/GHSA-q4wg-m7gq-8rhw/GHSA-q4wg-m7gq-8rhw.json index 16481bc31fb..270f45d8128 100644 --- a/advisories/unreviewed/2022/05/GHSA-q4wg-m7gq-8rhw/GHSA-q4wg-m7gq-8rhw.json +++ b/advisories/unreviewed/2022/05/GHSA-q4wg-m7gq-8rhw/GHSA-q4wg-m7gq-8rhw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:N" } ], - "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-q55m-8f9f-jgg3/GHSA-q55m-8f9f-jgg3.json b/advisories/unreviewed/2022/05/GHSA-q55m-8f9f-jgg3/GHSA-q55m-8f9f-jgg3.json index 0e0172cc0d6..d8abb651cd7 100644 --- a/advisories/unreviewed/2022/05/GHSA-q55m-8f9f-jgg3/GHSA-q55m-8f9f-jgg3.json +++ b/advisories/unreviewed/2022/05/GHSA-q55m-8f9f-jgg3/GHSA-q55m-8f9f-jgg3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-q5gr-h5mj-hp63/GHSA-q5gr-h5mj-hp63.json b/advisories/unreviewed/2022/05/GHSA-q5gr-h5mj-hp63/GHSA-q5gr-h5mj-hp63.json index e10b645eb92..94f51b24e70 100644 --- a/advisories/unreviewed/2022/05/GHSA-q5gr-h5mj-hp63/GHSA-q5gr-h5mj-hp63.json +++ b/advisories/unreviewed/2022/05/GHSA-q5gr-h5mj-hp63/GHSA-q5gr-h5mj-hp63.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", diff --git a/advisories/unreviewed/2022/05/GHSA-q5qq-cr47-c576/GHSA-q5qq-cr47-c576.json b/advisories/unreviewed/2022/05/GHSA-q5qq-cr47-c576/GHSA-q5qq-cr47-c576.json index 5fc36f97b37..ce07d34a8bf 100644 --- a/advisories/unreviewed/2022/05/GHSA-q5qq-cr47-c576/GHSA-q5qq-cr47-c576.json +++ b/advisories/unreviewed/2022/05/GHSA-q5qq-cr47-c576/GHSA-q5qq-cr47-c576.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-q6jr-g2c6-rf9r/GHSA-q6jr-g2c6-rf9r.json b/advisories/unreviewed/2022/05/GHSA-q6jr-g2c6-rf9r/GHSA-q6jr-g2c6-rf9r.json index 85f9913dcc8..43782a556fd 100644 --- a/advisories/unreviewed/2022/05/GHSA-q6jr-g2c6-rf9r/GHSA-q6jr-g2c6-rf9r.json +++ b/advisories/unreviewed/2022/05/GHSA-q6jr-g2c6-rf9r/GHSA-q6jr-g2c6-rf9r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-q937-ph5c-26qf/GHSA-q937-ph5c-26qf.json b/advisories/unreviewed/2022/05/GHSA-q937-ph5c-26qf/GHSA-q937-ph5c-26qf.json index 7892dd7abd9..cb5548637a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-q937-ph5c-26qf/GHSA-q937-ph5c-26qf.json +++ b/advisories/unreviewed/2022/05/GHSA-q937-ph5c-26qf/GHSA-q937-ph5c-26qf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-q9v2-7fch-g9q6/GHSA-q9v2-7fch-g9q6.json b/advisories/unreviewed/2022/05/GHSA-q9v2-7fch-g9q6/GHSA-q9v2-7fch-g9q6.json index ce73e4d85dc..405e4847d6f 100644 --- a/advisories/unreviewed/2022/05/GHSA-q9v2-7fch-g9q6/GHSA-q9v2-7fch-g9q6.json +++ b/advisories/unreviewed/2022/05/GHSA-q9v2-7fch-g9q6/GHSA-q9v2-7fch-g9q6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-qcm2-5g62-9hjj/GHSA-qcm2-5g62-9hjj.json b/advisories/unreviewed/2022/05/GHSA-qcm2-5g62-9hjj/GHSA-qcm2-5g62-9hjj.json index 7858ac485eb..75a6730615c 100644 --- a/advisories/unreviewed/2022/05/GHSA-qcm2-5g62-9hjj/GHSA-qcm2-5g62-9hjj.json +++ b/advisories/unreviewed/2022/05/GHSA-qcm2-5g62-9hjj/GHSA-qcm2-5g62-9hjj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-qcp2-5rv3-rr4w/GHSA-qcp2-5rv3-rr4w.json b/advisories/unreviewed/2022/05/GHSA-qcp2-5rv3-rr4w/GHSA-qcp2-5rv3-rr4w.json index 5ab86437008..1408c58c694 100644 --- a/advisories/unreviewed/2022/05/GHSA-qcp2-5rv3-rr4w/GHSA-qcp2-5rv3-rr4w.json +++ b/advisories/unreviewed/2022/05/GHSA-qcp2-5rv3-rr4w/GHSA-qcp2-5rv3-rr4w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-qf3g-xfj4-3hqf/GHSA-qf3g-xfj4-3hqf.json b/advisories/unreviewed/2022/05/GHSA-qf3g-xfj4-3hqf/GHSA-qf3g-xfj4-3hqf.json index 3d351a74795..c19634f87f4 100644 --- a/advisories/unreviewed/2022/05/GHSA-qf3g-xfj4-3hqf/GHSA-qf3g-xfj4-3hqf.json +++ b/advisories/unreviewed/2022/05/GHSA-qf3g-xfj4-3hqf/GHSA-qf3g-xfj4-3hqf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qhgc-j667-4fq8/GHSA-qhgc-j667-4fq8.json b/advisories/unreviewed/2022/05/GHSA-qhgc-j667-4fq8/GHSA-qhgc-j667-4fq8.json index eb2d8a6a7c1..fbbc370faca 100644 --- a/advisories/unreviewed/2022/05/GHSA-qhgc-j667-4fq8/GHSA-qhgc-j667-4fq8.json +++ b/advisories/unreviewed/2022/05/GHSA-qhgc-j667-4fq8/GHSA-qhgc-j667-4fq8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-qm32-ww27-mqp9/GHSA-qm32-ww27-mqp9.json b/advisories/unreviewed/2022/05/GHSA-qm32-ww27-mqp9/GHSA-qm32-ww27-mqp9.json index 314ba084bdd..9329bce8d82 100644 --- a/advisories/unreviewed/2022/05/GHSA-qm32-ww27-mqp9/GHSA-qm32-ww27-mqp9.json +++ b/advisories/unreviewed/2022/05/GHSA-qm32-ww27-mqp9/GHSA-qm32-ww27-mqp9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-qm7x-p4cx-r7pj/GHSA-qm7x-p4cx-r7pj.json b/advisories/unreviewed/2022/05/GHSA-qm7x-p4cx-r7pj/GHSA-qm7x-p4cx-r7pj.json index e93f8607a5b..06a19bb97f5 100644 --- a/advisories/unreviewed/2022/05/GHSA-qm7x-p4cx-r7pj/GHSA-qm7x-p4cx-r7pj.json +++ b/advisories/unreviewed/2022/05/GHSA-qm7x-p4cx-r7pj/GHSA-qm7x-p4cx-r7pj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -39,9 +37,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qmh2-wxwc-w56h/GHSA-qmh2-wxwc-w56h.json b/advisories/unreviewed/2022/05/GHSA-qmh2-wxwc-w56h/GHSA-qmh2-wxwc-w56h.json index 5925bff6477..bba9769bb8a 100644 --- a/advisories/unreviewed/2022/05/GHSA-qmh2-wxwc-w56h/GHSA-qmh2-wxwc-w56h.json +++ b/advisories/unreviewed/2022/05/GHSA-qmh2-wxwc-w56h/GHSA-qmh2-wxwc-w56h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-qpr5-522c-rj7q/GHSA-qpr5-522c-rj7q.json b/advisories/unreviewed/2022/05/GHSA-qpr5-522c-rj7q/GHSA-qpr5-522c-rj7q.json index df21c734e8e..4e14dfacb4c 100644 --- a/advisories/unreviewed/2022/05/GHSA-qpr5-522c-rj7q/GHSA-qpr5-522c-rj7q.json +++ b/advisories/unreviewed/2022/05/GHSA-qpr5-522c-rj7q/GHSA-qpr5-522c-rj7q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-qrx7-28jj-4c32/GHSA-qrx7-28jj-4c32.json b/advisories/unreviewed/2022/05/GHSA-qrx7-28jj-4c32/GHSA-qrx7-28jj-4c32.json index ae8205d7f78..9c7aad39930 100644 --- a/advisories/unreviewed/2022/05/GHSA-qrx7-28jj-4c32/GHSA-qrx7-28jj-4c32.json +++ b/advisories/unreviewed/2022/05/GHSA-qrx7-28jj-4c32/GHSA-qrx7-28jj-4c32.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-qv6g-wj62-q9fj/GHSA-qv6g-wj62-q9fj.json b/advisories/unreviewed/2022/05/GHSA-qv6g-wj62-q9fj/GHSA-qv6g-wj62-q9fj.json index ff0527834f2..ef4f6617151 100644 --- a/advisories/unreviewed/2022/05/GHSA-qv6g-wj62-q9fj/GHSA-qv6g-wj62-q9fj.json +++ b/advisories/unreviewed/2022/05/GHSA-qv6g-wj62-q9fj/GHSA-qv6g-wj62-q9fj.json @@ -7,12 +7,8 @@ "CVE-2008-5069" ], "details": "SQL injection vulnerability in go.php in Panuwat PromoteWeb MySQL, when magic_quotes_gpc is disabled, allows remote attackers to execute arbitrary SQL commands via the id parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qvmf-vjjj-h72w/GHSA-qvmf-vjjj-h72w.json b/advisories/unreviewed/2022/05/GHSA-qvmf-vjjj-h72w/GHSA-qvmf-vjjj-h72w.json index 65ad185d6c7..ec5983aa9b2 100644 --- a/advisories/unreviewed/2022/05/GHSA-qvmf-vjjj-h72w/GHSA-qvmf-vjjj-h72w.json +++ b/advisories/unreviewed/2022/05/GHSA-qvmf-vjjj-h72w/GHSA-qvmf-vjjj-h72w.json @@ -7,12 +7,8 @@ "CVE-2012-5960" ], "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) before 1.6.18 allows remote attackers to execute arbitrary code via a long UDN (aka upnp:rootdevice) field in a UDP packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qw7p-qjwr-4v7h/GHSA-qw7p-qjwr-4v7h.json b/advisories/unreviewed/2022/05/GHSA-qw7p-qjwr-4v7h/GHSA-qw7p-qjwr-4v7h.json index c678d943c84..b962fe1db1e 100644 --- a/advisories/unreviewed/2022/05/GHSA-qw7p-qjwr-4v7h/GHSA-qw7p-qjwr-4v7h.json +++ b/advisories/unreviewed/2022/05/GHSA-qw7p-qjwr-4v7h/GHSA-qw7p-qjwr-4v7h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-qxg6-q47j-rhmf/GHSA-qxg6-q47j-rhmf.json b/advisories/unreviewed/2022/05/GHSA-qxg6-q47j-rhmf/GHSA-qxg6-q47j-rhmf.json index ad068b11dc7..286e5c8b003 100644 --- a/advisories/unreviewed/2022/05/GHSA-qxg6-q47j-rhmf/GHSA-qxg6-q47j-rhmf.json +++ b/advisories/unreviewed/2022/05/GHSA-qxg6-q47j-rhmf/GHSA-qxg6-q47j-rhmf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r22w-qmjc-3gx6/GHSA-r22w-qmjc-3gx6.json b/advisories/unreviewed/2022/05/GHSA-r22w-qmjc-3gx6/GHSA-r22w-qmjc-3gx6.json index ffc4e2c2ad7..b80896d9346 100644 --- a/advisories/unreviewed/2022/05/GHSA-r22w-qmjc-3gx6/GHSA-r22w-qmjc-3gx6.json +++ b/advisories/unreviewed/2022/05/GHSA-r22w-qmjc-3gx6/GHSA-r22w-qmjc-3gx6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r356-jxgp-r9hv/GHSA-r356-jxgp-r9hv.json b/advisories/unreviewed/2022/05/GHSA-r356-jxgp-r9hv/GHSA-r356-jxgp-r9hv.json index b4b39e75d70..6f3014dcc67 100644 --- a/advisories/unreviewed/2022/05/GHSA-r356-jxgp-r9hv/GHSA-r356-jxgp-r9hv.json +++ b/advisories/unreviewed/2022/05/GHSA-r356-jxgp-r9hv/GHSA-r356-jxgp-r9hv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r452-gqxc-g33r/GHSA-r452-gqxc-g33r.json b/advisories/unreviewed/2022/05/GHSA-r452-gqxc-g33r/GHSA-r452-gqxc-g33r.json index 200fec7765d..7179d67b9a2 100644 --- a/advisories/unreviewed/2022/05/GHSA-r452-gqxc-g33r/GHSA-r452-gqxc-g33r.json +++ b/advisories/unreviewed/2022/05/GHSA-r452-gqxc-g33r/GHSA-r452-gqxc-g33r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r46w-ppm7-82g8/GHSA-r46w-ppm7-82g8.json b/advisories/unreviewed/2022/05/GHSA-r46w-ppm7-82g8/GHSA-r46w-ppm7-82g8.json index fda029edd2e..894d3ae9cf4 100644 --- a/advisories/unreviewed/2022/05/GHSA-r46w-ppm7-82g8/GHSA-r46w-ppm7-82g8.json +++ b/advisories/unreviewed/2022/05/GHSA-r46w-ppm7-82g8/GHSA-r46w-ppm7-82g8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r48w-5j64-hrmc/GHSA-r48w-5j64-hrmc.json b/advisories/unreviewed/2022/05/GHSA-r48w-5j64-hrmc/GHSA-r48w-5j64-hrmc.json index 811d4f1c27f..413cbd3a358 100644 --- a/advisories/unreviewed/2022/05/GHSA-r48w-5j64-hrmc/GHSA-r48w-5j64-hrmc.json +++ b/advisories/unreviewed/2022/05/GHSA-r48w-5j64-hrmc/GHSA-r48w-5j64-hrmc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r4hj-37g8-crxm/GHSA-r4hj-37g8-crxm.json b/advisories/unreviewed/2022/05/GHSA-r4hj-37g8-crxm/GHSA-r4hj-37g8-crxm.json index dfebe558112..f262006cbd9 100644 --- a/advisories/unreviewed/2022/05/GHSA-r4hj-37g8-crxm/GHSA-r4hj-37g8-crxm.json +++ b/advisories/unreviewed/2022/05/GHSA-r4hj-37g8-crxm/GHSA-r4hj-37g8-crxm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-r5hm-658v-6xj3/GHSA-r5hm-658v-6xj3.json b/advisories/unreviewed/2022/05/GHSA-r5hm-658v-6xj3/GHSA-r5hm-658v-6xj3.json index cdb6c5cd2f9..b35526a9696 100644 --- a/advisories/unreviewed/2022/05/GHSA-r5hm-658v-6xj3/GHSA-r5hm-658v-6xj3.json +++ b/advisories/unreviewed/2022/05/GHSA-r5hm-658v-6xj3/GHSA-r5hm-658v-6xj3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r6cm-3cwh-6hxq/GHSA-r6cm-3cwh-6hxq.json b/advisories/unreviewed/2022/05/GHSA-r6cm-3cwh-6hxq/GHSA-r6cm-3cwh-6hxq.json index e01439264e3..d80080760cf 100644 --- a/advisories/unreviewed/2022/05/GHSA-r6cm-3cwh-6hxq/GHSA-r6cm-3cwh-6hxq.json +++ b/advisories/unreviewed/2022/05/GHSA-r6cm-3cwh-6hxq/GHSA-r6cm-3cwh-6hxq.json @@ -7,12 +7,8 @@ "CVE-2008-7203" ], "details": "Valve Software Half-Life Counter-Strike 1.6 allows remote attackers to cause a denial of service (crash) via multiple crafted login packets.", - "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-r6cr-6ccc-jjpj/GHSA-r6cr-6ccc-jjpj.json b/advisories/unreviewed/2022/05/GHSA-r6cr-6ccc-jjpj/GHSA-r6cr-6ccc-jjpj.json index 85a01a82d4f..ec86f326901 100644 --- a/advisories/unreviewed/2022/05/GHSA-r6cr-6ccc-jjpj/GHSA-r6cr-6ccc-jjpj.json +++ b/advisories/unreviewed/2022/05/GHSA-r6cr-6ccc-jjpj/GHSA-r6cr-6ccc-jjpj.json @@ -7,12 +7,8 @@ "CVE-2008-5271" ], "details": "Cross-site scripting (XSS) vulnerability in index.php in Fred Stuurman SyndeoCMS 2.6.0 allows remote attackers to inject arbitrary web script or HTML via the section parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r6p6-mw8c-f3mf/GHSA-r6p6-mw8c-f3mf.json b/advisories/unreviewed/2022/05/GHSA-r6p6-mw8c-f3mf/GHSA-r6p6-mw8c-f3mf.json index d588183e587..df280246a1a 100644 --- a/advisories/unreviewed/2022/05/GHSA-r6p6-mw8c-f3mf/GHSA-r6p6-mw8c-f3mf.json +++ b/advisories/unreviewed/2022/05/GHSA-r6p6-mw8c-f3mf/GHSA-r6p6-mw8c-f3mf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r9c2-72m4-f79p/GHSA-r9c2-72m4-f79p.json b/advisories/unreviewed/2022/05/GHSA-r9c2-72m4-f79p/GHSA-r9c2-72m4-f79p.json index 9a81db6c2d3..1e42bd96c35 100644 --- a/advisories/unreviewed/2022/05/GHSA-r9c2-72m4-f79p/GHSA-r9c2-72m4-f79p.json +++ b/advisories/unreviewed/2022/05/GHSA-r9c2-72m4-f79p/GHSA-r9c2-72m4-f79p.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r9h9-8vj5-hmj3/GHSA-r9h9-8vj5-hmj3.json b/advisories/unreviewed/2022/05/GHSA-r9h9-8vj5-hmj3/GHSA-r9h9-8vj5-hmj3.json index a306e03c28e..32336d4aebc 100644 --- a/advisories/unreviewed/2022/05/GHSA-r9h9-8vj5-hmj3/GHSA-r9h9-8vj5-hmj3.json +++ b/advisories/unreviewed/2022/05/GHSA-r9h9-8vj5-hmj3/GHSA-r9h9-8vj5-hmj3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-r9pc-qm8x-hm43/GHSA-r9pc-qm8x-hm43.json b/advisories/unreviewed/2022/05/GHSA-r9pc-qm8x-hm43/GHSA-r9pc-qm8x-hm43.json index 2adf30058fd..45a9d623780 100644 --- a/advisories/unreviewed/2022/05/GHSA-r9pc-qm8x-hm43/GHSA-r9pc-qm8x-hm43.json +++ b/advisories/unreviewed/2022/05/GHSA-r9pc-qm8x-hm43/GHSA-r9pc-qm8x-hm43.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rcfh-q32h-3mg9/GHSA-rcfh-q32h-3mg9.json b/advisories/unreviewed/2022/05/GHSA-rcfh-q32h-3mg9/GHSA-rcfh-q32h-3mg9.json index 1375f7ab747..c18741ceaf2 100644 --- a/advisories/unreviewed/2022/05/GHSA-rcfh-q32h-3mg9/GHSA-rcfh-q32h-3mg9.json +++ b/advisories/unreviewed/2022/05/GHSA-rcfh-q32h-3mg9/GHSA-rcfh-q32h-3mg9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rch6-9xg6-rcx4/GHSA-rch6-9xg6-rcx4.json b/advisories/unreviewed/2022/05/GHSA-rch6-9xg6-rcx4/GHSA-rch6-9xg6-rcx4.json index 6356c2135b2..bb6fddd809b 100644 --- a/advisories/unreviewed/2022/05/GHSA-rch6-9xg6-rcx4/GHSA-rch6-9xg6-rcx4.json +++ b/advisories/unreviewed/2022/05/GHSA-rch6-9xg6-rcx4/GHSA-rch6-9xg6-rcx4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-rcq7-gcq5-jx2v/GHSA-rcq7-gcq5-jx2v.json b/advisories/unreviewed/2022/05/GHSA-rcq7-gcq5-jx2v/GHSA-rcq7-gcq5-jx2v.json index 9155541eff5..c71657980ee 100644 --- a/advisories/unreviewed/2022/05/GHSA-rcq7-gcq5-jx2v/GHSA-rcq7-gcq5-jx2v.json +++ b/advisories/unreviewed/2022/05/GHSA-rcq7-gcq5-jx2v/GHSA-rcq7-gcq5-jx2v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rf7r-626j-cq6w/GHSA-rf7r-626j-cq6w.json b/advisories/unreviewed/2022/05/GHSA-rf7r-626j-cq6w/GHSA-rf7r-626j-cq6w.json index 8ea8b6cb3c3..81380db11b0 100644 --- a/advisories/unreviewed/2022/05/GHSA-rf7r-626j-cq6w/GHSA-rf7r-626j-cq6w.json +++ b/advisories/unreviewed/2022/05/GHSA-rf7r-626j-cq6w/GHSA-rf7r-626j-cq6w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rggc-jp5c-hpwc/GHSA-rggc-jp5c-hpwc.json b/advisories/unreviewed/2022/05/GHSA-rggc-jp5c-hpwc/GHSA-rggc-jp5c-hpwc.json index 8a2dfcaccdd..d746e5cd218 100644 --- a/advisories/unreviewed/2022/05/GHSA-rggc-jp5c-hpwc/GHSA-rggc-jp5c-hpwc.json +++ b/advisories/unreviewed/2022/05/GHSA-rggc-jp5c-hpwc/GHSA-rggc-jp5c-hpwc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-rj2j-m2q4-7979/GHSA-rj2j-m2q4-7979.json b/advisories/unreviewed/2022/05/GHSA-rj2j-m2q4-7979/GHSA-rj2j-m2q4-7979.json index e16fd2d490d..e2530dc0da3 100644 --- a/advisories/unreviewed/2022/05/GHSA-rj2j-m2q4-7979/GHSA-rj2j-m2q4-7979.json +++ b/advisories/unreviewed/2022/05/GHSA-rj2j-m2q4-7979/GHSA-rj2j-m2q4-7979.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rmwj-r3ww-7fwc/GHSA-rmwj-r3ww-7fwc.json b/advisories/unreviewed/2022/05/GHSA-rmwj-r3ww-7fwc/GHSA-rmwj-r3ww-7fwc.json index 33b84cbd11d..58f3c8f9b2b 100644 --- a/advisories/unreviewed/2022/05/GHSA-rmwj-r3ww-7fwc/GHSA-rmwj-r3ww-7fwc.json +++ b/advisories/unreviewed/2022/05/GHSA-rmwj-r3ww-7fwc/GHSA-rmwj-r3ww-7fwc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rqqc-8prq-58vg/GHSA-rqqc-8prq-58vg.json b/advisories/unreviewed/2022/05/GHSA-rqqc-8prq-58vg/GHSA-rqqc-8prq-58vg.json index fe4e5fdda03..ab6313f0a4c 100644 --- a/advisories/unreviewed/2022/05/GHSA-rqqc-8prq-58vg/GHSA-rqqc-8prq-58vg.json +++ b/advisories/unreviewed/2022/05/GHSA-rqqc-8prq-58vg/GHSA-rqqc-8prq-58vg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rqxj-x345-gj9f/GHSA-rqxj-x345-gj9f.json b/advisories/unreviewed/2022/05/GHSA-rqxj-x345-gj9f/GHSA-rqxj-x345-gj9f.json index f60c134e2b3..5961c02ee24 100644 --- a/advisories/unreviewed/2022/05/GHSA-rqxj-x345-gj9f/GHSA-rqxj-x345-gj9f.json +++ b/advisories/unreviewed/2022/05/GHSA-rqxj-x345-gj9f/GHSA-rqxj-x345-gj9f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-rr98-jjj2-2qm6/GHSA-rr98-jjj2-2qm6.json b/advisories/unreviewed/2022/05/GHSA-rr98-jjj2-2qm6/GHSA-rr98-jjj2-2qm6.json index 62f1d66a061..8be409f406c 100644 --- a/advisories/unreviewed/2022/05/GHSA-rr98-jjj2-2qm6/GHSA-rr98-jjj2-2qm6.json +++ b/advisories/unreviewed/2022/05/GHSA-rr98-jjj2-2qm6/GHSA-rr98-jjj2-2qm6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rw62-mpgh-xjjx/GHSA-rw62-mpgh-xjjx.json b/advisories/unreviewed/2022/05/GHSA-rw62-mpgh-xjjx/GHSA-rw62-mpgh-xjjx.json index 7dd8e97fa5b..807472967ad 100644 --- a/advisories/unreviewed/2022/05/GHSA-rw62-mpgh-xjjx/GHSA-rw62-mpgh-xjjx.json +++ b/advisories/unreviewed/2022/05/GHSA-rw62-mpgh-xjjx/GHSA-rw62-mpgh-xjjx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rw9r-7wp6-49wx/GHSA-rw9r-7wp6-49wx.json b/advisories/unreviewed/2022/05/GHSA-rw9r-7wp6-49wx/GHSA-rw9r-7wp6-49wx.json index 023f3b4dd4d..de9b4bae0f5 100644 --- a/advisories/unreviewed/2022/05/GHSA-rw9r-7wp6-49wx/GHSA-rw9r-7wp6-49wx.json +++ b/advisories/unreviewed/2022/05/GHSA-rw9r-7wp6-49wx/GHSA-rw9r-7wp6-49wx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-rwgw-7xqp-84ch/GHSA-rwgw-7xqp-84ch.json b/advisories/unreviewed/2022/05/GHSA-rwgw-7xqp-84ch/GHSA-rwgw-7xqp-84ch.json index 855dd1eab5d..b3bb910d0e9 100644 --- a/advisories/unreviewed/2022/05/GHSA-rwgw-7xqp-84ch/GHSA-rwgw-7xqp-84ch.json +++ b/advisories/unreviewed/2022/05/GHSA-rwgw-7xqp-84ch/GHSA-rwgw-7xqp-84ch.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rwgx-2h59-mjr4/GHSA-rwgx-2h59-mjr4.json b/advisories/unreviewed/2022/05/GHSA-rwgx-2h59-mjr4/GHSA-rwgx-2h59-mjr4.json index 0ffe7953241..b37e624056c 100644 --- a/advisories/unreviewed/2022/05/GHSA-rwgx-2h59-mjr4/GHSA-rwgx-2h59-mjr4.json +++ b/advisories/unreviewed/2022/05/GHSA-rwgx-2h59-mjr4/GHSA-rwgx-2h59-mjr4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-rx84-qmqq-5gv3/GHSA-rx84-qmqq-5gv3.json b/advisories/unreviewed/2022/05/GHSA-rx84-qmqq-5gv3/GHSA-rx84-qmqq-5gv3.json index 7525508d3ac..58135b1d8dd 100644 --- a/advisories/unreviewed/2022/05/GHSA-rx84-qmqq-5gv3/GHSA-rx84-qmqq-5gv3.json +++ b/advisories/unreviewed/2022/05/GHSA-rx84-qmqq-5gv3/GHSA-rx84-qmqq-5gv3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-v2q5-6v56-46r3/GHSA-v2q5-6v56-46r3.json b/advisories/unreviewed/2022/05/GHSA-v2q5-6v56-46r3/GHSA-v2q5-6v56-46r3.json index 78827327a8c..9d54a6d4eea 100644 --- a/advisories/unreviewed/2022/05/GHSA-v2q5-6v56-46r3/GHSA-v2q5-6v56-46r3.json +++ b/advisories/unreviewed/2022/05/GHSA-v2q5-6v56-46r3/GHSA-v2q5-6v56-46r3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-v43p-fwf3-fv93/GHSA-v43p-fwf3-fv93.json b/advisories/unreviewed/2022/05/GHSA-v43p-fwf3-fv93/GHSA-v43p-fwf3-fv93.json index 6423b45edaf..12297885f6b 100644 --- a/advisories/unreviewed/2022/05/GHSA-v43p-fwf3-fv93/GHSA-v43p-fwf3-fv93.json +++ b/advisories/unreviewed/2022/05/GHSA-v43p-fwf3-fv93/GHSA-v43p-fwf3-fv93.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-v8g2-q7cg-qvg6/GHSA-v8g2-q7cg-qvg6.json b/advisories/unreviewed/2022/05/GHSA-v8g2-q7cg-qvg6/GHSA-v8g2-q7cg-qvg6.json index 06a36ce0053..c4a9a423b13 100644 --- a/advisories/unreviewed/2022/05/GHSA-v8g2-q7cg-qvg6/GHSA-v8g2-q7cg-qvg6.json +++ b/advisories/unreviewed/2022/05/GHSA-v8g2-q7cg-qvg6/GHSA-v8g2-q7cg-qvg6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-v8m6-85jc-j592/GHSA-v8m6-85jc-j592.json b/advisories/unreviewed/2022/05/GHSA-v8m6-85jc-j592/GHSA-v8m6-85jc-j592.json index 9bb0e7d6ba7..33c8fa3e4c0 100644 --- a/advisories/unreviewed/2022/05/GHSA-v8m6-85jc-j592/GHSA-v8m6-85jc-j592.json +++ b/advisories/unreviewed/2022/05/GHSA-v8m6-85jc-j592/GHSA-v8m6-85jc-j592.json @@ -7,12 +7,8 @@ "CVE-2014-9017" ], "details": "Cross-site scripting (XSS) vulnerability in OpenKM before 6.4.19 (build 23338) allows remote authenticated users to inject arbitrary web script or HTML via the Subject field in a Task to frontend/index.jsp.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v8r8-vg3r-9r36/GHSA-v8r8-vg3r-9r36.json b/advisories/unreviewed/2022/05/GHSA-v8r8-vg3r-9r36/GHSA-v8r8-vg3r-9r36.json index 172a54a9e3a..a928b7eab54 100644 --- a/advisories/unreviewed/2022/05/GHSA-v8r8-vg3r-9r36/GHSA-v8r8-vg3r-9r36.json +++ b/advisories/unreviewed/2022/05/GHSA-v8r8-vg3r-9r36/GHSA-v8r8-vg3r-9r36.json @@ -7,12 +7,8 @@ "CVE-2015-7183" ], "details": "Integer overflow in the PL_ARENA_ALLOCATE implementation in Netscape Portable Runtime (NSPR) in Mozilla Network Security Services (NSS) before 3.19.2.1 and 3.20.x before 3.20.1, as used in Firefox before 42.0 and Firefox ESR 38.x before 38.4 and other products, allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vf95-q82w-wrm2/GHSA-vf95-q82w-wrm2.json b/advisories/unreviewed/2022/05/GHSA-vf95-q82w-wrm2/GHSA-vf95-q82w-wrm2.json index fcb6ad12182..282068190d4 100644 --- a/advisories/unreviewed/2022/05/GHSA-vf95-q82w-wrm2/GHSA-vf95-q82w-wrm2.json +++ b/advisories/unreviewed/2022/05/GHSA-vf95-q82w-wrm2/GHSA-vf95-q82w-wrm2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vgjf-cq8h-569f/GHSA-vgjf-cq8h-569f.json b/advisories/unreviewed/2022/05/GHSA-vgjf-cq8h-569f/GHSA-vgjf-cq8h-569f.json index 6c5d2bb9711..f3772f31547 100644 --- a/advisories/unreviewed/2022/05/GHSA-vgjf-cq8h-569f/GHSA-vgjf-cq8h-569f.json +++ b/advisories/unreviewed/2022/05/GHSA-vgjf-cq8h-569f/GHSA-vgjf-cq8h-569f.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vhjc-79v9-4hfj/GHSA-vhjc-79v9-4hfj.json b/advisories/unreviewed/2022/05/GHSA-vhjc-79v9-4hfj/GHSA-vhjc-79v9-4hfj.json index 44134eb514c..11990879350 100644 --- a/advisories/unreviewed/2022/05/GHSA-vhjc-79v9-4hfj/GHSA-vhjc-79v9-4hfj.json +++ b/advisories/unreviewed/2022/05/GHSA-vhjc-79v9-4hfj/GHSA-vhjc-79v9-4hfj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vhmx-p8w8-h637/GHSA-vhmx-p8w8-h637.json b/advisories/unreviewed/2022/05/GHSA-vhmx-p8w8-h637/GHSA-vhmx-p8w8-h637.json index 5814605140d..957919fabd3 100644 --- a/advisories/unreviewed/2022/05/GHSA-vhmx-p8w8-h637/GHSA-vhmx-p8w8-h637.json +++ b/advisories/unreviewed/2022/05/GHSA-vhmx-p8w8-h637/GHSA-vhmx-p8w8-h637.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vj53-2xmv-77mc/GHSA-vj53-2xmv-77mc.json b/advisories/unreviewed/2022/05/GHSA-vj53-2xmv-77mc/GHSA-vj53-2xmv-77mc.json index 2cc520d664a..89d68de390c 100644 --- a/advisories/unreviewed/2022/05/GHSA-vj53-2xmv-77mc/GHSA-vj53-2xmv-77mc.json +++ b/advisories/unreviewed/2022/05/GHSA-vj53-2xmv-77mc/GHSA-vj53-2xmv-77mc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vmc6-mwr4-rfxp/GHSA-vmc6-mwr4-rfxp.json b/advisories/unreviewed/2022/05/GHSA-vmc6-mwr4-rfxp/GHSA-vmc6-mwr4-rfxp.json index 7573fbcd71e..66308a9a4dd 100644 --- a/advisories/unreviewed/2022/05/GHSA-vmc6-mwr4-rfxp/GHSA-vmc6-mwr4-rfxp.json +++ b/advisories/unreviewed/2022/05/GHSA-vmc6-mwr4-rfxp/GHSA-vmc6-mwr4-rfxp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vmq4-8rg7-c56c/GHSA-vmq4-8rg7-c56c.json b/advisories/unreviewed/2022/05/GHSA-vmq4-8rg7-c56c/GHSA-vmq4-8rg7-c56c.json index a4a79c97b24..6966ba58859 100644 --- a/advisories/unreviewed/2022/05/GHSA-vmq4-8rg7-c56c/GHSA-vmq4-8rg7-c56c.json +++ b/advisories/unreviewed/2022/05/GHSA-vmq4-8rg7-c56c/GHSA-vmq4-8rg7-c56c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vmqm-jrm5-j2h2/GHSA-vmqm-jrm5-j2h2.json b/advisories/unreviewed/2022/05/GHSA-vmqm-jrm5-j2h2/GHSA-vmqm-jrm5-j2h2.json index c80c603d068..c06074526a1 100644 --- a/advisories/unreviewed/2022/05/GHSA-vmqm-jrm5-j2h2/GHSA-vmqm-jrm5-j2h2.json +++ b/advisories/unreviewed/2022/05/GHSA-vmqm-jrm5-j2h2/GHSA-vmqm-jrm5-j2h2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vmxg-xhmf-mrv5/GHSA-vmxg-xhmf-mrv5.json b/advisories/unreviewed/2022/05/GHSA-vmxg-xhmf-mrv5/GHSA-vmxg-xhmf-mrv5.json index 93b57b455f0..f9dd0b7fc8c 100644 --- a/advisories/unreviewed/2022/05/GHSA-vmxg-xhmf-mrv5/GHSA-vmxg-xhmf-mrv5.json +++ b/advisories/unreviewed/2022/05/GHSA-vmxg-xhmf-mrv5/GHSA-vmxg-xhmf-mrv5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-vpgh-mhrw-p8rc/GHSA-vpgh-mhrw-p8rc.json b/advisories/unreviewed/2022/05/GHSA-vpgh-mhrw-p8rc/GHSA-vpgh-mhrw-p8rc.json index cd3d7f9a484..6e955551a9d 100644 --- a/advisories/unreviewed/2022/05/GHSA-vpgh-mhrw-p8rc/GHSA-vpgh-mhrw-p8rc.json +++ b/advisories/unreviewed/2022/05/GHSA-vpgh-mhrw-p8rc/GHSA-vpgh-mhrw-p8rc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vppx-q6hc-27h7/GHSA-vppx-q6hc-27h7.json b/advisories/unreviewed/2022/05/GHSA-vppx-q6hc-27h7/GHSA-vppx-q6hc-27h7.json index ac3bbe27652..e247824600a 100644 --- a/advisories/unreviewed/2022/05/GHSA-vppx-q6hc-27h7/GHSA-vppx-q6hc-27h7.json +++ b/advisories/unreviewed/2022/05/GHSA-vppx-q6hc-27h7/GHSA-vppx-q6hc-27h7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vq32-cpfw-q77r/GHSA-vq32-cpfw-q77r.json b/advisories/unreviewed/2022/05/GHSA-vq32-cpfw-q77r/GHSA-vq32-cpfw-q77r.json index 50e8c240246..a924f638930 100644 --- a/advisories/unreviewed/2022/05/GHSA-vq32-cpfw-q77r/GHSA-vq32-cpfw-q77r.json +++ b/advisories/unreviewed/2022/05/GHSA-vq32-cpfw-q77r/GHSA-vq32-cpfw-q77r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-vq3h-96xp-px9g/GHSA-vq3h-96xp-px9g.json b/advisories/unreviewed/2022/05/GHSA-vq3h-96xp-px9g/GHSA-vq3h-96xp-px9g.json index fd33fa82b83..11d17b53f65 100644 --- a/advisories/unreviewed/2022/05/GHSA-vq3h-96xp-px9g/GHSA-vq3h-96xp-px9g.json +++ b/advisories/unreviewed/2022/05/GHSA-vq3h-96xp-px9g/GHSA-vq3h-96xp-px9g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vq5p-mc3m-crgg/GHSA-vq5p-mc3m-crgg.json b/advisories/unreviewed/2022/05/GHSA-vq5p-mc3m-crgg/GHSA-vq5p-mc3m-crgg.json index 00f73a55f6f..7e43e62667f 100644 --- a/advisories/unreviewed/2022/05/GHSA-vq5p-mc3m-crgg/GHSA-vq5p-mc3m-crgg.json +++ b/advisories/unreviewed/2022/05/GHSA-vq5p-mc3m-crgg/GHSA-vq5p-mc3m-crgg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-vq69-cm9j-2x8v/GHSA-vq69-cm9j-2x8v.json b/advisories/unreviewed/2022/05/GHSA-vq69-cm9j-2x8v/GHSA-vq69-cm9j-2x8v.json index 383a4630dc5..ff3cca6d25f 100644 --- a/advisories/unreviewed/2022/05/GHSA-vq69-cm9j-2x8v/GHSA-vq69-cm9j-2x8v.json +++ b/advisories/unreviewed/2022/05/GHSA-vq69-cm9j-2x8v/GHSA-vq69-cm9j-2x8v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:H/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-vqcx-vjch-5hpp/GHSA-vqcx-vjch-5hpp.json b/advisories/unreviewed/2022/05/GHSA-vqcx-vjch-5hpp/GHSA-vqcx-vjch-5hpp.json index fafd2c1a6df..7cafe0d7b96 100644 --- a/advisories/unreviewed/2022/05/GHSA-vqcx-vjch-5hpp/GHSA-vqcx-vjch-5hpp.json +++ b/advisories/unreviewed/2022/05/GHSA-vqcx-vjch-5hpp/GHSA-vqcx-vjch-5hpp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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-vvfx-3pcm-35qm/GHSA-vvfx-3pcm-35qm.json b/advisories/unreviewed/2022/05/GHSA-vvfx-3pcm-35qm/GHSA-vvfx-3pcm-35qm.json index 710ecd20368..87449685295 100644 --- a/advisories/unreviewed/2022/05/GHSA-vvfx-3pcm-35qm/GHSA-vvfx-3pcm-35qm.json +++ b/advisories/unreviewed/2022/05/GHSA-vvfx-3pcm-35qm/GHSA-vvfx-3pcm-35qm.json @@ -7,12 +7,8 @@ "CVE-2012-4988" ], "details": "Heap-based buffer overflow in the xjpegls.dll (aka JLS, JPEG-LS, or JPEG lossless) format plugin in XnView 1.99 and 1.99.1 allows remote attackers to execute arbitrary code via a crafted JLS image file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vwh7-wh36-fc3v/GHSA-vwh7-wh36-fc3v.json b/advisories/unreviewed/2022/05/GHSA-vwh7-wh36-fc3v/GHSA-vwh7-wh36-fc3v.json index 303bc57b9b6..e7eddb2c3ea 100644 --- a/advisories/unreviewed/2022/05/GHSA-vwh7-wh36-fc3v/GHSA-vwh7-wh36-fc3v.json +++ b/advisories/unreviewed/2022/05/GHSA-vwh7-wh36-fc3v/GHSA-vwh7-wh36-fc3v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-w3vh-rcqv-f2mf/GHSA-w3vh-rcqv-f2mf.json b/advisories/unreviewed/2022/05/GHSA-w3vh-rcqv-f2mf/GHSA-w3vh-rcqv-f2mf.json index aacd36524d0..51638ab5378 100644 --- a/advisories/unreviewed/2022/05/GHSA-w3vh-rcqv-f2mf/GHSA-w3vh-rcqv-f2mf.json +++ b/advisories/unreviewed/2022/05/GHSA-w3vh-rcqv-f2mf/GHSA-w3vh-rcqv-f2mf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-w4m4-mv24-mwj8/GHSA-w4m4-mv24-mwj8.json b/advisories/unreviewed/2022/05/GHSA-w4m4-mv24-mwj8/GHSA-w4m4-mv24-mwj8.json index 61b492421e4..435c6f97046 100644 --- a/advisories/unreviewed/2022/05/GHSA-w4m4-mv24-mwj8/GHSA-w4m4-mv24-mwj8.json +++ b/advisories/unreviewed/2022/05/GHSA-w4m4-mv24-mwj8/GHSA-w4m4-mv24-mwj8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-w5c9-rfx7-37rh/GHSA-w5c9-rfx7-37rh.json b/advisories/unreviewed/2022/05/GHSA-w5c9-rfx7-37rh/GHSA-w5c9-rfx7-37rh.json index 255c881499e..f6a7f0f7a73 100644 --- a/advisories/unreviewed/2022/05/GHSA-w5c9-rfx7-37rh/GHSA-w5c9-rfx7-37rh.json +++ b/advisories/unreviewed/2022/05/GHSA-w5c9-rfx7-37rh/GHSA-w5c9-rfx7-37rh.json @@ -7,12 +7,8 @@ "CVE-2008-5409" ], "details": "Unspecified vulnerability in the pdf.xmd module in (1) BitDefender Free Edition 10 and Antivirus Standard 10, (2) BullGuard Internet Security 8.5, and (3) Software602 Groupware Server 6.0.08.1118 allows remote attackers to cause a denial of service (application crash) or possibly execute arbitrary code via a crafted PDF file, possibly related to included compressed streams that were processed with the ASCIIHexDecode filter. 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-w62v-62pg-qxrh/GHSA-w62v-62pg-qxrh.json b/advisories/unreviewed/2022/05/GHSA-w62v-62pg-qxrh/GHSA-w62v-62pg-qxrh.json index 8891832470f..66fc205cb45 100644 --- a/advisories/unreviewed/2022/05/GHSA-w62v-62pg-qxrh/GHSA-w62v-62pg-qxrh.json +++ b/advisories/unreviewed/2022/05/GHSA-w62v-62pg-qxrh/GHSA-w62v-62pg-qxrh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-w799-93vr-rc89/GHSA-w799-93vr-rc89.json b/advisories/unreviewed/2022/05/GHSA-w799-93vr-rc89/GHSA-w799-93vr-rc89.json index 820126a2368..b58677f578e 100644 --- a/advisories/unreviewed/2022/05/GHSA-w799-93vr-rc89/GHSA-w799-93vr-rc89.json +++ b/advisories/unreviewed/2022/05/GHSA-w799-93vr-rc89/GHSA-w799-93vr-rc89.json @@ -7,12 +7,8 @@ "CVE-2008-4902" ], "details": "SQL injection vulnerability in contact_author.php in Article Publisher Pro 1.5 allows remote attackers to execute arbitrary SQL commands via the userid parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w7qc-3w26-2c25/GHSA-w7qc-3w26-2c25.json b/advisories/unreviewed/2022/05/GHSA-w7qc-3w26-2c25/GHSA-w7qc-3w26-2c25.json index 9674dfc2cad..31e6a043bb9 100644 --- a/advisories/unreviewed/2022/05/GHSA-w7qc-3w26-2c25/GHSA-w7qc-3w26-2c25.json +++ b/advisories/unreviewed/2022/05/GHSA-w7qc-3w26-2c25/GHSA-w7qc-3w26-2c25.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-w85q-f77r-393q/GHSA-w85q-f77r-393q.json b/advisories/unreviewed/2022/05/GHSA-w85q-f77r-393q/GHSA-w85q-f77r-393q.json index 3206c7b4a20..981c8934f37 100644 --- a/advisories/unreviewed/2022/05/GHSA-w85q-f77r-393q/GHSA-w85q-f77r-393q.json +++ b/advisories/unreviewed/2022/05/GHSA-w85q-f77r-393q/GHSA-w85q-f77r-393q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-w899-6vwg-gf6x/GHSA-w899-6vwg-gf6x.json b/advisories/unreviewed/2022/05/GHSA-w899-6vwg-gf6x/GHSA-w899-6vwg-gf6x.json index f7ca4790932..fee4a42d011 100644 --- a/advisories/unreviewed/2022/05/GHSA-w899-6vwg-gf6x/GHSA-w899-6vwg-gf6x.json +++ b/advisories/unreviewed/2022/05/GHSA-w899-6vwg-gf6x/GHSA-w899-6vwg-gf6x.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-w8g8-jwr6-q4p2/GHSA-w8g8-jwr6-q4p2.json b/advisories/unreviewed/2022/05/GHSA-w8g8-jwr6-q4p2/GHSA-w8g8-jwr6-q4p2.json index 0ee0c064102..35642239415 100644 --- a/advisories/unreviewed/2022/05/GHSA-w8g8-jwr6-q4p2/GHSA-w8g8-jwr6-q4p2.json +++ b/advisories/unreviewed/2022/05/GHSA-w8g8-jwr6-q4p2/GHSA-w8g8-jwr6-q4p2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-w8hf-8qg5-jgq3/GHSA-w8hf-8qg5-jgq3.json b/advisories/unreviewed/2022/05/GHSA-w8hf-8qg5-jgq3/GHSA-w8hf-8qg5-jgq3.json index d1192c0b029..285371411df 100644 --- a/advisories/unreviewed/2022/05/GHSA-w8hf-8qg5-jgq3/GHSA-w8hf-8qg5-jgq3.json +++ b/advisories/unreviewed/2022/05/GHSA-w8hf-8qg5-jgq3/GHSA-w8hf-8qg5-jgq3.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-w945-7mfq-g3p5/GHSA-w945-7mfq-g3p5.json b/advisories/unreviewed/2022/05/GHSA-w945-7mfq-g3p5/GHSA-w945-7mfq-g3p5.json index 9b5f2c57998..80fbfe8aa5b 100644 --- a/advisories/unreviewed/2022/05/GHSA-w945-7mfq-g3p5/GHSA-w945-7mfq-g3p5.json +++ b/advisories/unreviewed/2022/05/GHSA-w945-7mfq-g3p5/GHSA-w945-7mfq-g3p5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wc94-42pw-5wq8/GHSA-wc94-42pw-5wq8.json b/advisories/unreviewed/2022/05/GHSA-wc94-42pw-5wq8/GHSA-wc94-42pw-5wq8.json index 119b89d3c74..0e484b9c693 100644 --- a/advisories/unreviewed/2022/05/GHSA-wc94-42pw-5wq8/GHSA-wc94-42pw-5wq8.json +++ b/advisories/unreviewed/2022/05/GHSA-wc94-42pw-5wq8/GHSA-wc94-42pw-5wq8.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-wcg9-65qx-c5vj/GHSA-wcg9-65qx-c5vj.json b/advisories/unreviewed/2022/05/GHSA-wcg9-65qx-c5vj/GHSA-wcg9-65qx-c5vj.json index 26cca0c712b..ca8d964ecf7 100644 --- a/advisories/unreviewed/2022/05/GHSA-wcg9-65qx-c5vj/GHSA-wcg9-65qx-c5vj.json +++ b/advisories/unreviewed/2022/05/GHSA-wcg9-65qx-c5vj/GHSA-wcg9-65qx-c5vj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-wf2v-q544-4g93/GHSA-wf2v-q544-4g93.json b/advisories/unreviewed/2022/05/GHSA-wf2v-q544-4g93/GHSA-wf2v-q544-4g93.json index 9700bda0edb..c4eebda3501 100644 --- a/advisories/unreviewed/2022/05/GHSA-wf2v-q544-4g93/GHSA-wf2v-q544-4g93.json +++ b/advisories/unreviewed/2022/05/GHSA-wf2v-q544-4g93/GHSA-wf2v-q544-4g93.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-wg5p-g4rp-w2xv/GHSA-wg5p-g4rp-w2xv.json b/advisories/unreviewed/2022/05/GHSA-wg5p-g4rp-w2xv/GHSA-wg5p-g4rp-w2xv.json index 5d75a32fb21..55fad625072 100644 --- a/advisories/unreviewed/2022/05/GHSA-wg5p-g4rp-w2xv/GHSA-wg5p-g4rp-w2xv.json +++ b/advisories/unreviewed/2022/05/GHSA-wg5p-g4rp-w2xv/GHSA-wg5p-g4rp-w2xv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wjvv-c566-phgf/GHSA-wjvv-c566-phgf.json b/advisories/unreviewed/2022/05/GHSA-wjvv-c566-phgf/GHSA-wjvv-c566-phgf.json index d9c48399fda..69f254de559 100644 --- a/advisories/unreviewed/2022/05/GHSA-wjvv-c566-phgf/GHSA-wjvv-c566-phgf.json +++ b/advisories/unreviewed/2022/05/GHSA-wjvv-c566-phgf/GHSA-wjvv-c566-phgf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wm29-4mqg-qmm9/GHSA-wm29-4mqg-qmm9.json b/advisories/unreviewed/2022/05/GHSA-wm29-4mqg-qmm9/GHSA-wm29-4mqg-qmm9.json index 51ac653ce76..312c4a39d89 100644 --- a/advisories/unreviewed/2022/05/GHSA-wm29-4mqg-qmm9/GHSA-wm29-4mqg-qmm9.json +++ b/advisories/unreviewed/2022/05/GHSA-wm29-4mqg-qmm9/GHSA-wm29-4mqg-qmm9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wm73-6j4q-3wgc/GHSA-wm73-6j4q-3wgc.json b/advisories/unreviewed/2022/05/GHSA-wm73-6j4q-3wgc/GHSA-wm73-6j4q-3wgc.json index b33ca70f762..393d3673714 100644 --- a/advisories/unreviewed/2022/05/GHSA-wm73-6j4q-3wgc/GHSA-wm73-6j4q-3wgc.json +++ b/advisories/unreviewed/2022/05/GHSA-wm73-6j4q-3wgc/GHSA-wm73-6j4q-3wgc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wm75-mhmv-rq2w/GHSA-wm75-mhmv-rq2w.json b/advisories/unreviewed/2022/05/GHSA-wm75-mhmv-rq2w/GHSA-wm75-mhmv-rq2w.json index 0b8221faf08..d72cbe4cd33 100644 --- a/advisories/unreviewed/2022/05/GHSA-wm75-mhmv-rq2w/GHSA-wm75-mhmv-rq2w.json +++ b/advisories/unreviewed/2022/05/GHSA-wm75-mhmv-rq2w/GHSA-wm75-mhmv-rq2w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wmf6-qw83-88wm/GHSA-wmf6-qw83-88wm.json b/advisories/unreviewed/2022/05/GHSA-wmf6-qw83-88wm/GHSA-wmf6-qw83-88wm.json index 736a045e855..24506941fb8 100644 --- a/advisories/unreviewed/2022/05/GHSA-wmf6-qw83-88wm/GHSA-wmf6-qw83-88wm.json +++ b/advisories/unreviewed/2022/05/GHSA-wmf6-qw83-88wm/GHSA-wmf6-qw83-88wm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wr36-98vx-vf8v/GHSA-wr36-98vx-vf8v.json b/advisories/unreviewed/2022/05/GHSA-wr36-98vx-vf8v/GHSA-wr36-98vx-vf8v.json index 774d69abf7e..1f0fc79469d 100644 --- a/advisories/unreviewed/2022/05/GHSA-wr36-98vx-vf8v/GHSA-wr36-98vx-vf8v.json +++ b/advisories/unreviewed/2022/05/GHSA-wr36-98vx-vf8v/GHSA-wr36-98vx-vf8v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wr76-2mwp-6pc6/GHSA-wr76-2mwp-6pc6.json b/advisories/unreviewed/2022/05/GHSA-wr76-2mwp-6pc6/GHSA-wr76-2mwp-6pc6.json index 55c0760249c..9a49555f00b 100644 --- a/advisories/unreviewed/2022/05/GHSA-wr76-2mwp-6pc6/GHSA-wr76-2mwp-6pc6.json +++ b/advisories/unreviewed/2022/05/GHSA-wr76-2mwp-6pc6/GHSA-wr76-2mwp-6pc6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wwwg-h2pw-79jc/GHSA-wwwg-h2pw-79jc.json b/advisories/unreviewed/2022/05/GHSA-wwwg-h2pw-79jc/GHSA-wwwg-h2pw-79jc.json index 7d2dad9ec05..cc9125b3569 100644 --- a/advisories/unreviewed/2022/05/GHSA-wwwg-h2pw-79jc/GHSA-wwwg-h2pw-79jc.json +++ b/advisories/unreviewed/2022/05/GHSA-wwwg-h2pw-79jc/GHSA-wwwg-h2pw-79jc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-wx2r-82wc-89gq/GHSA-wx2r-82wc-89gq.json b/advisories/unreviewed/2022/05/GHSA-wx2r-82wc-89gq/GHSA-wx2r-82wc-89gq.json index 066e0e9b75e..846ba8276c3 100644 --- a/advisories/unreviewed/2022/05/GHSA-wx2r-82wc-89gq/GHSA-wx2r-82wc-89gq.json +++ b/advisories/unreviewed/2022/05/GHSA-wx2r-82wc-89gq/GHSA-wx2r-82wc-89gq.json @@ -7,12 +7,8 @@ "CVE-2013-1900" ], "details": "PostgreSQL 9.2.x before 9.2.4, 9.1.x before 9.1.9, 9.0.x before 9.0.13, and 8.4.x before 8.4.17, when using OpenSSL, generates insufficiently random numbers, which might allow remote authenticated users to have an unspecified impact via vectors related to the \"contrib/pgcrypto functions.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -104,9 +100,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-wx3p-jg9w-g5x7/GHSA-wx3p-jg9w-g5x7.json b/advisories/unreviewed/2022/05/GHSA-wx3p-jg9w-g5x7/GHSA-wx3p-jg9w-g5x7.json index 3c94f76ba58..4dfc47ca953 100644 --- a/advisories/unreviewed/2022/05/GHSA-wx3p-jg9w-g5x7/GHSA-wx3p-jg9w-g5x7.json +++ b/advisories/unreviewed/2022/05/GHSA-wx3p-jg9w-g5x7/GHSA-wx3p-jg9w-g5x7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-x2c2-mmqp-2682/GHSA-x2c2-mmqp-2682.json b/advisories/unreviewed/2022/05/GHSA-x2c2-mmqp-2682/GHSA-x2c2-mmqp-2682.json index 98ab93964dd..e6b17bbb96b 100644 --- a/advisories/unreviewed/2022/05/GHSA-x2c2-mmqp-2682/GHSA-x2c2-mmqp-2682.json +++ b/advisories/unreviewed/2022/05/GHSA-x2c2-mmqp-2682/GHSA-x2c2-mmqp-2682.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-x4mv-6wgm-7pj2/GHSA-x4mv-6wgm-7pj2.json b/advisories/unreviewed/2022/05/GHSA-x4mv-6wgm-7pj2/GHSA-x4mv-6wgm-7pj2.json index 3a17c7acae8..fee9772f85f 100644 --- a/advisories/unreviewed/2022/05/GHSA-x4mv-6wgm-7pj2/GHSA-x4mv-6wgm-7pj2.json +++ b/advisories/unreviewed/2022/05/GHSA-x4mv-6wgm-7pj2/GHSA-x4mv-6wgm-7pj2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-x5pw-gjgg-4x8h/GHSA-x5pw-gjgg-4x8h.json b/advisories/unreviewed/2022/05/GHSA-x5pw-gjgg-4x8h/GHSA-x5pw-gjgg-4x8h.json index 8eb009474ea..903fc06cd68 100644 --- a/advisories/unreviewed/2022/05/GHSA-x5pw-gjgg-4x8h/GHSA-x5pw-gjgg-4x8h.json +++ b/advisories/unreviewed/2022/05/GHSA-x5pw-gjgg-4x8h/GHSA-x5pw-gjgg-4x8h.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-x662-rxwh-44vj/GHSA-x662-rxwh-44vj.json b/advisories/unreviewed/2022/05/GHSA-x662-rxwh-44vj/GHSA-x662-rxwh-44vj.json index 7aac0966cba..4465e9cb85d 100644 --- a/advisories/unreviewed/2022/05/GHSA-x662-rxwh-44vj/GHSA-x662-rxwh-44vj.json +++ b/advisories/unreviewed/2022/05/GHSA-x662-rxwh-44vj/GHSA-x662-rxwh-44vj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/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/05/GHSA-x6gh-9wm9-jpvm/GHSA-x6gh-9wm9-jpvm.json b/advisories/unreviewed/2022/05/GHSA-x6gh-9wm9-jpvm/GHSA-x6gh-9wm9-jpvm.json index 51aab36847f..49facf4b08e 100644 --- a/advisories/unreviewed/2022/05/GHSA-x6gh-9wm9-jpvm/GHSA-x6gh-9wm9-jpvm.json +++ b/advisories/unreviewed/2022/05/GHSA-x6gh-9wm9-jpvm/GHSA-x6gh-9wm9-jpvm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-x8j8-42j6-2jr7/GHSA-x8j8-42j6-2jr7.json b/advisories/unreviewed/2022/05/GHSA-x8j8-42j6-2jr7/GHSA-x8j8-42j6-2jr7.json index 1ebbcfb6785..0edbda38920 100644 --- a/advisories/unreviewed/2022/05/GHSA-x8j8-42j6-2jr7/GHSA-x8j8-42j6-2jr7.json +++ b/advisories/unreviewed/2022/05/GHSA-x8j8-42j6-2jr7/GHSA-x8j8-42j6-2jr7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-x946-9frc-v3rv/GHSA-x946-9frc-v3rv.json b/advisories/unreviewed/2022/05/GHSA-x946-9frc-v3rv/GHSA-x946-9frc-v3rv.json index c85a0215519..f159b8ba20d 100644 --- a/advisories/unreviewed/2022/05/GHSA-x946-9frc-v3rv/GHSA-x946-9frc-v3rv.json +++ b/advisories/unreviewed/2022/05/GHSA-x946-9frc-v3rv/GHSA-x946-9frc-v3rv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-xc66-mg8r-q6r5/GHSA-xc66-mg8r-q6r5.json b/advisories/unreviewed/2022/05/GHSA-xc66-mg8r-q6r5/GHSA-xc66-mg8r-q6r5.json index a4ba4d54013..0cc79008e49 100644 --- a/advisories/unreviewed/2022/05/GHSA-xc66-mg8r-q6r5/GHSA-xc66-mg8r-q6r5.json +++ b/advisories/unreviewed/2022/05/GHSA-xc66-mg8r-q6r5/GHSA-xc66-mg8r-q6r5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-xcr3-hhwm-r755/GHSA-xcr3-hhwm-r755.json b/advisories/unreviewed/2022/05/GHSA-xcr3-hhwm-r755/GHSA-xcr3-hhwm-r755.json index a0511fdaf46..c799d7e5bd9 100644 --- a/advisories/unreviewed/2022/05/GHSA-xcr3-hhwm-r755/GHSA-xcr3-hhwm-r755.json +++ b/advisories/unreviewed/2022/05/GHSA-xcr3-hhwm-r755/GHSA-xcr3-hhwm-r755.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/2022/05/GHSA-xg32-vp89-8jq5/GHSA-xg32-vp89-8jq5.json b/advisories/unreviewed/2022/05/GHSA-xg32-vp89-8jq5/GHSA-xg32-vp89-8jq5.json index c018e4c69e6..4b2fc72715c 100644 --- a/advisories/unreviewed/2022/05/GHSA-xg32-vp89-8jq5/GHSA-xg32-vp89-8jq5.json +++ b/advisories/unreviewed/2022/05/GHSA-xg32-vp89-8jq5/GHSA-xg32-vp89-8jq5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -51,9 +49,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xg92-4q2x-2943/GHSA-xg92-4q2x-2943.json b/advisories/unreviewed/2022/05/GHSA-xg92-4q2x-2943/GHSA-xg92-4q2x-2943.json index c792f2453d4..d6038050c52 100644 --- a/advisories/unreviewed/2022/05/GHSA-xg92-4q2x-2943/GHSA-xg92-4q2x-2943.json +++ b/advisories/unreviewed/2022/05/GHSA-xg92-4q2x-2943/GHSA-xg92-4q2x-2943.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-xhvr-qq82-mmqx/GHSA-xhvr-qq82-mmqx.json b/advisories/unreviewed/2022/05/GHSA-xhvr-qq82-mmqx/GHSA-xhvr-qq82-mmqx.json index d22d580356b..b7cfc4aa66b 100644 --- a/advisories/unreviewed/2022/05/GHSA-xhvr-qq82-mmqx/GHSA-xhvr-qq82-mmqx.json +++ b/advisories/unreviewed/2022/05/GHSA-xhvr-qq82-mmqx/GHSA-xhvr-qq82-mmqx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/05/GHSA-xmxg-28xr-rp8x/GHSA-xmxg-28xr-rp8x.json b/advisories/unreviewed/2022/05/GHSA-xmxg-28xr-rp8x/GHSA-xmxg-28xr-rp8x.json index 4be4aa6e05e..5f9aed96191 100644 --- a/advisories/unreviewed/2022/05/GHSA-xmxg-28xr-rp8x/GHSA-xmxg-28xr-rp8x.json +++ b/advisories/unreviewed/2022/05/GHSA-xmxg-28xr-rp8x/GHSA-xmxg-28xr-rp8x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:P/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-xp9v-wvm4-4vgh/GHSA-xp9v-wvm4-4vgh.json b/advisories/unreviewed/2022/05/GHSA-xp9v-wvm4-4vgh/GHSA-xp9v-wvm4-4vgh.json index 32dcece4622..7f0b88fe0ad 100644 --- a/advisories/unreviewed/2022/05/GHSA-xp9v-wvm4-4vgh/GHSA-xp9v-wvm4-4vgh.json +++ b/advisories/unreviewed/2022/05/GHSA-xp9v-wvm4-4vgh/GHSA-xp9v-wvm4-4vgh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-xpfr-5vm7-6jx9/GHSA-xpfr-5vm7-6jx9.json b/advisories/unreviewed/2022/05/GHSA-xpfr-5vm7-6jx9/GHSA-xpfr-5vm7-6jx9.json index ea3a253f8ad..07ab37f30c6 100644 --- a/advisories/unreviewed/2022/05/GHSA-xpfr-5vm7-6jx9/GHSA-xpfr-5vm7-6jx9.json +++ b/advisories/unreviewed/2022/05/GHSA-xpfr-5vm7-6jx9/GHSA-xpfr-5vm7-6jx9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-xq9w-9p59-f6rx/GHSA-xq9w-9p59-f6rx.json b/advisories/unreviewed/2022/05/GHSA-xq9w-9p59-f6rx/GHSA-xq9w-9p59-f6rx.json index 23acf46f992..eefdfe2c867 100644 --- a/advisories/unreviewed/2022/05/GHSA-xq9w-9p59-f6rx/GHSA-xq9w-9p59-f6rx.json +++ b/advisories/unreviewed/2022/05/GHSA-xq9w-9p59-f6rx/GHSA-xq9w-9p59-f6rx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-xwm9-v4gv-cw38/GHSA-xwm9-v4gv-cw38.json b/advisories/unreviewed/2022/05/GHSA-xwm9-v4gv-cw38/GHSA-xwm9-v4gv-cw38.json index 9d7bac6fd05..d8980f796a2 100644 --- a/advisories/unreviewed/2022/05/GHSA-xwm9-v4gv-cw38/GHSA-xwm9-v4gv-cw38.json +++ b/advisories/unreviewed/2022/05/GHSA-xwm9-v4gv-cw38/GHSA-xwm9-v4gv-cw38.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-xww9-gc2f-7jf6/GHSA-xww9-gc2f-7jf6.json b/advisories/unreviewed/2022/05/GHSA-xww9-gc2f-7jf6/GHSA-xww9-gc2f-7jf6.json index 4e3cc643d2d..c84f129b507 100644 --- a/advisories/unreviewed/2022/05/GHSA-xww9-gc2f-7jf6/GHSA-xww9-gc2f-7jf6.json +++ b/advisories/unreviewed/2022/05/GHSA-xww9-gc2f-7jf6/GHSA-xww9-gc2f-7jf6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-xx8r-qcqq-3fgj/GHSA-xx8r-qcqq-3fgj.json b/advisories/unreviewed/2022/05/GHSA-xx8r-qcqq-3fgj/GHSA-xx8r-qcqq-3fgj.json index db507a995c3..759e2dc968b 100644 --- a/advisories/unreviewed/2022/05/GHSA-xx8r-qcqq-3fgj/GHSA-xx8r-qcqq-3fgj.json +++ b/advisories/unreviewed/2022/05/GHSA-xx8r-qcqq-3fgj/GHSA-xx8r-qcqq-3fgj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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-xxpp-86hx-cjfg/GHSA-xxpp-86hx-cjfg.json b/advisories/unreviewed/2022/05/GHSA-xxpp-86hx-cjfg/GHSA-xxpp-86hx-cjfg.json index 3d6cd982386..6cca3f85352 100644 --- a/advisories/unreviewed/2022/05/GHSA-xxpp-86hx-cjfg/GHSA-xxpp-86hx-cjfg.json +++ b/advisories/unreviewed/2022/05/GHSA-xxpp-86hx-cjfg/GHSA-xxpp-86hx-cjfg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/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/12/GHSA-24rv-q44g-ghvg/GHSA-24rv-q44g-ghvg.json b/advisories/unreviewed/2022/12/GHSA-24rv-q44g-ghvg/GHSA-24rv-q44g-ghvg.json index 8f335ba0f99..9f2c9a98f82 100644 --- a/advisories/unreviewed/2022/12/GHSA-24rv-q44g-ghvg/GHSA-24rv-q44g-ghvg.json +++ b/advisories/unreviewed/2022/12/GHSA-24rv-q44g-ghvg/GHSA-24rv-q44g-ghvg.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", @@ -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/12/GHSA-594c-767g-25xp/GHSA-594c-767g-25xp.json b/advisories/unreviewed/2022/12/GHSA-594c-767g-25xp/GHSA-594c-767g-25xp.json index 50adf7c5f54..041d8768191 100644 --- a/advisories/unreviewed/2022/12/GHSA-594c-767g-25xp/GHSA-594c-767g-25xp.json +++ b/advisories/unreviewed/2022/12/GHSA-594c-767g-25xp/GHSA-594c-767g-25xp.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-6r4x-4f9j-f8gp/GHSA-6r4x-4f9j-f8gp.json b/advisories/unreviewed/2022/12/GHSA-6r4x-4f9j-f8gp/GHSA-6r4x-4f9j-f8gp.json index 20bd23505f9..accd60d9230 100644 --- a/advisories/unreviewed/2022/12/GHSA-6r4x-4f9j-f8gp/GHSA-6r4x-4f9j-f8gp.json +++ b/advisories/unreviewed/2022/12/GHSA-6r4x-4f9j-f8gp/GHSA-6r4x-4f9j-f8gp.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-8qhc-6qh8-x5fq/GHSA-8qhc-6qh8-x5fq.json b/advisories/unreviewed/2022/12/GHSA-8qhc-6qh8-x5fq/GHSA-8qhc-6qh8-x5fq.json index 5a5352404c6..0499f8e9c13 100644 --- a/advisories/unreviewed/2022/12/GHSA-8qhc-6qh8-x5fq/GHSA-8qhc-6qh8-x5fq.json +++ b/advisories/unreviewed/2022/12/GHSA-8qhc-6qh8-x5fq/GHSA-8qhc-6qh8-x5fq.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-9m72-vjm5-8c4w/GHSA-9m72-vjm5-8c4w.json b/advisories/unreviewed/2022/12/GHSA-9m72-vjm5-8c4w/GHSA-9m72-vjm5-8c4w.json index a5213aeb6dd..149fe1f2915 100644 --- a/advisories/unreviewed/2022/12/GHSA-9m72-vjm5-8c4w/GHSA-9m72-vjm5-8c4w.json +++ b/advisories/unreviewed/2022/12/GHSA-9m72-vjm5-8c4w/GHSA-9m72-vjm5-8c4w.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/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/12/GHSA-gvmx-rq6c-5qv2/GHSA-gvmx-rq6c-5qv2.json b/advisories/unreviewed/2022/12/GHSA-gvmx-rq6c-5qv2/GHSA-gvmx-rq6c-5qv2.json index b1e40a10d6b..f198cc63458 100644 --- a/advisories/unreviewed/2022/12/GHSA-gvmx-rq6c-5qv2/GHSA-gvmx-rq6c-5qv2.json +++ b/advisories/unreviewed/2022/12/GHSA-gvmx-rq6c-5qv2/GHSA-gvmx-rq6c-5qv2.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/12/GHSA-mxmp-r5rw-rjgj/GHSA-mxmp-r5rw-rjgj.json b/advisories/unreviewed/2022/12/GHSA-mxmp-r5rw-rjgj/GHSA-mxmp-r5rw-rjgj.json index 3c13dfff4c4..f9be449cfaa 100644 --- a/advisories/unreviewed/2022/12/GHSA-mxmp-r5rw-rjgj/GHSA-mxmp-r5rw-rjgj.json +++ b/advisories/unreviewed/2022/12/GHSA-mxmp-r5rw-rjgj/GHSA-mxmp-r5rw-rjgj.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", diff --git a/advisories/unreviewed/2022/12/GHSA-p388-vj4p-5xgx/GHSA-p388-vj4p-5xgx.json b/advisories/unreviewed/2022/12/GHSA-p388-vj4p-5xgx/GHSA-p388-vj4p-5xgx.json index 7006419e607..7a638d178d1 100644 --- a/advisories/unreviewed/2022/12/GHSA-p388-vj4p-5xgx/GHSA-p388-vj4p-5xgx.json +++ b/advisories/unreviewed/2022/12/GHSA-p388-vj4p-5xgx/GHSA-p388-vj4p-5xgx.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/2022/12/GHSA-rxg3-r5j8-3qv5/GHSA-rxg3-r5j8-3qv5.json b/advisories/unreviewed/2022/12/GHSA-rxg3-r5j8-3qv5/GHSA-rxg3-r5j8-3qv5.json index d5a1843ab92..212e7c1f4ca 100644 --- a/advisories/unreviewed/2022/12/GHSA-rxg3-r5j8-3qv5/GHSA-rxg3-r5j8-3qv5.json +++ b/advisories/unreviewed/2022/12/GHSA-rxg3-r5j8-3qv5/GHSA-rxg3-r5j8-3qv5.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/2023/01/GHSA-263g-jqj9-rwxm/GHSA-263g-jqj9-rwxm.json b/advisories/unreviewed/2023/01/GHSA-263g-jqj9-rwxm/GHSA-263g-jqj9-rwxm.json index 4e23f65b315..5c6d6d24cba 100644 --- a/advisories/unreviewed/2023/01/GHSA-263g-jqj9-rwxm/GHSA-263g-jqj9-rwxm.json +++ b/advisories/unreviewed/2023/01/GHSA-263g-jqj9-rwxm/GHSA-263g-jqj9-rwxm.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/01/GHSA-2qc4-mg99-36hh/GHSA-2qc4-mg99-36hh.json b/advisories/unreviewed/2023/01/GHSA-2qc4-mg99-36hh/GHSA-2qc4-mg99-36hh.json index 04fbf623a46..f5c8ddfef5a 100644 --- a/advisories/unreviewed/2023/01/GHSA-2qc4-mg99-36hh/GHSA-2qc4-mg99-36hh.json +++ b/advisories/unreviewed/2023/01/GHSA-2qc4-mg99-36hh/GHSA-2qc4-mg99-36hh.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/01/GHSA-2vw3-r555-jwcc/GHSA-2vw3-r555-jwcc.json b/advisories/unreviewed/2023/01/GHSA-2vw3-r555-jwcc/GHSA-2vw3-r555-jwcc.json index 792493da198..0bb95562864 100644 --- a/advisories/unreviewed/2023/01/GHSA-2vw3-r555-jwcc/GHSA-2vw3-r555-jwcc.json +++ b/advisories/unreviewed/2023/01/GHSA-2vw3-r555-jwcc/GHSA-2vw3-r555-jwcc.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/2023/01/GHSA-2wvv-pxv7-cgf7/GHSA-2wvv-pxv7-cgf7.json b/advisories/unreviewed/2023/01/GHSA-2wvv-pxv7-cgf7/GHSA-2wvv-pxv7-cgf7.json index 4fc72613e50..4e51057d79b 100644 --- a/advisories/unreviewed/2023/01/GHSA-2wvv-pxv7-cgf7/GHSA-2wvv-pxv7-cgf7.json +++ b/advisories/unreviewed/2023/01/GHSA-2wvv-pxv7-cgf7/GHSA-2wvv-pxv7-cgf7.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/01/GHSA-33wx-8m27-jwj5/GHSA-33wx-8m27-jwj5.json b/advisories/unreviewed/2023/01/GHSA-33wx-8m27-jwj5/GHSA-33wx-8m27-jwj5.json index 0dd67499893..a2bb46a1333 100644 --- a/advisories/unreviewed/2023/01/GHSA-33wx-8m27-jwj5/GHSA-33wx-8m27-jwj5.json +++ b/advisories/unreviewed/2023/01/GHSA-33wx-8m27-jwj5/GHSA-33wx-8m27-jwj5.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/01/GHSA-3p44-f645-5372/GHSA-3p44-f645-5372.json b/advisories/unreviewed/2023/01/GHSA-3p44-f645-5372/GHSA-3p44-f645-5372.json index a1a894ad07d..a6abbe336a0 100644 --- a/advisories/unreviewed/2023/01/GHSA-3p44-f645-5372/GHSA-3p44-f645-5372.json +++ b/advisories/unreviewed/2023/01/GHSA-3p44-f645-5372/GHSA-3p44-f645-5372.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/01/GHSA-5v99-78fj-wc52/GHSA-5v99-78fj-wc52.json b/advisories/unreviewed/2023/01/GHSA-5v99-78fj-wc52/GHSA-5v99-78fj-wc52.json index 9538700d6fc..4a3a00d05ff 100644 --- a/advisories/unreviewed/2023/01/GHSA-5v99-78fj-wc52/GHSA-5v99-78fj-wc52.json +++ b/advisories/unreviewed/2023/01/GHSA-5v99-78fj-wc52/GHSA-5v99-78fj-wc52.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/01/GHSA-756m-w6hw-pq9q/GHSA-756m-w6hw-pq9q.json b/advisories/unreviewed/2023/01/GHSA-756m-w6hw-pq9q/GHSA-756m-w6hw-pq9q.json index 1ef1cc0efb9..a98d9a7acc0 100644 --- a/advisories/unreviewed/2023/01/GHSA-756m-w6hw-pq9q/GHSA-756m-w6hw-pq9q.json +++ b/advisories/unreviewed/2023/01/GHSA-756m-w6hw-pq9q/GHSA-756m-w6hw-pq9q.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/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/01/GHSA-9m68-rm2c-mqcw/GHSA-9m68-rm2c-mqcw.json b/advisories/unreviewed/2023/01/GHSA-9m68-rm2c-mqcw/GHSA-9m68-rm2c-mqcw.json index 07d4197ad39..87ebdb52e26 100644 --- a/advisories/unreviewed/2023/01/GHSA-9m68-rm2c-mqcw/GHSA-9m68-rm2c-mqcw.json +++ b/advisories/unreviewed/2023/01/GHSA-9m68-rm2c-mqcw/GHSA-9m68-rm2c-mqcw.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/01/GHSA-ccfc-c3cw-8fcq/GHSA-ccfc-c3cw-8fcq.json b/advisories/unreviewed/2023/01/GHSA-ccfc-c3cw-8fcq/GHSA-ccfc-c3cw-8fcq.json index 96482905f4b..86e360716bb 100644 --- a/advisories/unreviewed/2023/01/GHSA-ccfc-c3cw-8fcq/GHSA-ccfc-c3cw-8fcq.json +++ b/advisories/unreviewed/2023/01/GHSA-ccfc-c3cw-8fcq/GHSA-ccfc-c3cw-8fcq.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/01/GHSA-f25w-7vp8-h4hw/GHSA-f25w-7vp8-h4hw.json b/advisories/unreviewed/2023/01/GHSA-f25w-7vp8-h4hw/GHSA-f25w-7vp8-h4hw.json index be9a5bcd02c..cb72b86e386 100644 --- a/advisories/unreviewed/2023/01/GHSA-f25w-7vp8-h4hw/GHSA-f25w-7vp8-h4hw.json +++ b/advisories/unreviewed/2023/01/GHSA-f25w-7vp8-h4hw/GHSA-f25w-7vp8-h4hw.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/2023/01/GHSA-f3c6-qvcg-m7qv/GHSA-f3c6-qvcg-m7qv.json b/advisories/unreviewed/2023/01/GHSA-f3c6-qvcg-m7qv/GHSA-f3c6-qvcg-m7qv.json index a1c52422614..88227ff4c84 100644 --- a/advisories/unreviewed/2023/01/GHSA-f3c6-qvcg-m7qv/GHSA-f3c6-qvcg-m7qv.json +++ b/advisories/unreviewed/2023/01/GHSA-f3c6-qvcg-m7qv/GHSA-f3c6-qvcg-m7qv.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/01/GHSA-h9vg-8cxq-wr8j/GHSA-h9vg-8cxq-wr8j.json b/advisories/unreviewed/2023/01/GHSA-h9vg-8cxq-wr8j/GHSA-h9vg-8cxq-wr8j.json index eae21906bae..4851bdb4c0c 100644 --- a/advisories/unreviewed/2023/01/GHSA-h9vg-8cxq-wr8j/GHSA-h9vg-8cxq-wr8j.json +++ b/advisories/unreviewed/2023/01/GHSA-h9vg-8cxq-wr8j/GHSA-h9vg-8cxq-wr8j.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/2023/01/GHSA-hh46-3h2m-rhw6/GHSA-hh46-3h2m-rhw6.json b/advisories/unreviewed/2023/01/GHSA-hh46-3h2m-rhw6/GHSA-hh46-3h2m-rhw6.json index f90c5ff0a9b..71c3c44ad58 100644 --- a/advisories/unreviewed/2023/01/GHSA-hh46-3h2m-rhw6/GHSA-hh46-3h2m-rhw6.json +++ b/advisories/unreviewed/2023/01/GHSA-hh46-3h2m-rhw6/GHSA-hh46-3h2m-rhw6.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/01/GHSA-hv57-5vj6-78w5/GHSA-hv57-5vj6-78w5.json b/advisories/unreviewed/2023/01/GHSA-hv57-5vj6-78w5/GHSA-hv57-5vj6-78w5.json index 3a4f814575c..4e5942af74b 100644 --- a/advisories/unreviewed/2023/01/GHSA-hv57-5vj6-78w5/GHSA-hv57-5vj6-78w5.json +++ b/advisories/unreviewed/2023/01/GHSA-hv57-5vj6-78w5/GHSA-hv57-5vj6-78w5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N" } ], - "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/2023/01/GHSA-hx8f-g7m6-933v/GHSA-hx8f-g7m6-933v.json b/advisories/unreviewed/2023/01/GHSA-hx8f-g7m6-933v/GHSA-hx8f-g7m6-933v.json index 72969d07b52..e2174b3923a 100644 --- a/advisories/unreviewed/2023/01/GHSA-hx8f-g7m6-933v/GHSA-hx8f-g7m6-933v.json +++ b/advisories/unreviewed/2023/01/GHSA-hx8f-g7m6-933v/GHSA-hx8f-g7m6-933v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/01/GHSA-jc5p-hfq2-7mfm/GHSA-jc5p-hfq2-7mfm.json b/advisories/unreviewed/2023/01/GHSA-jc5p-hfq2-7mfm/GHSA-jc5p-hfq2-7mfm.json index 896f4fb05a1..ae2248ec129 100644 --- a/advisories/unreviewed/2023/01/GHSA-jc5p-hfq2-7mfm/GHSA-jc5p-hfq2-7mfm.json +++ b/advisories/unreviewed/2023/01/GHSA-jc5p-hfq2-7mfm/GHSA-jc5p-hfq2-7mfm.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", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2023/01/GHSA-mf5v-ghxf-2553/GHSA-mf5v-ghxf-2553.json b/advisories/unreviewed/2023/01/GHSA-mf5v-ghxf-2553/GHSA-mf5v-ghxf-2553.json index f7809a2a714..ce673acfbdd 100644 --- a/advisories/unreviewed/2023/01/GHSA-mf5v-ghxf-2553/GHSA-mf5v-ghxf-2553.json +++ b/advisories/unreviewed/2023/01/GHSA-mf5v-ghxf-2553/GHSA-mf5v-ghxf-2553.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/01/GHSA-p768-xgqw-qmfx/GHSA-p768-xgqw-qmfx.json b/advisories/unreviewed/2023/01/GHSA-p768-xgqw-qmfx/GHSA-p768-xgqw-qmfx.json index 5cd7fcb17f9..e7744de7450 100644 --- a/advisories/unreviewed/2023/01/GHSA-p768-xgqw-qmfx/GHSA-p768-xgqw-qmfx.json +++ b/advisories/unreviewed/2023/01/GHSA-p768-xgqw-qmfx/GHSA-p768-xgqw-qmfx.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/2023/01/GHSA-pjxf-jxmw-2q29/GHSA-pjxf-jxmw-2q29.json b/advisories/unreviewed/2023/01/GHSA-pjxf-jxmw-2q29/GHSA-pjxf-jxmw-2q29.json index f9c5caebbfc..814a530d4b6 100644 --- a/advisories/unreviewed/2023/01/GHSA-pjxf-jxmw-2q29/GHSA-pjxf-jxmw-2q29.json +++ b/advisories/unreviewed/2023/01/GHSA-pjxf-jxmw-2q29/GHSA-pjxf-jxmw-2q29.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/01/GHSA-px3h-pw4r-q82w/GHSA-px3h-pw4r-q82w.json b/advisories/unreviewed/2023/01/GHSA-px3h-pw4r-q82w/GHSA-px3h-pw4r-q82w.json index 0939ae35fe8..ac7afe47e5d 100644 --- a/advisories/unreviewed/2023/01/GHSA-px3h-pw4r-q82w/GHSA-px3h-pw4r-q82w.json +++ b/advisories/unreviewed/2023/01/GHSA-px3h-pw4r-q82w/GHSA-px3h-pw4r-q82w.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/01/GHSA-rfrr-3g6g-x7ww/GHSA-rfrr-3g6g-x7ww.json b/advisories/unreviewed/2023/01/GHSA-rfrr-3g6g-x7ww/GHSA-rfrr-3g6g-x7ww.json index 87e5505ca07..956b2d5a9d2 100644 --- a/advisories/unreviewed/2023/01/GHSA-rfrr-3g6g-x7ww/GHSA-rfrr-3g6g-x7ww.json +++ b/advisories/unreviewed/2023/01/GHSA-rfrr-3g6g-x7ww/GHSA-rfrr-3g6g-x7ww.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/2023/01/GHSA-rpph-wv52-9mgp/GHSA-rpph-wv52-9mgp.json b/advisories/unreviewed/2023/01/GHSA-rpph-wv52-9mgp/GHSA-rpph-wv52-9mgp.json index 19fd22056f1..d39a89d95c1 100644 --- a/advisories/unreviewed/2023/01/GHSA-rpph-wv52-9mgp/GHSA-rpph-wv52-9mgp.json +++ b/advisories/unreviewed/2023/01/GHSA-rpph-wv52-9mgp/GHSA-rpph-wv52-9mgp.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/01/GHSA-v79p-69c6-xpc3/GHSA-v79p-69c6-xpc3.json b/advisories/unreviewed/2023/01/GHSA-v79p-69c6-xpc3/GHSA-v79p-69c6-xpc3.json index 6a6b9c1f430..ae384a10780 100644 --- a/advisories/unreviewed/2023/01/GHSA-v79p-69c6-xpc3/GHSA-v79p-69c6-xpc3.json +++ b/advisories/unreviewed/2023/01/GHSA-v79p-69c6-xpc3/GHSA-v79p-69c6-xpc3.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/01/GHSA-vm5j-jm47-2g27/GHSA-vm5j-jm47-2g27.json b/advisories/unreviewed/2023/01/GHSA-vm5j-jm47-2g27/GHSA-vm5j-jm47-2g27.json index 7316eb0757b..d806809ac1b 100644 --- a/advisories/unreviewed/2023/01/GHSA-vm5j-jm47-2g27/GHSA-vm5j-jm47-2g27.json +++ b/advisories/unreviewed/2023/01/GHSA-vm5j-jm47-2g27/GHSA-vm5j-jm47-2g27.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/01/GHSA-xc3h-2p9r-635m/GHSA-xc3h-2p9r-635m.json b/advisories/unreviewed/2023/01/GHSA-xc3h-2p9r-635m/GHSA-xc3h-2p9r-635m.json index 13fda17e81a..010f9c0e50b 100644 --- a/advisories/unreviewed/2023/01/GHSA-xc3h-2p9r-635m/GHSA-xc3h-2p9r-635m.json +++ b/advisories/unreviewed/2023/01/GHSA-xc3h-2p9r-635m/GHSA-xc3h-2p9r-635m.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/01/GHSA-xr3m-j4q9-hqr4/GHSA-xr3m-j4q9-hqr4.json b/advisories/unreviewed/2023/01/GHSA-xr3m-j4q9-hqr4/GHSA-xr3m-j4q9-hqr4.json index ecee134763b..09f7241fea2 100644 --- a/advisories/unreviewed/2023/01/GHSA-xr3m-j4q9-hqr4/GHSA-xr3m-j4q9-hqr4.json +++ b/advisories/unreviewed/2023/01/GHSA-xr3m-j4q9-hqr4/GHSA-xr3m-j4q9-hqr4.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/2023/02/GHSA-f749-qrwh-2gwm/GHSA-f749-qrwh-2gwm.json b/advisories/unreviewed/2023/02/GHSA-f749-qrwh-2gwm/GHSA-f749-qrwh-2gwm.json index a53b031e611..a03b1d35957 100644 --- a/advisories/unreviewed/2023/02/GHSA-f749-qrwh-2gwm/GHSA-f749-qrwh-2gwm.json +++ b/advisories/unreviewed/2023/02/GHSA-f749-qrwh-2gwm/GHSA-f749-qrwh-2gwm.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/02/GHSA-rxg9-g88m-hx4v/GHSA-rxg9-g88m-hx4v.json b/advisories/unreviewed/2023/02/GHSA-rxg9-g88m-hx4v/GHSA-rxg9-g88m-hx4v.json index 3bb92a8f827..faeabf0253b 100644 --- a/advisories/unreviewed/2023/02/GHSA-rxg9-g88m-hx4v/GHSA-rxg9-g88m-hx4v.json +++ b/advisories/unreviewed/2023/02/GHSA-rxg9-g88m-hx4v/GHSA-rxg9-g88m-hx4v.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/03/GHSA-4fpc-4gp5-rfgp/GHSA-4fpc-4gp5-rfgp.json b/advisories/unreviewed/2023/03/GHSA-4fpc-4gp5-rfgp/GHSA-4fpc-4gp5-rfgp.json index 5ccbabfb33e..d8b8819b5d4 100644 --- a/advisories/unreviewed/2023/03/GHSA-4fpc-4gp5-rfgp/GHSA-4fpc-4gp5-rfgp.json +++ b/advisories/unreviewed/2023/03/GHSA-4fpc-4gp5-rfgp/GHSA-4fpc-4gp5-rfgp.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-4j4g-x85c-8f36/GHSA-4j4g-x85c-8f36.json b/advisories/unreviewed/2023/03/GHSA-4j4g-x85c-8f36/GHSA-4j4g-x85c-8f36.json index 41dbe26ca89..893ece43ce1 100644 --- a/advisories/unreviewed/2023/03/GHSA-4j4g-x85c-8f36/GHSA-4j4g-x85c-8f36.json +++ b/advisories/unreviewed/2023/03/GHSA-4j4g-x85c-8f36/GHSA-4j4g-x85c-8f36.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/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/03/GHSA-6hpv-3vxv-xp2r/GHSA-6hpv-3vxv-xp2r.json b/advisories/unreviewed/2023/03/GHSA-6hpv-3vxv-xp2r/GHSA-6hpv-3vxv-xp2r.json index bc67bf05a31..d34b7904a59 100644 --- a/advisories/unreviewed/2023/03/GHSA-6hpv-3vxv-xp2r/GHSA-6hpv-3vxv-xp2r.json +++ b/advisories/unreviewed/2023/03/GHSA-6hpv-3vxv-xp2r/GHSA-6hpv-3vxv-xp2r.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:A/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/03/GHSA-6j74-p6h3-8g44/GHSA-6j74-p6h3-8g44.json b/advisories/unreviewed/2023/03/GHSA-6j74-p6h3-8g44/GHSA-6j74-p6h3-8g44.json index 355b0344b0d..42a2193c4d7 100644 --- a/advisories/unreviewed/2023/03/GHSA-6j74-p6h3-8g44/GHSA-6j74-p6h3-8g44.json +++ b/advisories/unreviewed/2023/03/GHSA-6j74-p6h3-8g44/GHSA-6j74-p6h3-8g44.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/2023/03/GHSA-83cq-237j-2w54/GHSA-83cq-237j-2w54.json b/advisories/unreviewed/2023/03/GHSA-83cq-237j-2w54/GHSA-83cq-237j-2w54.json index 7c4b6d797fd..5c684c742fc 100644 --- a/advisories/unreviewed/2023/03/GHSA-83cq-237j-2w54/GHSA-83cq-237j-2w54.json +++ b/advisories/unreviewed/2023/03/GHSA-83cq-237j-2w54/GHSA-83cq-237j-2w54.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/2023/03/GHSA-93vf-fhrw-pvpj/GHSA-93vf-fhrw-pvpj.json b/advisories/unreviewed/2023/03/GHSA-93vf-fhrw-pvpj/GHSA-93vf-fhrw-pvpj.json index 1fddd35d0f8..0b20d321350 100644 --- a/advisories/unreviewed/2023/03/GHSA-93vf-fhrw-pvpj/GHSA-93vf-fhrw-pvpj.json +++ b/advisories/unreviewed/2023/03/GHSA-93vf-fhrw-pvpj/GHSA-93vf-fhrw-pvpj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/03/GHSA-cp8x-fmj3-2w9f/GHSA-cp8x-fmj3-2w9f.json b/advisories/unreviewed/2023/03/GHSA-cp8x-fmj3-2w9f/GHSA-cp8x-fmj3-2w9f.json index bab9b875ef7..e469e4313ea 100644 --- a/advisories/unreviewed/2023/03/GHSA-cp8x-fmj3-2w9f/GHSA-cp8x-fmj3-2w9f.json +++ b/advisories/unreviewed/2023/03/GHSA-cp8x-fmj3-2w9f/GHSA-cp8x-fmj3-2w9f.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/2023/03/GHSA-cxfw-2mm4-92m9/GHSA-cxfw-2mm4-92m9.json b/advisories/unreviewed/2023/03/GHSA-cxfw-2mm4-92m9/GHSA-cxfw-2mm4-92m9.json index 115d1d87723..47ece42f543 100644 --- a/advisories/unreviewed/2023/03/GHSA-cxfw-2mm4-92m9/GHSA-cxfw-2mm4-92m9.json +++ b/advisories/unreviewed/2023/03/GHSA-cxfw-2mm4-92m9/GHSA-cxfw-2mm4-92m9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/03/GHSA-f6pf-7qx7-fg5m/GHSA-f6pf-7qx7-fg5m.json b/advisories/unreviewed/2023/03/GHSA-f6pf-7qx7-fg5m/GHSA-f6pf-7qx7-fg5m.json index 74b381fb03c..e42b41c68c5 100644 --- a/advisories/unreviewed/2023/03/GHSA-f6pf-7qx7-fg5m/GHSA-f6pf-7qx7-fg5m.json +++ b/advisories/unreviewed/2023/03/GHSA-f6pf-7qx7-fg5m/GHSA-f6pf-7qx7-fg5m.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/2023/03/GHSA-j6p3-mvwv-6qc2/GHSA-j6p3-mvwv-6qc2.json b/advisories/unreviewed/2023/03/GHSA-j6p3-mvwv-6qc2/GHSA-j6p3-mvwv-6qc2.json index 5e5ee04c713..55c8004c09f 100644 --- a/advisories/unreviewed/2023/03/GHSA-j6p3-mvwv-6qc2/GHSA-j6p3-mvwv-6qc2.json +++ b/advisories/unreviewed/2023/03/GHSA-j6p3-mvwv-6qc2/GHSA-j6p3-mvwv-6qc2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/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/2023/03/GHSA-jvgw-wcf7-8qhm/GHSA-jvgw-wcf7-8qhm.json b/advisories/unreviewed/2023/03/GHSA-jvgw-wcf7-8qhm/GHSA-jvgw-wcf7-8qhm.json index 71f2b287d78..ce892c35eb6 100644 --- a/advisories/unreviewed/2023/03/GHSA-jvgw-wcf7-8qhm/GHSA-jvgw-wcf7-8qhm.json +++ b/advisories/unreviewed/2023/03/GHSA-jvgw-wcf7-8qhm/GHSA-jvgw-wcf7-8qhm.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/2023/03/GHSA-m5q4-m78h-xjw6/GHSA-m5q4-m78h-xjw6.json b/advisories/unreviewed/2023/03/GHSA-m5q4-m78h-xjw6/GHSA-m5q4-m78h-xjw6.json index cef19802211..085b3b0531c 100644 --- a/advisories/unreviewed/2023/03/GHSA-m5q4-m78h-xjw6/GHSA-m5q4-m78h-xjw6.json +++ b/advisories/unreviewed/2023/03/GHSA-m5q4-m78h-xjw6/GHSA-m5q4-m78h-xjw6.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/2023/03/GHSA-m68p-4w8c-8x3r/GHSA-m68p-4w8c-8x3r.json b/advisories/unreviewed/2023/03/GHSA-m68p-4w8c-8x3r/GHSA-m68p-4w8c-8x3r.json index 67f57eb9d9e..95ad0b442a9 100644 --- a/advisories/unreviewed/2023/03/GHSA-m68p-4w8c-8x3r/GHSA-m68p-4w8c-8x3r.json +++ b/advisories/unreviewed/2023/03/GHSA-m68p-4w8c-8x3r/GHSA-m68p-4w8c-8x3r.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-m8f7-5xcg-535x/GHSA-m8f7-5xcg-535x.json b/advisories/unreviewed/2023/03/GHSA-m8f7-5xcg-535x/GHSA-m8f7-5xcg-535x.json index ffc32728e56..145f8c64214 100644 --- a/advisories/unreviewed/2023/03/GHSA-m8f7-5xcg-535x/GHSA-m8f7-5xcg-535x.json +++ b/advisories/unreviewed/2023/03/GHSA-m8f7-5xcg-535x/GHSA-m8f7-5xcg-535x.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/03/GHSA-p658-968w-vm74/GHSA-p658-968w-vm74.json b/advisories/unreviewed/2023/03/GHSA-p658-968w-vm74/GHSA-p658-968w-vm74.json index d2f3b005abe..cc76b0b444e 100644 --- a/advisories/unreviewed/2023/03/GHSA-p658-968w-vm74/GHSA-p658-968w-vm74.json +++ b/advisories/unreviewed/2023/03/GHSA-p658-968w-vm74/GHSA-p658-968w-vm74.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/2023/03/GHSA-prq4-3c39-j9jq/GHSA-prq4-3c39-j9jq.json b/advisories/unreviewed/2023/03/GHSA-prq4-3c39-j9jq/GHSA-prq4-3c39-j9jq.json index 217a62e08d0..323b09cf9d0 100644 --- a/advisories/unreviewed/2023/03/GHSA-prq4-3c39-j9jq/GHSA-prq4-3c39-j9jq.json +++ b/advisories/unreviewed/2023/03/GHSA-prq4-3c39-j9jq/GHSA-prq4-3c39-j9jq.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/03/GHSA-qw23-6j7v-fhg8/GHSA-qw23-6j7v-fhg8.json b/advisories/unreviewed/2023/03/GHSA-qw23-6j7v-fhg8/GHSA-qw23-6j7v-fhg8.json index b7d203c6bd9..ce33abad4da 100644 --- a/advisories/unreviewed/2023/03/GHSA-qw23-6j7v-fhg8/GHSA-qw23-6j7v-fhg8.json +++ b/advisories/unreviewed/2023/03/GHSA-qw23-6j7v-fhg8/GHSA-qw23-6j7v-fhg8.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/03/GHSA-qw7p-6f7c-jj4p/GHSA-qw7p-6f7c-jj4p.json b/advisories/unreviewed/2023/03/GHSA-qw7p-6f7c-jj4p/GHSA-qw7p-6f7c-jj4p.json index 00ac93fd821..067c32de4c0 100644 --- a/advisories/unreviewed/2023/03/GHSA-qw7p-6f7c-jj4p/GHSA-qw7p-6f7c-jj4p.json +++ b/advisories/unreviewed/2023/03/GHSA-qw7p-6f7c-jj4p/GHSA-qw7p-6f7c-jj4p.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/2023/03/GHSA-rh4w-wj5p-5r32/GHSA-rh4w-wj5p-5r32.json b/advisories/unreviewed/2023/03/GHSA-rh4w-wj5p-5r32/GHSA-rh4w-wj5p-5r32.json index 0ac134405e1..49064ec79e4 100644 --- a/advisories/unreviewed/2023/03/GHSA-rh4w-wj5p-5r32/GHSA-rh4w-wj5p-5r32.json +++ b/advisories/unreviewed/2023/03/GHSA-rh4w-wj5p-5r32/GHSA-rh4w-wj5p-5r32.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/2023/03/GHSA-rq4q-fjxh-vjg3/GHSA-rq4q-fjxh-vjg3.json b/advisories/unreviewed/2023/03/GHSA-rq4q-fjxh-vjg3/GHSA-rq4q-fjxh-vjg3.json index ed9adc04fbc..da479bb273b 100644 --- a/advisories/unreviewed/2023/03/GHSA-rq4q-fjxh-vjg3/GHSA-rq4q-fjxh-vjg3.json +++ b/advisories/unreviewed/2023/03/GHSA-rq4q-fjxh-vjg3/GHSA-rq4q-fjxh-vjg3.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/2023/03/GHSA-rx2p-774w-85jc/GHSA-rx2p-774w-85jc.json b/advisories/unreviewed/2023/03/GHSA-rx2p-774w-85jc/GHSA-rx2p-774w-85jc.json index 688cb105bf2..cfc171dfc44 100644 --- a/advisories/unreviewed/2023/03/GHSA-rx2p-774w-85jc/GHSA-rx2p-774w-85jc.json +++ b/advisories/unreviewed/2023/03/GHSA-rx2p-774w-85jc/GHSA-rx2p-774w-85jc.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/03/GHSA-vc68-vpf2-7xq5/GHSA-vc68-vpf2-7xq5.json b/advisories/unreviewed/2023/03/GHSA-vc68-vpf2-7xq5/GHSA-vc68-vpf2-7xq5.json index 616720f4d69..d06f97c08ee 100644 --- a/advisories/unreviewed/2023/03/GHSA-vc68-vpf2-7xq5/GHSA-vc68-vpf2-7xq5.json +++ b/advisories/unreviewed/2023/03/GHSA-vc68-vpf2-7xq5/GHSA-vc68-vpf2-7xq5.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/2023/03/GHSA-vr6q-6f35-6fpc/GHSA-vr6q-6f35-6fpc.json b/advisories/unreviewed/2023/03/GHSA-vr6q-6f35-6fpc/GHSA-vr6q-6f35-6fpc.json index 9df5f3a89e6..92fd8a84a8f 100644 --- a/advisories/unreviewed/2023/03/GHSA-vr6q-6f35-6fpc/GHSA-vr6q-6f35-6fpc.json +++ b/advisories/unreviewed/2023/03/GHSA-vr6q-6f35-6fpc/GHSA-vr6q-6f35-6fpc.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/2023/03/GHSA-w7wq-mfjm-crgc/GHSA-w7wq-mfjm-crgc.json b/advisories/unreviewed/2023/03/GHSA-w7wq-mfjm-crgc/GHSA-w7wq-mfjm-crgc.json index 726927bced6..cd54595142a 100644 --- a/advisories/unreviewed/2023/03/GHSA-w7wq-mfjm-crgc/GHSA-w7wq-mfjm-crgc.json +++ b/advisories/unreviewed/2023/03/GHSA-w7wq-mfjm-crgc/GHSA-w7wq-mfjm-crgc.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/03/GHSA-wj78-xrp7-jrhr/GHSA-wj78-xrp7-jrhr.json b/advisories/unreviewed/2023/03/GHSA-wj78-xrp7-jrhr/GHSA-wj78-xrp7-jrhr.json index f1b57524737..b7274daf9fe 100644 --- a/advisories/unreviewed/2023/03/GHSA-wj78-xrp7-jrhr/GHSA-wj78-xrp7-jrhr.json +++ b/advisories/unreviewed/2023/03/GHSA-wj78-xrp7-jrhr/GHSA-wj78-xrp7-jrhr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/03/GHSA-xj6j-6m68-mr7h/GHSA-xj6j-6m68-mr7h.json b/advisories/unreviewed/2023/03/GHSA-xj6j-6m68-mr7h/GHSA-xj6j-6m68-mr7h.json index f39e170d327..8b1b33cf3b5 100644 --- a/advisories/unreviewed/2023/03/GHSA-xj6j-6m68-mr7h/GHSA-xj6j-6m68-mr7h.json +++ b/advisories/unreviewed/2023/03/GHSA-xj6j-6m68-mr7h/GHSA-xj6j-6m68-mr7h.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-2rm3-j8qf-6fg4/GHSA-2rm3-j8qf-6fg4.json b/advisories/unreviewed/2023/11/GHSA-2rm3-j8qf-6fg4/GHSA-2rm3-j8qf-6fg4.json index 29c8f38d379..fb70c28f372 100644 --- a/advisories/unreviewed/2023/11/GHSA-2rm3-j8qf-6fg4/GHSA-2rm3-j8qf-6fg4.json +++ b/advisories/unreviewed/2023/11/GHSA-2rm3-j8qf-6fg4/GHSA-2rm3-j8qf-6fg4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2023/11/GHSA-2xqg-vpc9-333c/GHSA-2xqg-vpc9-333c.json b/advisories/unreviewed/2023/11/GHSA-2xqg-vpc9-333c/GHSA-2xqg-vpc9-333c.json index 9a21473ee5b..412e43841c3 100644 --- a/advisories/unreviewed/2023/11/GHSA-2xqg-vpc9-333c/GHSA-2xqg-vpc9-333c.json +++ b/advisories/unreviewed/2023/11/GHSA-2xqg-vpc9-333c/GHSA-2xqg-vpc9-333c.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", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "CRITICAL", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2023/11/GHSA-585g-f852-v6p4/GHSA-585g-f852-v6p4.json b/advisories/unreviewed/2023/11/GHSA-585g-f852-v6p4/GHSA-585g-f852-v6p4.json index e72c4125c6d..1a9a33bd93f 100644 --- a/advisories/unreviewed/2023/11/GHSA-585g-f852-v6p4/GHSA-585g-f852-v6p4.json +++ b/advisories/unreviewed/2023/11/GHSA-585g-f852-v6p4/GHSA-585g-f852-v6p4.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-5c7f-c4vf-5xcw/GHSA-5c7f-c4vf-5xcw.json b/advisories/unreviewed/2023/11/GHSA-5c7f-c4vf-5xcw/GHSA-5c7f-c4vf-5xcw.json index 56b408cea76..3c348632ab3 100644 --- a/advisories/unreviewed/2023/11/GHSA-5c7f-c4vf-5xcw/GHSA-5c7f-c4vf-5xcw.json +++ b/advisories/unreviewed/2023/11/GHSA-5c7f-c4vf-5xcw/GHSA-5c7f-c4vf-5xcw.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-c3cx-3cr3-3gfg/GHSA-c3cx-3cr3-3gfg.json b/advisories/unreviewed/2023/11/GHSA-c3cx-3cr3-3gfg/GHSA-c3cx-3cr3-3gfg.json index 5bab0b185aa..3212f57f92a 100644 --- a/advisories/unreviewed/2023/11/GHSA-c3cx-3cr3-3gfg/GHSA-c3cx-3cr3-3gfg.json +++ b/advisories/unreviewed/2023/11/GHSA-c3cx-3cr3-3gfg/GHSA-c3cx-3cr3-3gfg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/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/11/GHSA-ggwr-xqfc-8r6r/GHSA-ggwr-xqfc-8r6r.json b/advisories/unreviewed/2023/11/GHSA-ggwr-xqfc-8r6r/GHSA-ggwr-xqfc-8r6r.json index bc8aa7b3b06..9407b8c9e50 100644 --- a/advisories/unreviewed/2023/11/GHSA-ggwr-xqfc-8r6r/GHSA-ggwr-xqfc-8r6r.json +++ b/advisories/unreviewed/2023/11/GHSA-ggwr-xqfc-8r6r/GHSA-ggwr-xqfc-8r6r.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/11/GHSA-pcgq-p35j-9wq3/GHSA-pcgq-p35j-9wq3.json b/advisories/unreviewed/2023/11/GHSA-pcgq-p35j-9wq3/GHSA-pcgq-p35j-9wq3.json index b63455e4361..b13af1e337a 100644 --- a/advisories/unreviewed/2023/11/GHSA-pcgq-p35j-9wq3/GHSA-pcgq-p35j-9wq3.json +++ b/advisories/unreviewed/2023/11/GHSA-pcgq-p35j-9wq3/GHSA-pcgq-p35j-9wq3.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-vh8j-88qp-3xwr/GHSA-vh8j-88qp-3xwr.json b/advisories/unreviewed/2023/11/GHSA-vh8j-88qp-3xwr/GHSA-vh8j-88qp-3xwr.json index 402e51ccd06..212fcf80810 100644 --- a/advisories/unreviewed/2023/11/GHSA-vh8j-88qp-3xwr/GHSA-vh8j-88qp-3xwr.json +++ b/advisories/unreviewed/2023/11/GHSA-vh8j-88qp-3xwr/GHSA-vh8j-88qp-3xwr.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-8694-9wwj-rvph/GHSA-8694-9wwj-rvph.json b/advisories/unreviewed/2024/08/GHSA-8694-9wwj-rvph/GHSA-8694-9wwj-rvph.json index c9cf9721c5b..0967baf7ab2 100644 --- a/advisories/unreviewed/2024/08/GHSA-8694-9wwj-rvph/GHSA-8694-9wwj-rvph.json +++ b/advisories/unreviewed/2024/08/GHSA-8694-9wwj-rvph/GHSA-8694-9wwj-rvph.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-995f-jhr3-5x29/GHSA-995f-jhr3-5x29.json b/advisories/unreviewed/2024/08/GHSA-995f-jhr3-5x29/GHSA-995f-jhr3-5x29.json index 43b2b5ea5b9..ef3b61351f9 100644 --- a/advisories/unreviewed/2024/08/GHSA-995f-jhr3-5x29/GHSA-995f-jhr3-5x29.json +++ b/advisories/unreviewed/2024/08/GHSA-995f-jhr3-5x29/GHSA-995f-jhr3-5x29.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:H/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/08/GHSA-9wvr-rr6g-49mj/GHSA-9wvr-rr6g-49mj.json b/advisories/unreviewed/2024/08/GHSA-9wvr-rr6g-49mj/GHSA-9wvr-rr6g-49mj.json index a4ba875995b..2ad5a8ec6d3 100644 --- a/advisories/unreviewed/2024/08/GHSA-9wvr-rr6g-49mj/GHSA-9wvr-rr6g-49mj.json +++ b/advisories/unreviewed/2024/08/GHSA-9wvr-rr6g-49mj/GHSA-9wvr-rr6g-49mj.json @@ -7,12 +7,8 @@ "CVE-2024-6865" ], "details": "Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -20,9 +16,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": null, "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2024/08/GHSA-rv78-75q2-7333/GHSA-rv78-75q2-7333.json b/advisories/unreviewed/2024/08/GHSA-rv78-75q2-7333/GHSA-rv78-75q2-7333.json index 78ed63c6942..dbb0ad25428 100644 --- a/advisories/unreviewed/2024/08/GHSA-rv78-75q2-7333/GHSA-rv78-75q2-7333.json +++ b/advisories/unreviewed/2024/08/GHSA-rv78-75q2-7333/GHSA-rv78-75q2-7333.json @@ -13,9 +13,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",