diff --git a/advisories/github-reviewed/2021/05/GHSA-fp4w-jxhp-m23p/GHSA-fp4w-jxhp-m23p.json b/advisories/github-reviewed/2021/05/GHSA-fp4w-jxhp-m23p/GHSA-fp4w-jxhp-m23p.json
index b28f4c94da6..dfb82035770 100644
--- a/advisories/github-reviewed/2021/05/GHSA-fp4w-jxhp-m23p/GHSA-fp4w-jxhp-m23p.json
+++ b/advisories/github-reviewed/2021/05/GHSA-fp4w-jxhp-m23p/GHSA-fp4w-jxhp-m23p.json
@@ -105,9 +105,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2021-05-20T21:48:14Z",
diff --git a/advisories/github-reviewed/2022/04/GHSA-3227-r97m-8j95/GHSA-3227-r97m-8j95.json b/advisories/github-reviewed/2022/04/GHSA-3227-r97m-8j95/GHSA-3227-r97m-8j95.json
index dd63b843408..509e171cce9 100644
--- a/advisories/github-reviewed/2022/04/GHSA-3227-r97m-8j95/GHSA-3227-r97m-8j95.json
+++ b/advisories/github-reviewed/2022/04/GHSA-3227-r97m-8j95/GHSA-3227-r97m-8j95.json
@@ -3,14 +3,10 @@
"id": "GHSA-3227-r97m-8j95",
"modified": "2022-04-22T20:16:45Z",
"published": "2022-04-22T20:16:45Z",
- "aliases": [
-
- ],
+ "aliases": [],
"summary": "Relative Path Traversal in afire serve_static",
"details": "### Impact\nThis vulnerability effects the built-in afire serve_static extension allowing paths containing `//....` to bypass the previous path sanitation and request files in higher directories that should not be accessible.\n\n### Patches\nThe issue has been fixed in [afire 1.1.0](https://crates.io/crates/afire/1.1.0).\nIf you can, just update to the newest version of afire.\n\n### Workarounds\nIf you can't update afire you can simply disallow paths containing `/..` with the following middleware.\nMake sure this is the last middleware added to the server so it runs first, stopping the bad requests.\n```rust\nuse afire::prelude::*;\n\nstruct PathTraversalFix;\n\nimpl Middleware for PathTraversalFix {\n fn pre(&self, req: Request) -> MiddleRequest {\n if req.path.replace(\"\\\\\", \"/\").contains(\"/..\") {\n return MiddleRequest::Send(\n Response::new()\n .status(400)\n .text(\"Paths containing `..` are not allowed\"),\n );\n }\n\n MiddleRequest::Continue\n }\n}\n```\n```rust\nlet mut server = Server::new(host, port);\nPathTraversalFix.attach(&mut server);\n```\n\n### References\nYou can read about the new changes to afire in 1.1.0 [here](https://connorcode.com/writing/afire/update-3)\n\n### For more information\nIf you have any questions or comments about this advisory you can email me or message me on discord.\n[[https://connorcode.com/contact](https://connorcode.com/contact)]",
- "severity": [
-
- ],
+ "severity": [],
"affected": [
{
"package": {
diff --git a/advisories/github-reviewed/2022/04/GHSA-8xc6-g8xw-h2c4/GHSA-8xc6-g8xw-h2c4.json b/advisories/github-reviewed/2022/04/GHSA-8xc6-g8xw-h2c4/GHSA-8xc6-g8xw-h2c4.json
index d31ac9ed304..4adc5698363 100644
--- a/advisories/github-reviewed/2022/04/GHSA-8xc6-g8xw-h2c4/GHSA-8xc6-g8xw-h2c4.json
+++ b/advisories/github-reviewed/2022/04/GHSA-8xc6-g8xw-h2c4/GHSA-8xc6-g8xw-h2c4.json
@@ -84,9 +84,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2022-04-22T20:23:44Z",
diff --git a/advisories/github-reviewed/2022/04/GHSA-cf4q-4cqr-7g7w/GHSA-cf4q-4cqr-7g7w.json b/advisories/github-reviewed/2022/04/GHSA-cf4q-4cqr-7g7w/GHSA-cf4q-4cqr-7g7w.json
index e1d6b5de865..2388737ab5a 100644
--- a/advisories/github-reviewed/2022/04/GHSA-cf4q-4cqr-7g7w/GHSA-cf4q-4cqr-7g7w.json
+++ b/advisories/github-reviewed/2022/04/GHSA-cf4q-4cqr-7g7w/GHSA-cf4q-4cqr-7g7w.json
@@ -3,14 +3,10 @@
"id": "GHSA-cf4q-4cqr-7g7w",
"modified": "2022-04-22T20:25:53Z",
"published": "2022-04-22T20:25:53Z",
- "aliases": [
-
- ],
+ "aliases": [],
"summary": "SVG with embedded scripts can lead to cross-site scripting attacks in xml2rfc",
"details": "xml2rfc allows `script` elements in SVG sources.\nIn HTML output having these script elements can lead to XSS attacks.\n\nSample XML snippet:\n```\n\n\n```\n\n### Impact\nThis vulnerability impacts website that publish HTML drafts and RFCs.\n\n### Patches\nThis has been fixed in version [3.12.4](https://github.com/ietf-tools/xml2rfc/releases/tag/v3.12.4).\n\n### Workarounds\nIf SVG source is self-contained within the XML, scraping `script` elements from SVG files.\n\n### References\n* https://developer.mozilla.org/en-US/docs/Web/SVG/Element/script\n\n### For more information\nIf you have any questions or comments about this advisory:\n* Open an issue in [xml2rfc](https://github.com/ietf-tools/xml2rfc/)\n* Email us at [operational-vulnerability@ietf.org](mailto:operational-vulnerability@ietf.org)\n* [Infrastructure and Services Vulnerability Disclosure](https://www.ietf.org/about/administration/policies-procedures/vulnerability-disclosure/)\n",
- "severity": [
-
- ],
+ "severity": [],
"affected": [
{
"package": {
diff --git a/advisories/github-reviewed/2022/04/GHSA-g5rr-p69h-7v3g/GHSA-g5rr-p69h-7v3g.json b/advisories/github-reviewed/2022/04/GHSA-g5rr-p69h-7v3g/GHSA-g5rr-p69h-7v3g.json
index 8955c937425..f87151eb08d 100644
--- a/advisories/github-reviewed/2022/04/GHSA-g5rr-p69h-7v3g/GHSA-g5rr-p69h-7v3g.json
+++ b/advisories/github-reviewed/2022/04/GHSA-g5rr-p69h-7v3g/GHSA-g5rr-p69h-7v3g.json
@@ -3,9 +3,7 @@
"id": "GHSA-g5rr-p69h-7v3g",
"modified": "2022-04-22T20:57:12Z",
"published": "2022-04-22T20:57:12Z",
- "aliases": [
-
- ],
+ "aliases": [],
"summary": "Insufficient type validation in pocketmine/pocketmine-mp",
"details": "When an inventory interaction is performed (e.g. moving an item around an inventory), the client sends a serialized version of the itemstack to the server, which the server then deserializes and compares against its own copy. If the copies don't match, the transaction is invalid. This involves deserializing item NBT from the client, which allows for bogus data to be provided. Usually, this is harmless, but in this particular case, it could result in crashes on certain types of bad data (e.g. incorrect ListTag type provided for the `CanDestroy` tag). This is fixed in 4.2.9 by commit 5a98b08ee8dc8ff14862cd83d2e4af9d212fefc2. It's non-trivial to workaround this, but can be done by handling `InventoryTransactionPacket` and `PlayerAuthInputPacket` to scrub inbound transaction data of bogus NBT that would cause these crashes.\n",
"severity": [
diff --git a/advisories/github-reviewed/2022/04/GHSA-g9hh-vvx3-v37v/GHSA-g9hh-vvx3-v37v.json b/advisories/github-reviewed/2022/04/GHSA-g9hh-vvx3-v37v/GHSA-g9hh-vvx3-v37v.json
index 982027ab5c2..c07086ee41c 100644
--- a/advisories/github-reviewed/2022/04/GHSA-g9hh-vvx3-v37v/GHSA-g9hh-vvx3-v37v.json
+++ b/advisories/github-reviewed/2022/04/GHSA-g9hh-vvx3-v37v/GHSA-g9hh-vvx3-v37v.json
@@ -58,9 +58,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2022-04-26T20:12:38Z",
diff --git a/advisories/github-reviewed/2022/04/GHSA-j35p-q24r-5367/GHSA-j35p-q24r-5367.json b/advisories/github-reviewed/2022/04/GHSA-j35p-q24r-5367/GHSA-j35p-q24r-5367.json
index 69b77e832db..67b42b68d9a 100644
--- a/advisories/github-reviewed/2022/04/GHSA-j35p-q24r-5367/GHSA-j35p-q24r-5367.json
+++ b/advisories/github-reviewed/2022/04/GHSA-j35p-q24r-5367/GHSA-j35p-q24r-5367.json
@@ -3,14 +3,10 @@
"id": "GHSA-j35p-q24r-5367",
"modified": "2022-04-22T20:23:04Z",
"published": "2022-04-22T20:23:04Z",
- "aliases": [
-
- ],
+ "aliases": [],
"summary": "Dep Group Remote Memory Exhaustion (Denial of Service) in ckb",
"details": "### Impact\nA remote attacker could exploit this vulnerability to exhaust ckb process memory of an affected node.\n\n### Patches\nUpgrade to 0.43.1 or later.\n\n### References\nAfter resolving the outpoints of one dep group, we put the corresponding content into a vec ( https://github.com/nervosnetwork/ckb/blob/v0.42.0/util/types/src/core/cell.rs#L600-L617 ), there is a vulnerability to a memory dos attack because there is no determination of whether the outpoints is duplicated.\n\nPoC:\n```\nbefore send dos tx rss:\n105700\n\nafter rss:\n2306932\n```\n\nDoS cost: 25.6 KB * 150 + dep_tx out_points capacity ( 36 * 150 * 100 = 540000 ) = 4380000 CKB\nSend 50 dos_tx, memory exhausted: (25.6 KB * 150 * 100) * 50 = 19.2 GB\n\n",
- "severity": [
-
- ],
+ "severity": [],
"affected": [
{
"package": {
@@ -47,9 +43,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2022-04-22T20:23:04Z",
diff --git a/advisories/github-reviewed/2022/05/GHSA-fcgg-rvwg-jv58/GHSA-fcgg-rvwg-jv58.json b/advisories/github-reviewed/2022/05/GHSA-fcgg-rvwg-jv58/GHSA-fcgg-rvwg-jv58.json
index e0de8afd0a1..831cefa6573 100644
--- a/advisories/github-reviewed/2022/05/GHSA-fcgg-rvwg-jv58/GHSA-fcgg-rvwg-jv58.json
+++ b/advisories/github-reviewed/2022/05/GHSA-fcgg-rvwg-jv58/GHSA-fcgg-rvwg-jv58.json
@@ -154,9 +154,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2022-06-01T21:20:37Z",
diff --git a/advisories/github-reviewed/2022/05/GHSA-hg5p-233h-c7fh/GHSA-hg5p-233h-c7fh.json b/advisories/github-reviewed/2022/05/GHSA-hg5p-233h-c7fh/GHSA-hg5p-233h-c7fh.json
index 00b3af9cd4b..9a9dd818195 100644
--- a/advisories/github-reviewed/2022/05/GHSA-hg5p-233h-c7fh/GHSA-hg5p-233h-c7fh.json
+++ b/advisories/github-reviewed/2022/05/GHSA-hg5p-233h-c7fh/GHSA-hg5p-233h-c7fh.json
@@ -46,9 +46,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2022-07-05T22:05:28Z",
diff --git a/advisories/github-reviewed/2022/06/GHSA-3jch-9qgp-4844/GHSA-3jch-9qgp-4844.json b/advisories/github-reviewed/2022/06/GHSA-3jch-9qgp-4844/GHSA-3jch-9qgp-4844.json
index 4f617c7791e..cdeba1cd75d 100644
--- a/advisories/github-reviewed/2022/06/GHSA-3jch-9qgp-4844/GHSA-3jch-9qgp-4844.json
+++ b/advisories/github-reviewed/2022/06/GHSA-3jch-9qgp-4844/GHSA-3jch-9qgp-4844.json
@@ -3,9 +3,7 @@
"id": "GHSA-3jch-9qgp-4844",
"modified": "2022-06-16T23:54:35Z",
"published": "2022-06-16T23:54:35Z",
- "aliases": [
-
- ],
+ "aliases": [],
"summary": "Generated code can read and write out of bounds in safe code",
"details": "Code generated by flatbuffers' compiler is `unsafe` but not marked as such.\nSee https://github.com/google/flatbuffers/issues/6627 for details.\n\nAll users that use generated code by `flatbuffers` compiler are recommended to:\n1. not expose flatbuffer generated code as part of their public APIs\n2. audit their code and look for any usage of `follow`, `push`, or any method that uses them\n (e.g. `self_follow`).\n3. Carefuly go through the crates' documentation to understand which \"safe\" APIs are not\n intended to be used.\n",
"severity": [
@@ -58,9 +56,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "CRITICAL",
"github_reviewed": true,
"github_reviewed_at": "2022-06-16T23:54:35Z",
diff --git a/advisories/github-reviewed/2022/06/GHSA-h588-76vg-prgj/GHSA-h588-76vg-prgj.json b/advisories/github-reviewed/2022/06/GHSA-h588-76vg-prgj/GHSA-h588-76vg-prgj.json
index eb19b9cc048..aed232cdeb5 100644
--- a/advisories/github-reviewed/2022/06/GHSA-h588-76vg-prgj/GHSA-h588-76vg-prgj.json
+++ b/advisories/github-reviewed/2022/06/GHSA-h588-76vg-prgj/GHSA-h588-76vg-prgj.json
@@ -3,14 +3,10 @@
"id": "GHSA-h588-76vg-prgj",
"modified": "2023-02-09T14:20:32Z",
"published": "2022-06-16T23:41:29Z",
- "aliases": [
-
- ],
+ "aliases": [],
"summary": "`DecimalArray` does not perform bound checks on accessing values and offsets",
"details": "`DecimalArray` performs insufficient bounds checks, which allows out-of-bounds reads in safe code if the lenght of the backing buffer is not a multiple of 16.\n",
- "severity": [
-
- ],
+ "severity": [],
"affected": [
{
"package": {
@@ -47,9 +43,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2022-06-16T23:41:29Z",
diff --git a/advisories/github-reviewed/2022/08/GHSA-q2gp-gph3-88x9/GHSA-q2gp-gph3-88x9.json b/advisories/github-reviewed/2022/08/GHSA-q2gp-gph3-88x9/GHSA-q2gp-gph3-88x9.json
index ce0ac1e1320..9b25e361257 100644
--- a/advisories/github-reviewed/2022/08/GHSA-q2gp-gph3-88x9/GHSA-q2gp-gph3-88x9.json
+++ b/advisories/github-reviewed/2022/08/GHSA-q2gp-gph3-88x9/GHSA-q2gp-gph3-88x9.json
@@ -4,9 +4,7 @@
"modified": "2024-01-22T21:11:52Z",
"published": "2022-08-06T00:00:42Z",
"withdrawn": "2022-09-23T16:30:52Z",
- "aliases": [
-
- ],
+ "aliases": [],
"summary": "Keycloak allows arbitrary Javascript to be uploaded for SAML protocol mapper even if UPLOAD_SCRIPTS feature disabled",
"details": "## Duplicate Advisory\nThis advisory has been withdrawn because it is a duplicate of [GHSA-wf7g-7h6h-678v](https://github.com/advisories/GHSA-wf7g-7h6h-678v). This link is maintained to preserve external references.\n\n## Original Description\nAn issue was discovered in Keycloak that allows arbitrary Javascript to be uploaded for the SAML protocol mapper even if the UPLOAD_SCRIPTS feature is disabled.",
"severity": [
@@ -55,9 +53,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2022-08-18T18:53:18Z",
diff --git a/advisories/unreviewed/2021/12/GHSA-ppr5-jp7h-pvxj/GHSA-ppr5-jp7h-pvxj.json b/advisories/unreviewed/2021/12/GHSA-ppr5-jp7h-pvxj/GHSA-ppr5-jp7h-pvxj.json
index 9c07fbb9b0b..0d3825a9c7b 100644
--- a/advisories/unreviewed/2021/12/GHSA-ppr5-jp7h-pvxj/GHSA-ppr5-jp7h-pvxj.json
+++ b/advisories/unreviewed/2021/12/GHSA-ppr5-jp7h-pvxj/GHSA-ppr5-jp7h-pvxj.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/02/GHSA-2qvp-rvcr-w38g/GHSA-2qvp-rvcr-w38g.json b/advisories/unreviewed/2022/02/GHSA-2qvp-rvcr-w38g/GHSA-2qvp-rvcr-w38g.json
index 0d1c0388ea9..e7c01762c95 100644
--- a/advisories/unreviewed/2022/02/GHSA-2qvp-rvcr-w38g/GHSA-2qvp-rvcr-w38g.json
+++ b/advisories/unreviewed/2022/02/GHSA-2qvp-rvcr-w38g/GHSA-2qvp-rvcr-w38g.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/02/GHSA-78gw-5p6w-hw23/GHSA-78gw-5p6w-hw23.json b/advisories/unreviewed/2022/02/GHSA-78gw-5p6w-hw23/GHSA-78gw-5p6w-hw23.json
index ceee0dcc36f..7b4e303869e 100644
--- a/advisories/unreviewed/2022/02/GHSA-78gw-5p6w-hw23/GHSA-78gw-5p6w-hw23.json
+++ b/advisories/unreviewed/2022/02/GHSA-78gw-5p6w-hw23/GHSA-78gw-5p6w-hw23.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",
@@ -47,9 +45,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/02/GHSA-79p4-h482-w752/GHSA-79p4-h482-w752.json b/advisories/unreviewed/2022/02/GHSA-79p4-h482-w752/GHSA-79p4-h482-w752.json
index d14e01099c7..18cdc8625a0 100644
--- a/advisories/unreviewed/2022/02/GHSA-79p4-h482-w752/GHSA-79p4-h482-w752.json
+++ b/advisories/unreviewed/2022/02/GHSA-79p4-h482-w752/GHSA-79p4-h482-w752.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/02/GHSA-cjp9-fpg3-7wj6/GHSA-cjp9-fpg3-7wj6.json b/advisories/unreviewed/2022/02/GHSA-cjp9-fpg3-7wj6/GHSA-cjp9-fpg3-7wj6.json
index 201135eb0d0..73a930f2ec2 100644
--- a/advisories/unreviewed/2022/02/GHSA-cjp9-fpg3-7wj6/GHSA-cjp9-fpg3-7wj6.json
+++ b/advisories/unreviewed/2022/02/GHSA-cjp9-fpg3-7wj6/GHSA-cjp9-fpg3-7wj6.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",
@@ -47,9 +45,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/02/GHSA-crw7-qg66-gv9w/GHSA-crw7-qg66-gv9w.json b/advisories/unreviewed/2022/02/GHSA-crw7-qg66-gv9w/GHSA-crw7-qg66-gv9w.json
index 9ada028907c..52753d727b9 100644
--- a/advisories/unreviewed/2022/02/GHSA-crw7-qg66-gv9w/GHSA-crw7-qg66-gv9w.json
+++ b/advisories/unreviewed/2022/02/GHSA-crw7-qg66-gv9w/GHSA-crw7-qg66-gv9w.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",
@@ -47,9 +45,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/02/GHSA-g272-mw8v-rcqj/GHSA-g272-mw8v-rcqj.json b/advisories/unreviewed/2022/02/GHSA-g272-mw8v-rcqj/GHSA-g272-mw8v-rcqj.json
index e34ebff034f..9eb79ac863b 100644
--- a/advisories/unreviewed/2022/02/GHSA-g272-mw8v-rcqj/GHSA-g272-mw8v-rcqj.json
+++ b/advisories/unreviewed/2022/02/GHSA-g272-mw8v-rcqj/GHSA-g272-mw8v-rcqj.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",
@@ -47,9 +45,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/02/GHSA-m2jc-h86g-63rm/GHSA-m2jc-h86g-63rm.json b/advisories/unreviewed/2022/02/GHSA-m2jc-h86g-63rm/GHSA-m2jc-h86g-63rm.json
index ac6a6548335..02114e00cb9 100644
--- a/advisories/unreviewed/2022/02/GHSA-m2jc-h86g-63rm/GHSA-m2jc-h86g-63rm.json
+++ b/advisories/unreviewed/2022/02/GHSA-m2jc-h86g-63rm/GHSA-m2jc-h86g-63rm.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",
@@ -47,9 +45,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/02/GHSA-rjph-cvj3-vf23/GHSA-rjph-cvj3-vf23.json b/advisories/unreviewed/2022/02/GHSA-rjph-cvj3-vf23/GHSA-rjph-cvj3-vf23.json
index 5583b22f425..af37b0ad280 100644
--- a/advisories/unreviewed/2022/02/GHSA-rjph-cvj3-vf23/GHSA-rjph-cvj3-vf23.json
+++ b/advisories/unreviewed/2022/02/GHSA-rjph-cvj3-vf23/GHSA-rjph-cvj3-vf23.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",
@@ -47,9 +45,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/02/GHSA-w84w-x3w7-4xp3/GHSA-w84w-x3w7-4xp3.json b/advisories/unreviewed/2022/02/GHSA-w84w-x3w7-4xp3/GHSA-w84w-x3w7-4xp3.json
index d34e583e179..596fc4b76da 100644
--- a/advisories/unreviewed/2022/02/GHSA-w84w-x3w7-4xp3/GHSA-w84w-x3w7-4xp3.json
+++ b/advisories/unreviewed/2022/02/GHSA-w84w-x3w7-4xp3/GHSA-w84w-x3w7-4xp3.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",
@@ -47,9 +45,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/02/GHSA-xhjw-g8c5-5cf5/GHSA-xhjw-g8c5-5cf5.json b/advisories/unreviewed/2022/02/GHSA-xhjw-g8c5-5cf5/GHSA-xhjw-g8c5-5cf5.json
index d6c105c591a..3b3019436b8 100644
--- a/advisories/unreviewed/2022/02/GHSA-xhjw-g8c5-5cf5/GHSA-xhjw-g8c5-5cf5.json
+++ b/advisories/unreviewed/2022/02/GHSA-xhjw-g8c5-5cf5/GHSA-xhjw-g8c5-5cf5.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -71,9 +69,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/02/GHSA-xwxc-rh9r-2448/GHSA-xwxc-rh9r-2448.json b/advisories/unreviewed/2022/02/GHSA-xwxc-rh9r-2448/GHSA-xwxc-rh9r-2448.json
index 63451af4460..bf59538c96e 100644
--- a/advisories/unreviewed/2022/02/GHSA-xwxc-rh9r-2448/GHSA-xwxc-rh9r-2448.json
+++ b/advisories/unreviewed/2022/02/GHSA-xwxc-rh9r-2448/GHSA-xwxc-rh9r-2448.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",
@@ -55,9 +53,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-222x-p874-5j5q/GHSA-222x-p874-5j5q.json b/advisories/unreviewed/2022/04/GHSA-222x-p874-5j5q/GHSA-222x-p874-5j5q.json
index a45607fa0bc..20eb075cdb2 100644
--- a/advisories/unreviewed/2022/04/GHSA-222x-p874-5j5q/GHSA-222x-p874-5j5q.json
+++ b/advisories/unreviewed/2022/04/GHSA-222x-p874-5j5q/GHSA-222x-p874-5j5q.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-23gf-hmcg-fp4m/GHSA-23gf-hmcg-fp4m.json b/advisories/unreviewed/2022/04/GHSA-23gf-hmcg-fp4m/GHSA-23gf-hmcg-fp4m.json
index c9b55abee91..a9ae6cc559b 100644
--- a/advisories/unreviewed/2022/04/GHSA-23gf-hmcg-fp4m/GHSA-23gf-hmcg-fp4m.json
+++ b/advisories/unreviewed/2022/04/GHSA-23gf-hmcg-fp4m/GHSA-23gf-hmcg-fp4m.json
@@ -7,12 +7,8 @@
"CVE-2009-5048"
],
"details": "Cookie Dump Servlet stored XSS vulnerability in jetty though 6.1.20.",
- "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/04/GHSA-23rx-gwwc-2hq5/GHSA-23rx-gwwc-2hq5.json b/advisories/unreviewed/2022/04/GHSA-23rx-gwwc-2hq5/GHSA-23rx-gwwc-2hq5.json
index 6fa9521300d..a153c9db30f 100644
--- a/advisories/unreviewed/2022/04/GHSA-23rx-gwwc-2hq5/GHSA-23rx-gwwc-2hq5.json
+++ b/advisories/unreviewed/2022/04/GHSA-23rx-gwwc-2hq5/GHSA-23rx-gwwc-2hq5.json
@@ -7,12 +7,8 @@
"CVE-2012-3824"
],
"details": "In Arial Campaign Enterprise before 11.0.551, multiple pages are accessible without authentication or authorization.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-29h4-m8qc-28hv/GHSA-29h4-m8qc-28hv.json b/advisories/unreviewed/2022/04/GHSA-29h4-m8qc-28hv/GHSA-29h4-m8qc-28hv.json
index 9ba1bcc9c1a..9dd696736e7 100644
--- a/advisories/unreviewed/2022/04/GHSA-29h4-m8qc-28hv/GHSA-29h4-m8qc-28hv.json
+++ b/advisories/unreviewed/2022/04/GHSA-29h4-m8qc-28hv/GHSA-29h4-m8qc-28hv.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-2c6h-pxj7-q4fg/GHSA-2c6h-pxj7-q4fg.json b/advisories/unreviewed/2022/04/GHSA-2c6h-pxj7-q4fg/GHSA-2c6h-pxj7-q4fg.json
index 1fc3469df6c..08c0cdecb69 100644
--- a/advisories/unreviewed/2022/04/GHSA-2c6h-pxj7-q4fg/GHSA-2c6h-pxj7-q4fg.json
+++ b/advisories/unreviewed/2022/04/GHSA-2c6h-pxj7-q4fg/GHSA-2c6h-pxj7-q4fg.json
@@ -7,12 +7,8 @@
"CVE-2011-3183"
],
"details": "A Cross-Site Scripting (XSS) vulnerability exists in the rcID parameter in Concrete CMS 5.4.1.1 and earlier.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-2c6x-m49v-xr55/GHSA-2c6x-m49v-xr55.json b/advisories/unreviewed/2022/04/GHSA-2c6x-m49v-xr55/GHSA-2c6x-m49v-xr55.json
index 2e1156a7e6b..0a5bf3c67bf 100644
--- a/advisories/unreviewed/2022/04/GHSA-2c6x-m49v-xr55/GHSA-2c6x-m49v-xr55.json
+++ b/advisories/unreviewed/2022/04/GHSA-2c6x-m49v-xr55/GHSA-2c6x-m49v-xr55.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-2crh-j3fx-xcfh/GHSA-2crh-j3fx-xcfh.json b/advisories/unreviewed/2022/04/GHSA-2crh-j3fx-xcfh/GHSA-2crh-j3fx-xcfh.json
index dbe25b04860..9b432e23af0 100644
--- a/advisories/unreviewed/2022/04/GHSA-2crh-j3fx-xcfh/GHSA-2crh-j3fx-xcfh.json
+++ b/advisories/unreviewed/2022/04/GHSA-2crh-j3fx-xcfh/GHSA-2crh-j3fx-xcfh.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-2cvc-p4v7-3gpx/GHSA-2cvc-p4v7-3gpx.json b/advisories/unreviewed/2022/04/GHSA-2cvc-p4v7-3gpx/GHSA-2cvc-p4v7-3gpx.json
index bf8d7321def..25bb7b8f2ad 100644
--- a/advisories/unreviewed/2022/04/GHSA-2cvc-p4v7-3gpx/GHSA-2cvc-p4v7-3gpx.json
+++ b/advisories/unreviewed/2022/04/GHSA-2cvc-p4v7-3gpx/GHSA-2cvc-p4v7-3gpx.json
@@ -7,12 +7,8 @@
"CVE-2011-4908"
],
"details": "TinyBrowser plugin for Joomla! before 1.5.13 allows arbitrary file upload via upload.php.",
- "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/04/GHSA-2g3v-5cpr-rx7q/GHSA-2g3v-5cpr-rx7q.json b/advisories/unreviewed/2022/04/GHSA-2g3v-5cpr-rx7q/GHSA-2g3v-5cpr-rx7q.json
index 1f402e5e44a..10d38c4f301 100644
--- a/advisories/unreviewed/2022/04/GHSA-2g3v-5cpr-rx7q/GHSA-2g3v-5cpr-rx7q.json
+++ b/advisories/unreviewed/2022/04/GHSA-2g3v-5cpr-rx7q/GHSA-2g3v-5cpr-rx7q.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-2gmr-2pr2-53jf/GHSA-2gmr-2pr2-53jf.json b/advisories/unreviewed/2022/04/GHSA-2gmr-2pr2-53jf/GHSA-2gmr-2pr2-53jf.json
index 8f73eb8bc0a..e26e66e378a 100644
--- a/advisories/unreviewed/2022/04/GHSA-2gmr-2pr2-53jf/GHSA-2gmr-2pr2-53jf.json
+++ b/advisories/unreviewed/2022/04/GHSA-2gmr-2pr2-53jf/GHSA-2gmr-2pr2-53jf.json
@@ -7,12 +7,8 @@
"CVE-2012-4980"
],
"details": "Multiple stack-based buffer overflows in CFProfile.exe in Toshiba ConfigFree Utility 8.0.38 allow user-assisted attackers to execute arbitrary code.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-2j4c-pqxj-mfqh/GHSA-2j4c-pqxj-mfqh.json b/advisories/unreviewed/2022/04/GHSA-2j4c-pqxj-mfqh/GHSA-2j4c-pqxj-mfqh.json
index 00b83748a92..39d7100eee2 100644
--- a/advisories/unreviewed/2022/04/GHSA-2j4c-pqxj-mfqh/GHSA-2j4c-pqxj-mfqh.json
+++ b/advisories/unreviewed/2022/04/GHSA-2j4c-pqxj-mfqh/GHSA-2j4c-pqxj-mfqh.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-2jff-xpp2-45x2/GHSA-2jff-xpp2-45x2.json b/advisories/unreviewed/2022/04/GHSA-2jff-xpp2-45x2/GHSA-2jff-xpp2-45x2.json
index 44a7986a401..e617309cbca 100644
--- a/advisories/unreviewed/2022/04/GHSA-2jff-xpp2-45x2/GHSA-2jff-xpp2-45x2.json
+++ b/advisories/unreviewed/2022/04/GHSA-2jff-xpp2-45x2/GHSA-2jff-xpp2-45x2.json
@@ -7,12 +7,8 @@
"CVE-2010-3844"
],
"details": "An unchecked sscanf() call in ettercap 0.7.3 allows an insecure temporary settings file to overflow a static-sized buffer on the stack.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-2mgm-x4fm-vrg8/GHSA-2mgm-x4fm-vrg8.json b/advisories/unreviewed/2022/04/GHSA-2mgm-x4fm-vrg8/GHSA-2mgm-x4fm-vrg8.json
index 3f6d1e56a2e..2e8ac593041 100644
--- a/advisories/unreviewed/2022/04/GHSA-2mgm-x4fm-vrg8/GHSA-2mgm-x4fm-vrg8.json
+++ b/advisories/unreviewed/2022/04/GHSA-2mgm-x4fm-vrg8/GHSA-2mgm-x4fm-vrg8.json
@@ -7,12 +7,8 @@
"CVE-2011-4117"
],
"details": "The Batch::BatchRun module 1.03 for Perl does not properly handle temporary files.",
- "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/04/GHSA-2q9g-c5jx-82x3/GHSA-2q9g-c5jx-82x3.json b/advisories/unreviewed/2022/04/GHSA-2q9g-c5jx-82x3/GHSA-2q9g-c5jx-82x3.json
index 652b12b34f4..dc3360eb37c 100644
--- a/advisories/unreviewed/2022/04/GHSA-2q9g-c5jx-82x3/GHSA-2q9g-c5jx-82x3.json
+++ b/advisories/unreviewed/2022/04/GHSA-2q9g-c5jx-82x3/GHSA-2q9g-c5jx-82x3.json
@@ -7,12 +7,8 @@
"CVE-2009-5049"
],
"details": "WebApp JSP Snoop page XSS in jetty though 6.1.21.",
- "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/04/GHSA-2qp5-wv2r-fqw5/GHSA-2qp5-wv2r-fqw5.json b/advisories/unreviewed/2022/04/GHSA-2qp5-wv2r-fqw5/GHSA-2qp5-wv2r-fqw5.json
index 721c5e89b56..e79b9cf4710 100644
--- a/advisories/unreviewed/2022/04/GHSA-2qp5-wv2r-fqw5/GHSA-2qp5-wv2r-fqw5.json
+++ b/advisories/unreviewed/2022/04/GHSA-2qp5-wv2r-fqw5/GHSA-2qp5-wv2r-fqw5.json
@@ -7,12 +7,8 @@
"CVE-2011-1517"
],
"details": "SAP NetWeaver 7.0 allows Remote Code Execution and Denial of Service caused by an error in the DiagTraceHex() function. By sending a specially-crafted packet, an attacker could exploit this vulnerability to cause the application to crash.",
- "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/04/GHSA-2qr8-v7fq-qr4p/GHSA-2qr8-v7fq-qr4p.json b/advisories/unreviewed/2022/04/GHSA-2qr8-v7fq-qr4p/GHSA-2qr8-v7fq-qr4p.json
index d8545baf1a0..585b18fe281 100644
--- a/advisories/unreviewed/2022/04/GHSA-2qr8-v7fq-qr4p/GHSA-2qr8-v7fq-qr4p.json
+++ b/advisories/unreviewed/2022/04/GHSA-2qr8-v7fq-qr4p/GHSA-2qr8-v7fq-qr4p.json
@@ -7,12 +7,8 @@
"CVE-2009-3721"
],
"details": "Multiple directory traversal and buffer overflow vulnerabilities were discovered in yTNEF, and in Evolution's TNEF parser that is derived from yTNEF. A crafted email could cause these applications to write data in arbitrary locations on the filesystem, crash, or potentially execute arbitrary code when decoding attachments.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-2r3v-gf92-6qm3/GHSA-2r3v-gf92-6qm3.json b/advisories/unreviewed/2022/04/GHSA-2r3v-gf92-6qm3/GHSA-2r3v-gf92-6qm3.json
index 5fdcbbd1701..9ac169a175d 100644
--- a/advisories/unreviewed/2022/04/GHSA-2r3v-gf92-6qm3/GHSA-2r3v-gf92-6qm3.json
+++ b/advisories/unreviewed/2022/04/GHSA-2r3v-gf92-6qm3/GHSA-2r3v-gf92-6qm3.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:A/AC:H/PR:H/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": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-2w6f-x8pj-5vcm/GHSA-2w6f-x8pj-5vcm.json b/advisories/unreviewed/2022/04/GHSA-2w6f-x8pj-5vcm/GHSA-2w6f-x8pj-5vcm.json
index 8f165b30c65..0c80996f746 100644
--- a/advisories/unreviewed/2022/04/GHSA-2w6f-x8pj-5vcm/GHSA-2w6f-x8pj-5vcm.json
+++ b/advisories/unreviewed/2022/04/GHSA-2w6f-x8pj-5vcm/GHSA-2w6f-x8pj-5vcm.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-2w85-hj5c-563j/GHSA-2w85-hj5c-563j.json b/advisories/unreviewed/2022/04/GHSA-2w85-hj5c-563j/GHSA-2w85-hj5c-563j.json
index 9ec5280132f..1b2d1f4c3a3 100644
--- a/advisories/unreviewed/2022/04/GHSA-2w85-hj5c-563j/GHSA-2w85-hj5c-563j.json
+++ b/advisories/unreviewed/2022/04/GHSA-2w85-hj5c-563j/GHSA-2w85-hj5c-563j.json
@@ -7,12 +7,8 @@
"CVE-2010-3843"
],
"details": "The gtkui_conf_read function in src/interfaces/gtk/ec_gtk_conf.c in Ettercap 0.7.3, when the GTK interface is used, does not ensure that the contents of the .ettercap_gtk file are controlled by the root user, which allows local users to conduct stack-based buffer overflow attacks and possibly execute arbitrary code, cause a denial of service (memory consumption), or possibly have unspecified other impact via crafted lines in this file.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-326f-6cm4-523j/GHSA-326f-6cm4-523j.json b/advisories/unreviewed/2022/04/GHSA-326f-6cm4-523j/GHSA-326f-6cm4-523j.json
index b48adbb4269..fcfa8fea371 100644
--- a/advisories/unreviewed/2022/04/GHSA-326f-6cm4-523j/GHSA-326f-6cm4-523j.json
+++ b/advisories/unreviewed/2022/04/GHSA-326f-6cm4-523j/GHSA-326f-6cm4-523j.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-33qp-rrww-3f5q/GHSA-33qp-rrww-3f5q.json b/advisories/unreviewed/2022/04/GHSA-33qp-rrww-3f5q/GHSA-33qp-rrww-3f5q.json
index 7dee319c4f3..9f95b17cce0 100644
--- a/advisories/unreviewed/2022/04/GHSA-33qp-rrww-3f5q/GHSA-33qp-rrww-3f5q.json
+++ b/advisories/unreviewed/2022/04/GHSA-33qp-rrww-3f5q/GHSA-33qp-rrww-3f5q.json
@@ -7,12 +7,8 @@
"CVE-2011-2936"
],
"details": "Elgg through 1.7.10 has a SQL injection vulnerability",
- "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/04/GHSA-366c-cfp4-w5fc/GHSA-366c-cfp4-w5fc.json b/advisories/unreviewed/2022/04/GHSA-366c-cfp4-w5fc/GHSA-366c-cfp4-w5fc.json
index 9ab73935568..a23e3bf8047 100644
--- a/advisories/unreviewed/2022/04/GHSA-366c-cfp4-w5fc/GHSA-366c-cfp4-w5fc.json
+++ b/advisories/unreviewed/2022/04/GHSA-366c-cfp4-w5fc/GHSA-366c-cfp4-w5fc.json
@@ -7,12 +7,8 @@
"CVE-2010-4654"
],
"details": "poppler before 0.16.3 has malformed commands that may cause corruption of the internal stack.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-37cr-2c4w-r77x/GHSA-37cr-2c4w-r77x.json b/advisories/unreviewed/2022/04/GHSA-37cr-2c4w-r77x/GHSA-37cr-2c4w-r77x.json
index 5d16b3ce9e0..f996d6302e0 100644
--- a/advisories/unreviewed/2022/04/GHSA-37cr-2c4w-r77x/GHSA-37cr-2c4w-r77x.json
+++ b/advisories/unreviewed/2022/04/GHSA-37cr-2c4w-r77x/GHSA-37cr-2c4w-r77x.json
@@ -7,12 +7,8 @@
"CVE-2011-2863"
],
"details": "Insufficient policy enforcement in V8 in Google Chrome prior to 14.0.0.0 allowed a remote attacker to obtain potentially sensitive information from process memory via a crafted HTML page.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-3884-6vq4-8grw/GHSA-3884-6vq4-8grw.json b/advisories/unreviewed/2022/04/GHSA-3884-6vq4-8grw/GHSA-3884-6vq4-8grw.json
index 2eac0f485d1..f26adf070bb 100644
--- a/advisories/unreviewed/2022/04/GHSA-3884-6vq4-8grw/GHSA-3884-6vq4-8grw.json
+++ b/advisories/unreviewed/2022/04/GHSA-3884-6vq4-8grw/GHSA-3884-6vq4-8grw.json
@@ -7,12 +7,8 @@
"CVE-2011-0544"
],
"details": "phpbb 3.0.x-3.0.6 has an XSS vulnerability via the [flash] BB tag.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-38cm-wqx5-m22m/GHSA-38cm-wqx5-m22m.json b/advisories/unreviewed/2022/04/GHSA-38cm-wqx5-m22m/GHSA-38cm-wqx5-m22m.json
index 557ac888e9b..38a7c8ac562 100644
--- a/advisories/unreviewed/2022/04/GHSA-38cm-wqx5-m22m/GHSA-38cm-wqx5-m22m.json
+++ b/advisories/unreviewed/2022/04/GHSA-38cm-wqx5-m22m/GHSA-38cm-wqx5-m22m.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-39f8-m89f-hv2p/GHSA-39f8-m89f-hv2p.json b/advisories/unreviewed/2022/04/GHSA-39f8-m89f-hv2p/GHSA-39f8-m89f-hv2p.json
index 5fd6b060678..49e9cc10691 100644
--- a/advisories/unreviewed/2022/04/GHSA-39f8-m89f-hv2p/GHSA-39f8-m89f-hv2p.json
+++ b/advisories/unreviewed/2022/04/GHSA-39f8-m89f-hv2p/GHSA-39f8-m89f-hv2p.json
@@ -7,12 +7,8 @@
"CVE-2011-1085"
],
"details": "CSRF vulnerability in Smoothwall Express 3.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-3ccx-q8q7-xf6x/GHSA-3ccx-q8q7-xf6x.json b/advisories/unreviewed/2022/04/GHSA-3ccx-q8q7-xf6x/GHSA-3ccx-q8q7-xf6x.json
index 8aabbcd0425..f69a8ca063b 100644
--- a/advisories/unreviewed/2022/04/GHSA-3ccx-q8q7-xf6x/GHSA-3ccx-q8q7-xf6x.json
+++ b/advisories/unreviewed/2022/04/GHSA-3ccx-q8q7-xf6x/GHSA-3ccx-q8q7-xf6x.json
@@ -7,12 +7,8 @@
"CVE-2011-2337"
],
"details": "A wrong type is used for a return value from strlen in WebKit in Google Chrome before Blink M12 on 64-bit platforms.",
- "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/04/GHSA-3fpv-rr32-pwqw/GHSA-3fpv-rr32-pwqw.json b/advisories/unreviewed/2022/04/GHSA-3fpv-rr32-pwqw/GHSA-3fpv-rr32-pwqw.json
index d91e8f1ebd3..8de0a55f504 100644
--- a/advisories/unreviewed/2022/04/GHSA-3fpv-rr32-pwqw/GHSA-3fpv-rr32-pwqw.json
+++ b/advisories/unreviewed/2022/04/GHSA-3fpv-rr32-pwqw/GHSA-3fpv-rr32-pwqw.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-3g8v-2w9j-wwcx/GHSA-3g8v-2w9j-wwcx.json b/advisories/unreviewed/2022/04/GHSA-3g8v-2w9j-wwcx/GHSA-3g8v-2w9j-wwcx.json
index ca1f0588169..7f8c401c4ee 100644
--- a/advisories/unreviewed/2022/04/GHSA-3g8v-2w9j-wwcx/GHSA-3g8v-2w9j-wwcx.json
+++ b/advisories/unreviewed/2022/04/GHSA-3g8v-2w9j-wwcx/GHSA-3g8v-2w9j-wwcx.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",
@@ -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/04/GHSA-3gw2-26w5-pcm6/GHSA-3gw2-26w5-pcm6.json b/advisories/unreviewed/2022/04/GHSA-3gw2-26w5-pcm6/GHSA-3gw2-26w5-pcm6.json
index f3e5ae36cb4..b043d1f67c8 100644
--- a/advisories/unreviewed/2022/04/GHSA-3gw2-26w5-pcm6/GHSA-3gw2-26w5-pcm6.json
+++ b/advisories/unreviewed/2022/04/GHSA-3gw2-26w5-pcm6/GHSA-3gw2-26w5-pcm6.json
@@ -7,12 +7,8 @@
"CVE-2010-2472"
],
"details": "Locale module and dependent contributed modules in Drupal 6.x before 6.16 and 5.x before version 5.22 do not sanitize the display of language codes, native and English language names properly which could allow an attacker to perform a cross-site scripting (XSS) attack. This vulnerability is mitigated by the fact that an attacker must have a role with the 'administer languages' permission.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-3hgp-xx2v-3v84/GHSA-3hgp-xx2v-3v84.json b/advisories/unreviewed/2022/04/GHSA-3hgp-xx2v-3v84/GHSA-3hgp-xx2v-3v84.json
index 34020214247..a6ae62b669a 100644
--- a/advisories/unreviewed/2022/04/GHSA-3hgp-xx2v-3v84/GHSA-3hgp-xx2v-3v84.json
+++ b/advisories/unreviewed/2022/04/GHSA-3hgp-xx2v-3v84/GHSA-3hgp-xx2v-3v84.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-3j6w-w5q2-q9cm/GHSA-3j6w-w5q2-q9cm.json b/advisories/unreviewed/2022/04/GHSA-3j6w-w5q2-q9cm/GHSA-3j6w-w5q2-q9cm.json
index 93237490fb0..7524e53ca26 100644
--- a/advisories/unreviewed/2022/04/GHSA-3j6w-w5q2-q9cm/GHSA-3j6w-w5q2-q9cm.json
+++ b/advisories/unreviewed/2022/04/GHSA-3j6w-w5q2-q9cm/GHSA-3j6w-w5q2-q9cm.json
@@ -7,12 +7,8 @@
"CVE-2012-2656"
],
"details": "An XML eXternal Entity (XXE) issue exists in Restlet 1.1.10 in an endpoint using XML transport, which lets a remote attacker obtain sensitive information.",
- "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/04/GHSA-3mqv-qj2m-7497/GHSA-3mqv-qj2m-7497.json b/advisories/unreviewed/2022/04/GHSA-3mqv-qj2m-7497/GHSA-3mqv-qj2m-7497.json
index 362ef7fab25..85d98aed7ab 100644
--- a/advisories/unreviewed/2022/04/GHSA-3mqv-qj2m-7497/GHSA-3mqv-qj2m-7497.json
+++ b/advisories/unreviewed/2022/04/GHSA-3mqv-qj2m-7497/GHSA-3mqv-qj2m-7497.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-3php-pxg5-vr69/GHSA-3php-pxg5-vr69.json b/advisories/unreviewed/2022/04/GHSA-3php-pxg5-vr69/GHSA-3php-pxg5-vr69.json
index b9cd4cbdaa4..b661a7c2bcf 100644
--- a/advisories/unreviewed/2022/04/GHSA-3php-pxg5-vr69/GHSA-3php-pxg5-vr69.json
+++ b/advisories/unreviewed/2022/04/GHSA-3php-pxg5-vr69/GHSA-3php-pxg5-vr69.json
@@ -7,12 +7,8 @@
"CVE-2011-1488"
],
"details": "A memory leak in rsyslog before 5.7.6 was found in the way deamon processed log messages are logged when $RepeatedMsgReduction was enabled. A local attacker could use this flaw to cause a denial of the rsyslogd daemon service by crashing the service via a sequence of repeated log messages sent within short periods of time.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-3q47-g28x-g5q5/GHSA-3q47-g28x-g5q5.json b/advisories/unreviewed/2022/04/GHSA-3q47-g28x-g5q5/GHSA-3q47-g28x-g5q5.json
index e9ed6f2fd5a..df71d1e2f60 100644
--- a/advisories/unreviewed/2022/04/GHSA-3q47-g28x-g5q5/GHSA-3q47-g28x-g5q5.json
+++ b/advisories/unreviewed/2022/04/GHSA-3q47-g28x-g5q5/GHSA-3q47-g28x-g5q5.json
@@ -7,12 +7,8 @@
"CVE-2011-4938"
],
"details": "Multiple cross-site scripting (XSS) vulnerabilities in Ariadne 2.7.6 allow remote attackers to inject arbitrary web script or HTML via the PATH_INFO parameter to (1) index.php and (2) loader.php.",
- "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/04/GHSA-3q7m-4q8x-8gvg/GHSA-3q7m-4q8x-8gvg.json b/advisories/unreviewed/2022/04/GHSA-3q7m-4q8x-8gvg/GHSA-3q7m-4q8x-8gvg.json
index 40dfcf026c6..bded6b817e0 100644
--- a/advisories/unreviewed/2022/04/GHSA-3q7m-4q8x-8gvg/GHSA-3q7m-4q8x-8gvg.json
+++ b/advisories/unreviewed/2022/04/GHSA-3q7m-4q8x-8gvg/GHSA-3q7m-4q8x-8gvg.json
@@ -7,12 +7,8 @@
"CVE-2012-5618"
],
"details": "Ushahidi before 2.6.1 has insufficient entropy for forgot-password tokens.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-3qrx-qhm6-g35c/GHSA-3qrx-qhm6-g35c.json b/advisories/unreviewed/2022/04/GHSA-3qrx-qhm6-g35c/GHSA-3qrx-qhm6-g35c.json
index 11825e8137e..b0655ea0756 100644
--- a/advisories/unreviewed/2022/04/GHSA-3qrx-qhm6-g35c/GHSA-3qrx-qhm6-g35c.json
+++ b/advisories/unreviewed/2022/04/GHSA-3qrx-qhm6-g35c/GHSA-3qrx-qhm6-g35c.json
@@ -7,12 +7,8 @@
"CVE-2009-3614"
],
"details": "liboping 1.3.2 allows users reading arbitrary files upon the local system.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-3qxr-q72q-hmwp/GHSA-3qxr-q72q-hmwp.json b/advisories/unreviewed/2022/04/GHSA-3qxr-q72q-hmwp/GHSA-3qxr-q72q-hmwp.json
index 79f0aeb7a05..a6aec21dfa6 100644
--- a/advisories/unreviewed/2022/04/GHSA-3qxr-q72q-hmwp/GHSA-3qxr-q72q-hmwp.json
+++ b/advisories/unreviewed/2022/04/GHSA-3qxr-q72q-hmwp/GHSA-3qxr-q72q-hmwp.json
@@ -7,12 +7,8 @@
"CVE-2012-4441"
],
"details": "Cross-site Scripting (XSS) in Jenkins main before 1.482 and LTS before 1.466.2 allows remote attackers to inject arbitrary web script or HTML in the CI game plugin.",
- "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/04/GHSA-3rph-pvh6-rj33/GHSA-3rph-pvh6-rj33.json b/advisories/unreviewed/2022/04/GHSA-3rph-pvh6-rj33/GHSA-3rph-pvh6-rj33.json
index de7c8697dba..45753bf52c3 100644
--- a/advisories/unreviewed/2022/04/GHSA-3rph-pvh6-rj33/GHSA-3rph-pvh6-rj33.json
+++ b/advisories/unreviewed/2022/04/GHSA-3rph-pvh6-rj33/GHSA-3rph-pvh6-rj33.json
@@ -7,12 +7,8 @@
"CVE-2012-4451"
],
"details": "Multiple cross-site scripting (XSS) vulnerabilities in Zend Framework 2.0.x before 2.0.1 allow remote attackers to inject arbitrary web script or HTML via unspecified input to (1) Debug, (2) Feed\\PubSubHubbub, (3) Log\\Formatter\\Xml, (4) Tag\\Cloud\\Decorator, (5) Uri, (6) View\\Helper\\HeadStyle, (7) View\\Helper\\Navigation\\Sitemap, or (8) View\\Helper\\Placeholder\\Container\\AbstractStandalone, related to Escaper.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -52,9 +48,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-3v66-h3rq-pj5p/GHSA-3v66-h3rq-pj5p.json b/advisories/unreviewed/2022/04/GHSA-3v66-h3rq-pj5p/GHSA-3v66-h3rq-pj5p.json
index be8b50b968a..ae75d125895 100644
--- a/advisories/unreviewed/2022/04/GHSA-3v66-h3rq-pj5p/GHSA-3v66-h3rq-pj5p.json
+++ b/advisories/unreviewed/2022/04/GHSA-3v66-h3rq-pj5p/GHSA-3v66-h3rq-pj5p.json
@@ -7,12 +7,8 @@
"CVE-2010-2471"
],
"details": "drupal6 version 6.16 has open redirection",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-3w4p-hjjh-fjwg/GHSA-3w4p-hjjh-fjwg.json b/advisories/unreviewed/2022/04/GHSA-3w4p-hjjh-fjwg/GHSA-3w4p-hjjh-fjwg.json
index 6a2d17664a8..d70eec3ce6d 100644
--- a/advisories/unreviewed/2022/04/GHSA-3w4p-hjjh-fjwg/GHSA-3w4p-hjjh-fjwg.json
+++ b/advisories/unreviewed/2022/04/GHSA-3w4p-hjjh-fjwg/GHSA-3w4p-hjjh-fjwg.json
@@ -7,12 +7,8 @@
"CVE-2008-7272"
],
"details": "FireGPG before 0.6 handle user?s passphrase and decrypted cleartext insecurely by writing pre-encrypted cleartext and the user's passphrase to disk which may result in the compromise of secure communication or a users?s private key.",
- "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/04/GHSA-3wr4-44h7-86g3/GHSA-3wr4-44h7-86g3.json b/advisories/unreviewed/2022/04/GHSA-3wr4-44h7-86g3/GHSA-3wr4-44h7-86g3.json
index c197bf3ddd9..88e8c3f14ca 100644
--- a/advisories/unreviewed/2022/04/GHSA-3wr4-44h7-86g3/GHSA-3wr4-44h7-86g3.json
+++ b/advisories/unreviewed/2022/04/GHSA-3wr4-44h7-86g3/GHSA-3wr4-44h7-86g3.json
@@ -7,12 +7,8 @@
"CVE-2012-5698"
],
"details": "BabyGekko before 1.2.4 has SQL injection.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-3ww3-8fh8-5jcc/GHSA-3ww3-8fh8-5jcc.json b/advisories/unreviewed/2022/04/GHSA-3ww3-8fh8-5jcc/GHSA-3ww3-8fh8-5jcc.json
index 263d9f26d92..56c70a86cb4 100644
--- a/advisories/unreviewed/2022/04/GHSA-3ww3-8fh8-5jcc/GHSA-3ww3-8fh8-5jcc.json
+++ b/advisories/unreviewed/2022/04/GHSA-3ww3-8fh8-5jcc/GHSA-3ww3-8fh8-5jcc.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:A/AC:H/PR:H/UI:R/S:U/C:L/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-44jh-wjf8-4jgx/GHSA-44jh-wjf8-4jgx.json b/advisories/unreviewed/2022/04/GHSA-44jh-wjf8-4jgx/GHSA-44jh-wjf8-4jgx.json
index 2a27024bbb6..7ad9582a2af 100644
--- a/advisories/unreviewed/2022/04/GHSA-44jh-wjf8-4jgx/GHSA-44jh-wjf8-4jgx.json
+++ b/advisories/unreviewed/2022/04/GHSA-44jh-wjf8-4jgx/GHSA-44jh-wjf8-4jgx.json
@@ -7,12 +7,8 @@
"CVE-2011-2480"
],
"details": "Information Disclosure vulnerability in the 802.11 stack, as used in FreeBSD before 8.2 and NetBSD when using certain non-x86 architectures. A signedness error in the IEEE80211_IOC_CHANINFO ioctl allows a local unprivileged user to cause the kernel to copy large amounts of kernel memory back to the user, disclosing potentially sensitive information.",
- "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/04/GHSA-44pr-cm9p-mffx/GHSA-44pr-cm9p-mffx.json b/advisories/unreviewed/2022/04/GHSA-44pr-cm9p-mffx/GHSA-44pr-cm9p-mffx.json
index 0bf0a35dad0..c18af3a0dd6 100644
--- a/advisories/unreviewed/2022/04/GHSA-44pr-cm9p-mffx/GHSA-44pr-cm9p-mffx.json
+++ b/advisories/unreviewed/2022/04/GHSA-44pr-cm9p-mffx/GHSA-44pr-cm9p-mffx.json
@@ -7,12 +7,8 @@
"CVE-2010-0747"
],
"details": "drbd8 allows local users to bypass intended restrictions for certain actions via netlink packets, similar to CVE-2009-3725.",
- "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/04/GHSA-45m9-hq68-rm3f/GHSA-45m9-hq68-rm3f.json b/advisories/unreviewed/2022/04/GHSA-45m9-hq68-rm3f/GHSA-45m9-hq68-rm3f.json
index d99e1321ffe..30c7305bac2 100644
--- a/advisories/unreviewed/2022/04/GHSA-45m9-hq68-rm3f/GHSA-45m9-hq68-rm3f.json
+++ b/advisories/unreviewed/2022/04/GHSA-45m9-hq68-rm3f/GHSA-45m9-hq68-rm3f.json
@@ -7,12 +7,8 @@
"CVE-2012-2931"
],
"details": "PHP code injection in TinyWebGallery before 1.8.8 allows remote authenticated users with admin privileges to inject arbitrary code into the .htusers.php file.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-4643-vgh5-4r2c/GHSA-4643-vgh5-4r2c.json b/advisories/unreviewed/2022/04/GHSA-4643-vgh5-4r2c/GHSA-4643-vgh5-4r2c.json
index 5f44f0a3f67..2e0bd8d28be 100644
--- a/advisories/unreviewed/2022/04/GHSA-4643-vgh5-4r2c/GHSA-4643-vgh5-4r2c.json
+++ b/advisories/unreviewed/2022/04/GHSA-4643-vgh5-4r2c/GHSA-4643-vgh5-4r2c.json
@@ -7,12 +7,8 @@
"CVE-2010-2496"
],
"details": "stonith-ng in pacemaker and cluster-glue passed passwords as commandline parameters, making it possible for local attackers to gain access to passwords of the HA stack and potentially influence its operations. This is fixed in cluster-glue 1.0.6 and newer, and pacemaker 1.1.3 and newer.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-473p-3w6p-6xp8/GHSA-473p-3w6p-6xp8.json b/advisories/unreviewed/2022/04/GHSA-473p-3w6p-6xp8/GHSA-473p-3w6p-6xp8.json
index c4815159836..fd5cbae8248 100644
--- a/advisories/unreviewed/2022/04/GHSA-473p-3w6p-6xp8/GHSA-473p-3w6p-6xp8.json
+++ b/advisories/unreviewed/2022/04/GHSA-473p-3w6p-6xp8/GHSA-473p-3w6p-6xp8.json
@@ -7,12 +7,8 @@
"CVE-2012-4385"
],
"details": "letodms 3.3.6 has CSRF via change password",
- "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/04/GHSA-4873-hf88-x635/GHSA-4873-hf88-x635.json b/advisories/unreviewed/2022/04/GHSA-4873-hf88-x635/GHSA-4873-hf88-x635.json
index b7e694816a2..a443f8cdc29 100644
--- a/advisories/unreviewed/2022/04/GHSA-4873-hf88-x635/GHSA-4873-hf88-x635.json
+++ b/advisories/unreviewed/2022/04/GHSA-4873-hf88-x635/GHSA-4873-hf88-x635.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-49xg-cc77-587h/GHSA-49xg-cc77-587h.json b/advisories/unreviewed/2022/04/GHSA-49xg-cc77-587h/GHSA-49xg-cc77-587h.json
index eeed1047b52..445ac3deb53 100644
--- a/advisories/unreviewed/2022/04/GHSA-49xg-cc77-587h/GHSA-49xg-cc77-587h.json
+++ b/advisories/unreviewed/2022/04/GHSA-49xg-cc77-587h/GHSA-49xg-cc77-587h.json
@@ -7,12 +7,8 @@
"CVE-2012-3808"
],
"details": "Samsung Kies before 2.5.0.12094_27_11 has arbitrary file modification.",
- "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/04/GHSA-4c5q-v3gj-45mr/GHSA-4c5q-v3gj-45mr.json b/advisories/unreviewed/2022/04/GHSA-4c5q-v3gj-45mr/GHSA-4c5q-v3gj-45mr.json
index 21020bb8522..ff7ec61dce9 100644
--- a/advisories/unreviewed/2022/04/GHSA-4c5q-v3gj-45mr/GHSA-4c5q-v3gj-45mr.json
+++ b/advisories/unreviewed/2022/04/GHSA-4c5q-v3gj-45mr/GHSA-4c5q-v3gj-45mr.json
@@ -7,12 +7,8 @@
"CVE-2012-6083"
],
"details": "Freeciv before 2.3.3 allows remote attackers to cause a denial of service via a crafted packet.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-4g42-x277-3hhc/GHSA-4g42-x277-3hhc.json b/advisories/unreviewed/2022/04/GHSA-4g42-x277-3hhc/GHSA-4g42-x277-3hhc.json
index 3dccf84f1b3..e82be9294bd 100644
--- a/advisories/unreviewed/2022/04/GHSA-4g42-x277-3hhc/GHSA-4g42-x277-3hhc.json
+++ b/advisories/unreviewed/2022/04/GHSA-4g42-x277-3hhc/GHSA-4g42-x277-3hhc.json
@@ -7,12 +7,8 @@
"CVE-2011-2706"
],
"details": "A Cross-Site Scripting (XSS) vulnerability exists in the reorder administrator functions in sNews 1.71.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-4hrr-7cq5-fj96/GHSA-4hrr-7cq5-fj96.json b/advisories/unreviewed/2022/04/GHSA-4hrr-7cq5-fj96/GHSA-4hrr-7cq5-fj96.json
index e26820c4725..70bba501d02 100644
--- a/advisories/unreviewed/2022/04/GHSA-4hrr-7cq5-fj96/GHSA-4hrr-7cq5-fj96.json
+++ b/advisories/unreviewed/2022/04/GHSA-4hrr-7cq5-fj96/GHSA-4hrr-7cq5-fj96.json
@@ -7,12 +7,8 @@
"CVE-2012-6136"
],
"details": "tuned 2.10.0 creates its PID file with insecure permissions which allows local users to kill arbitrary processes.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-4hxv-57v2-52jp/GHSA-4hxv-57v2-52jp.json b/advisories/unreviewed/2022/04/GHSA-4hxv-57v2-52jp/GHSA-4hxv-57v2-52jp.json
index 9d307a1dc11..360bc7b0204 100644
--- a/advisories/unreviewed/2022/04/GHSA-4hxv-57v2-52jp/GHSA-4hxv-57v2-52jp.json
+++ b/advisories/unreviewed/2022/04/GHSA-4hxv-57v2-52jp/GHSA-4hxv-57v2-52jp.json
@@ -7,12 +7,8 @@
"CVE-2011-1460"
],
"details": "WebKit in Google Chrome before Blink M11 contains a bad cast to RenderBlock when anonymous blocks are renderblocks.",
- "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/04/GHSA-4qj7-6xgq-rgvw/GHSA-4qj7-6xgq-rgvw.json b/advisories/unreviewed/2022/04/GHSA-4qj7-6xgq-rgvw/GHSA-4qj7-6xgq-rgvw.json
index 31b9e610868..50ae0f4c9bc 100644
--- a/advisories/unreviewed/2022/04/GHSA-4qj7-6xgq-rgvw/GHSA-4qj7-6xgq-rgvw.json
+++ b/advisories/unreviewed/2022/04/GHSA-4qj7-6xgq-rgvw/GHSA-4qj7-6xgq-rgvw.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-4qxp-gr36-38c7/GHSA-4qxp-gr36-38c7.json b/advisories/unreviewed/2022/04/GHSA-4qxp-gr36-38c7/GHSA-4qxp-gr36-38c7.json
index 6e7a98829fb..06d753d909f 100644
--- a/advisories/unreviewed/2022/04/GHSA-4qxp-gr36-38c7/GHSA-4qxp-gr36-38c7.json
+++ b/advisories/unreviewed/2022/04/GHSA-4qxp-gr36-38c7/GHSA-4qxp-gr36-38c7.json
@@ -7,12 +7,8 @@
"CVE-2011-2177"
],
"details": "OpenOffice.org v3.3 allows execution of arbitrary code with the privileges of the user running the OpenOffice.org suite tools.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-4rq7-782r-w7g7/GHSA-4rq7-782r-w7g7.json b/advisories/unreviewed/2022/04/GHSA-4rq7-782r-w7g7/GHSA-4rq7-782r-w7g7.json
index 7a255c6dfa8..f19ae80ae1c 100644
--- a/advisories/unreviewed/2022/04/GHSA-4rq7-782r-w7g7/GHSA-4rq7-782r-w7g7.json
+++ b/advisories/unreviewed/2022/04/GHSA-4rq7-782r-w7g7/GHSA-4rq7-782r-w7g7.json
@@ -7,12 +7,8 @@
"CVE-2011-1151"
],
"details": "Joomla! 1.6.0 is vulnerable to SQL Injection via the filter_order and filer_order_Dir parameters.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-4w4x-gprq-99xm/GHSA-4w4x-gprq-99xm.json b/advisories/unreviewed/2022/04/GHSA-4w4x-gprq-99xm/GHSA-4w4x-gprq-99xm.json
index eb5053435f0..a550ee63910 100644
--- a/advisories/unreviewed/2022/04/GHSA-4w4x-gprq-99xm/GHSA-4w4x-gprq-99xm.json
+++ b/advisories/unreviewed/2022/04/GHSA-4w4x-gprq-99xm/GHSA-4w4x-gprq-99xm.json
@@ -7,12 +7,8 @@
"CVE-2012-3809"
],
"details": "Samsung Kies before 2.5.0.12094_27_11 has arbitrary directory modification.",
- "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/04/GHSA-4w55-28v5-32mf/GHSA-4w55-28v5-32mf.json b/advisories/unreviewed/2022/04/GHSA-4w55-28v5-32mf/GHSA-4w55-28v5-32mf.json
index 1feffd5588b..6ff81b4953d 100644
--- a/advisories/unreviewed/2022/04/GHSA-4w55-28v5-32mf/GHSA-4w55-28v5-32mf.json
+++ b/advisories/unreviewed/2022/04/GHSA-4w55-28v5-32mf/GHSA-4w55-28v5-32mf.json
@@ -7,12 +7,8 @@
"CVE-2011-3613"
],
"details": "An issue exists in Vanilla Forums before 2.0.17.9 due to the way cookies are handled.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-4wf3-x44x-f4f7/GHSA-4wf3-x44x-f4f7.json b/advisories/unreviewed/2022/04/GHSA-4wf3-x44x-f4f7/GHSA-4wf3-x44x-f4f7.json
index d2b5ec9141c..6ae65cdf35e 100644
--- a/advisories/unreviewed/2022/04/GHSA-4wf3-x44x-f4f7/GHSA-4wf3-x44x-f4f7.json
+++ b/advisories/unreviewed/2022/04/GHSA-4wf3-x44x-f4f7/GHSA-4wf3-x44x-f4f7.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-4xf6-r23q-287m/GHSA-4xf6-r23q-287m.json b/advisories/unreviewed/2022/04/GHSA-4xf6-r23q-287m/GHSA-4xf6-r23q-287m.json
index bec0121f99f..242c97a7e2b 100644
--- a/advisories/unreviewed/2022/04/GHSA-4xf6-r23q-287m/GHSA-4xf6-r23q-287m.json
+++ b/advisories/unreviewed/2022/04/GHSA-4xf6-r23q-287m/GHSA-4xf6-r23q-287m.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-52jg-jr4p-5663/GHSA-52jg-jr4p-5663.json b/advisories/unreviewed/2022/04/GHSA-52jg-jr4p-5663/GHSA-52jg-jr4p-5663.json
index fcdcb65d8c7..1daef72d8d9 100644
--- a/advisories/unreviewed/2022/04/GHSA-52jg-jr4p-5663/GHSA-52jg-jr4p-5663.json
+++ b/advisories/unreviewed/2022/04/GHSA-52jg-jr4p-5663/GHSA-52jg-jr4p-5663.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-53wj-wwhg-8j4v/GHSA-53wj-wwhg-8j4v.json b/advisories/unreviewed/2022/04/GHSA-53wj-wwhg-8j4v/GHSA-53wj-wwhg-8j4v.json
index a556aa48f85..df19a056a17 100644
--- a/advisories/unreviewed/2022/04/GHSA-53wj-wwhg-8j4v/GHSA-53wj-wwhg-8j4v.json
+++ b/advisories/unreviewed/2022/04/GHSA-53wj-wwhg-8j4v/GHSA-53wj-wwhg-8j4v.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-5622-pj6x-9ppv/GHSA-5622-pj6x-9ppv.json b/advisories/unreviewed/2022/04/GHSA-5622-pj6x-9ppv/GHSA-5622-pj6x-9ppv.json
index cbcd82dd223..6301549900d 100644
--- a/advisories/unreviewed/2022/04/GHSA-5622-pj6x-9ppv/GHSA-5622-pj6x-9ppv.json
+++ b/advisories/unreviewed/2022/04/GHSA-5622-pj6x-9ppv/GHSA-5622-pj6x-9ppv.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-576h-8966-v2qv/GHSA-576h-8966-v2qv.json b/advisories/unreviewed/2022/04/GHSA-576h-8966-v2qv/GHSA-576h-8966-v2qv.json
index c572afa80e3..55166d41e64 100644
--- a/advisories/unreviewed/2022/04/GHSA-576h-8966-v2qv/GHSA-576h-8966-v2qv.json
+++ b/advisories/unreviewed/2022/04/GHSA-576h-8966-v2qv/GHSA-576h-8966-v2qv.json
@@ -7,12 +7,8 @@
"CVE-2011-2334"
],
"details": "Use after free vulnerability exists in WebKit in Google Chrome before Blink M12 in RenderLayerwhen removing elements with reflections.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-57ch-34m3-f49g/GHSA-57ch-34m3-f49g.json b/advisories/unreviewed/2022/04/GHSA-57ch-34m3-f49g/GHSA-57ch-34m3-f49g.json
index 50966ac2f80..eb693292159 100644
--- a/advisories/unreviewed/2022/04/GHSA-57ch-34m3-f49g/GHSA-57ch-34m3-f49g.json
+++ b/advisories/unreviewed/2022/04/GHSA-57ch-34m3-f49g/GHSA-57ch-34m3-f49g.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-57jg-m92r-vjm8/GHSA-57jg-m92r-vjm8.json b/advisories/unreviewed/2022/04/GHSA-57jg-m92r-vjm8/GHSA-57jg-m92r-vjm8.json
index 149466a30a3..5f99a18e91d 100644
--- a/advisories/unreviewed/2022/04/GHSA-57jg-m92r-vjm8/GHSA-57jg-m92r-vjm8.json
+++ b/advisories/unreviewed/2022/04/GHSA-57jg-m92r-vjm8/GHSA-57jg-m92r-vjm8.json
@@ -7,12 +7,8 @@
"CVE-2010-4660"
],
"details": "Unspecified vulnerability in statusnet through 2010 due to the way addslashes are used in SQL string escapes..",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-57jx-rw92-98x8/GHSA-57jx-rw92-98x8.json b/advisories/unreviewed/2022/04/GHSA-57jx-rw92-98x8/GHSA-57jx-rw92-98x8.json
index e925d44d055..218cbab987f 100644
--- a/advisories/unreviewed/2022/04/GHSA-57jx-rw92-98x8/GHSA-57jx-rw92-98x8.json
+++ b/advisories/unreviewed/2022/04/GHSA-57jx-rw92-98x8/GHSA-57jx-rw92-98x8.json
@@ -7,12 +7,8 @@
"CVE-2012-4760"
],
"details": "A Privilege Escalation vulnerability exists in the SDBagent service in Safend Data Protector Agent 3.4.5586.9772, which could let a local malicious user obtain privileges.",
- "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/04/GHSA-58vj-r9cf-29fq/GHSA-58vj-r9cf-29fq.json b/advisories/unreviewed/2022/04/GHSA-58vj-r9cf-29fq/GHSA-58vj-r9cf-29fq.json
index 4f23bc023a8..35647f5922c 100644
--- a/advisories/unreviewed/2022/04/GHSA-58vj-r9cf-29fq/GHSA-58vj-r9cf-29fq.json
+++ b/advisories/unreviewed/2022/04/GHSA-58vj-r9cf-29fq/GHSA-58vj-r9cf-29fq.json
@@ -7,12 +7,8 @@
"CVE-2011-4626"
],
"details": "Cross-site Scripting (XSS) in TYPO3 before 4.3.12, 4.4.x before 4.4.9, and 4.5.x before 4.5.4 allows remote attackers to inject arbitrary web script or HTML via the \"JSwindow\" property of the typolink function.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-593x-cp4m-7r46/GHSA-593x-cp4m-7r46.json b/advisories/unreviewed/2022/04/GHSA-593x-cp4m-7r46/GHSA-593x-cp4m-7r46.json
index 5b32cdcf4a6..bc3442d6db4 100644
--- a/advisories/unreviewed/2022/04/GHSA-593x-cp4m-7r46/GHSA-593x-cp4m-7r46.json
+++ b/advisories/unreviewed/2022/04/GHSA-593x-cp4m-7r46/GHSA-593x-cp4m-7r46.json
@@ -7,12 +7,8 @@
"CVE-2011-1086"
],
"details": "Cross-site scripting (XSS) vulnerability in admin/system.html in Openfiler 2.3 allows remote attackers to inject arbitrary web script or HTML via the device parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5ccr-3j65-pj6m/GHSA-5ccr-3j65-pj6m.json b/advisories/unreviewed/2022/04/GHSA-5ccr-3j65-pj6m/GHSA-5ccr-3j65-pj6m.json
index dc40a0f52da..c21c66cf2fd 100644
--- a/advisories/unreviewed/2022/04/GHSA-5ccr-3j65-pj6m/GHSA-5ccr-3j65-pj6m.json
+++ b/advisories/unreviewed/2022/04/GHSA-5ccr-3j65-pj6m/GHSA-5ccr-3j65-pj6m.json
@@ -7,12 +7,8 @@
"CVE-2011-1408"
],
"details": "ikiwiki before 3.20110608 allows remote attackers to hijack root's tty and run symlink attacks.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5fh4-5wpg-mhxh/GHSA-5fh4-5wpg-mhxh.json b/advisories/unreviewed/2022/04/GHSA-5fh4-5wpg-mhxh/GHSA-5fh4-5wpg-mhxh.json
index 06bfa0b6fcd..d2a7c383ce9 100644
--- a/advisories/unreviewed/2022/04/GHSA-5fh4-5wpg-mhxh/GHSA-5fh4-5wpg-mhxh.json
+++ b/advisories/unreviewed/2022/04/GHSA-5fh4-5wpg-mhxh/GHSA-5fh4-5wpg-mhxh.json
@@ -7,12 +7,8 @@
"CVE-2011-5266"
],
"details": "Imperva SecureSphere Web Application Firewall (WAF) before 12-august-2010 allows SQL injection filter bypass.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5fwp-w2gp-c864/GHSA-5fwp-w2gp-c864.json b/advisories/unreviewed/2022/04/GHSA-5fwp-w2gp-c864/GHSA-5fwp-w2gp-c864.json
index 3d26fbeacf4..cd3aa731071 100644
--- a/advisories/unreviewed/2022/04/GHSA-5fwp-w2gp-c864/GHSA-5fwp-w2gp-c864.json
+++ b/advisories/unreviewed/2022/04/GHSA-5fwp-w2gp-c864/GHSA-5fwp-w2gp-c864.json
@@ -7,12 +7,8 @@
"CVE-2011-1805"
],
"details": "Bad cast in CSS in Google Chrome prior to 11.0.0.0 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5g4w-hvjm-3g63/GHSA-5g4w-hvjm-3g63.json b/advisories/unreviewed/2022/04/GHSA-5g4w-hvjm-3g63/GHSA-5g4w-hvjm-3g63.json
index 1a7b8885395..962bbece58d 100644
--- a/advisories/unreviewed/2022/04/GHSA-5g4w-hvjm-3g63/GHSA-5g4w-hvjm-3g63.json
+++ b/advisories/unreviewed/2022/04/GHSA-5g4w-hvjm-3g63/GHSA-5g4w-hvjm-3g63.json
@@ -7,12 +7,8 @@
"CVE-2011-5247"
],
"details": "Snare for Linux before 1.7.0 has password disclosure because the rendered page contains the field RemotePassword.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5g8w-4pxv-9r69/GHSA-5g8w-4pxv-9r69.json b/advisories/unreviewed/2022/04/GHSA-5g8w-4pxv-9r69/GHSA-5g8w-4pxv-9r69.json
index 4add32e91a1..716de676f8c 100644
--- a/advisories/unreviewed/2022/04/GHSA-5g8w-4pxv-9r69/GHSA-5g8w-4pxv-9r69.json
+++ b/advisories/unreviewed/2022/04/GHSA-5g8w-4pxv-9r69/GHSA-5g8w-4pxv-9r69.json
@@ -7,12 +7,8 @@
"CVE-2011-2353"
],
"details": "Use after free vulnerability in documentloader in WebKit in Google Chrome before Blink M13 in DocumentWriter::replaceDocument function.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5g9c-4xc2-67c7/GHSA-5g9c-4xc2-67c7.json b/advisories/unreviewed/2022/04/GHSA-5g9c-4xc2-67c7/GHSA-5g9c-4xc2-67c7.json
index 72b5328a23a..df27094029d 100644
--- a/advisories/unreviewed/2022/04/GHSA-5g9c-4xc2-67c7/GHSA-5g9c-4xc2-67c7.json
+++ b/advisories/unreviewed/2022/04/GHSA-5g9c-4xc2-67c7/GHSA-5g9c-4xc2-67c7.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/2022/04/GHSA-5jw4-p6mg-mg52/GHSA-5jw4-p6mg-mg52.json b/advisories/unreviewed/2022/04/GHSA-5jw4-p6mg-mg52/GHSA-5jw4-p6mg-mg52.json
index 57f7b5c97ff..918d68e2407 100644
--- a/advisories/unreviewed/2022/04/GHSA-5jw4-p6mg-mg52/GHSA-5jw4-p6mg-mg52.json
+++ b/advisories/unreviewed/2022/04/GHSA-5jw4-p6mg-mg52/GHSA-5jw4-p6mg-mg52.json
@@ -7,12 +7,8 @@
"CVE-2011-4912"
],
"details": "Joomla! com_mailto 1.5.x through 1.5.13 has an automated mail timeout bypass.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5p79-2m8g-gf5w/GHSA-5p79-2m8g-gf5w.json b/advisories/unreviewed/2022/04/GHSA-5p79-2m8g-gf5w/GHSA-5p79-2m8g-gf5w.json
index a21b0b29257..6bbdb11c726 100644
--- a/advisories/unreviewed/2022/04/GHSA-5p79-2m8g-gf5w/GHSA-5p79-2m8g-gf5w.json
+++ b/advisories/unreviewed/2022/04/GHSA-5p79-2m8g-gf5w/GHSA-5p79-2m8g-gf5w.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-5pqr-mwfx-8q8w/GHSA-5pqr-mwfx-8q8w.json b/advisories/unreviewed/2022/04/GHSA-5pqr-mwfx-8q8w/GHSA-5pqr-mwfx-8q8w.json
index 42ebdcf782b..75946d0eba5 100644
--- a/advisories/unreviewed/2022/04/GHSA-5pqr-mwfx-8q8w/GHSA-5pqr-mwfx-8q8w.json
+++ b/advisories/unreviewed/2022/04/GHSA-5pqr-mwfx-8q8w/GHSA-5pqr-mwfx-8q8w.json
@@ -7,12 +7,8 @@
"CVE-2011-3642"
],
"details": "Cross-site scripting (XSS) vulnerability in Flowplayer Flash 3.2.7 through 3.2.16, as used in the News system (news) extension for TYPO3 and Mahara, allows remote attackers to inject arbitrary web script or HTML via the plugin configuration directive in a reference to an external domain plugin.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -60,9 +56,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5qpv-27q3-6484/GHSA-5qpv-27q3-6484.json b/advisories/unreviewed/2022/04/GHSA-5qpv-27q3-6484/GHSA-5qpv-27q3-6484.json
index 1c54b95033e..d5be4bf96a0 100644
--- a/advisories/unreviewed/2022/04/GHSA-5qpv-27q3-6484/GHSA-5qpv-27q3-6484.json
+++ b/advisories/unreviewed/2022/04/GHSA-5qpv-27q3-6484/GHSA-5qpv-27q3-6484.json
@@ -7,12 +7,8 @@
"CVE-2012-4440"
],
"details": "Cross-site Scripting (XSS) in Jenkins main before 1.482 and LTS before 1.466.2 allows remote attackers to inject arbitrary web script or HTML in the Violations plugin.",
- "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/04/GHSA-5v9g-4pwg-rx54/GHSA-5v9g-4pwg-rx54.json b/advisories/unreviewed/2022/04/GHSA-5v9g-4pwg-rx54/GHSA-5v9g-4pwg-rx54.json
index acf1ac265be..5d75a39c937 100644
--- a/advisories/unreviewed/2022/04/GHSA-5v9g-4pwg-rx54/GHSA-5v9g-4pwg-rx54.json
+++ b/advisories/unreviewed/2022/04/GHSA-5v9g-4pwg-rx54/GHSA-5v9g-4pwg-rx54.json
@@ -7,12 +7,8 @@
"CVE-2010-3095"
],
"details": "mailscanner before 4.79.11-2.1 might allow local users to overwrite arbitrary files via a symlink attack on certain temporary files. NOTE: this issue exists because of an incomplete fix for CVE-2008-5313.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5whg-989c-xx4x/GHSA-5whg-989c-xx4x.json b/advisories/unreviewed/2022/04/GHSA-5whg-989c-xx4x/GHSA-5whg-989c-xx4x.json
index a614d83a6a7..089f4d39e4f 100644
--- a/advisories/unreviewed/2022/04/GHSA-5whg-989c-xx4x/GHSA-5whg-989c-xx4x.json
+++ b/advisories/unreviewed/2022/04/GHSA-5whg-989c-xx4x/GHSA-5whg-989c-xx4x.json
@@ -7,12 +7,8 @@
"CVE-2012-1495"
],
"details": "install/index.php in WebCalendar before 1.2.5 allows remote attackers to execute arbitrary code via the form_single_user_login parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5x29-vh6x-c2jx/GHSA-5x29-vh6x-c2jx.json b/advisories/unreviewed/2022/04/GHSA-5x29-vh6x-c2jx/GHSA-5x29-vh6x-c2jx.json
index f7c7b9d2bfc..d2391612f34 100644
--- a/advisories/unreviewed/2022/04/GHSA-5x29-vh6x-c2jx/GHSA-5x29-vh6x-c2jx.json
+++ b/advisories/unreviewed/2022/04/GHSA-5x29-vh6x-c2jx/GHSA-5x29-vh6x-c2jx.json
@@ -7,12 +7,8 @@
"CVE-2012-5389"
],
"details": "NULL Pointer Dereference in PowerTCP WebServer for ActiveX 1.9.2 and earlier allows remote attackers to cause a denial of service (application crash) via a crafted HTTP request.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-5xxv-wcw2-xf9p/GHSA-5xxv-wcw2-xf9p.json b/advisories/unreviewed/2022/04/GHSA-5xxv-wcw2-xf9p/GHSA-5xxv-wcw2-xf9p.json
index 64757782553..d70edf35e61 100644
--- a/advisories/unreviewed/2022/04/GHSA-5xxv-wcw2-xf9p/GHSA-5xxv-wcw2-xf9p.json
+++ b/advisories/unreviewed/2022/04/GHSA-5xxv-wcw2-xf9p/GHSA-5xxv-wcw2-xf9p.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-64rj-w9x6-322q/GHSA-64rj-w9x6-322q.json b/advisories/unreviewed/2022/04/GHSA-64rj-w9x6-322q/GHSA-64rj-w9x6-322q.json
index a4d6a2ba974..2f159b2ed24 100644
--- a/advisories/unreviewed/2022/04/GHSA-64rj-w9x6-322q/GHSA-64rj-w9x6-322q.json
+++ b/advisories/unreviewed/2022/04/GHSA-64rj-w9x6-322q/GHSA-64rj-w9x6-322q.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-655p-33j8-842m/GHSA-655p-33j8-842m.json b/advisories/unreviewed/2022/04/GHSA-655p-33j8-842m/GHSA-655p-33j8-842m.json
index 68d9b991fec..f53071bb50e 100644
--- a/advisories/unreviewed/2022/04/GHSA-655p-33j8-842m/GHSA-655p-33j8-842m.json
+++ b/advisories/unreviewed/2022/04/GHSA-655p-33j8-842m/GHSA-655p-33j8-842m.json
@@ -7,12 +7,8 @@
"CVE-2012-1915"
],
"details": "EllisLab CodeIgniter 2.1.2 allows remote attackers to bypass the xss_clean() Filter and perform XSS attacks.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-67j2-4r5v-f48w/GHSA-67j2-4r5v-f48w.json b/advisories/unreviewed/2022/04/GHSA-67j2-4r5v-f48w/GHSA-67j2-4r5v-f48w.json
index a089ebc478d..db886af5be1 100644
--- a/advisories/unreviewed/2022/04/GHSA-67j2-4r5v-f48w/GHSA-67j2-4r5v-f48w.json
+++ b/advisories/unreviewed/2022/04/GHSA-67j2-4r5v-f48w/GHSA-67j2-4r5v-f48w.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-67m8-r6w4-jw3p/GHSA-67m8-r6w4-jw3p.json b/advisories/unreviewed/2022/04/GHSA-67m8-r6w4-jw3p/GHSA-67m8-r6w4-jw3p.json
index 280d522206c..dba3b61fa09 100644
--- a/advisories/unreviewed/2022/04/GHSA-67m8-r6w4-jw3p/GHSA-67m8-r6w4-jw3p.json
+++ b/advisories/unreviewed/2022/04/GHSA-67m8-r6w4-jw3p/GHSA-67m8-r6w4-jw3p.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-67vh-2x8f-2mwq/GHSA-67vh-2x8f-2mwq.json b/advisories/unreviewed/2022/04/GHSA-67vh-2x8f-2mwq/GHSA-67vh-2x8f-2mwq.json
index 5c5bdf107c7..e1283d9bcae 100644
--- a/advisories/unreviewed/2022/04/GHSA-67vh-2x8f-2mwq/GHSA-67vh-2x8f-2mwq.json
+++ b/advisories/unreviewed/2022/04/GHSA-67vh-2x8f-2mwq/GHSA-67vh-2x8f-2mwq.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-68gj-fr3h-542g/GHSA-68gj-fr3h-542g.json b/advisories/unreviewed/2022/04/GHSA-68gj-fr3h-542g/GHSA-68gj-fr3h-542g.json
index 37305ea5428..073b804975a 100644
--- a/advisories/unreviewed/2022/04/GHSA-68gj-fr3h-542g/GHSA-68gj-fr3h-542g.json
+++ b/advisories/unreviewed/2022/04/GHSA-68gj-fr3h-542g/GHSA-68gj-fr3h-542g.json
@@ -7,12 +7,8 @@
"CVE-2011-1597"
],
"details": "OpenVAS Manager v2.0.3 allows plugin remote code execution.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-68hc-c26p-wxxh/GHSA-68hc-c26p-wxxh.json b/advisories/unreviewed/2022/04/GHSA-68hc-c26p-wxxh/GHSA-68hc-c26p-wxxh.json
index f89b44ac3b5..0c3551f43fa 100644
--- a/advisories/unreviewed/2022/04/GHSA-68hc-c26p-wxxh/GHSA-68hc-c26p-wxxh.json
+++ b/advisories/unreviewed/2022/04/GHSA-68hc-c26p-wxxh/GHSA-68hc-c26p-wxxh.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-69cr-qg65-xgm7/GHSA-69cr-qg65-xgm7.json b/advisories/unreviewed/2022/04/GHSA-69cr-qg65-xgm7/GHSA-69cr-qg65-xgm7.json
index a290db7bdf7..93de5509498 100644
--- a/advisories/unreviewed/2022/04/GHSA-69cr-qg65-xgm7/GHSA-69cr-qg65-xgm7.json
+++ b/advisories/unreviewed/2022/04/GHSA-69cr-qg65-xgm7/GHSA-69cr-qg65-xgm7.json
@@ -7,12 +7,8 @@
"CVE-2011-4574"
],
"details": "PolarSSL versions prior to v1.1 use the HAVEGE random number generation algorithm. At its heart, this uses timing information based on the processor's high resolution timer (the RDTSC instruction). This instruction can be virtualized, and some virtual machine hosts have chosen to disable this instruction, returning 0s or predictable results.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-6c3f-x526-64jj/GHSA-6c3f-x526-64jj.json b/advisories/unreviewed/2022/04/GHSA-6c3f-x526-64jj/GHSA-6c3f-x526-64jj.json
index 604d796445e..25618ba2020 100644
--- a/advisories/unreviewed/2022/04/GHSA-6c3f-x526-64jj/GHSA-6c3f-x526-64jj.json
+++ b/advisories/unreviewed/2022/04/GHSA-6c3f-x526-64jj/GHSA-6c3f-x526-64jj.json
@@ -7,12 +7,8 @@
"CVE-2011-1134"
],
"details": "Cross-Site Scripting (XSS) in Xinha, as included in the Serendipity package before 1.5.5, allows remote attackers to execute arbitrary code in the image manager.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-6c8c-qvc7-64g8/GHSA-6c8c-qvc7-64g8.json b/advisories/unreviewed/2022/04/GHSA-6c8c-qvc7-64g8/GHSA-6c8c-qvc7-64g8.json
index 878ed3a71d4..2595de04f53 100644
--- a/advisories/unreviewed/2022/04/GHSA-6c8c-qvc7-64g8/GHSA-6c8c-qvc7-64g8.json
+++ b/advisories/unreviewed/2022/04/GHSA-6c8c-qvc7-64g8/GHSA-6c8c-qvc7-64g8.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-6cvg-3r48-6prg/GHSA-6cvg-3r48-6prg.json b/advisories/unreviewed/2022/04/GHSA-6cvg-3r48-6prg/GHSA-6cvg-3r48-6prg.json
index 94372108780..b387e2d4bd4 100644
--- a/advisories/unreviewed/2022/04/GHSA-6cvg-3r48-6prg/GHSA-6cvg-3r48-6prg.json
+++ b/advisories/unreviewed/2022/04/GHSA-6cvg-3r48-6prg/GHSA-6cvg-3r48-6prg.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-6fcx-7m99-66c8/GHSA-6fcx-7m99-66c8.json b/advisories/unreviewed/2022/04/GHSA-6fcx-7m99-66c8/GHSA-6fcx-7m99-66c8.json
index 056612dd0a5..e8a12ceb56e 100644
--- a/advisories/unreviewed/2022/04/GHSA-6fcx-7m99-66c8/GHSA-6fcx-7m99-66c8.json
+++ b/advisories/unreviewed/2022/04/GHSA-6fcx-7m99-66c8/GHSA-6fcx-7m99-66c8.json
@@ -7,12 +7,8 @@
"CVE-2012-0842"
],
"details": "surf: cookie jar has read access from other local user",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -48,9 +44,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-6h5m-c899-vgw5/GHSA-6h5m-c899-vgw5.json b/advisories/unreviewed/2022/04/GHSA-6h5m-c899-vgw5/GHSA-6h5m-c899-vgw5.json
index afbb683c36e..55b65ac2027 100644
--- a/advisories/unreviewed/2022/04/GHSA-6h5m-c899-vgw5/GHSA-6h5m-c899-vgw5.json
+++ b/advisories/unreviewed/2022/04/GHSA-6h5m-c899-vgw5/GHSA-6h5m-c899-vgw5.json
@@ -7,12 +7,8 @@
"CVE-2010-3782"
],
"details": "obs-server before 1.7.7 allows logins by 'unconfirmed' accounts due to a bug in the REST api implementation.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-6pj9-476v-v64v/GHSA-6pj9-476v-v64v.json b/advisories/unreviewed/2022/04/GHSA-6pj9-476v-v64v/GHSA-6pj9-476v-v64v.json
index 36d1f18a5a2..8da5db88764 100644
--- a/advisories/unreviewed/2022/04/GHSA-6pj9-476v-v64v/GHSA-6pj9-476v-v64v.json
+++ b/advisories/unreviewed/2022/04/GHSA-6pj9-476v-v64v/GHSA-6pj9-476v-v64v.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-6r6c-7pv4-j6gr/GHSA-6r6c-7pv4-j6gr.json b/advisories/unreviewed/2022/04/GHSA-6r6c-7pv4-j6gr/GHSA-6r6c-7pv4-j6gr.json
index 486afdf441f..204bc283dfb 100644
--- a/advisories/unreviewed/2022/04/GHSA-6r6c-7pv4-j6gr/GHSA-6r6c-7pv4-j6gr.json
+++ b/advisories/unreviewed/2022/04/GHSA-6r6c-7pv4-j6gr/GHSA-6r6c-7pv4-j6gr.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-6rfr-j54f-6xv3/GHSA-6rfr-j54f-6xv3.json b/advisories/unreviewed/2022/04/GHSA-6rfr-j54f-6xv3/GHSA-6rfr-j54f-6xv3.json
index 848978d1fb9..abf1d9cdfc7 100644
--- a/advisories/unreviewed/2022/04/GHSA-6rfr-j54f-6xv3/GHSA-6rfr-j54f-6xv3.json
+++ b/advisories/unreviewed/2022/04/GHSA-6rfr-j54f-6xv3/GHSA-6rfr-j54f-6xv3.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-73f9-qmm9-x75r/GHSA-73f9-qmm9-x75r.json b/advisories/unreviewed/2022/04/GHSA-73f9-qmm9-x75r/GHSA-73f9-qmm9-x75r.json
index 180d92d5378..c6f6ce17e55 100644
--- a/advisories/unreviewed/2022/04/GHSA-73f9-qmm9-x75r/GHSA-73f9-qmm9-x75r.json
+++ b/advisories/unreviewed/2022/04/GHSA-73f9-qmm9-x75r/GHSA-73f9-qmm9-x75r.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-74ch-9273-qj4q/GHSA-74ch-9273-qj4q.json b/advisories/unreviewed/2022/04/GHSA-74ch-9273-qj4q/GHSA-74ch-9273-qj4q.json
index 993727a08ff..0f8fba58d0c 100644
--- a/advisories/unreviewed/2022/04/GHSA-74ch-9273-qj4q/GHSA-74ch-9273-qj4q.json
+++ b/advisories/unreviewed/2022/04/GHSA-74ch-9273-qj4q/GHSA-74ch-9273-qj4q.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-754m-jwrw-2j28/GHSA-754m-jwrw-2j28.json b/advisories/unreviewed/2022/04/GHSA-754m-jwrw-2j28/GHSA-754m-jwrw-2j28.json
index cdd33b2911e..8d602b0084b 100644
--- a/advisories/unreviewed/2022/04/GHSA-754m-jwrw-2j28/GHSA-754m-jwrw-2j28.json
+++ b/advisories/unreviewed/2022/04/GHSA-754m-jwrw-2j28/GHSA-754m-jwrw-2j28.json
@@ -7,12 +7,8 @@
"CVE-2009-5004"
],
"details": "qpid-cpp 1.0 crashes when a large message is sent and the Digest-MD5 mechanism with a security layer is in use .",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-75j6-cwr8-mmv4/GHSA-75j6-cwr8-mmv4.json b/advisories/unreviewed/2022/04/GHSA-75j6-cwr8-mmv4/GHSA-75j6-cwr8-mmv4.json
index 8c12845ccc5..795409ce581 100644
--- a/advisories/unreviewed/2022/04/GHSA-75j6-cwr8-mmv4/GHSA-75j6-cwr8-mmv4.json
+++ b/advisories/unreviewed/2022/04/GHSA-75j6-cwr8-mmv4/GHSA-75j6-cwr8-mmv4.json
@@ -7,12 +7,8 @@
"CVE-2009-5050"
],
"details": "konversation before 1.2.3 allows attackers to cause a denial of service.",
- "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/04/GHSA-763p-5rx7-r4qf/GHSA-763p-5rx7-r4qf.json b/advisories/unreviewed/2022/04/GHSA-763p-5rx7-r4qf/GHSA-763p-5rx7-r4qf.json
index bac3ab3732c..c17d4c14cc0 100644
--- a/advisories/unreviewed/2022/04/GHSA-763p-5rx7-r4qf/GHSA-763p-5rx7-r4qf.json
+++ b/advisories/unreviewed/2022/04/GHSA-763p-5rx7-r4qf/GHSA-763p-5rx7-r4qf.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-777h-83ch-p736/GHSA-777h-83ch-p736.json b/advisories/unreviewed/2022/04/GHSA-777h-83ch-p736/GHSA-777h-83ch-p736.json
index b385479a4d2..cc0f1a92e76 100644
--- a/advisories/unreviewed/2022/04/GHSA-777h-83ch-p736/GHSA-777h-83ch-p736.json
+++ b/advisories/unreviewed/2022/04/GHSA-777h-83ch-p736/GHSA-777h-83ch-p736.json
@@ -7,12 +7,8 @@
"CVE-2012-4603"
],
"details": "Citrix XenApp Online Plug-in for Windows 12.1 and earlier, and Citrix Receiver for Windows 3.2 and earlier could allow remote attackers to execute arbitrary code by convincing a target to open a specially crafted file from an SMB or WebDAV fileserver.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-782c-hpc8-pfgv/GHSA-782c-hpc8-pfgv.json b/advisories/unreviewed/2022/04/GHSA-782c-hpc8-pfgv/GHSA-782c-hpc8-pfgv.json
index 904b96acb02..e814ce1f7d9 100644
--- a/advisories/unreviewed/2022/04/GHSA-782c-hpc8-pfgv/GHSA-782c-hpc8-pfgv.json
+++ b/advisories/unreviewed/2022/04/GHSA-782c-hpc8-pfgv/GHSA-782c-hpc8-pfgv.json
@@ -7,12 +7,8 @@
"CVE-2012-5562"
],
"details": "rhn-proxy: may transmit credentials over clear-text when accessing RHN Satellite",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-788x-6x75-28fc/GHSA-788x-6x75-28fc.json b/advisories/unreviewed/2022/04/GHSA-788x-6x75-28fc/GHSA-788x-6x75-28fc.json
index b1e2f64db99..3e6796dea16 100644
--- a/advisories/unreviewed/2022/04/GHSA-788x-6x75-28fc/GHSA-788x-6x75-28fc.json
+++ b/advisories/unreviewed/2022/04/GHSA-788x-6x75-28fc/GHSA-788x-6x75-28fc.json
@@ -7,12 +7,8 @@
"CVE-2010-1435"
],
"details": "Joomla! Core is prone to a security bypass vulnerability. Exploiting this issue may allow attackers to perform otherwise restricted actions and subsequently retrieve password reset tokens from the database through an already existing SQL injection vector. Joomla! Core versions 1.5.x ranging from 1.5.0 and up to and including 1.5.15 are vulnerable.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-78qm-xvj5-4ph5/GHSA-78qm-xvj5-4ph5.json b/advisories/unreviewed/2022/04/GHSA-78qm-xvj5-4ph5/GHSA-78qm-xvj5-4ph5.json
index 7213fdac6e1..8fdf3db6f9b 100644
--- a/advisories/unreviewed/2022/04/GHSA-78qm-xvj5-4ph5/GHSA-78qm-xvj5-4ph5.json
+++ b/advisories/unreviewed/2022/04/GHSA-78qm-xvj5-4ph5/GHSA-78qm-xvj5-4ph5.json
@@ -7,12 +7,8 @@
"CVE-2010-4815"
],
"details": "Coppermine gallery before 1.4.26 has an input validation vulnerability that allows for code execution.",
- "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/04/GHSA-7f3h-pvfp-q7c5/GHSA-7f3h-pvfp-q7c5.json b/advisories/unreviewed/2022/04/GHSA-7f3h-pvfp-q7c5/GHSA-7f3h-pvfp-q7c5.json
index 68e00cc31e9..adec7bb5847 100644
--- a/advisories/unreviewed/2022/04/GHSA-7f3h-pvfp-q7c5/GHSA-7f3h-pvfp-q7c5.json
+++ b/advisories/unreviewed/2022/04/GHSA-7f3h-pvfp-q7c5/GHSA-7f3h-pvfp-q7c5.json
@@ -7,12 +7,8 @@
"CVE-2012-4981"
],
"details": "Toshiba ConfigFree 8.0.38 has a CF7 File Remote Command Execution Vulnerability",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-7fw9-mvm3-f26m/GHSA-7fw9-mvm3-f26m.json b/advisories/unreviewed/2022/04/GHSA-7fw9-mvm3-f26m/GHSA-7fw9-mvm3-f26m.json
index 5af0b3b8209..45fd0d15476 100644
--- a/advisories/unreviewed/2022/04/GHSA-7fw9-mvm3-f26m/GHSA-7fw9-mvm3-f26m.json
+++ b/advisories/unreviewed/2022/04/GHSA-7fw9-mvm3-f26m/GHSA-7fw9-mvm3-f26m.json
@@ -7,12 +7,8 @@
"CVE-2011-0525"
],
"details": "Batavi before 1.0 has CSRF.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-7g4p-phf5-grh3/GHSA-7g4p-phf5-grh3.json b/advisories/unreviewed/2022/04/GHSA-7g4p-phf5-grh3/GHSA-7g4p-phf5-grh3.json
index dd0f4a8b057..3af0395b337 100644
--- a/advisories/unreviewed/2022/04/GHSA-7g4p-phf5-grh3/GHSA-7g4p-phf5-grh3.json
+++ b/advisories/unreviewed/2022/04/GHSA-7g4p-phf5-grh3/GHSA-7g4p-phf5-grh3.json
@@ -7,12 +7,8 @@
"CVE-2012-4900"
],
"details": "Corel WordPerfect Office X6 16.0.0.388 has a DoS Vulnerability via untrusted pointer dereference",
- "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/04/GHSA-7g7c-h6m2-fvm7/GHSA-7g7c-h6m2-fvm7.json b/advisories/unreviewed/2022/04/GHSA-7g7c-h6m2-fvm7/GHSA-7g7c-h6m2-fvm7.json
index 4c66c75a078..f52467e8a53 100644
--- a/advisories/unreviewed/2022/04/GHSA-7g7c-h6m2-fvm7/GHSA-7g7c-h6m2-fvm7.json
+++ b/advisories/unreviewed/2022/04/GHSA-7g7c-h6m2-fvm7/GHSA-7g7c-h6m2-fvm7.json
@@ -7,12 +7,8 @@
"CVE-2011-3584"
],
"details": "The TYPO3 Core wec_discussion extension before 2.1.1 is vulnerable to SQL Injection due to improper sanitation of user-supplied input.",
- "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/04/GHSA-7gmp-55mp-r6vr/GHSA-7gmp-55mp-r6vr.json b/advisories/unreviewed/2022/04/GHSA-7gmp-55mp-r6vr/GHSA-7gmp-55mp-r6vr.json
index 9d311fefda6..3ff9afd2ff7 100644
--- a/advisories/unreviewed/2022/04/GHSA-7gmp-55mp-r6vr/GHSA-7gmp-55mp-r6vr.json
+++ b/advisories/unreviewed/2022/04/GHSA-7gmp-55mp-r6vr/GHSA-7gmp-55mp-r6vr.json
@@ -7,12 +7,8 @@
"CVE-2012-2950"
],
"details": "Gateway Geomatics MapServer for Windows before 3.0.6 contains a Local File Include Vulnerability which allows remote attackers to execute local PHP code and obtain sensitive information.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-7jj8-h5cf-75qp/GHSA-7jj8-h5cf-75qp.json b/advisories/unreviewed/2022/04/GHSA-7jj8-h5cf-75qp/GHSA-7jj8-h5cf-75qp.json
index a1e033ea0b5..029fbbdfb60 100644
--- a/advisories/unreviewed/2022/04/GHSA-7jj8-h5cf-75qp/GHSA-7jj8-h5cf-75qp.json
+++ b/advisories/unreviewed/2022/04/GHSA-7jj8-h5cf-75qp/GHSA-7jj8-h5cf-75qp.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-7mwc-wq4r-x6wq/GHSA-7mwc-wq4r-x6wq.json b/advisories/unreviewed/2022/04/GHSA-7mwc-wq4r-x6wq/GHSA-7mwc-wq4r-x6wq.json
index 54a79296cde..3935f511d1b 100644
--- a/advisories/unreviewed/2022/04/GHSA-7mwc-wq4r-x6wq/GHSA-7mwc-wq4r-x6wq.json
+++ b/advisories/unreviewed/2022/04/GHSA-7mwc-wq4r-x6wq/GHSA-7mwc-wq4r-x6wq.json
@@ -7,12 +7,8 @@
"CVE-2012-0070"
],
"details": "spamdyke prior to 4.2.1: STARTTLS reveals plaintext",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-7pfw-rp8m-2c7m/GHSA-7pfw-rp8m-2c7m.json b/advisories/unreviewed/2022/04/GHSA-7pfw-rp8m-2c7m/GHSA-7pfw-rp8m-2c7m.json
index ff119eff66a..9dacccb6c26 100644
--- a/advisories/unreviewed/2022/04/GHSA-7pfw-rp8m-2c7m/GHSA-7pfw-rp8m-2c7m.json
+++ b/advisories/unreviewed/2022/04/GHSA-7pfw-rp8m-2c7m/GHSA-7pfw-rp8m-2c7m.json
@@ -7,12 +7,8 @@
"CVE-2011-2335"
],
"details": "A double-free vulnerability exists in WebKit in Google Chrome before Blink M12 in the WebCore::CSSSelector function.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-7pmh-g9pc-h622/GHSA-7pmh-g9pc-h622.json b/advisories/unreviewed/2022/04/GHSA-7pmh-g9pc-h622/GHSA-7pmh-g9pc-h622.json
index c16b5c45424..49dc63f28e2 100644
--- a/advisories/unreviewed/2022/04/GHSA-7pmh-g9pc-h622/GHSA-7pmh-g9pc-h622.json
+++ b/advisories/unreviewed/2022/04/GHSA-7pmh-g9pc-h622/GHSA-7pmh-g9pc-h622.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-7rmf-f3fj-4gh7/GHSA-7rmf-f3fj-4gh7.json b/advisories/unreviewed/2022/04/GHSA-7rmf-f3fj-4gh7/GHSA-7rmf-f3fj-4gh7.json
index 21556b6cd40..3c01f960263 100644
--- a/advisories/unreviewed/2022/04/GHSA-7rmf-f3fj-4gh7/GHSA-7rmf-f3fj-4gh7.json
+++ b/advisories/unreviewed/2022/04/GHSA-7rmf-f3fj-4gh7/GHSA-7rmf-f3fj-4gh7.json
@@ -7,12 +7,8 @@
"CVE-2011-2808"
],
"details": "A stale layout root is set as an input element in WebKit in Google Chrome before Blink M13 when a child of a keygen with autofocus is accessed.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -48,9 +44,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-7v54-gcwf-r4xw/GHSA-7v54-gcwf-r4xw.json b/advisories/unreviewed/2022/04/GHSA-7v54-gcwf-r4xw/GHSA-7v54-gcwf-r4xw.json
index 05f88b8312d..61bec530db2 100644
--- a/advisories/unreviewed/2022/04/GHSA-7v54-gcwf-r4xw/GHSA-7v54-gcwf-r4xw.json
+++ b/advisories/unreviewed/2022/04/GHSA-7v54-gcwf-r4xw/GHSA-7v54-gcwf-r4xw.json
@@ -7,12 +7,8 @@
"CVE-2010-2449"
],
"details": "Gource through 0.26 logs to a predictable file name (/tmp/gource-$UID.tmp), enabling attackers to overwrite an arbitrary file via a symlink attack.",
- "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/04/GHSA-7v56-j653-c26v/GHSA-7v56-j653-c26v.json b/advisories/unreviewed/2022/04/GHSA-7v56-j653-c26v/GHSA-7v56-j653-c26v.json
index 5bd47614420..7869ed0285f 100644
--- a/advisories/unreviewed/2022/04/GHSA-7v56-j653-c26v/GHSA-7v56-j653-c26v.json
+++ b/advisories/unreviewed/2022/04/GHSA-7v56-j653-c26v/GHSA-7v56-j653-c26v.json
@@ -7,12 +7,8 @@
"CVE-2011-4906"
],
"details": "Tiny browser in TinyMCE 3.0 editor in Joomla! before 1.5.13 allows file upload and arbitrary PHP code execution.",
- "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/04/GHSA-7wp8-c7mq-wxq7/GHSA-7wp8-c7mq-wxq7.json b/advisories/unreviewed/2022/04/GHSA-7wp8-c7mq-wxq7/GHSA-7wp8-c7mq-wxq7.json
index bbc4f3f53d6..8c5cd81303a 100644
--- a/advisories/unreviewed/2022/04/GHSA-7wp8-c7mq-wxq7/GHSA-7wp8-c7mq-wxq7.json
+++ b/advisories/unreviewed/2022/04/GHSA-7wp8-c7mq-wxq7/GHSA-7wp8-c7mq-wxq7.json
@@ -7,12 +7,8 @@
"CVE-2012-4606"
],
"details": "Citrix XenServer 4.1, 6.0, 5.6 SP2, 5.6 Feature Pack 1, 5.6 Common Criteria, 5.6, 5.5, 5.0, and 5.0 Update 3 contains a Local Privilege Escalation Vulnerability which could allow local users with access to a guest operating system to gain elevated privileges.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-8388-jrmf-w7qc/GHSA-8388-jrmf-w7qc.json b/advisories/unreviewed/2022/04/GHSA-8388-jrmf-w7qc/GHSA-8388-jrmf-w7qc.json
index d0ed31f470f..2ae2a44ef2a 100644
--- a/advisories/unreviewed/2022/04/GHSA-8388-jrmf-w7qc/GHSA-8388-jrmf-w7qc.json
+++ b/advisories/unreviewed/2022/04/GHSA-8388-jrmf-w7qc/GHSA-8388-jrmf-w7qc.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-83v8-h997-4xf4/GHSA-83v8-h997-4xf4.json b/advisories/unreviewed/2022/04/GHSA-83v8-h997-4xf4/GHSA-83v8-h997-4xf4.json
index 12e50729139..b269fd3e7a4 100644
--- a/advisories/unreviewed/2022/04/GHSA-83v8-h997-4xf4/GHSA-83v8-h997-4xf4.json
+++ b/advisories/unreviewed/2022/04/GHSA-83v8-h997-4xf4/GHSA-83v8-h997-4xf4.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-85mx-crqg-rfwj/GHSA-85mx-crqg-rfwj.json b/advisories/unreviewed/2022/04/GHSA-85mx-crqg-rfwj/GHSA-85mx-crqg-rfwj.json
index a287b6eea6a..d988e825b4a 100644
--- a/advisories/unreviewed/2022/04/GHSA-85mx-crqg-rfwj/GHSA-85mx-crqg-rfwj.json
+++ b/advisories/unreviewed/2022/04/GHSA-85mx-crqg-rfwj/GHSA-85mx-crqg-rfwj.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-85v4-5c8r-m8g3/GHSA-85v4-5c8r-m8g3.json b/advisories/unreviewed/2022/04/GHSA-85v4-5c8r-m8g3/GHSA-85v4-5c8r-m8g3.json
index 6f3906d0b06..1c3e763f98d 100644
--- a/advisories/unreviewed/2022/04/GHSA-85v4-5c8r-m8g3/GHSA-85v4-5c8r-m8g3.json
+++ b/advisories/unreviewed/2022/04/GHSA-85v4-5c8r-m8g3/GHSA-85v4-5c8r-m8g3.json
@@ -7,12 +7,8 @@
"CVE-2010-4659"
],
"details": "Cross-site scripting (XSS) vulnerability in statusnet through 2010 in error message contents.",
- "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/04/GHSA-85wx-jj2j-45cm/GHSA-85wx-jj2j-45cm.json b/advisories/unreviewed/2022/04/GHSA-85wx-jj2j-45cm/GHSA-85wx-jj2j-45cm.json
index 63b3cd71250..382372cb645 100644
--- a/advisories/unreviewed/2022/04/GHSA-85wx-jj2j-45cm/GHSA-85wx-jj2j-45cm.json
+++ b/advisories/unreviewed/2022/04/GHSA-85wx-jj2j-45cm/GHSA-85wx-jj2j-45cm.json
@@ -7,12 +7,8 @@
"CVE-2011-2336"
],
"details": "An issue exists in WebKit in Google Chrome before Blink M12. when clearing lists in AnimationControllerPrivate that signal when a hardware animation starts.",
- "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/04/GHSA-862p-65m3-7rf3/GHSA-862p-65m3-7rf3.json b/advisories/unreviewed/2022/04/GHSA-862p-65m3-7rf3/GHSA-862p-65m3-7rf3.json
index 51cc9329d31..563e323dead 100644
--- a/advisories/unreviewed/2022/04/GHSA-862p-65m3-7rf3/GHSA-862p-65m3-7rf3.json
+++ b/advisories/unreviewed/2022/04/GHSA-862p-65m3-7rf3/GHSA-862p-65m3-7rf3.json
@@ -7,12 +7,8 @@
"CVE-2010-0749"
],
"details": "Transmission before 1.92 allows attackers to prevent download of a file by corrupted data during the endgame.",
- "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/04/GHSA-879q-m837-52hf/GHSA-879q-m837-52hf.json b/advisories/unreviewed/2022/04/GHSA-879q-m837-52hf/GHSA-879q-m837-52hf.json
index 5927508c8ba..27387670f82 100644
--- a/advisories/unreviewed/2022/04/GHSA-879q-m837-52hf/GHSA-879q-m837-52hf.json
+++ b/advisories/unreviewed/2022/04/GHSA-879q-m837-52hf/GHSA-879q-m837-52hf.json
@@ -7,12 +7,8 @@
"CVE-2010-3857"
],
"details": "JBoss BRMS before 5.1.0 has a XSS vulnerability via asset=UUID parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-88f8-8wmr-26w2/GHSA-88f8-8wmr-26w2.json b/advisories/unreviewed/2022/04/GHSA-88f8-8wmr-26w2/GHSA-88f8-8wmr-26w2.json
index 1aa0226c135..293be0eced9 100644
--- a/advisories/unreviewed/2022/04/GHSA-88f8-8wmr-26w2/GHSA-88f8-8wmr-26w2.json
+++ b/advisories/unreviewed/2022/04/GHSA-88f8-8wmr-26w2/GHSA-88f8-8wmr-26w2.json
@@ -7,12 +7,8 @@
"CVE-2012-1114"
],
"details": "A Cross-Site Scripting (XSS) vulnerability exists in LDAP Account Manager (LAM) Pro 3.6 in the filter parameter to cmd.php in an export and exporter_id action. and the filteruid parameter to list.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -60,9 +56,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-89m6-6f9x-8vwg/GHSA-89m6-6f9x-8vwg.json b/advisories/unreviewed/2022/04/GHSA-89m6-6f9x-8vwg/GHSA-89m6-6f9x-8vwg.json
index af3dbda96bb..30a780ef5f5 100644
--- a/advisories/unreviewed/2022/04/GHSA-89m6-6f9x-8vwg/GHSA-89m6-6f9x-8vwg.json
+++ b/advisories/unreviewed/2022/04/GHSA-89m6-6f9x-8vwg/GHSA-89m6-6f9x-8vwg.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-89v5-7vvv-7588/GHSA-89v5-7vvv-7588.json b/advisories/unreviewed/2022/04/GHSA-89v5-7vvv-7588/GHSA-89v5-7vvv-7588.json
index f289ce338e1..0584dd6fc17 100644
--- a/advisories/unreviewed/2022/04/GHSA-89v5-7vvv-7588/GHSA-89v5-7vvv-7588.json
+++ b/advisories/unreviewed/2022/04/GHSA-89v5-7vvv-7588/GHSA-89v5-7vvv-7588.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-8gg2-v36c-66j2/GHSA-8gg2-v36c-66j2.json b/advisories/unreviewed/2022/04/GHSA-8gg2-v36c-66j2/GHSA-8gg2-v36c-66j2.json
index b39e5e922db..21053834032 100644
--- a/advisories/unreviewed/2022/04/GHSA-8gg2-v36c-66j2/GHSA-8gg2-v36c-66j2.json
+++ b/advisories/unreviewed/2022/04/GHSA-8gg2-v36c-66j2/GHSA-8gg2-v36c-66j2.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-8gv2-j7j8-vrh8/GHSA-8gv2-j7j8-vrh8.json b/advisories/unreviewed/2022/04/GHSA-8gv2-j7j8-vrh8/GHSA-8gv2-j7j8-vrh8.json
index 3cd4397b466..dc4e6397ef1 100644
--- a/advisories/unreviewed/2022/04/GHSA-8gv2-j7j8-vrh8/GHSA-8gv2-j7j8-vrh8.json
+++ b/advisories/unreviewed/2022/04/GHSA-8gv2-j7j8-vrh8/GHSA-8gv2-j7j8-vrh8.json
@@ -7,12 +7,8 @@
"CVE-2012-6610"
],
"details": "Polycom HDX Video End Points before 3.0.4 and UC APL before 2.7.1.J allows remote authenticated users to execute arbitrary commands as demonstrated by a ; (semicolon) to the ping command feature.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-8hr8-h5jx-w7gp/GHSA-8hr8-h5jx-w7gp.json b/advisories/unreviewed/2022/04/GHSA-8hr8-h5jx-w7gp/GHSA-8hr8-h5jx-w7gp.json
index 9e37c3ce44d..a2cb0b570a2 100644
--- a/advisories/unreviewed/2022/04/GHSA-8hr8-h5jx-w7gp/GHSA-8hr8-h5jx-w7gp.json
+++ b/advisories/unreviewed/2022/04/GHSA-8hr8-h5jx-w7gp/GHSA-8hr8-h5jx-w7gp.json
@@ -7,12 +7,8 @@
"CVE-2011-4595"
],
"details": "Pretty-Link WordPress plugin 1.5.2 has XSS",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-8j34-5q65-4hmf/GHSA-8j34-5q65-4hmf.json b/advisories/unreviewed/2022/04/GHSA-8j34-5q65-4hmf/GHSA-8j34-5q65-4hmf.json
index 66eec9b1983..6bc6e5acfb0 100644
--- a/advisories/unreviewed/2022/04/GHSA-8j34-5q65-4hmf/GHSA-8j34-5q65-4hmf.json
+++ b/advisories/unreviewed/2022/04/GHSA-8j34-5q65-4hmf/GHSA-8j34-5q65-4hmf.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-8jq6-hqmc-9q2h/GHSA-8jq6-hqmc-9q2h.json b/advisories/unreviewed/2022/04/GHSA-8jq6-hqmc-9q2h/GHSA-8jq6-hqmc-9q2h.json
index a475d566d3b..1abf886fcbb 100644
--- a/advisories/unreviewed/2022/04/GHSA-8jq6-hqmc-9q2h/GHSA-8jq6-hqmc-9q2h.json
+++ b/advisories/unreviewed/2022/04/GHSA-8jq6-hqmc-9q2h/GHSA-8jq6-hqmc-9q2h.json
@@ -7,12 +7,8 @@
"CVE-2011-3370"
],
"details": "statusnet before 0.9.9 has XSS",
- "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/04/GHSA-8mc9-xv53-c76c/GHSA-8mc9-xv53-c76c.json b/advisories/unreviewed/2022/04/GHSA-8mc9-xv53-c76c/GHSA-8mc9-xv53-c76c.json
index d057992c82b..162964b8ac5 100644
--- a/advisories/unreviewed/2022/04/GHSA-8mc9-xv53-c76c/GHSA-8mc9-xv53-c76c.json
+++ b/advisories/unreviewed/2022/04/GHSA-8mc9-xv53-c76c/GHSA-8mc9-xv53-c76c.json
@@ -7,12 +7,8 @@
"CVE-2012-3407"
],
"details": "plow has local buffer overflow vulnerability",
- "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/04/GHSA-8p6h-x22r-w926/GHSA-8p6h-x22r-w926.json b/advisories/unreviewed/2022/04/GHSA-8p6h-x22r-w926/GHSA-8p6h-x22r-w926.json
index 4a25d79b30c..2a75a82a508 100644
--- a/advisories/unreviewed/2022/04/GHSA-8p6h-x22r-w926/GHSA-8p6h-x22r-w926.json
+++ b/advisories/unreviewed/2022/04/GHSA-8p6h-x22r-w926/GHSA-8p6h-x22r-w926.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-8rhg-6qwg-6c3v/GHSA-8rhg-6qwg-6c3v.json b/advisories/unreviewed/2022/04/GHSA-8rhg-6qwg-6c3v/GHSA-8rhg-6qwg-6c3v.json
index 06c7660edc2..cf52f38237f 100644
--- a/advisories/unreviewed/2022/04/GHSA-8rhg-6qwg-6c3v/GHSA-8rhg-6qwg-6c3v.json
+++ b/advisories/unreviewed/2022/04/GHSA-8rhg-6qwg-6c3v/GHSA-8rhg-6qwg-6c3v.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/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-8rmq-ww7h-f5hj/GHSA-8rmq-ww7h-f5hj.json b/advisories/unreviewed/2022/04/GHSA-8rmq-ww7h-f5hj/GHSA-8rmq-ww7h-f5hj.json
index aae0e18a18e..c1452a483f7 100644
--- a/advisories/unreviewed/2022/04/GHSA-8rmq-ww7h-f5hj/GHSA-8rmq-ww7h-f5hj.json
+++ b/advisories/unreviewed/2022/04/GHSA-8rmq-ww7h-f5hj/GHSA-8rmq-ww7h-f5hj.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-8vpp-hw3q-63mw/GHSA-8vpp-hw3q-63mw.json b/advisories/unreviewed/2022/04/GHSA-8vpp-hw3q-63mw/GHSA-8vpp-hw3q-63mw.json
index 0efe72137b4..e4b144d66e4 100644
--- a/advisories/unreviewed/2022/04/GHSA-8vpp-hw3q-63mw/GHSA-8vpp-hw3q-63mw.json
+++ b/advisories/unreviewed/2022/04/GHSA-8vpp-hw3q-63mw/GHSA-8vpp-hw3q-63mw.json
@@ -7,12 +7,8 @@
"CVE-2010-3305"
],
"details": "Cross-site request forgery (CSRF) vulnerability in pixelpost 1.7.3 could allow remote attackers to change the admin password.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-8w62-hmc9-cq72/GHSA-8w62-hmc9-cq72.json b/advisories/unreviewed/2022/04/GHSA-8w62-hmc9-cq72/GHSA-8w62-hmc9-cq72.json
index 96441973532..4794dd0c94f 100644
--- a/advisories/unreviewed/2022/04/GHSA-8w62-hmc9-cq72/GHSA-8w62-hmc9-cq72.json
+++ b/advisories/unreviewed/2022/04/GHSA-8w62-hmc9-cq72/GHSA-8w62-hmc9-cq72.json
@@ -7,12 +7,8 @@
"CVE-2011-2054"
],
"details": "A vulnerability in the Cisco ASA that could allow a remote attacker to successfully authenticate using the Cisco AnyConnect VPN client if the Secondary Authentication type is LDAP and the password is left blank, providing the primary credentials are correct. The vulnerabilities is due to improper input validation of certain parameters passed to the affected software. An attacker must have the correct primary credentials in order to successfully exploit this vulnerability.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-937r-586h-vgqf/GHSA-937r-586h-vgqf.json b/advisories/unreviewed/2022/04/GHSA-937r-586h-vgqf/GHSA-937r-586h-vgqf.json
index 66cea93d11d..573c8ab5cf0 100644
--- a/advisories/unreviewed/2022/04/GHSA-937r-586h-vgqf/GHSA-937r-586h-vgqf.json
+++ b/advisories/unreviewed/2022/04/GHSA-937r-586h-vgqf/GHSA-937r-586h-vgqf.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-94c2-rg8m-c4ch/GHSA-94c2-rg8m-c4ch.json b/advisories/unreviewed/2022/04/GHSA-94c2-rg8m-c4ch/GHSA-94c2-rg8m-c4ch.json
index 89e2396d9ba..753b9bbdb0e 100644
--- a/advisories/unreviewed/2022/04/GHSA-94c2-rg8m-c4ch/GHSA-94c2-rg8m-c4ch.json
+++ b/advisories/unreviewed/2022/04/GHSA-94c2-rg8m-c4ch/GHSA-94c2-rg8m-c4ch.json
@@ -7,12 +7,8 @@
"CVE-2010-4264"
],
"details": "It was found in vanilla forums before 2.0.10 a cross-site scripting vulnerability where a filename could contain arbitrary code to execute on the client side.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-94x7-g9v4-xqvc/GHSA-94x7-g9v4-xqvc.json b/advisories/unreviewed/2022/04/GHSA-94x7-g9v4-xqvc/GHSA-94x7-g9v4-xqvc.json
index 2561ef0e7bc..7116b56a51e 100644
--- a/advisories/unreviewed/2022/04/GHSA-94x7-g9v4-xqvc/GHSA-94x7-g9v4-xqvc.json
+++ b/advisories/unreviewed/2022/04/GHSA-94x7-g9v4-xqvc/GHSA-94x7-g9v4-xqvc.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-95pq-v592-p42v/GHSA-95pq-v592-p42v.json b/advisories/unreviewed/2022/04/GHSA-95pq-v592-p42v/GHSA-95pq-v592-p42v.json
index 591aa55c7b2..91064a8c86c 100644
--- a/advisories/unreviewed/2022/04/GHSA-95pq-v592-p42v/GHSA-95pq-v592-p42v.json
+++ b/advisories/unreviewed/2022/04/GHSA-95pq-v592-p42v/GHSA-95pq-v592-p42v.json
@@ -7,12 +7,8 @@
"CVE-2011-3618"
],
"details": "atop: symlink attack possible due to insecure tempfile handling",
- "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/04/GHSA-95v2-wh6j-6p7q/GHSA-95v2-wh6j-6p7q.json b/advisories/unreviewed/2022/04/GHSA-95v2-wh6j-6p7q/GHSA-95v2-wh6j-6p7q.json
index 5a24d2dcdc6..c79e7efaebb 100644
--- a/advisories/unreviewed/2022/04/GHSA-95v2-wh6j-6p7q/GHSA-95v2-wh6j-6p7q.json
+++ b/advisories/unreviewed/2022/04/GHSA-95v2-wh6j-6p7q/GHSA-95v2-wh6j-6p7q.json
@@ -7,12 +7,8 @@
"CVE-2010-4816"
],
"details": "It was found in FreeBSD 8.0, 6.3 and 4.9, and OpenBSD 4.6 that a null pointer dereference in ftpd/popen.c may lead to remote denial of service of the ftpd service.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-97hh-xg4h-8gvc/GHSA-97hh-xg4h-8gvc.json b/advisories/unreviewed/2022/04/GHSA-97hh-xg4h-8gvc/GHSA-97hh-xg4h-8gvc.json
index f356261fcac..91a51e59f1c 100644
--- a/advisories/unreviewed/2022/04/GHSA-97hh-xg4h-8gvc/GHSA-97hh-xg4h-8gvc.json
+++ b/advisories/unreviewed/2022/04/GHSA-97hh-xg4h-8gvc/GHSA-97hh-xg4h-8gvc.json
@@ -7,12 +7,8 @@
"CVE-2011-4661"
],
"details": "A memory leak vulnerability exists in Cisco IOS before 15.2(1)T due to a memory leak in the HTTP PROXY Server process (aka CSCtu52820), when configured with Cisco ISR Web Security with Cisco ScanSafe and User Authenticaiton NTLM configured.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-989w-w345-v363/GHSA-989w-w345-v363.json b/advisories/unreviewed/2022/04/GHSA-989w-w345-v363/GHSA-989w-w345-v363.json
index 291abb7849a..a0c89419115 100644
--- a/advisories/unreviewed/2022/04/GHSA-989w-w345-v363/GHSA-989w-w345-v363.json
+++ b/advisories/unreviewed/2022/04/GHSA-989w-w345-v363/GHSA-989w-w345-v363.json
@@ -7,12 +7,8 @@
"CVE-2011-4124"
],
"details": "Input validation issues were found in Calibre at devices/linux_mount_helper.c which can lead to argument injection and elevation of privileges.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-98g9-jfv6-r2r5/GHSA-98g9-jfv6-r2r5.json b/advisories/unreviewed/2022/04/GHSA-98g9-jfv6-r2r5/GHSA-98g9-jfv6-r2r5.json
index 682987dd492..671848066e5 100644
--- a/advisories/unreviewed/2022/04/GHSA-98g9-jfv6-r2r5/GHSA-98g9-jfv6-r2r5.json
+++ b/advisories/unreviewed/2022/04/GHSA-98g9-jfv6-r2r5/GHSA-98g9-jfv6-r2r5.json
@@ -7,12 +7,8 @@
"CVE-2012-5693"
],
"details": "Bulb Security Smartphone Pentest Framework (SPF) before 0.1.3 allows remote attackers to execute arbitrary commands via shell metacharacters in the ipAddressTB parameter to (1) remoteAttack.pl or (2) guessPassword.pl in frameworkgui/; the filename parameter to (3) CSAttack.pl or (4) SEAttack.pl in frameworkgui/; the phNo2Attack parameter to (5) CSAttack.pl or (6) SEAttack.pl in frameworkgui/; the (7) platformDD2 parameter to frameworkgui/SEAttack.pl; the (8) agentURLPath or (9) agentControlKey parameter to frameworkgui/attach2agents.pl; or the (10) controlKey parameter to frameworkgui/attachMobileModem.pl. NOTE: The hostingPath parameter to CSAttack.pl and SEAttack.pl vectors and the appURLPath parameter to attachMobileModem.pl vector are covered by CVE-2012-5878.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-9cmh-gfwv-p5hc/GHSA-9cmh-gfwv-p5hc.json b/advisories/unreviewed/2022/04/GHSA-9cmh-gfwv-p5hc/GHSA-9cmh-gfwv-p5hc.json
index 12eec4a1016..74ed93c40e8 100644
--- a/advisories/unreviewed/2022/04/GHSA-9cmh-gfwv-p5hc/GHSA-9cmh-gfwv-p5hc.json
+++ b/advisories/unreviewed/2022/04/GHSA-9cmh-gfwv-p5hc/GHSA-9cmh-gfwv-p5hc.json
@@ -7,12 +7,8 @@
"CVE-2012-4526"
],
"details": "piwigo has XSS in password.php (incomplete fix for CVE-2012-4525)",
- "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/04/GHSA-9cvv-j545-66mj/GHSA-9cvv-j545-66mj.json b/advisories/unreviewed/2022/04/GHSA-9cvv-j545-66mj/GHSA-9cvv-j545-66mj.json
index 03ae74585ba..919bad65824 100644
--- a/advisories/unreviewed/2022/04/GHSA-9cvv-j545-66mj/GHSA-9cvv-j545-66mj.json
+++ b/advisories/unreviewed/2022/04/GHSA-9cvv-j545-66mj/GHSA-9cvv-j545-66mj.json
@@ -7,12 +7,8 @@
"CVE-2010-2450"
],
"details": "The keygen.sh script in Shibboleth SP 2.0 (located in /usr/local/etc/shibboleth by default) uses OpenSSL to create a DES private key which is placed in sp-key.pm. It relies on the root umask (default 22) instead of chmoding the resulting file itself, so the generated private key is world readable by default.",
- "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/04/GHSA-9g9w-8cp9-8cpg/GHSA-9g9w-8cp9-8cpg.json b/advisories/unreviewed/2022/04/GHSA-9g9w-8cp9-8cpg/GHSA-9g9w-8cp9-8cpg.json
index fb997b7d024..6d3a4a83223 100644
--- a/advisories/unreviewed/2022/04/GHSA-9g9w-8cp9-8cpg/GHSA-9g9w-8cp9-8cpg.json
+++ b/advisories/unreviewed/2022/04/GHSA-9g9w-8cp9-8cpg/GHSA-9g9w-8cp9-8cpg.json
@@ -7,12 +7,8 @@
"CVE-2011-1070"
],
"details": "v86d before 0.1.10 do not verify if received netlink messages are sent by the kernel. This could allow unprivileged users to manipulate the video mode and potentially other consequences.",
- "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/04/GHSA-9gqq-x8ww-hp29/GHSA-9gqq-x8ww-hp29.json b/advisories/unreviewed/2022/04/GHSA-9gqq-x8ww-hp29/GHSA-9gqq-x8ww-hp29.json
index 5961ca5b96a..7ceb592c741 100644
--- a/advisories/unreviewed/2022/04/GHSA-9gqq-x8ww-hp29/GHSA-9gqq-x8ww-hp29.json
+++ b/advisories/unreviewed/2022/04/GHSA-9gqq-x8ww-hp29/GHSA-9gqq-x8ww-hp29.json
@@ -7,12 +7,8 @@
"CVE-2012-6345"
],
"details": "Novell ZENworks Configuration Management before 11.2.4 allows obtaining sensitive trace information.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-9gqx-256w-jx9x/GHSA-9gqx-256w-jx9x.json b/advisories/unreviewed/2022/04/GHSA-9gqx-256w-jx9x/GHSA-9gqx-256w-jx9x.json
index 6c8f2c3a1ea..52d94fd9a70 100644
--- a/advisories/unreviewed/2022/04/GHSA-9gqx-256w-jx9x/GHSA-9gqx-256w-jx9x.json
+++ b/advisories/unreviewed/2022/04/GHSA-9gqx-256w-jx9x/GHSA-9gqx-256w-jx9x.json
@@ -7,12 +7,8 @@
"CVE-2010-2243"
],
"details": "A vulnerability exists in kernel/time/clocksource.c in the Linux kernel before 2.6.33 where on non-GENERIC_TIME systems (GENERIC_TIME=n), accessing /sys/devices/system/clocksource/clocksource0/current_clocksource results in an OOPS.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-9h25-6r86-rmxc/GHSA-9h25-6r86-rmxc.json b/advisories/unreviewed/2022/04/GHSA-9h25-6r86-rmxc/GHSA-9h25-6r86-rmxc.json
index cb992af8342..c5bfa2d9115 100644
--- a/advisories/unreviewed/2022/04/GHSA-9h25-6r86-rmxc/GHSA-9h25-6r86-rmxc.json
+++ b/advisories/unreviewed/2022/04/GHSA-9h25-6r86-rmxc/GHSA-9h25-6r86-rmxc.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-9jc6-658p-pxr3/GHSA-9jc6-658p-pxr3.json b/advisories/unreviewed/2022/04/GHSA-9jc6-658p-pxr3/GHSA-9jc6-658p-pxr3.json
index 7248e8eca26..d184964a15d 100644
--- a/advisories/unreviewed/2022/04/GHSA-9jc6-658p-pxr3/GHSA-9jc6-658p-pxr3.json
+++ b/advisories/unreviewed/2022/04/GHSA-9jc6-658p-pxr3/GHSA-9jc6-658p-pxr3.json
@@ -7,12 +7,8 @@
"CVE-2011-4937"
],
"details": "Joomla! 1.7.1 has core information disclosure due to inadequate error checking.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-9jfp-m8g4-ccqm/GHSA-9jfp-m8g4-ccqm.json b/advisories/unreviewed/2022/04/GHSA-9jfp-m8g4-ccqm/GHSA-9jfp-m8g4-ccqm.json
index e5cfb717715..469b4ada9f8 100644
--- a/advisories/unreviewed/2022/04/GHSA-9jfp-m8g4-ccqm/GHSA-9jfp-m8g4-ccqm.json
+++ b/advisories/unreviewed/2022/04/GHSA-9jfp-m8g4-ccqm/GHSA-9jfp-m8g4-ccqm.json
@@ -7,12 +7,8 @@
"CVE-2012-3823"
],
"details": "Arial Campaign Enterprise before 11.0.551 stores passwords in clear text and these may be retrieved.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-9m9p-5rp9-q72v/GHSA-9m9p-5rp9-q72v.json b/advisories/unreviewed/2022/04/GHSA-9m9p-5rp9-q72v/GHSA-9m9p-5rp9-q72v.json
index cdde6ff7f26..44525dd89b4 100644
--- a/advisories/unreviewed/2022/04/GHSA-9m9p-5rp9-q72v/GHSA-9m9p-5rp9-q72v.json
+++ b/advisories/unreviewed/2022/04/GHSA-9m9p-5rp9-q72v/GHSA-9m9p-5rp9-q72v.json
@@ -7,12 +7,8 @@
"CVE-2011-1298"
],
"details": "An Integer Overflow exists in WebKit in Google Chrome before Blink M11 in the macOS WebCore::GraphicsContext::fillRect function.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-9p6g-hv66-2xf7/GHSA-9p6g-hv66-2xf7.json b/advisories/unreviewed/2022/04/GHSA-9p6g-hv66-2xf7/GHSA-9p6g-hv66-2xf7.json
index 9c047342d30..e671049f31f 100644
--- a/advisories/unreviewed/2022/04/GHSA-9p6g-hv66-2xf7/GHSA-9p6g-hv66-2xf7.json
+++ b/advisories/unreviewed/2022/04/GHSA-9p6g-hv66-2xf7/GHSA-9p6g-hv66-2xf7.json
@@ -7,12 +7,8 @@
"CVE-2009-1120"
],
"details": "EMC RepliStor Server Service before ESA-09-003 has a DoASOCommand Remote Code Execution Vulnerability. The flaw exists within the DoRcvRpcCall RPC function -exposed via the rep_srv.exe process- where the vulnerability is caused by an error when the rep_srv.exe handles a specially crafted packet sent by an unauthenticated attacker.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-9pf6-3wxm-2rg5/GHSA-9pf6-3wxm-2rg5.json b/advisories/unreviewed/2022/04/GHSA-9pf6-3wxm-2rg5/GHSA-9pf6-3wxm-2rg5.json
index 0ed0a422ab1..12f4d4de7d3 100644
--- a/advisories/unreviewed/2022/04/GHSA-9pf6-3wxm-2rg5/GHSA-9pf6-3wxm-2rg5.json
+++ b/advisories/unreviewed/2022/04/GHSA-9pf6-3wxm-2rg5/GHSA-9pf6-3wxm-2rg5.json
@@ -7,12 +7,8 @@
"CVE-2010-3440"
],
"details": "babiloo 2.0.9 before 2.0.11 creates temporary files with predictable names when downloading and unpacking dictionary files, allowing a local attacker to overwrite arbitrary files.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-9px3-cw6w-6qq7/GHSA-9px3-cw6w-6qq7.json b/advisories/unreviewed/2022/04/GHSA-9px3-cw6w-6qq7/GHSA-9px3-cw6w-6qq7.json
index 6232ca1bbc3..595370283e6 100644
--- a/advisories/unreviewed/2022/04/GHSA-9px3-cw6w-6qq7/GHSA-9px3-cw6w-6qq7.json
+++ b/advisories/unreviewed/2022/04/GHSA-9px3-cw6w-6qq7/GHSA-9px3-cw6w-6qq7.json
@@ -7,12 +7,8 @@
"CVE-2011-3352"
],
"details": "Zikula 1.3.0 build #3168 and probably prior has XSS flaw due to improper sanitization of the 'themename' parameter by setting default, modifying and deleting themes. A remote attacker with Zikula administrator privilege could use this flaw to execute arbitrary HTML or web script code in the context of the affected website.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-9r4m-f3wc-7hw5/GHSA-9r4m-f3wc-7hw5.json b/advisories/unreviewed/2022/04/GHSA-9r4m-f3wc-7hw5/GHSA-9r4m-f3wc-7hw5.json
index 5c015b6e13d..2938f8f9c94 100644
--- a/advisories/unreviewed/2022/04/GHSA-9r4m-f3wc-7hw5/GHSA-9r4m-f3wc-7hw5.json
+++ b/advisories/unreviewed/2022/04/GHSA-9r4m-f3wc-7hw5/GHSA-9r4m-f3wc-7hw5.json
@@ -7,12 +7,8 @@
"CVE-2011-2343"
],
"details": "The Bluetooth stack in Android before 2.3.6 allows a physically proximate attacker to obtain contact information via an AT phonebook transfer.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-9wxq-wwqc-x64j/GHSA-9wxq-wwqc-x64j.json b/advisories/unreviewed/2022/04/GHSA-9wxq-wwqc-x64j/GHSA-9wxq-wwqc-x64j.json
index 0f9b37fc2ec..d55771c2843 100644
--- a/advisories/unreviewed/2022/04/GHSA-9wxq-wwqc-x64j/GHSA-9wxq-wwqc-x64j.json
+++ b/advisories/unreviewed/2022/04/GHSA-9wxq-wwqc-x64j/GHSA-9wxq-wwqc-x64j.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:H/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-c2fp-3rf2-fmrf/GHSA-c2fp-3rf2-fmrf.json b/advisories/unreviewed/2022/04/GHSA-c2fp-3rf2-fmrf/GHSA-c2fp-3rf2-fmrf.json
index 52ef691566a..d753b7aa025 100644
--- a/advisories/unreviewed/2022/04/GHSA-c2fp-3rf2-fmrf/GHSA-c2fp-3rf2-fmrf.json
+++ b/advisories/unreviewed/2022/04/GHSA-c2fp-3rf2-fmrf/GHSA-c2fp-3rf2-fmrf.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-c452-mq7q-rm84/GHSA-c452-mq7q-rm84.json b/advisories/unreviewed/2022/04/GHSA-c452-mq7q-rm84/GHSA-c452-mq7q-rm84.json
index b384665d26a..03b7d34a0cb 100644
--- a/advisories/unreviewed/2022/04/GHSA-c452-mq7q-rm84/GHSA-c452-mq7q-rm84.json
+++ b/advisories/unreviewed/2022/04/GHSA-c452-mq7q-rm84/GHSA-c452-mq7q-rm84.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-c487-fg76-c2vh/GHSA-c487-fg76-c2vh.json b/advisories/unreviewed/2022/04/GHSA-c487-fg76-c2vh/GHSA-c487-fg76-c2vh.json
index ab7e36fbd69..8de3ba2adaf 100644
--- a/advisories/unreviewed/2022/04/GHSA-c487-fg76-c2vh/GHSA-c487-fg76-c2vh.json
+++ b/advisories/unreviewed/2022/04/GHSA-c487-fg76-c2vh/GHSA-c487-fg76-c2vh.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-c48x-29xg-cf33/GHSA-c48x-29xg-cf33.json b/advisories/unreviewed/2022/04/GHSA-c48x-29xg-cf33/GHSA-c48x-29xg-cf33.json
index 7bf8e10d207..e1da0e03b38 100644
--- a/advisories/unreviewed/2022/04/GHSA-c48x-29xg-cf33/GHSA-c48x-29xg-cf33.json
+++ b/advisories/unreviewed/2022/04/GHSA-c48x-29xg-cf33/GHSA-c48x-29xg-cf33.json
@@ -7,12 +7,8 @@
"CVE-2011-4455"
],
"details": "Multiple cross-site scripting vulnerabilities in Tiki 7.2 and earlier allow remote attackers to inject arbitrary web script or HTML via the path info to (1) tiki-admin_system.php, (2) tiki-pagehistory.php, (3) tiki-removepage.php, or (4) tiki-rename_page.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-c7j2-w3hr-p277/GHSA-c7j2-w3hr-p277.json b/advisories/unreviewed/2022/04/GHSA-c7j2-w3hr-p277/GHSA-c7j2-w3hr-p277.json
index 616140fd0c3..606fc6b1ec2 100644
--- a/advisories/unreviewed/2022/04/GHSA-c7j2-w3hr-p277/GHSA-c7j2-w3hr-p277.json
+++ b/advisories/unreviewed/2022/04/GHSA-c7j2-w3hr-p277/GHSA-c7j2-w3hr-p277.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-c8cq-8646-8rv8/GHSA-c8cq-8646-8rv8.json b/advisories/unreviewed/2022/04/GHSA-c8cq-8646-8rv8/GHSA-c8cq-8646-8rv8.json
index 9f21ea0cf43..deec7315615 100644
--- a/advisories/unreviewed/2022/04/GHSA-c8cq-8646-8rv8/GHSA-c8cq-8646-8rv8.json
+++ b/advisories/unreviewed/2022/04/GHSA-c8cq-8646-8rv8/GHSA-c8cq-8646-8rv8.json
@@ -7,12 +7,8 @@
"CVE-2012-6451"
],
"details": "Lorex LNC116 and LNC104 IP Cameras have a Remote Authentication Bypass Vulnerability",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-c8pp-x29m-wv8j/GHSA-c8pp-x29m-wv8j.json b/advisories/unreviewed/2022/04/GHSA-c8pp-x29m-wv8j/GHSA-c8pp-x29m-wv8j.json
index 6e326cf7e81..593daad0a9b 100644
--- a/advisories/unreviewed/2022/04/GHSA-c8pp-x29m-wv8j/GHSA-c8pp-x29m-wv8j.json
+++ b/advisories/unreviewed/2022/04/GHSA-c8pp-x29m-wv8j/GHSA-c8pp-x29m-wv8j.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-c8r8-gwg2-5wfh/GHSA-c8r8-gwg2-5wfh.json b/advisories/unreviewed/2022/04/GHSA-c8r8-gwg2-5wfh/GHSA-c8r8-gwg2-5wfh.json
index 36e20362b3f..c2c23aff07f 100644
--- a/advisories/unreviewed/2022/04/GHSA-c8r8-gwg2-5wfh/GHSA-c8r8-gwg2-5wfh.json
+++ b/advisories/unreviewed/2022/04/GHSA-c8r8-gwg2-5wfh/GHSA-c8r8-gwg2-5wfh.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-c8vq-g263-292w/GHSA-c8vq-g263-292w.json b/advisories/unreviewed/2022/04/GHSA-c8vq-g263-292w/GHSA-c8vq-g263-292w.json
index be764b93fef..aaeb2f7770e 100644
--- a/advisories/unreviewed/2022/04/GHSA-c8vq-g263-292w/GHSA-c8vq-g263-292w.json
+++ b/advisories/unreviewed/2022/04/GHSA-c8vq-g263-292w/GHSA-c8vq-g263-292w.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-c9g4-pfp3-j9qm/GHSA-c9g4-pfp3-j9qm.json b/advisories/unreviewed/2022/04/GHSA-c9g4-pfp3-j9qm/GHSA-c9g4-pfp3-j9qm.json
index b1e073a03ba..54248402d85 100644
--- a/advisories/unreviewed/2022/04/GHSA-c9g4-pfp3-j9qm/GHSA-c9g4-pfp3-j9qm.json
+++ b/advisories/unreviewed/2022/04/GHSA-c9g4-pfp3-j9qm/GHSA-c9g4-pfp3-j9qm.json
@@ -7,12 +7,8 @@
"CVE-2010-3282"
],
"details": "389 Directory Server before 1.2.7.1 (aka Red Hat Directory Server 8.2) and HP-UX Directory Server before B.08.10.03, when audit logging is enabled, logs the Directory Manager password (nsslapd-rootpw) in cleartext when changing cn=config:nsslapd-rootpw, which might allow local users to obtain sensitive information by reading the log.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-c9m2-844r-3389/GHSA-c9m2-844r-3389.json b/advisories/unreviewed/2022/04/GHSA-c9m2-844r-3389/GHSA-c9m2-844r-3389.json
index 8a244bcff21..5653a936adb 100644
--- a/advisories/unreviewed/2022/04/GHSA-c9m2-844r-3389/GHSA-c9m2-844r-3389.json
+++ b/advisories/unreviewed/2022/04/GHSA-c9m2-844r-3389/GHSA-c9m2-844r-3389.json
@@ -7,12 +7,8 @@
"CVE-2012-2312"
],
"details": "An Elevated Privileges issue exists in JBoss AS 7 Community Release due to the improper implementation in the security context propagation, A threat gets reused from the thread pool that still retains the security context from the process last used, which lets a local user obtain elevated privileges.",
- "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/04/GHSA-ccwc-3v75-qp35/GHSA-ccwc-3v75-qp35.json b/advisories/unreviewed/2022/04/GHSA-ccwc-3v75-qp35/GHSA-ccwc-3v75-qp35.json
index 737dc9162d4..2ff36c50427 100644
--- a/advisories/unreviewed/2022/04/GHSA-ccwc-3v75-qp35/GHSA-ccwc-3v75-qp35.json
+++ b/advisories/unreviewed/2022/04/GHSA-ccwc-3v75-qp35/GHSA-ccwc-3v75-qp35.json
@@ -7,12 +7,8 @@
"CVE-2012-1168"
],
"details": "Moodle before 2.2.2 has a password and web services issue where when the user profile is updated the user password is reset if not specified.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -56,9 +52,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-cg4f-h5jv-phrq/GHSA-cg4f-h5jv-phrq.json b/advisories/unreviewed/2022/04/GHSA-cg4f-h5jv-phrq/GHSA-cg4f-h5jv-phrq.json
index 5e97a19760c..6fcda96b064 100644
--- a/advisories/unreviewed/2022/04/GHSA-cg4f-h5jv-phrq/GHSA-cg4f-h5jv-phrq.json
+++ b/advisories/unreviewed/2022/04/GHSA-cg4f-h5jv-phrq/GHSA-cg4f-h5jv-phrq.json
@@ -7,12 +7,8 @@
"CVE-2010-4658"
],
"details": "statusnet through 2010 allows attackers to spoof syslog messages via newline injection attacks.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-chc6-9436-6wfq/GHSA-chc6-9436-6wfq.json b/advisories/unreviewed/2022/04/GHSA-chc6-9436-6wfq/GHSA-chc6-9436-6wfq.json
index 7fc4972cff9..ae19c44a0da 100644
--- a/advisories/unreviewed/2022/04/GHSA-chc6-9436-6wfq/GHSA-chc6-9436-6wfq.json
+++ b/advisories/unreviewed/2022/04/GHSA-chc6-9436-6wfq/GHSA-chc6-9436-6wfq.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-chff-pqgh-rg4m/GHSA-chff-pqgh-rg4m.json b/advisories/unreviewed/2022/04/GHSA-chff-pqgh-rg4m/GHSA-chff-pqgh-rg4m.json
index 1cc5306a06f..06bc3200c9c 100644
--- a/advisories/unreviewed/2022/04/GHSA-chff-pqgh-rg4m/GHSA-chff-pqgh-rg4m.json
+++ b/advisories/unreviewed/2022/04/GHSA-chff-pqgh-rg4m/GHSA-chff-pqgh-rg4m.json
@@ -7,12 +7,8 @@
"CVE-2012-5699"
],
"details": "BabyGekko before 1.2.4 allows PHP file inclusion.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-chjw-8rf3-xw7f/GHSA-chjw-8rf3-xw7f.json b/advisories/unreviewed/2022/04/GHSA-chjw-8rf3-xw7f/GHSA-chjw-8rf3-xw7f.json
index 7618bc774d6..33d9a54eb19 100644
--- a/advisories/unreviewed/2022/04/GHSA-chjw-8rf3-xw7f/GHSA-chjw-8rf3-xw7f.json
+++ b/advisories/unreviewed/2022/04/GHSA-chjw-8rf3-xw7f/GHSA-chjw-8rf3-xw7f.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-cjxr-ccf9-frvw/GHSA-cjxr-ccf9-frvw.json b/advisories/unreviewed/2022/04/GHSA-cjxr-ccf9-frvw/GHSA-cjxr-ccf9-frvw.json
index 8b39544fe32..81eead15a5e 100644
--- a/advisories/unreviewed/2022/04/GHSA-cjxr-ccf9-frvw/GHSA-cjxr-ccf9-frvw.json
+++ b/advisories/unreviewed/2022/04/GHSA-cjxr-ccf9-frvw/GHSA-cjxr-ccf9-frvw.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-cq7c-g6cg-x8m6/GHSA-cq7c-g6cg-x8m6.json b/advisories/unreviewed/2022/04/GHSA-cq7c-g6cg-x8m6/GHSA-cq7c-g6cg-x8m6.json
index 9458c7f72ff..e1e82a9ac09 100644
--- a/advisories/unreviewed/2022/04/GHSA-cq7c-g6cg-x8m6/GHSA-cq7c-g6cg-x8m6.json
+++ b/advisories/unreviewed/2022/04/GHSA-cq7c-g6cg-x8m6/GHSA-cq7c-g6cg-x8m6.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-cqq5-x4gj-94gm/GHSA-cqq5-x4gj-94gm.json b/advisories/unreviewed/2022/04/GHSA-cqq5-x4gj-94gm/GHSA-cqq5-x4gj-94gm.json
index 0cffffe874a..83aea95eeea 100644
--- a/advisories/unreviewed/2022/04/GHSA-cqq5-x4gj-94gm/GHSA-cqq5-x4gj-94gm.json
+++ b/advisories/unreviewed/2022/04/GHSA-cqq5-x4gj-94gm/GHSA-cqq5-x4gj-94gm.json
@@ -7,12 +7,8 @@
"CVE-2011-0220"
],
"details": "Apple Bonjour before 2011 allows a crash via a crafted multicast DNS packet.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-cr94-vrpx-83vx/GHSA-cr94-vrpx-83vx.json b/advisories/unreviewed/2022/04/GHSA-cr94-vrpx-83vx/GHSA-cr94-vrpx-83vx.json
index 0f796575e48..85ab0d9defd 100644
--- a/advisories/unreviewed/2022/04/GHSA-cr94-vrpx-83vx/GHSA-cr94-vrpx-83vx.json
+++ b/advisories/unreviewed/2022/04/GHSA-cr94-vrpx-83vx/GHSA-cr94-vrpx-83vx.json
@@ -7,12 +7,8 @@
"CVE-2012-3810"
],
"details": "Samsung Kies before 2.5.0.12094_27_11 has registry modification.",
- "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/04/GHSA-cvpf-9f44-5fh9/GHSA-cvpf-9f44-5fh9.json b/advisories/unreviewed/2022/04/GHSA-cvpf-9f44-5fh9/GHSA-cvpf-9f44-5fh9.json
index 8ad20bb4739..aa40dcae4b2 100644
--- a/advisories/unreviewed/2022/04/GHSA-cvpf-9f44-5fh9/GHSA-cvpf-9f44-5fh9.json
+++ b/advisories/unreviewed/2022/04/GHSA-cvpf-9f44-5fh9/GHSA-cvpf-9f44-5fh9.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-cw23-wc53-wq74/GHSA-cw23-wc53-wq74.json b/advisories/unreviewed/2022/04/GHSA-cw23-wc53-wq74/GHSA-cw23-wc53-wq74.json
index d23ad64773b..177b9ada42c 100644
--- a/advisories/unreviewed/2022/04/GHSA-cw23-wc53-wq74/GHSA-cw23-wc53-wq74.json
+++ b/advisories/unreviewed/2022/04/GHSA-cw23-wc53-wq74/GHSA-cw23-wc53-wq74.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-cw2c-5mfc-2r8r/GHSA-cw2c-5mfc-2r8r.json b/advisories/unreviewed/2022/04/GHSA-cw2c-5mfc-2r8r/GHSA-cw2c-5mfc-2r8r.json
index 2bc955bb5af..c4b4d0e6361 100644
--- a/advisories/unreviewed/2022/04/GHSA-cw2c-5mfc-2r8r/GHSA-cw2c-5mfc-2r8r.json
+++ b/advisories/unreviewed/2022/04/GHSA-cw2c-5mfc-2r8r/GHSA-cw2c-5mfc-2r8r.json
@@ -7,12 +7,8 @@
"CVE-2010-3439"
],
"details": "It is possible to cause a DoS condition by causing the server to crash in alien-arena 7.33 by supplying various invalid parameters to the download command.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-cx86-w5j3-gfqp/GHSA-cx86-w5j3-gfqp.json b/advisories/unreviewed/2022/04/GHSA-cx86-w5j3-gfqp/GHSA-cx86-w5j3-gfqp.json
index 71bc5c90dca..d6eb8e58481 100644
--- a/advisories/unreviewed/2022/04/GHSA-cx86-w5j3-gfqp/GHSA-cx86-w5j3-gfqp.json
+++ b/advisories/unreviewed/2022/04/GHSA-cx86-w5j3-gfqp/GHSA-cx86-w5j3-gfqp.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-cxrg-683h-6369/GHSA-cxrg-683h-6369.json b/advisories/unreviewed/2022/04/GHSA-cxrg-683h-6369/GHSA-cxrg-683h-6369.json
index f2ed0b31c2e..38f6cdf32c7 100644
--- a/advisories/unreviewed/2022/04/GHSA-cxrg-683h-6369/GHSA-cxrg-683h-6369.json
+++ b/advisories/unreviewed/2022/04/GHSA-cxrg-683h-6369/GHSA-cxrg-683h-6369.json
@@ -7,12 +7,8 @@
"CVE-2012-1562"
],
"details": "Joomla! core before 2.5.3 allows unauthorized password change.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-f3x8-4g3m-gxj6/GHSA-f3x8-4g3m-gxj6.json b/advisories/unreviewed/2022/04/GHSA-f3x8-4g3m-gxj6/GHSA-f3x8-4g3m-gxj6.json
index 3e5491d03db..f5b56a71e14 100644
--- a/advisories/unreviewed/2022/04/GHSA-f3x8-4g3m-gxj6/GHSA-f3x8-4g3m-gxj6.json
+++ b/advisories/unreviewed/2022/04/GHSA-f3x8-4g3m-gxj6/GHSA-f3x8-4g3m-gxj6.json
@@ -7,12 +7,8 @@
"CVE-2009-5139"
],
"details": "The SIP implementation on the Gizmo5 software phone provides hashed credentials in a response to an invalid authentication challenge, which makes it easier for remote attackers to obtain access via a brute-force attack, related to a \"SIP Digest Leak\" issue.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-f5v9-gx6m-f8qq/GHSA-f5v9-gx6m-f8qq.json b/advisories/unreviewed/2022/04/GHSA-f5v9-gx6m-f8qq/GHSA-f5v9-gx6m-f8qq.json
index b48f86f7336..a9c52f1b5b0 100644
--- a/advisories/unreviewed/2022/04/GHSA-f5v9-gx6m-f8qq/GHSA-f5v9-gx6m-f8qq.json
+++ b/advisories/unreviewed/2022/04/GHSA-f5v9-gx6m-f8qq/GHSA-f5v9-gx6m-f8qq.json
@@ -7,12 +7,8 @@
"CVE-2011-1459"
],
"details": "The WebKit::WebPluginContainerImpl::handleEvent function in Google Chrome before Blink M11 allows an attacker to cause a denial of service (crash) via the htmlpluginelement.cpp plugin.",
- "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/04/GHSA-f6fw-jqcv-qfw7/GHSA-f6fw-jqcv-qfw7.json b/advisories/unreviewed/2022/04/GHSA-f6fw-jqcv-qfw7/GHSA-f6fw-jqcv-qfw7.json
index db57f9616d5..17b1d076b69 100644
--- a/advisories/unreviewed/2022/04/GHSA-f6fw-jqcv-qfw7/GHSA-f6fw-jqcv-qfw7.json
+++ b/advisories/unreviewed/2022/04/GHSA-f6fw-jqcv-qfw7/GHSA-f6fw-jqcv-qfw7.json
@@ -7,12 +7,8 @@
"CVE-2011-3350"
],
"details": "masqmail 0.2.21 through 0.2.30 improperly calls seteuid() in src/log.c and src/masqmail.c that results in improper privilege dropping.",
- "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/04/GHSA-f7ff-r7m3-qvvg/GHSA-f7ff-r7m3-qvvg.json b/advisories/unreviewed/2022/04/GHSA-f7ff-r7m3-qvvg/GHSA-f7ff-r7m3-qvvg.json
index 718a2ec2f0d..7e2179f6d5b 100644
--- a/advisories/unreviewed/2022/04/GHSA-f7ff-r7m3-qvvg/GHSA-f7ff-r7m3-qvvg.json
+++ b/advisories/unreviewed/2022/04/GHSA-f7ff-r7m3-qvvg/GHSA-f7ff-r7m3-qvvg.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-f8g5-wppw-9vhr/GHSA-f8g5-wppw-9vhr.json b/advisories/unreviewed/2022/04/GHSA-f8g5-wppw-9vhr/GHSA-f8g5-wppw-9vhr.json
index 14c7538ff8e..65e79a10bda 100644
--- a/advisories/unreviewed/2022/04/GHSA-f8g5-wppw-9vhr/GHSA-f8g5-wppw-9vhr.json
+++ b/advisories/unreviewed/2022/04/GHSA-f8g5-wppw-9vhr/GHSA-f8g5-wppw-9vhr.json
@@ -7,12 +7,8 @@
"CVE-2012-4284"
],
"details": "A Privilege Escalation vulnerability exists in Viscosity 1.4.1 on Mac OS X due to a path name validation issue in the setuid-set ViscosityHelper binary, which could let a remote malicious user execute arbitrary code",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-f8jf-3w6m-6v39/GHSA-f8jf-3w6m-6v39.json b/advisories/unreviewed/2022/04/GHSA-f8jf-3w6m-6v39/GHSA-f8jf-3w6m-6v39.json
index 73db95bafe1..82d95f9b7cb 100644
--- a/advisories/unreviewed/2022/04/GHSA-f8jf-3w6m-6v39/GHSA-f8jf-3w6m-6v39.json
+++ b/advisories/unreviewed/2022/04/GHSA-f8jf-3w6m-6v39/GHSA-f8jf-3w6m-6v39.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-f9m6-9g9j-r3hc/GHSA-f9m6-9g9j-r3hc.json b/advisories/unreviewed/2022/04/GHSA-f9m6-9g9j-r3hc/GHSA-f9m6-9g9j-r3hc.json
index c5c73ac1ad4..1846fefaa46 100644
--- a/advisories/unreviewed/2022/04/GHSA-f9m6-9g9j-r3hc/GHSA-f9m6-9g9j-r3hc.json
+++ b/advisories/unreviewed/2022/04/GHSA-f9m6-9g9j-r3hc/GHSA-f9m6-9g9j-r3hc.json
@@ -7,12 +7,8 @@
"CVE-2011-3612"
],
"details": "Cross-Site Request Forgery (CSRF) vulnerability exists in panel.php in UseBB before 1.0.12.",
- "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/04/GHSA-fg89-9x43-49qx/GHSA-fg89-9x43-49qx.json b/advisories/unreviewed/2022/04/GHSA-fg89-9x43-49qx/GHSA-fg89-9x43-49qx.json
index d9c980b996b..2b917aad667 100644
--- a/advisories/unreviewed/2022/04/GHSA-fg89-9x43-49qx/GHSA-fg89-9x43-49qx.json
+++ b/advisories/unreviewed/2022/04/GHSA-fg89-9x43-49qx/GHSA-fg89-9x43-49qx.json
@@ -7,12 +7,8 @@
"CVE-2010-1433"
],
"details": "Joomla! Core is prone to a vulnerability that lets attackers upload arbitrary files because the application fails to properly verify user-supplied input. An attacker can exploit this vulnerability to upload arbitrary code and run it in the context of the webserver process. This may facilitate unauthorized access or privilege escalation; other attacks are also possible. Joomla! Core versions 1.5.x ranging from 1.5.0 and up to and including 1.5.15 are vulnerable.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-fj95-66r4-8f7j/GHSA-fj95-66r4-8f7j.json b/advisories/unreviewed/2022/04/GHSA-fj95-66r4-8f7j/GHSA-fj95-66r4-8f7j.json
index 950cd085393..edb0a7889ee 100644
--- a/advisories/unreviewed/2022/04/GHSA-fj95-66r4-8f7j/GHSA-fj95-66r4-8f7j.json
+++ b/advisories/unreviewed/2022/04/GHSA-fj95-66r4-8f7j/GHSA-fj95-66r4-8f7j.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",
@@ -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-fjpw-8fm2-p7m6/GHSA-fjpw-8fm2-p7m6.json b/advisories/unreviewed/2022/04/GHSA-fjpw-8fm2-p7m6/GHSA-fjpw-8fm2-p7m6.json
index 959e02667b6..a0a369dbb93 100644
--- a/advisories/unreviewed/2022/04/GHSA-fjpw-8fm2-p7m6/GHSA-fjpw-8fm2-p7m6.json
+++ b/advisories/unreviewed/2022/04/GHSA-fjpw-8fm2-p7m6/GHSA-fjpw-8fm2-p7m6.json
@@ -7,12 +7,8 @@
"CVE-2012-6649"
],
"details": "WordPress WP GPX Maps Plugin 1.1.21 allows remote attackers to execute arbitrary PHP code via improper file upload.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-fp52-jqr7-7249/GHSA-fp52-jqr7-7249.json b/advisories/unreviewed/2022/04/GHSA-fp52-jqr7-7249/GHSA-fp52-jqr7-7249.json
index 73dfad92aea..296691394f9 100644
--- a/advisories/unreviewed/2022/04/GHSA-fp52-jqr7-7249/GHSA-fp52-jqr7-7249.json
+++ b/advisories/unreviewed/2022/04/GHSA-fp52-jqr7-7249/GHSA-fp52-jqr7-7249.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-fq9v-xx8v-3p87/GHSA-fq9v-xx8v-3p87.json b/advisories/unreviewed/2022/04/GHSA-fq9v-xx8v-3p87/GHSA-fq9v-xx8v-3p87.json
index a7bdf648720..1fb112cd20c 100644
--- a/advisories/unreviewed/2022/04/GHSA-fq9v-xx8v-3p87/GHSA-fq9v-xx8v-3p87.json
+++ b/advisories/unreviewed/2022/04/GHSA-fq9v-xx8v-3p87/GHSA-fq9v-xx8v-3p87.json
@@ -7,12 +7,8 @@
"CVE-2011-4972"
],
"details": "hook_file_download in the CKEditor module 7.x-1.4 for Drupal does not properly restrict access to private files, which allows remote attackers to read private files via a direct request.",
- "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/04/GHSA-fqw3-8c7j-wwc9/GHSA-fqw3-8c7j-wwc9.json b/advisories/unreviewed/2022/04/GHSA-fqw3-8c7j-wwc9/GHSA-fqw3-8c7j-wwc9.json
index cffba03c67d..8220822f0a0 100644
--- a/advisories/unreviewed/2022/04/GHSA-fqw3-8c7j-wwc9/GHSA-fqw3-8c7j-wwc9.json
+++ b/advisories/unreviewed/2022/04/GHSA-fqw3-8c7j-wwc9/GHSA-fqw3-8c7j-wwc9.json
@@ -7,12 +7,8 @@
"CVE-2011-4915"
],
"details": "fs/proc/base.c in the Linux kernel through 3.1 allows local users to obtain sensitive keystroke information via access to /proc/interrupts.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -52,9 +48,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-frf2-65rv-6f9p/GHSA-frf2-65rv-6f9p.json b/advisories/unreviewed/2022/04/GHSA-frf2-65rv-6f9p/GHSA-frf2-65rv-6f9p.json
index 8639d2d81ad..4afa8c43792 100644
--- a/advisories/unreviewed/2022/04/GHSA-frf2-65rv-6f9p/GHSA-frf2-65rv-6f9p.json
+++ b/advisories/unreviewed/2022/04/GHSA-frf2-65rv-6f9p/GHSA-frf2-65rv-6f9p.json
@@ -7,12 +7,8 @@
"CVE-2012-3806"
],
"details": "Samsung Kies before 2.5.0.12094_27_11 contains a NULL pointer dereference vulnerability which could allow remote attackers to perform a denial of service.",
- "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/04/GHSA-fv24-mphj-4hr6/GHSA-fv24-mphj-4hr6.json b/advisories/unreviewed/2022/04/GHSA-fv24-mphj-4hr6/GHSA-fv24-mphj-4hr6.json
index 1b6c44df588..9e67cd42bda 100644
--- a/advisories/unreviewed/2022/04/GHSA-fv24-mphj-4hr6/GHSA-fv24-mphj-4hr6.json
+++ b/advisories/unreviewed/2022/04/GHSA-fv24-mphj-4hr6/GHSA-fv24-mphj-4hr6.json
@@ -7,12 +7,8 @@
"CVE-2009-5140"
],
"details": "The SIP implementation on the Linksys SPA2102 phone adapter provides hashed credentials in a response to an invalid authentication challenge, which makes it easier for remote attackers to obtain access via a brute-force attack, related to a \"SIP Digest Leak\" issue.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-fwg3-g57x-c324/GHSA-fwg3-g57x-c324.json b/advisories/unreviewed/2022/04/GHSA-fwg3-g57x-c324/GHSA-fwg3-g57x-c324.json
index 0623c0bd952..2980249987a 100644
--- a/advisories/unreviewed/2022/04/GHSA-fwg3-g57x-c324/GHSA-fwg3-g57x-c324.json
+++ b/advisories/unreviewed/2022/04/GHSA-fwg3-g57x-c324/GHSA-fwg3-g57x-c324.json
@@ -7,12 +7,8 @@
"CVE-2012-6114"
],
"details": "The git-changelog utility in git-extras 1.7.0 allows local users to overwrite arbitrary files via a symlink attack on (1) /tmp/changelog or (2) /tmp/.git-effort.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-fxg2-qg2r-vp8h/GHSA-fxg2-qg2r-vp8h.json b/advisories/unreviewed/2022/04/GHSA-fxg2-qg2r-vp8h/GHSA-fxg2-qg2r-vp8h.json
index a7ebcb63d8e..2ae06ea32d7 100644
--- a/advisories/unreviewed/2022/04/GHSA-fxg2-qg2r-vp8h/GHSA-fxg2-qg2r-vp8h.json
+++ b/advisories/unreviewed/2022/04/GHSA-fxg2-qg2r-vp8h/GHSA-fxg2-qg2r-vp8h.json
@@ -7,12 +7,8 @@
"CVE-2012-2148"
],
"details": "An issue exists in the property replacements feature in any descriptor in JBoxx AS 7.1.1 ignores java security policies",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-fxxg-mjjq-cmfg/GHSA-fxxg-mjjq-cmfg.json b/advisories/unreviewed/2022/04/GHSA-fxxg-mjjq-cmfg/GHSA-fxxg-mjjq-cmfg.json
index 369d878123b..a31102e60c2 100644
--- a/advisories/unreviewed/2022/04/GHSA-fxxg-mjjq-cmfg/GHSA-fxxg-mjjq-cmfg.json
+++ b/advisories/unreviewed/2022/04/GHSA-fxxg-mjjq-cmfg/GHSA-fxxg-mjjq-cmfg.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-g2fv-7p92-26hg/GHSA-g2fv-7p92-26hg.json b/advisories/unreviewed/2022/04/GHSA-g2fv-7p92-26hg/GHSA-g2fv-7p92-26hg.json
index 021f452d5f8..08941e81799 100644
--- a/advisories/unreviewed/2022/04/GHSA-g2fv-7p92-26hg/GHSA-g2fv-7p92-26hg.json
+++ b/advisories/unreviewed/2022/04/GHSA-g2fv-7p92-26hg/GHSA-g2fv-7p92-26hg.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-g37p-4r9w-vrfx/GHSA-g37p-4r9w-vrfx.json b/advisories/unreviewed/2022/04/GHSA-g37p-4r9w-vrfx/GHSA-g37p-4r9w-vrfx.json
index 1afc067fbd9..f8c0666c75b 100644
--- a/advisories/unreviewed/2022/04/GHSA-g37p-4r9w-vrfx/GHSA-g37p-4r9w-vrfx.json
+++ b/advisories/unreviewed/2022/04/GHSA-g37p-4r9w-vrfx/GHSA-g37p-4r9w-vrfx.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",
@@ -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-g49p-q335-6257/GHSA-g49p-q335-6257.json b/advisories/unreviewed/2022/04/GHSA-g49p-q335-6257/GHSA-g49p-q335-6257.json
index 4622a426324..f32b16a59a8 100644
--- a/advisories/unreviewed/2022/04/GHSA-g49p-q335-6257/GHSA-g49p-q335-6257.json
+++ b/advisories/unreviewed/2022/04/GHSA-g49p-q335-6257/GHSA-g49p-q335-6257.json
@@ -7,12 +7,8 @@
"CVE-2011-3336"
],
"details": "regcomp in the BSD implementation of libc is vulnerable to denial of service due to stack exhaustion.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-g5p9-fh97-3426/GHSA-g5p9-fh97-3426.json b/advisories/unreviewed/2022/04/GHSA-g5p9-fh97-3426/GHSA-g5p9-fh97-3426.json
index 68bfb1a6ea6..204eb582178 100644
--- a/advisories/unreviewed/2022/04/GHSA-g5p9-fh97-3426/GHSA-g5p9-fh97-3426.json
+++ b/advisories/unreviewed/2022/04/GHSA-g5p9-fh97-3426/GHSA-g5p9-fh97-3426.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-g6g9-vpf9-jrfv/GHSA-g6g9-vpf9-jrfv.json b/advisories/unreviewed/2022/04/GHSA-g6g9-vpf9-jrfv/GHSA-g6g9-vpf9-jrfv.json
index f4917d6e059..6902a0b4152 100644
--- a/advisories/unreviewed/2022/04/GHSA-g6g9-vpf9-jrfv/GHSA-g6g9-vpf9-jrfv.json
+++ b/advisories/unreviewed/2022/04/GHSA-g6g9-vpf9-jrfv/GHSA-g6g9-vpf9-jrfv.json
@@ -7,12 +7,8 @@
"CVE-2011-1009"
],
"details": "Vanilla Forums 2.0.17.1 through 2.0.17.5 has XSS in /vanilla/index.php via the p parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-g79w-q84v-cx7q/GHSA-g79w-q84v-cx7q.json b/advisories/unreviewed/2022/04/GHSA-g79w-q84v-cx7q/GHSA-g79w-q84v-cx7q.json
index 0b117133d5b..448df2ddd1d 100644
--- a/advisories/unreviewed/2022/04/GHSA-g79w-q84v-cx7q/GHSA-g79w-q84v-cx7q.json
+++ b/advisories/unreviewed/2022/04/GHSA-g79w-q84v-cx7q/GHSA-g79w-q84v-cx7q.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-g82r-h8rh-vpp3/GHSA-g82r-h8rh-vpp3.json b/advisories/unreviewed/2022/04/GHSA-g82r-h8rh-vpp3/GHSA-g82r-h8rh-vpp3.json
index 19419c808c5..04ecd854a1c 100644
--- a/advisories/unreviewed/2022/04/GHSA-g82r-h8rh-vpp3/GHSA-g82r-h8rh-vpp3.json
+++ b/advisories/unreviewed/2022/04/GHSA-g82r-h8rh-vpp3/GHSA-g82r-h8rh-vpp3.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-g9h8-pqf6-pcr9/GHSA-g9h8-pqf6-pcr9.json b/advisories/unreviewed/2022/04/GHSA-g9h8-pqf6-pcr9/GHSA-g9h8-pqf6-pcr9.json
index 688ea3d3c19..2fbcce070d6 100644
--- a/advisories/unreviewed/2022/04/GHSA-g9h8-pqf6-pcr9/GHSA-g9h8-pqf6-pcr9.json
+++ b/advisories/unreviewed/2022/04/GHSA-g9h8-pqf6-pcr9/GHSA-g9h8-pqf6-pcr9.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-gc4v-gj3r-jcjc/GHSA-gc4v-gj3r-jcjc.json b/advisories/unreviewed/2022/04/GHSA-gc4v-gj3r-jcjc/GHSA-gc4v-gj3r-jcjc.json
index ee127a95641..a4973c24f70 100644
--- a/advisories/unreviewed/2022/04/GHSA-gc4v-gj3r-jcjc/GHSA-gc4v-gj3r-jcjc.json
+++ b/advisories/unreviewed/2022/04/GHSA-gc4v-gj3r-jcjc/GHSA-gc4v-gj3r-jcjc.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-gfww-4j67-hpj2/GHSA-gfww-4j67-hpj2.json b/advisories/unreviewed/2022/04/GHSA-gfww-4j67-hpj2/GHSA-gfww-4j67-hpj2.json
index 153ed788fbf..5b4e85b8530 100644
--- a/advisories/unreviewed/2022/04/GHSA-gfww-4j67-hpj2/GHSA-gfww-4j67-hpj2.json
+++ b/advisories/unreviewed/2022/04/GHSA-gfww-4j67-hpj2/GHSA-gfww-4j67-hpj2.json
@@ -7,12 +7,8 @@
"CVE-2010-4661"
],
"details": "udisks before 1.0.3 allows a local user to load arbitrary Linux kernel modules.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-gm8p-g6rx-37hp/GHSA-gm8p-g6rx-37hp.json b/advisories/unreviewed/2022/04/GHSA-gm8p-g6rx-37hp/GHSA-gm8p-g6rx-37hp.json
index 1a3024c8bcd..3274f3a41c3 100644
--- a/advisories/unreviewed/2022/04/GHSA-gm8p-g6rx-37hp/GHSA-gm8p-g6rx-37hp.json
+++ b/advisories/unreviewed/2022/04/GHSA-gm8p-g6rx-37hp/GHSA-gm8p-g6rx-37hp.json
@@ -7,12 +7,8 @@
"CVE-2012-6663"
],
"details": "General Electric D20ME devices are not properly configured and reveal plaintext passwords.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-gpw3-rh6p-7pp4/GHSA-gpw3-rh6p-7pp4.json b/advisories/unreviewed/2022/04/GHSA-gpw3-rh6p-7pp4/GHSA-gpw3-rh6p-7pp4.json
index 7cd772460c3..a78d779fa50 100644
--- a/advisories/unreviewed/2022/04/GHSA-gpw3-rh6p-7pp4/GHSA-gpw3-rh6p-7pp4.json
+++ b/advisories/unreviewed/2022/04/GHSA-gpw3-rh6p-7pp4/GHSA-gpw3-rh6p-7pp4.json
@@ -7,12 +7,8 @@
"CVE-2011-4954"
],
"details": "cobbler has local privilege escalation via the use of insecure location for PYTHON_EGG_CACHE",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-gr6g-35w9-33vr/GHSA-gr6g-35w9-33vr.json b/advisories/unreviewed/2022/04/GHSA-gr6g-35w9-33vr/GHSA-gr6g-35w9-33vr.json
index 69eebe46ca0..4d1b3ac242d 100644
--- a/advisories/unreviewed/2022/04/GHSA-gr6g-35w9-33vr/GHSA-gr6g-35w9-33vr.json
+++ b/advisories/unreviewed/2022/04/GHSA-gr6g-35w9-33vr/GHSA-gr6g-35w9-33vr.json
@@ -7,12 +7,8 @@
"CVE-2011-1803"
],
"details": "An issue exists in third_party/WebKit/Source/WebCore/svg/animation/SVGSMILElement.h in WebKit in Google Chrome before Blink M11 and M12 when trying to access a removed smil element.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-grgj-cvfc-46jg/GHSA-grgj-cvfc-46jg.json b/advisories/unreviewed/2022/04/GHSA-grgj-cvfc-46jg/GHSA-grgj-cvfc-46jg.json
index 0193c885b5a..9c84b7836a0 100644
--- a/advisories/unreviewed/2022/04/GHSA-grgj-cvfc-46jg/GHSA-grgj-cvfc-46jg.json
+++ b/advisories/unreviewed/2022/04/GHSA-grgj-cvfc-46jg/GHSA-grgj-cvfc-46jg.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-grmv-gp4f-w59q/GHSA-grmv-gp4f-w59q.json b/advisories/unreviewed/2022/04/GHSA-grmv-gp4f-w59q/GHSA-grmv-gp4f-w59q.json
index 21e4fefa0ea..34e6ad152a5 100644
--- a/advisories/unreviewed/2022/04/GHSA-grmv-gp4f-w59q/GHSA-grmv-gp4f-w59q.json
+++ b/advisories/unreviewed/2022/04/GHSA-grmv-gp4f-w59q/GHSA-grmv-gp4f-w59q.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-grqm-6jmc-2h46/GHSA-grqm-6jmc-2h46.json b/advisories/unreviewed/2022/04/GHSA-grqm-6jmc-2h46/GHSA-grqm-6jmc-2h46.json
index de2ebc48b5a..5748badf52e 100644
--- a/advisories/unreviewed/2022/04/GHSA-grqm-6jmc-2h46/GHSA-grqm-6jmc-2h46.json
+++ b/advisories/unreviewed/2022/04/GHSA-grqm-6jmc-2h46/GHSA-grqm-6jmc-2h46.json
@@ -7,12 +7,8 @@
"CVE-2011-4116"
],
"details": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.",
- "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/04/GHSA-gvff-58px-qj5p/GHSA-gvff-58px-qj5p.json b/advisories/unreviewed/2022/04/GHSA-gvff-58px-qj5p/GHSA-gvff-58px-qj5p.json
index 97dfb84dd9c..e6612a55f1a 100644
--- a/advisories/unreviewed/2022/04/GHSA-gvff-58px-qj5p/GHSA-gvff-58px-qj5p.json
+++ b/advisories/unreviewed/2022/04/GHSA-gvff-58px-qj5p/GHSA-gvff-58px-qj5p.json
@@ -7,12 +7,8 @@
"CVE-2011-1084"
],
"details": "A cross-site scripting (XSS) vulnerability in Smoothwall Express 3.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-gx3r-q563-w43q/GHSA-gx3r-q563-w43q.json b/advisories/unreviewed/2022/04/GHSA-gx3r-q563-w43q/GHSA-gx3r-q563-w43q.json
index 6b81f4eaeb2..f29c2e246b6 100644
--- a/advisories/unreviewed/2022/04/GHSA-gx3r-q563-w43q/GHSA-gx3r-q563-w43q.json
+++ b/advisories/unreviewed/2022/04/GHSA-gx3r-q563-w43q/GHSA-gx3r-q563-w43q.json
@@ -7,12 +7,8 @@
"CVE-2011-4338"
],
"details": "Shaman 1.0.9: Users can add the line askforpwd=false to his shaman.conf file, without entering the root password in shaman. The next time shaman is run, root privileges are granted despite the fact that the user never entered the root password.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-gx9p-x3qq-2jfr/GHSA-gx9p-x3qq-2jfr.json b/advisories/unreviewed/2022/04/GHSA-gx9p-x3qq-2jfr/GHSA-gx9p-x3qq-2jfr.json
index b7a71b67d54..475ef2931c3 100644
--- a/advisories/unreviewed/2022/04/GHSA-gx9p-x3qq-2jfr/GHSA-gx9p-x3qq-2jfr.json
+++ b/advisories/unreviewed/2022/04/GHSA-gx9p-x3qq-2jfr/GHSA-gx9p-x3qq-2jfr.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-h258-fm27-wwcv/GHSA-h258-fm27-wwcv.json b/advisories/unreviewed/2022/04/GHSA-h258-fm27-wwcv/GHSA-h258-fm27-wwcv.json
index c15eb3b3e95..1855e6d4279 100644
--- a/advisories/unreviewed/2022/04/GHSA-h258-fm27-wwcv/GHSA-h258-fm27-wwcv.json
+++ b/advisories/unreviewed/2022/04/GHSA-h258-fm27-wwcv/GHSA-h258-fm27-wwcv.json
@@ -7,12 +7,8 @@
"CVE-2012-2593"
],
"details": "Cross-site scripting (XSS) vulnerability in the administrative interface in Atmail Webmail Server 6.4 allows remote attackers to inject arbitrary web script or HTML via the Date field of an email.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-h3gm-g7pj-j6jq/GHSA-h3gm-g7pj-j6jq.json b/advisories/unreviewed/2022/04/GHSA-h3gm-g7pj-j6jq/GHSA-h3gm-g7pj-j6jq.json
index af0c08e9369..180dda1cb7e 100644
--- a/advisories/unreviewed/2022/04/GHSA-h3gm-g7pj-j6jq/GHSA-h3gm-g7pj-j6jq.json
+++ b/advisories/unreviewed/2022/04/GHSA-h3gm-g7pj-j6jq/GHSA-h3gm-g7pj-j6jq.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-h497-6rcv-cgr6/GHSA-h497-6rcv-cgr6.json b/advisories/unreviewed/2022/04/GHSA-h497-6rcv-cgr6/GHSA-h497-6rcv-cgr6.json
index 88736f62d47..ad5178adc52 100644
--- a/advisories/unreviewed/2022/04/GHSA-h497-6rcv-cgr6/GHSA-h497-6rcv-cgr6.json
+++ b/advisories/unreviewed/2022/04/GHSA-h497-6rcv-cgr6/GHSA-h497-6rcv-cgr6.json
@@ -7,12 +7,8 @@
"CVE-2011-1133"
],
"details": "Cross-Site Scripting (XSS) in Xinha, as included in the Serendipity package before 1.5.5, allows remote attackers to execute arbitrary code via plugins/ExtendedFileManager/backend.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-h4jp-3vqw-q553/GHSA-h4jp-3vqw-q553.json b/advisories/unreviewed/2022/04/GHSA-h4jp-3vqw-q553/GHSA-h4jp-3vqw-q553.json
index 17ed6c65693..9723d132405 100644
--- a/advisories/unreviewed/2022/04/GHSA-h4jp-3vqw-q553/GHSA-h4jp-3vqw-q553.json
+++ b/advisories/unreviewed/2022/04/GHSA-h4jp-3vqw-q553/GHSA-h4jp-3vqw-q553.json
@@ -7,12 +7,8 @@
"CVE-2012-4863"
],
"details": "IBM WebSphere MQ 7.1 and 7.5: Queue manager has a DoS vulnerability",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-h5wh-487c-mrjg/GHSA-h5wh-487c-mrjg.json b/advisories/unreviewed/2022/04/GHSA-h5wh-487c-mrjg/GHSA-h5wh-487c-mrjg.json
index 6030d986bc1..857ac910741 100644
--- a/advisories/unreviewed/2022/04/GHSA-h5wh-487c-mrjg/GHSA-h5wh-487c-mrjg.json
+++ b/advisories/unreviewed/2022/04/GHSA-h5wh-487c-mrjg/GHSA-h5wh-487c-mrjg.json
@@ -7,12 +7,8 @@
"CVE-2012-6094"
],
"details": "cups (Common Unix Printing System) 'Listen localhost:631' option not honored correctly which could provide unauthorized access to the system",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-h6f6-v3mg-pf97/GHSA-h6f6-v3mg-pf97.json b/advisories/unreviewed/2022/04/GHSA-h6f6-v3mg-pf97/GHSA-h6f6-v3mg-pf97.json
index 857bfaceda1..628ed1bdb9a 100644
--- a/advisories/unreviewed/2022/04/GHSA-h6f6-v3mg-pf97/GHSA-h6f6-v3mg-pf97.json
+++ b/advisories/unreviewed/2022/04/GHSA-h6f6-v3mg-pf97/GHSA-h6f6-v3mg-pf97.json
@@ -7,12 +7,8 @@
"CVE-2011-0699"
],
"details": "Integer signedness error in the btrfs_ioctl_space_info function in the Linux kernel 2.6.37 allows local users to cause a denial of service (heap-based buffer overflow) or possibly have unspecified other impact via a crafted slot value.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-h6r9-84p5-5rcg/GHSA-h6r9-84p5-5rcg.json b/advisories/unreviewed/2022/04/GHSA-h6r9-84p5-5rcg/GHSA-h6r9-84p5-5rcg.json
index 77c3bc0c1ff..750453ed37b 100644
--- a/advisories/unreviewed/2022/04/GHSA-h6r9-84p5-5rcg/GHSA-h6r9-84p5-5rcg.json
+++ b/advisories/unreviewed/2022/04/GHSA-h6r9-84p5-5rcg/GHSA-h6r9-84p5-5rcg.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-h7fh-8x45-4h5p/GHSA-h7fh-8x45-4h5p.json b/advisories/unreviewed/2022/04/GHSA-h7fh-8x45-4h5p/GHSA-h7fh-8x45-4h5p.json
index 0c11fc18c99..9b29196d1fe 100644
--- a/advisories/unreviewed/2022/04/GHSA-h7fh-8x45-4h5p/GHSA-h7fh-8x45-4h5p.json
+++ b/advisories/unreviewed/2022/04/GHSA-h7fh-8x45-4h5p/GHSA-h7fh-8x45-4h5p.json
@@ -7,12 +7,8 @@
"CVE-2012-2226"
],
"details": "Invision Power Board before 3.3.1 fails to sanitize user-supplied input which could allow remote attackers to obtain sensitive information or execute arbitrary code by uploading a malicious file.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-h7j3-xrmw-5xv3/GHSA-h7j3-xrmw-5xv3.json b/advisories/unreviewed/2022/04/GHSA-h7j3-xrmw-5xv3/GHSA-h7j3-xrmw-5xv3.json
index 247a405700d..a860b20e7ac 100644
--- a/advisories/unreviewed/2022/04/GHSA-h7j3-xrmw-5xv3/GHSA-h7j3-xrmw-5xv3.json
+++ b/advisories/unreviewed/2022/04/GHSA-h7j3-xrmw-5xv3/GHSA-h7j3-xrmw-5xv3.json
@@ -7,12 +7,8 @@
"CVE-2012-5644"
],
"details": "libuser has information disclosure when moving user's home directory",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-h8cp-3pv9-p523/GHSA-h8cp-3pv9-p523.json b/advisories/unreviewed/2022/04/GHSA-h8cp-3pv9-p523/GHSA-h8cp-3pv9-p523.json
index 9f2b3d45bad..35b568592f8 100644
--- a/advisories/unreviewed/2022/04/GHSA-h8cp-3pv9-p523/GHSA-h8cp-3pv9-p523.json
+++ b/advisories/unreviewed/2022/04/GHSA-h8cp-3pv9-p523/GHSA-h8cp-3pv9-p523.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-h8xq-rx7h-94j2/GHSA-h8xq-rx7h-94j2.json b/advisories/unreviewed/2022/04/GHSA-h8xq-rx7h-94j2/GHSA-h8xq-rx7h-94j2.json
index 743bb9ed5ac..c15e2d7f8d9 100644
--- a/advisories/unreviewed/2022/04/GHSA-h8xq-rx7h-94j2/GHSA-h8xq-rx7h-94j2.json
+++ b/advisories/unreviewed/2022/04/GHSA-h8xq-rx7h-94j2/GHSA-h8xq-rx7h-94j2.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",
@@ -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-h9w8-wxxj-qmcf/GHSA-h9w8-wxxj-qmcf.json b/advisories/unreviewed/2022/04/GHSA-h9w8-wxxj-qmcf/GHSA-h9w8-wxxj-qmcf.json
index 0c6a26f22bf..c22b7675b6b 100644
--- a/advisories/unreviewed/2022/04/GHSA-h9w8-wxxj-qmcf/GHSA-h9w8-wxxj-qmcf.json
+++ b/advisories/unreviewed/2022/04/GHSA-h9w8-wxxj-qmcf/GHSA-h9w8-wxxj-qmcf.json
@@ -7,12 +7,8 @@
"CVE-2012-4761"
],
"details": "A Privilege Escalation vulnerability exists in the unquoted Service Binary in SDPAgent or SDBAgent in Safend Data Protector Agent 3.4.5586.9772, which could let a local malicious user obtain privileges.",
- "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/04/GHSA-hfr2-w3w8-234q/GHSA-hfr2-w3w8-234q.json b/advisories/unreviewed/2022/04/GHSA-hfr2-w3w8-234q/GHSA-hfr2-w3w8-234q.json
index 6b379b25bd7..feb3c9aec02 100644
--- a/advisories/unreviewed/2022/04/GHSA-hfr2-w3w8-234q/GHSA-hfr2-w3w8-234q.json
+++ b/advisories/unreviewed/2022/04/GHSA-hfr2-w3w8-234q/GHSA-hfr2-w3w8-234q.json
@@ -7,12 +7,8 @@
"CVE-2011-3203"
],
"details": "A Code Execution vulnerability exists the attachment parameter to index.php in Jcow CMS 4.x to 4.2 and 5.2 to 5.2.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-hh46-vfhf-rqg7/GHSA-hh46-vfhf-rqg7.json b/advisories/unreviewed/2022/04/GHSA-hh46-vfhf-rqg7/GHSA-hh46-vfhf-rqg7.json
index fe591faccc3..554f97423cd 100644
--- a/advisories/unreviewed/2022/04/GHSA-hh46-vfhf-rqg7/GHSA-hh46-vfhf-rqg7.json
+++ b/advisories/unreviewed/2022/04/GHSA-hh46-vfhf-rqg7/GHSA-hh46-vfhf-rqg7.json
@@ -7,12 +7,8 @@
"CVE-2012-4434"
],
"details": "fwknop before 2.0.3 allow remote authenticated users to cause a denial of service (server crash) or possibly execute arbitrary code.",
- "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/04/GHSA-hvvw-phv8-55v4/GHSA-hvvw-phv8-55v4.json b/advisories/unreviewed/2022/04/GHSA-hvvw-phv8-55v4/GHSA-hvvw-phv8-55v4.json
index 2c6ee0efb19..1a1b2b1cf45 100644
--- a/advisories/unreviewed/2022/04/GHSA-hvvw-phv8-55v4/GHSA-hvvw-phv8-55v4.json
+++ b/advisories/unreviewed/2022/04/GHSA-hvvw-phv8-55v4/GHSA-hvvw-phv8-55v4.json
@@ -7,12 +7,8 @@
"CVE-2012-0843"
],
"details": "uzbl: Information disclosure via world-readable cookies storage file",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-hwhf-593j-287c/GHSA-hwhf-593j-287c.json b/advisories/unreviewed/2022/04/GHSA-hwhf-593j-287c/GHSA-hwhf-593j-287c.json
index 617f23ca4d7..658f4b46a45 100644
--- a/advisories/unreviewed/2022/04/GHSA-hwhf-593j-287c/GHSA-hwhf-593j-287c.json
+++ b/advisories/unreviewed/2022/04/GHSA-hwhf-593j-287c/GHSA-hwhf-593j-287c.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-hwjw-22qj-gpvc/GHSA-hwjw-22qj-gpvc.json b/advisories/unreviewed/2022/04/GHSA-hwjw-22qj-gpvc/GHSA-hwjw-22qj-gpvc.json
index e82dd264c6b..7f7808b2423 100644
--- a/advisories/unreviewed/2022/04/GHSA-hwjw-22qj-gpvc/GHSA-hwjw-22qj-gpvc.json
+++ b/advisories/unreviewed/2022/04/GHSA-hwjw-22qj-gpvc/GHSA-hwjw-22qj-gpvc.json
@@ -7,12 +7,8 @@
"CVE-2012-1161"
],
"details": "Moodle before 2.2.2: Course information leak via hidden courses being displayed in tag search results",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -56,9 +52,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-hxrm-74mf-m4wm/GHSA-hxrm-74mf-m4wm.json b/advisories/unreviewed/2022/04/GHSA-hxrm-74mf-m4wm/GHSA-hxrm-74mf-m4wm.json
index 10513e18bd7..9a3f49be87d 100644
--- a/advisories/unreviewed/2022/04/GHSA-hxrm-74mf-m4wm/GHSA-hxrm-74mf-m4wm.json
+++ b/advisories/unreviewed/2022/04/GHSA-hxrm-74mf-m4wm/GHSA-hxrm-74mf-m4wm.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-j282-cmxq-gm6v/GHSA-j282-cmxq-gm6v.json b/advisories/unreviewed/2022/04/GHSA-j282-cmxq-gm6v/GHSA-j282-cmxq-gm6v.json
index 005384f6db0..219d63c1d64 100644
--- a/advisories/unreviewed/2022/04/GHSA-j282-cmxq-gm6v/GHSA-j282-cmxq-gm6v.json
+++ b/advisories/unreviewed/2022/04/GHSA-j282-cmxq-gm6v/GHSA-j282-cmxq-gm6v.json
@@ -7,12 +7,8 @@
"CVE-2011-2668"
],
"details": "Mozilla Firefox through 1.5.0.3 has a vulnerability in processing the content-length header",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-j352-5949-xcr7/GHSA-j352-5949-xcr7.json b/advisories/unreviewed/2022/04/GHSA-j352-5949-xcr7/GHSA-j352-5949-xcr7.json
index d314dde39ae..d6301b834a6 100644
--- a/advisories/unreviewed/2022/04/GHSA-j352-5949-xcr7/GHSA-j352-5949-xcr7.json
+++ b/advisories/unreviewed/2022/04/GHSA-j352-5949-xcr7/GHSA-j352-5949-xcr7.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-j3j5-x3ff-v276/GHSA-j3j5-x3ff-v276.json b/advisories/unreviewed/2022/04/GHSA-j3j5-x3ff-v276/GHSA-j3j5-x3ff-v276.json
index 26c1da2d4aa..0da3d04d5d1 100644
--- a/advisories/unreviewed/2022/04/GHSA-j3j5-x3ff-v276/GHSA-j3j5-x3ff-v276.json
+++ b/advisories/unreviewed/2022/04/GHSA-j3j5-x3ff-v276/GHSA-j3j5-x3ff-v276.json
@@ -7,12 +7,8 @@
"CVE-2011-3631"
],
"details": "Hardlink before 0.1.2 has multiple integer overflows leading to heap-based buffer overflows because of the way string lengths concatenation is done in the calculation of the required memory space to be used. A remote attacker could provide a specially-crafted directory tree and trick the local user into consolidating it, leading to hardlink executable crash or potentially arbitrary code execution with user privileges.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-j3qr-fx7r-mr5r/GHSA-j3qr-fx7r-mr5r.json b/advisories/unreviewed/2022/04/GHSA-j3qr-fx7r-mr5r/GHSA-j3qr-fx7r-mr5r.json
index 6936ea669b6..86b88408315 100644
--- a/advisories/unreviewed/2022/04/GHSA-j3qr-fx7r-mr5r/GHSA-j3qr-fx7r-mr5r.json
+++ b/advisories/unreviewed/2022/04/GHSA-j3qr-fx7r-mr5r/GHSA-j3qr-fx7r-mr5r.json
@@ -7,12 +7,8 @@
"CVE-2009-5159"
],
"details": "Invision Power Board (aka IPB or IP.Board) 2.x through 3.0.4, when Internet Explorer 5 is used, allows XSS via a .txt attachment.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-j442-3qc2-xxc9/GHSA-j442-3qc2-xxc9.json b/advisories/unreviewed/2022/04/GHSA-j442-3qc2-xxc9/GHSA-j442-3qc2-xxc9.json
index aa5dc591853..ecaf435b5b9 100644
--- a/advisories/unreviewed/2022/04/GHSA-j442-3qc2-xxc9/GHSA-j442-3qc2-xxc9.json
+++ b/advisories/unreviewed/2022/04/GHSA-j442-3qc2-xxc9/GHSA-j442-3qc2-xxc9.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-j4v6-f2xq-484w/GHSA-j4v6-f2xq-484w.json b/advisories/unreviewed/2022/04/GHSA-j4v6-f2xq-484w/GHSA-j4v6-f2xq-484w.json
index adf379d0681..4c6e2456831 100644
--- a/advisories/unreviewed/2022/04/GHSA-j4v6-f2xq-484w/GHSA-j4v6-f2xq-484w.json
+++ b/advisories/unreviewed/2022/04/GHSA-j4v6-f2xq-484w/GHSA-j4v6-f2xq-484w.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-j5mw-678g-f53v/GHSA-j5mw-678g-f53v.json b/advisories/unreviewed/2022/04/GHSA-j5mw-678g-f53v/GHSA-j5mw-678g-f53v.json
index 592177b7f02..3ef77cefca8 100644
--- a/advisories/unreviewed/2022/04/GHSA-j5mw-678g-f53v/GHSA-j5mw-678g-f53v.json
+++ b/advisories/unreviewed/2022/04/GHSA-j5mw-678g-f53v/GHSA-j5mw-678g-f53v.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-j6hx-4cv9-wrj8/GHSA-j6hx-4cv9-wrj8.json b/advisories/unreviewed/2022/04/GHSA-j6hx-4cv9-wrj8/GHSA-j6hx-4cv9-wrj8.json
index c7dabeb4e57..ee2db9fb866 100644
--- a/advisories/unreviewed/2022/04/GHSA-j6hx-4cv9-wrj8/GHSA-j6hx-4cv9-wrj8.json
+++ b/advisories/unreviewed/2022/04/GHSA-j6hx-4cv9-wrj8/GHSA-j6hx-4cv9-wrj8.json
@@ -7,12 +7,8 @@
"CVE-2010-3292"
],
"details": "The update{_bad,}_phishing_sites scripts in mailscanner 4.79.11-2 downloads files and trusts them without using encryption (e.g., https) or digital signature checking which could allow an attacker to replace certain configuration files (e.g., phishing whitelist) via dns/packet spoofing.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-j6qj-vq58-68qh/GHSA-j6qj-vq58-68qh.json b/advisories/unreviewed/2022/04/GHSA-j6qj-vq58-68qh/GHSA-j6qj-vq58-68qh.json
index 4ffcda524a9..8f9d490c39b 100644
--- a/advisories/unreviewed/2022/04/GHSA-j6qj-vq58-68qh/GHSA-j6qj-vq58-68qh.json
+++ b/advisories/unreviewed/2022/04/GHSA-j6qj-vq58-68qh/GHSA-j6qj-vq58-68qh.json
@@ -7,12 +7,8 @@
"CVE-2010-4533"
],
"details": "offlineimap before 6.3.4 added support for SSL server certificate validation but it is still possible to use SSL v2 protocol, which is a flawed protocol with multiple security deficiencies.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-j77r-52jv-wg32/GHSA-j77r-52jv-wg32.json b/advisories/unreviewed/2022/04/GHSA-j77r-52jv-wg32/GHSA-j77r-52jv-wg32.json
index 585516f5042..2978b6595d4 100644
--- a/advisories/unreviewed/2022/04/GHSA-j77r-52jv-wg32/GHSA-j77r-52jv-wg32.json
+++ b/advisories/unreviewed/2022/04/GHSA-j77r-52jv-wg32/GHSA-j77r-52jv-wg32.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-j7mm-5m3q-rx8h/GHSA-j7mm-5m3q-rx8h.json b/advisories/unreviewed/2022/04/GHSA-j7mm-5m3q-rx8h/GHSA-j7mm-5m3q-rx8h.json
index a834d9ce8c5..20f19bffaef 100644
--- a/advisories/unreviewed/2022/04/GHSA-j7mm-5m3q-rx8h/GHSA-j7mm-5m3q-rx8h.json
+++ b/advisories/unreviewed/2022/04/GHSA-j7mm-5m3q-rx8h/GHSA-j7mm-5m3q-rx8h.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-j7v7-w8h2-j5q7/GHSA-j7v7-w8h2-j5q7.json b/advisories/unreviewed/2022/04/GHSA-j7v7-w8h2-j5q7/GHSA-j7v7-w8h2-j5q7.json
index 8ae86ad95df..53b0c89e2b0 100644
--- a/advisories/unreviewed/2022/04/GHSA-j7v7-w8h2-j5q7/GHSA-j7v7-w8h2-j5q7.json
+++ b/advisories/unreviewed/2022/04/GHSA-j7v7-w8h2-j5q7/GHSA-j7v7-w8h2-j5q7.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-j8c3-7w65-qf2g/GHSA-j8c3-7w65-qf2g.json b/advisories/unreviewed/2022/04/GHSA-j8c3-7w65-qf2g/GHSA-j8c3-7w65-qf2g.json
index 25907f2bbe0..5464d8cd11e 100644
--- a/advisories/unreviewed/2022/04/GHSA-j8c3-7w65-qf2g/GHSA-j8c3-7w65-qf2g.json
+++ b/advisories/unreviewed/2022/04/GHSA-j8c3-7w65-qf2g/GHSA-j8c3-7w65-qf2g.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-j8g4-mj7c-w4x9/GHSA-j8g4-mj7c-w4x9.json b/advisories/unreviewed/2022/04/GHSA-j8g4-mj7c-w4x9/GHSA-j8g4-mj7c-w4x9.json
index 738fe8dbde2..f0aff37f30e 100644
--- a/advisories/unreviewed/2022/04/GHSA-j8g4-mj7c-w4x9/GHSA-j8g4-mj7c-w4x9.json
+++ b/advisories/unreviewed/2022/04/GHSA-j8g4-mj7c-w4x9/GHSA-j8g4-mj7c-w4x9.json
@@ -7,12 +7,8 @@
"CVE-2011-3611"
],
"details": "A File Inclusion vulnerability exists in act parameter to admin.php in UseBB before 1.0.12.",
- "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/04/GHSA-j98x-965h-9v2h/GHSA-j98x-965h-9v2h.json b/advisories/unreviewed/2022/04/GHSA-j98x-965h-9v2h/GHSA-j98x-965h-9v2h.json
index aa5bb5717c4..e7e852059cc 100644
--- a/advisories/unreviewed/2022/04/GHSA-j98x-965h-9v2h/GHSA-j98x-965h-9v2h.json
+++ b/advisories/unreviewed/2022/04/GHSA-j98x-965h-9v2h/GHSA-j98x-965h-9v2h.json
@@ -7,12 +7,8 @@
"CVE-2012-1170"
],
"details": "Moodle before 2.2.2 has an external enrolment plugin context check issue where capability checks are not thorough",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -56,9 +52,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-j9jj-vfcw-mgmp/GHSA-j9jj-vfcw-mgmp.json b/advisories/unreviewed/2022/04/GHSA-j9jj-vfcw-mgmp/GHSA-j9jj-vfcw-mgmp.json
index 4e6105f116a..abd6365fe0e 100644
--- a/advisories/unreviewed/2022/04/GHSA-j9jj-vfcw-mgmp/GHSA-j9jj-vfcw-mgmp.json
+++ b/advisories/unreviewed/2022/04/GHSA-j9jj-vfcw-mgmp/GHSA-j9jj-vfcw-mgmp.json
@@ -7,12 +7,8 @@
"CVE-2011-1588"
],
"details": "Thunar 1.2 through 1.2.1 could crash when copy and pasting a file name with % format characters due to a format string error.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -44,9 +40,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-jf2r-243h-7rmh/GHSA-jf2r-243h-7rmh.json b/advisories/unreviewed/2022/04/GHSA-jf2r-243h-7rmh/GHSA-jf2r-243h-7rmh.json
index a51d7fcb81c..fce50155d0e 100644
--- a/advisories/unreviewed/2022/04/GHSA-jf2r-243h-7rmh/GHSA-jf2r-243h-7rmh.json
+++ b/advisories/unreviewed/2022/04/GHSA-jf2r-243h-7rmh/GHSA-jf2r-243h-7rmh.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:A/AC:H/PR:H/UI:R/S:U/C:L/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-jfc6-pf62-j3cw/GHSA-jfc6-pf62-j3cw.json b/advisories/unreviewed/2022/04/GHSA-jfc6-pf62-j3cw/GHSA-jfc6-pf62-j3cw.json
index 5ea55c22e5f..3747160a085 100644
--- a/advisories/unreviewed/2022/04/GHSA-jfc6-pf62-j3cw/GHSA-jfc6-pf62-j3cw.json
+++ b/advisories/unreviewed/2022/04/GHSA-jfc6-pf62-j3cw/GHSA-jfc6-pf62-j3cw.json
@@ -7,12 +7,8 @@
"CVE-2011-5018"
],
"details": "Koala Framework before 2011-11-21 has XSS via the request_uri parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-jhgc-356q-pc7m/GHSA-jhgc-356q-pc7m.json b/advisories/unreviewed/2022/04/GHSA-jhgc-356q-pc7m/GHSA-jhgc-356q-pc7m.json
index 8934090a73d..39775a3d314 100644
--- a/advisories/unreviewed/2022/04/GHSA-jhgc-356q-pc7m/GHSA-jhgc-356q-pc7m.json
+++ b/advisories/unreviewed/2022/04/GHSA-jhgc-356q-pc7m/GHSA-jhgc-356q-pc7m.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-jj83-j2wm-6v49/GHSA-jj83-j2wm-6v49.json b/advisories/unreviewed/2022/04/GHSA-jj83-j2wm-6v49/GHSA-jj83-j2wm-6v49.json
index 0f9a5cba23a..bd6c6abc4eb 100644
--- a/advisories/unreviewed/2022/04/GHSA-jj83-j2wm-6v49/GHSA-jj83-j2wm-6v49.json
+++ b/advisories/unreviewed/2022/04/GHSA-jj83-j2wm-6v49/GHSA-jj83-j2wm-6v49.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-jm59-8xwf-98qw/GHSA-jm59-8xwf-98qw.json b/advisories/unreviewed/2022/04/GHSA-jm59-8xwf-98qw/GHSA-jm59-8xwf-98qw.json
index d6d1673e06a..02e051fe681 100644
--- a/advisories/unreviewed/2022/04/GHSA-jm59-8xwf-98qw/GHSA-jm59-8xwf-98qw.json
+++ b/advisories/unreviewed/2022/04/GHSA-jm59-8xwf-98qw/GHSA-jm59-8xwf-98qw.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-jm72-67rm-763j/GHSA-jm72-67rm-763j.json b/advisories/unreviewed/2022/04/GHSA-jm72-67rm-763j/GHSA-jm72-67rm-763j.json
index d6f29e44785..806476707af 100644
--- a/advisories/unreviewed/2022/04/GHSA-jm72-67rm-763j/GHSA-jm72-67rm-763j.json
+++ b/advisories/unreviewed/2022/04/GHSA-jm72-67rm-763j/GHSA-jm72-67rm-763j.json
@@ -7,12 +7,8 @@
"CVE-2009-20001"
],
"details": "An issue was discovered in MantisBT before 2.24.5. It associates a unique cookie string with each user. This string is not reset upon logout (i.e., the user session is still considered valid and active), allowing an attacker who somehow gained access to a user's cookie to login as them.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-jmm8-g2w4-4fc4/GHSA-jmm8-g2w4-4fc4.json b/advisories/unreviewed/2022/04/GHSA-jmm8-g2w4-4fc4/GHSA-jmm8-g2w4-4fc4.json
index b617f2f6d48..9f55e3f8d58 100644
--- a/advisories/unreviewed/2022/04/GHSA-jmm8-g2w4-4fc4/GHSA-jmm8-g2w4-4fc4.json
+++ b/advisories/unreviewed/2022/04/GHSA-jmm8-g2w4-4fc4/GHSA-jmm8-g2w4-4fc4.json
@@ -7,12 +7,8 @@
"CVE-2012-5626"
],
"details": "EJB method in Red Hat JBoss BRMS 5; Red Hat JBoss Enterprise Application Platform 5; Red Hat JBoss Operations Network 3.1; Red Hat JBoss Portal 4 and 5; Red Hat JBoss SOA Platform 4.2, 4.3, and 5; in Red Hat JBoss Enterprise Web Server 1 ignores roles specified using the @RunAs annotation.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-jq73-c7h9-wr72/GHSA-jq73-c7h9-wr72.json b/advisories/unreviewed/2022/04/GHSA-jq73-c7h9-wr72/GHSA-jq73-c7h9-wr72.json
index 584a74ba6c3..c36fc36189d 100644
--- a/advisories/unreviewed/2022/04/GHSA-jq73-c7h9-wr72/GHSA-jq73-c7h9-wr72.json
+++ b/advisories/unreviewed/2022/04/GHSA-jq73-c7h9-wr72/GHSA-jq73-c7h9-wr72.json
@@ -7,12 +7,8 @@
"CVE-2010-2250"
],
"details": "Drupal 6.x before 6.16 uses a user-supplied value in output during site installation which could allow an attacker to craft a URL and perform a cross-site scripting attack.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-jrcg-7q72-h8cw/GHSA-jrcg-7q72-h8cw.json b/advisories/unreviewed/2022/04/GHSA-jrcg-7q72-h8cw/GHSA-jrcg-7q72-h8cw.json
index bc1852bb0c9..73f61fb974f 100644
--- a/advisories/unreviewed/2022/04/GHSA-jrcg-7q72-h8cw/GHSA-jrcg-7q72-h8cw.json
+++ b/advisories/unreviewed/2022/04/GHSA-jrcg-7q72-h8cw/GHSA-jrcg-7q72-h8cw.json
@@ -7,12 +7,8 @@
"CVE-2010-0748"
],
"details": "Transmission before 1.92 allows an attacker to cause a denial of service (crash) or possibly have other unspecified impact via a large number of tr arguments in a magnet link.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-jrr9-p66c-jfhj/GHSA-jrr9-p66c-jfhj.json b/advisories/unreviewed/2022/04/GHSA-jrr9-p66c-jfhj/GHSA-jrr9-p66c-jfhj.json
index d0146d9dbb6..7c22099536d 100644
--- a/advisories/unreviewed/2022/04/GHSA-jrr9-p66c-jfhj/GHSA-jrr9-p66c-jfhj.json
+++ b/advisories/unreviewed/2022/04/GHSA-jrr9-p66c-jfhj/GHSA-jrr9-p66c-jfhj.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-jv5w-7v7v-vjcc/GHSA-jv5w-7v7v-vjcc.json b/advisories/unreviewed/2022/04/GHSA-jv5w-7v7v-vjcc/GHSA-jv5w-7v7v-vjcc.json
index 6392b043fa9..a7e03997153 100644
--- a/advisories/unreviewed/2022/04/GHSA-jv5w-7v7v-vjcc/GHSA-jv5w-7v7v-vjcc.json
+++ b/advisories/unreviewed/2022/04/GHSA-jv5w-7v7v-vjcc/GHSA-jv5w-7v7v-vjcc.json
@@ -7,12 +7,8 @@
"CVE-2010-3917"
],
"details": "Google Chrome before 3.0 does not properly handle XML documents, which allows remote attackers to obtain sensitive information via a crafted web site.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-jw2f-vcgp-295r/GHSA-jw2f-vcgp-295r.json b/advisories/unreviewed/2022/04/GHSA-jw2f-vcgp-295r/GHSA-jw2f-vcgp-295r.json
index 20de27d0b74..f87492d4b74 100644
--- a/advisories/unreviewed/2022/04/GHSA-jw2f-vcgp-295r/GHSA-jw2f-vcgp-295r.json
+++ b/advisories/unreviewed/2022/04/GHSA-jw2f-vcgp-295r/GHSA-jw2f-vcgp-295r.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-jx9h-vx8f-wmc4/GHSA-jx9h-vx8f-wmc4.json b/advisories/unreviewed/2022/04/GHSA-jx9h-vx8f-wmc4/GHSA-jx9h-vx8f-wmc4.json
index 2b2f674e27c..3acb596e263 100644
--- a/advisories/unreviewed/2022/04/GHSA-jx9h-vx8f-wmc4/GHSA-jx9h-vx8f-wmc4.json
+++ b/advisories/unreviewed/2022/04/GHSA-jx9h-vx8f-wmc4/GHSA-jx9h-vx8f-wmc4.json
@@ -7,12 +7,8 @@
"CVE-2011-5250"
],
"details": "Snare for Linux before 1.7.0 has CSRF in the web interface.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-m2cr-mfg2-6hxg/GHSA-m2cr-mfg2-6hxg.json b/advisories/unreviewed/2022/04/GHSA-m2cr-mfg2-6hxg/GHSA-m2cr-mfg2-6hxg.json
index 6436f8bf3ec..1817543d856 100644
--- a/advisories/unreviewed/2022/04/GHSA-m2cr-mfg2-6hxg/GHSA-m2cr-mfg2-6hxg.json
+++ b/advisories/unreviewed/2022/04/GHSA-m2cr-mfg2-6hxg/GHSA-m2cr-mfg2-6hxg.json
@@ -7,12 +7,8 @@
"CVE-2011-4125"
],
"details": "A untrusted search path issue was found in Calibre at devices/linux_mount_helper.c leading to the ability of unprivileged users to execute any program as root.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-m2fq-jghc-8c75/GHSA-m2fq-jghc-8c75.json b/advisories/unreviewed/2022/04/GHSA-m2fq-jghc-8c75/GHSA-m2fq-jghc-8c75.json
index 3cb638920e5..4e2cd74a545 100644
--- a/advisories/unreviewed/2022/04/GHSA-m2fq-jghc-8c75/GHSA-m2fq-jghc-8c75.json
+++ b/advisories/unreviewed/2022/04/GHSA-m2fq-jghc-8c75/GHSA-m2fq-jghc-8c75.json
@@ -7,12 +7,8 @@
"CVE-2009-5047"
],
"details": "Jetty 6.x before 6.1.22 suffers from an escape sequence injection vulnerability from two different vectors: 1) \"Cookie Dump Servlet\" and 2) Http Content-Length header. 1) A POST request to the form at \"/test/cookie/\" with the \"Age\" parameter set to a string throws a \"java.lang.NumberFormatException\" which reflects binary characters including ESC. These characters could be used to execute arbitrary commands or buffer dumps in the terminal. 2) The same attack in 1) can be exploited by requesting a page using an HTTP request \"Content-Length\" header set to a letteral string.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": null,
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-m3fp-vmww-9vgv/GHSA-m3fp-vmww-9vgv.json b/advisories/unreviewed/2022/04/GHSA-m3fp-vmww-9vgv/GHSA-m3fp-vmww-9vgv.json
index 278c47f6119..ff7d17681f5 100644
--- a/advisories/unreviewed/2022/04/GHSA-m3fp-vmww-9vgv/GHSA-m3fp-vmww-9vgv.json
+++ b/advisories/unreviewed/2022/04/GHSA-m3fp-vmww-9vgv/GHSA-m3fp-vmww-9vgv.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-m5mq-g7m3-hwhm/GHSA-m5mq-g7m3-hwhm.json b/advisories/unreviewed/2022/04/GHSA-m5mq-g7m3-hwhm/GHSA-m5mq-g7m3-hwhm.json
index ec4d40a09d4..7129de26869 100644
--- a/advisories/unreviewed/2022/04/GHSA-m5mq-g7m3-hwhm/GHSA-m5mq-g7m3-hwhm.json
+++ b/advisories/unreviewed/2022/04/GHSA-m5mq-g7m3-hwhm/GHSA-m5mq-g7m3-hwhm.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-m5xf-jhjv-xh84/GHSA-m5xf-jhjv-xh84.json b/advisories/unreviewed/2022/04/GHSA-m5xf-jhjv-xh84/GHSA-m5xf-jhjv-xh84.json
index d147a077e3a..f9caa065cc0 100644
--- a/advisories/unreviewed/2022/04/GHSA-m5xf-jhjv-xh84/GHSA-m5xf-jhjv-xh84.json
+++ b/advisories/unreviewed/2022/04/GHSA-m5xf-jhjv-xh84/GHSA-m5xf-jhjv-xh84.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-m6wp-c7g9-jv26/GHSA-m6wp-c7g9-jv26.json b/advisories/unreviewed/2022/04/GHSA-m6wp-c7g9-jv26/GHSA-m6wp-c7g9-jv26.json
index dff553bdff4..b329abdbc41 100644
--- a/advisories/unreviewed/2022/04/GHSA-m6wp-c7g9-jv26/GHSA-m6wp-c7g9-jv26.json
+++ b/advisories/unreviewed/2022/04/GHSA-m6wp-c7g9-jv26/GHSA-m6wp-c7g9-jv26.json
@@ -7,12 +7,8 @@
"CVE-2008-3278"
],
"details": "frysk packages through 2008-08-05 as shipped in Red Hat Enterprise Linux 5 are built with an insecure RPATH set in the ELF header of multiple binaries in /usr/bin/f* (e.g. fcore, fcatch, fstack, fstep, ...) shipped in the package. A local attacker can exploit this vulnerability by running arbitrary code as another user.",
- "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/04/GHSA-m7pj-rjmw-36x5/GHSA-m7pj-rjmw-36x5.json b/advisories/unreviewed/2022/04/GHSA-m7pj-rjmw-36x5/GHSA-m7pj-rjmw-36x5.json
index 281541b3229..013f094d080 100644
--- a/advisories/unreviewed/2022/04/GHSA-m7pj-rjmw-36x5/GHSA-m7pj-rjmw-36x5.json
+++ b/advisories/unreviewed/2022/04/GHSA-m7pj-rjmw-36x5/GHSA-m7pj-rjmw-36x5.json
@@ -7,12 +7,8 @@
"CVE-2011-3614"
],
"details": "An Access Control vulnerability exists in the Facebook, Twitter, and Embedded plugins in Vanilla Forums before 2.0.17.9.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-m85p-c5xr-7h82/GHSA-m85p-c5xr-7h82.json b/advisories/unreviewed/2022/04/GHSA-m85p-c5xr-7h82/GHSA-m85p-c5xr-7h82.json
index 21a5fa69b94..67f4b0ec95f 100644
--- a/advisories/unreviewed/2022/04/GHSA-m85p-c5xr-7h82/GHSA-m85p-c5xr-7h82.json
+++ b/advisories/unreviewed/2022/04/GHSA-m85p-c5xr-7h82/GHSA-m85p-c5xr-7h82.json
@@ -7,12 +7,8 @@
"CVE-2011-4126"
],
"details": "Race condition issues were found in Calibre at devices/linux_mount_helper.c allowing unprivileged users the ability to mount any device to anywhere.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-m9hp-jhqh-pqmm/GHSA-m9hp-jhqh-pqmm.json b/advisories/unreviewed/2022/04/GHSA-m9hp-jhqh-pqmm/GHSA-m9hp-jhqh-pqmm.json
index f9df5057dfa..cc5197ac29f 100644
--- a/advisories/unreviewed/2022/04/GHSA-m9hp-jhqh-pqmm/GHSA-m9hp-jhqh-pqmm.json
+++ b/advisories/unreviewed/2022/04/GHSA-m9hp-jhqh-pqmm/GHSA-m9hp-jhqh-pqmm.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-m9j4-4947-qrrp/GHSA-m9j4-4947-qrrp.json b/advisories/unreviewed/2022/04/GHSA-m9j4-4947-qrrp/GHSA-m9j4-4947-qrrp.json
index 2ce56499bd6..03839433a84 100644
--- a/advisories/unreviewed/2022/04/GHSA-m9j4-4947-qrrp/GHSA-m9j4-4947-qrrp.json
+++ b/advisories/unreviewed/2022/04/GHSA-m9j4-4947-qrrp/GHSA-m9j4-4947-qrrp.json
@@ -7,12 +7,8 @@
"CVE-2009-5025"
],
"details": "A backdoor (aka BMSA-2009-07) was found in PyForum v1.0.3 where an attacker who knows a valid user email could force a password reset on behalf of that user.",
- "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/04/GHSA-m9w5-cf98-5rcm/GHSA-m9w5-cf98-5rcm.json b/advisories/unreviewed/2022/04/GHSA-m9w5-cf98-5rcm/GHSA-m9w5-cf98-5rcm.json
index ca425f8de35..45dc1d27b48 100644
--- a/advisories/unreviewed/2022/04/GHSA-m9w5-cf98-5rcm/GHSA-m9w5-cf98-5rcm.json
+++ b/advisories/unreviewed/2022/04/GHSA-m9w5-cf98-5rcm/GHSA-m9w5-cf98-5rcm.json
@@ -7,12 +7,8 @@
"CVE-2012-4767"
],
"details": "An issue exists in Safend Data Protector Agent 3.4.5586.9772 in the securitylayer.log file in the logs.9972 directory, which could let a malicious user decrypt and potentially change the Safend security policies applied to the machine.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-mfjg-xr43-wxf9/GHSA-mfjg-xr43-wxf9.json b/advisories/unreviewed/2022/04/GHSA-mfjg-xr43-wxf9/GHSA-mfjg-xr43-wxf9.json
index f106ad302c2..40908dfdcd3 100644
--- a/advisories/unreviewed/2022/04/GHSA-mfjg-xr43-wxf9/GHSA-mfjg-xr43-wxf9.json
+++ b/advisories/unreviewed/2022/04/GHSA-mfjg-xr43-wxf9/GHSA-mfjg-xr43-wxf9.json
@@ -7,12 +7,8 @@
"CVE-2010-3668"
],
"details": "TYPO3 before 4.1.14, 4.2.x before 4.2.13, 4.3.x before 4.3.4 and 4.4.x before 4.4.1 allows Header Injection in the secure download feature jumpurl.",
- "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/04/GHSA-mgc9-7xh6-8mpm/GHSA-mgc9-7xh6-8mpm.json b/advisories/unreviewed/2022/04/GHSA-mgc9-7xh6-8mpm/GHSA-mgc9-7xh6-8mpm.json
index 7f7fb645ab5..1592566e4d0 100644
--- a/advisories/unreviewed/2022/04/GHSA-mgc9-7xh6-8mpm/GHSA-mgc9-7xh6-8mpm.json
+++ b/advisories/unreviewed/2022/04/GHSA-mgc9-7xh6-8mpm/GHSA-mgc9-7xh6-8mpm.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-mgf5-9wxh-8rj7/GHSA-mgf5-9wxh-8rj7.json b/advisories/unreviewed/2022/04/GHSA-mgf5-9wxh-8rj7/GHSA-mgf5-9wxh-8rj7.json
index 47b07c88de7..817b6e742c0 100644
--- a/advisories/unreviewed/2022/04/GHSA-mgf5-9wxh-8rj7/GHSA-mgf5-9wxh-8rj7.json
+++ b/advisories/unreviewed/2022/04/GHSA-mgf5-9wxh-8rj7/GHSA-mgf5-9wxh-8rj7.json
@@ -7,12 +7,8 @@
"CVE-2012-6609"
],
"details": "Directory traversal vulnerability in a_getlog.cgi in Polycom HDX Video End Points before 3.0.4 and UC APL before 2.7.1.J allows remote attackers to read arbitrary files via a .. (dot dot) in the name parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-mjh4-6qqm-58m2/GHSA-mjh4-6qqm-58m2.json b/advisories/unreviewed/2022/04/GHSA-mjh4-6qqm-58m2/GHSA-mjh4-6qqm-58m2.json
index 8d5195be1dc..2b1d93db8af 100644
--- a/advisories/unreviewed/2022/04/GHSA-mjh4-6qqm-58m2/GHSA-mjh4-6qqm-58m2.json
+++ b/advisories/unreviewed/2022/04/GHSA-mjh4-6qqm-58m2/GHSA-mjh4-6qqm-58m2.json
@@ -7,12 +7,8 @@
"CVE-2011-3595"
],
"details": "Multiple Cross-site Scripting (XSS) vulnerabilities exist in Joomla! through 1.7.0 in index.php in the search word, extension, asset, and author parameters.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-mjh8-5qmh-3f7r/GHSA-mjh8-5qmh-3f7r.json b/advisories/unreviewed/2022/04/GHSA-mjh8-5qmh-3f7r/GHSA-mjh8-5qmh-3f7r.json
index 29f8089601b..8104b224c3b 100644
--- a/advisories/unreviewed/2022/04/GHSA-mjh8-5qmh-3f7r/GHSA-mjh8-5qmh-3f7r.json
+++ b/advisories/unreviewed/2022/04/GHSA-mjh8-5qmh-3f7r/GHSA-mjh8-5qmh-3f7r.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/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-mp53-rpxh-w4g6/GHSA-mp53-rpxh-w4g6.json b/advisories/unreviewed/2022/04/GHSA-mp53-rpxh-w4g6/GHSA-mp53-rpxh-w4g6.json
index 8dda2c215e5..863730e4a9c 100644
--- a/advisories/unreviewed/2022/04/GHSA-mp53-rpxh-w4g6/GHSA-mp53-rpxh-w4g6.json
+++ b/advisories/unreviewed/2022/04/GHSA-mp53-rpxh-w4g6/GHSA-mp53-rpxh-w4g6.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-mpqx-63fh-p5mj/GHSA-mpqx-63fh-p5mj.json b/advisories/unreviewed/2022/04/GHSA-mpqx-63fh-p5mj/GHSA-mpqx-63fh-p5mj.json
index f28475bdd61..82de6950fd8 100644
--- a/advisories/unreviewed/2022/04/GHSA-mpqx-63fh-p5mj/GHSA-mpqx-63fh-p5mj.json
+++ b/advisories/unreviewed/2022/04/GHSA-mpqx-63fh-p5mj/GHSA-mpqx-63fh-p5mj.json
@@ -7,12 +7,8 @@
"CVE-2012-1258"
],
"details": "cgi-bin/userprefs.cgi in Plixer International Scrutinizer NetFlow & sFlow Analyzer before 9.0.1.19899 does not validate user permissions, which allow remote attackers to add user accounts with administrator privileges via the newuser, pwd, and selectedUserGroup parameters.",
- "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/04/GHSA-mr6c-m5m7-mvxj/GHSA-mr6c-m5m7-mvxj.json b/advisories/unreviewed/2022/04/GHSA-mr6c-m5m7-mvxj/GHSA-mr6c-m5m7-mvxj.json
index 90cd151b0e2..79142988f56 100644
--- a/advisories/unreviewed/2022/04/GHSA-mr6c-m5m7-mvxj/GHSA-mr6c-m5m7-mvxj.json
+++ b/advisories/unreviewed/2022/04/GHSA-mr6c-m5m7-mvxj/GHSA-mr6c-m5m7-mvxj.json
@@ -7,12 +7,8 @@
"CVE-2011-1136"
],
"details": "In tesseract 2.03 and 2.04, an attacker can rewrite an arbitrary user file by guessing the PID and creating a link to the user's file.",
- "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/04/GHSA-mrjx-9xcm-6w8p/GHSA-mrjx-9xcm-6w8p.json b/advisories/unreviewed/2022/04/GHSA-mrjx-9xcm-6w8p/GHSA-mrjx-9xcm-6w8p.json
index ae4c1dd8c25..35b1d67bc03 100644
--- a/advisories/unreviewed/2022/04/GHSA-mrjx-9xcm-6w8p/GHSA-mrjx-9xcm-6w8p.json
+++ b/advisories/unreviewed/2022/04/GHSA-mrjx-9xcm-6w8p/GHSA-mrjx-9xcm-6w8p.json
@@ -7,12 +7,8 @@
"CVE-2012-5631"
],
"details": "ipa 3.0 does not properly check server identity before sending credential containing cookies",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-mrrv-fq8p-rp6j/GHSA-mrrv-fq8p-rp6j.json b/advisories/unreviewed/2022/04/GHSA-mrrv-fq8p-rp6j/GHSA-mrrv-fq8p-rp6j.json
index a0c7be459b2..c164f205822 100644
--- a/advisories/unreviewed/2022/04/GHSA-mrrv-fq8p-rp6j/GHSA-mrrv-fq8p-rp6j.json
+++ b/advisories/unreviewed/2022/04/GHSA-mrrv-fq8p-rp6j/GHSA-mrrv-fq8p-rp6j.json
@@ -7,12 +7,8 @@
"CVE-2012-1160"
],
"details": "Moodle before 2.2.2 has a permission issue in Forum Subscriptions where unenrolled users can subscribe/unsubscribe via mod/forum/index.php",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -56,9 +52,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-mvv3-447c-gwqm/GHSA-mvv3-447c-gwqm.json b/advisories/unreviewed/2022/04/GHSA-mvv3-447c-gwqm/GHSA-mvv3-447c-gwqm.json
index e4dbc37df40..a75e256a98f 100644
--- a/advisories/unreviewed/2022/04/GHSA-mvv3-447c-gwqm/GHSA-mvv3-447c-gwqm.json
+++ b/advisories/unreviewed/2022/04/GHSA-mvv3-447c-gwqm/GHSA-mvv3-447c-gwqm.json
@@ -7,12 +7,8 @@
"CVE-2011-1069"
],
"details": "PHPShop through 0.8.1 has XSS.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-mwwg-gjh6-9grp/GHSA-mwwg-gjh6-9grp.json b/advisories/unreviewed/2022/04/GHSA-mwwg-gjh6-9grp/GHSA-mwwg-gjh6-9grp.json
index f6a6a978349..d7cfcb8831e 100644
--- a/advisories/unreviewed/2022/04/GHSA-mwwg-gjh6-9grp/GHSA-mwwg-gjh6-9grp.json
+++ b/advisories/unreviewed/2022/04/GHSA-mwwg-gjh6-9grp/GHSA-mwwg-gjh6-9grp.json
@@ -7,12 +7,8 @@
"CVE-2012-6655"
],
"details": "An issue exists AccountService 0.6.37 in the user_change_password_authorized_cb() function in user.c which could let a local users obtain encrypted passwords.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -44,9 +40,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-mx3j-v3jg-vhf7/GHSA-mx3j-v3jg-vhf7.json b/advisories/unreviewed/2022/04/GHSA-mx3j-v3jg-vhf7/GHSA-mx3j-v3jg-vhf7.json
index 1dd5468711d..9cc7796a558 100644
--- a/advisories/unreviewed/2022/04/GHSA-mx3j-v3jg-vhf7/GHSA-mx3j-v3jg-vhf7.json
+++ b/advisories/unreviewed/2022/04/GHSA-mx3j-v3jg-vhf7/GHSA-mx3j-v3jg-vhf7.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-p27p-g844-ppm9/GHSA-p27p-g844-ppm9.json b/advisories/unreviewed/2022/04/GHSA-p27p-g844-ppm9/GHSA-p27p-g844-ppm9.json
index ec79088001f..a4b5ecf52af 100644
--- a/advisories/unreviewed/2022/04/GHSA-p27p-g844-ppm9/GHSA-p27p-g844-ppm9.json
+++ b/advisories/unreviewed/2022/04/GHSA-p27p-g844-ppm9/GHSA-p27p-g844-ppm9.json
@@ -7,12 +7,8 @@
"CVE-2010-1029"
],
"details": "Stack consumption vulnerability in the WebCore::CSSSelector function in WebKit, as used in Apple Safari 4.0.4, Apple Safari on iPhone OS and iPhone OS for iPod touch, and Google Chrome 4.0.249, allows remote attackers to cause a denial of service (application crash) or possibly execute arbitrary code via a STYLE element composed of a large number of *> sequences.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -56,9 +52,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-p35j-ggp6-r35x/GHSA-p35j-ggp6-r35x.json b/advisories/unreviewed/2022/04/GHSA-p35j-ggp6-r35x/GHSA-p35j-ggp6-r35x.json
index 02e59e8ea7b..7cdf985cf43 100644
--- a/advisories/unreviewed/2022/04/GHSA-p35j-ggp6-r35x/GHSA-p35j-ggp6-r35x.json
+++ b/advisories/unreviewed/2022/04/GHSA-p35j-ggp6-r35x/GHSA-p35j-ggp6-r35x.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-p3pg-j7qj-fx26/GHSA-p3pg-j7qj-fx26.json b/advisories/unreviewed/2022/04/GHSA-p3pg-j7qj-fx26/GHSA-p3pg-j7qj-fx26.json
index d6200d0d452..9f50190d9f0 100644
--- a/advisories/unreviewed/2022/04/GHSA-p3pg-j7qj-fx26/GHSA-p3pg-j7qj-fx26.json
+++ b/advisories/unreviewed/2022/04/GHSA-p3pg-j7qj-fx26/GHSA-p3pg-j7qj-fx26.json
@@ -7,12 +7,8 @@
"CVE-2009-4067"
],
"details": "Buffer overflow in the auerswald_probe function in the Auerswald Linux USB driver for the Linux kernel before 2.6.27 allows physically proximate attackers to execute arbitrary code, cause a denial of service via a crafted USB device, or take full control of the system.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-p3r6-m6q9-hhj4/GHSA-p3r6-m6q9-hhj4.json b/advisories/unreviewed/2022/04/GHSA-p3r6-m6q9-hhj4/GHSA-p3r6-m6q9-hhj4.json
index b78fe4525e0..c93debe4af6 100644
--- a/advisories/unreviewed/2022/04/GHSA-p3r6-m6q9-hhj4/GHSA-p3r6-m6q9-hhj4.json
+++ b/advisories/unreviewed/2022/04/GHSA-p3r6-m6q9-hhj4/GHSA-p3r6-m6q9-hhj4.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-p5hw-cx73-7vgg/GHSA-p5hw-cx73-7vgg.json b/advisories/unreviewed/2022/04/GHSA-p5hw-cx73-7vgg/GHSA-p5hw-cx73-7vgg.json
index 91f35d2289d..d62c2a237c9 100644
--- a/advisories/unreviewed/2022/04/GHSA-p5hw-cx73-7vgg/GHSA-p5hw-cx73-7vgg.json
+++ b/advisories/unreviewed/2022/04/GHSA-p5hw-cx73-7vgg/GHSA-p5hw-cx73-7vgg.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-p7jw-qm3q-hmgj/GHSA-p7jw-qm3q-hmgj.json b/advisories/unreviewed/2022/04/GHSA-p7jw-qm3q-hmgj/GHSA-p7jw-qm3q-hmgj.json
index 4cbafa496be..79baaa4d165 100644
--- a/advisories/unreviewed/2022/04/GHSA-p7jw-qm3q-hmgj/GHSA-p7jw-qm3q-hmgj.json
+++ b/advisories/unreviewed/2022/04/GHSA-p7jw-qm3q-hmgj/GHSA-p7jw-qm3q-hmgj.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-p956-qpc7-c8hp/GHSA-p956-qpc7-c8hp.json b/advisories/unreviewed/2022/04/GHSA-p956-qpc7-c8hp/GHSA-p956-qpc7-c8hp.json
index 44a1bc93e7e..f4a22dd7649 100644
--- a/advisories/unreviewed/2022/04/GHSA-p956-qpc7-c8hp/GHSA-p956-qpc7-c8hp.json
+++ b/advisories/unreviewed/2022/04/GHSA-p956-qpc7-c8hp/GHSA-p956-qpc7-c8hp.json
@@ -7,12 +7,8 @@
"CVE-2012-0945"
],
"details": "whoopsie-daisy before 0.1.26: Root user can remove arbitrary files",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-p994-8v37-f6w6/GHSA-p994-8v37-f6w6.json b/advisories/unreviewed/2022/04/GHSA-p994-8v37-f6w6/GHSA-p994-8v37-f6w6.json
index ecff30310a9..ec65df1790b 100644
--- a/advisories/unreviewed/2022/04/GHSA-p994-8v37-f6w6/GHSA-p994-8v37-f6w6.json
+++ b/advisories/unreviewed/2022/04/GHSA-p994-8v37-f6w6/GHSA-p994-8v37-f6w6.json
@@ -7,12 +7,8 @@
"CVE-2010-2447"
],
"details": "gitolite before 1.4.1 does not filter src/ or hooks/ from path names.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-p9fv-x796-2hrm/GHSA-p9fv-x796-2hrm.json b/advisories/unreviewed/2022/04/GHSA-p9fv-x796-2hrm/GHSA-p9fv-x796-2hrm.json
index f6408e97e7a..db473af96fa 100644
--- a/advisories/unreviewed/2022/04/GHSA-p9fv-x796-2hrm/GHSA-p9fv-x796-2hrm.json
+++ b/advisories/unreviewed/2022/04/GHSA-p9fv-x796-2hrm/GHSA-p9fv-x796-2hrm.json
@@ -7,12 +7,8 @@
"CVE-2012-3490"
],
"details": "The (1) my_popenv_impl and (2) my_spawnv functions in src/condor_utils/my_popen.cpp and the (3) systemCommand function in condor_vm-gahp/vmgahp_common.cpp in Condor 7.6.x before 7.6.10 and 7.8.x before 7.8.4 does not properly check the return value of setuid calls, which might cause a subprocess to be created with root privileges and allow remote attackers to gain privileges via unspecified vectors.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-p9q6-8f5g-q573/GHSA-p9q6-8f5g-q573.json b/advisories/unreviewed/2022/04/GHSA-p9q6-8f5g-q573/GHSA-p9q6-8f5g-q573.json
index 5a4134252ca..c00b74e1451 100644
--- a/advisories/unreviewed/2022/04/GHSA-p9q6-8f5g-q573/GHSA-p9q6-8f5g-q573.json
+++ b/advisories/unreviewed/2022/04/GHSA-p9q6-8f5g-q573/GHSA-p9q6-8f5g-q573.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-p9r2-fqqm-vvrr/GHSA-p9r2-fqqm-vvrr.json b/advisories/unreviewed/2022/04/GHSA-p9r2-fqqm-vvrr/GHSA-p9r2-fqqm-vvrr.json
index 7671dbaf5a9..a81f618d142 100644
--- a/advisories/unreviewed/2022/04/GHSA-p9r2-fqqm-vvrr/GHSA-p9r2-fqqm-vvrr.json
+++ b/advisories/unreviewed/2022/04/GHSA-p9r2-fqqm-vvrr/GHSA-p9r2-fqqm-vvrr.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-pcm6-w2q9-cfq4/GHSA-pcm6-w2q9-cfq4.json b/advisories/unreviewed/2022/04/GHSA-pcm6-w2q9-cfq4/GHSA-pcm6-w2q9-cfq4.json
index a313ac292a0..aaea3ac76b4 100644
--- a/advisories/unreviewed/2022/04/GHSA-pcm6-w2q9-cfq4/GHSA-pcm6-w2q9-cfq4.json
+++ b/advisories/unreviewed/2022/04/GHSA-pcm6-w2q9-cfq4/GHSA-pcm6-w2q9-cfq4.json
@@ -7,12 +7,8 @@
"CVE-2010-5108"
],
"details": "Trac 0.11.6 does not properly check workflow permissions before modifying a ticket. This can be exploited by an attacker to change the status and resolution of tickets without having proper permissions.",
- "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/04/GHSA-pcv9-8f4w-qrgp/GHSA-pcv9-8f4w-qrgp.json b/advisories/unreviewed/2022/04/GHSA-pcv9-8f4w-qrgp/GHSA-pcv9-8f4w-qrgp.json
index d5fd53b43e8..6aa4639d71d 100644
--- a/advisories/unreviewed/2022/04/GHSA-pcv9-8f4w-qrgp/GHSA-pcv9-8f4w-qrgp.json
+++ b/advisories/unreviewed/2022/04/GHSA-pcv9-8f4w-qrgp/GHSA-pcv9-8f4w-qrgp.json
@@ -7,12 +7,8 @@
"CVE-2011-3656"
],
"details": "Cross-site scripting (XSS) vulnerability in Mozilla Firefox before 3.6.24 and 4.x through 7 allows remote attackers to inject arbitrary web script or HTML via vectors involving HTTP 0.9 errors, non-default ports, and content-sniffing.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-pcxm-mgvx-rw7j/GHSA-pcxm-mgvx-rw7j.json b/advisories/unreviewed/2022/04/GHSA-pcxm-mgvx-rw7j/GHSA-pcxm-mgvx-rw7j.json
index cb9c9c834f0..900724f7911 100644
--- a/advisories/unreviewed/2022/04/GHSA-pcxm-mgvx-rw7j/GHSA-pcxm-mgvx-rw7j.json
+++ b/advisories/unreviewed/2022/04/GHSA-pcxm-mgvx-rw7j/GHSA-pcxm-mgvx-rw7j.json
@@ -7,12 +7,8 @@
"CVE-2012-4919"
],
"details": "Gallery Plugin1.4 for WordPress has a Remote File Include Vulnerability",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-pf63-3qvp-c699/GHSA-pf63-3qvp-c699.json b/advisories/unreviewed/2022/04/GHSA-pf63-3qvp-c699/GHSA-pf63-3qvp-c699.json
index 29100a1b431..01ab0221c11 100644
--- a/advisories/unreviewed/2022/04/GHSA-pf63-3qvp-c699/GHSA-pf63-3qvp-c699.json
+++ b/advisories/unreviewed/2022/04/GHSA-pf63-3qvp-c699/GHSA-pf63-3qvp-c699.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-pg6q-x7mh-7cg2/GHSA-pg6q-x7mh-7cg2.json b/advisories/unreviewed/2022/04/GHSA-pg6q-x7mh-7cg2/GHSA-pg6q-x7mh-7cg2.json
index 1525909b716..362c3fcb971 100644
--- a/advisories/unreviewed/2022/04/GHSA-pg6q-x7mh-7cg2/GHSA-pg6q-x7mh-7cg2.json
+++ b/advisories/unreviewed/2022/04/GHSA-pg6q-x7mh-7cg2/GHSA-pg6q-x7mh-7cg2.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-phfh-xwqf-762x/GHSA-phfh-xwqf-762x.json b/advisories/unreviewed/2022/04/GHSA-phfh-xwqf-762x/GHSA-phfh-xwqf-762x.json
index 1d80d22979d..56cbe9c3df7 100644
--- a/advisories/unreviewed/2022/04/GHSA-phfh-xwqf-762x/GHSA-phfh-xwqf-762x.json
+++ b/advisories/unreviewed/2022/04/GHSA-phfh-xwqf-762x/GHSA-phfh-xwqf-762x.json
@@ -7,12 +7,8 @@
"CVE-2010-4178"
],
"details": "MySQL-GUI-tools (mysql-administrator) leaks passwords into process list after with launch of mysql text console",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-pjv6-j329-8r94/GHSA-pjv6-j329-8r94.json b/advisories/unreviewed/2022/04/GHSA-pjv6-j329-8r94/GHSA-pjv6-j329-8r94.json
index 564f16ecff1..e5d7c6ede9c 100644
--- a/advisories/unreviewed/2022/04/GHSA-pjv6-j329-8r94/GHSA-pjv6-j329-8r94.json
+++ b/advisories/unreviewed/2022/04/GHSA-pjv6-j329-8r94/GHSA-pjv6-j329-8r94.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-pmf9-h7jp-cmc8/GHSA-pmf9-h7jp-cmc8.json b/advisories/unreviewed/2022/04/GHSA-pmf9-h7jp-cmc8/GHSA-pmf9-h7jp-cmc8.json
index bbee314e02a..624e51e3733 100644
--- a/advisories/unreviewed/2022/04/GHSA-pmf9-h7jp-cmc8/GHSA-pmf9-h7jp-cmc8.json
+++ b/advisories/unreviewed/2022/04/GHSA-pmf9-h7jp-cmc8/GHSA-pmf9-h7jp-cmc8.json
@@ -7,12 +7,8 @@
"CVE-2009-4011"
],
"details": "dtc-xen 0.5.x before 0.5.4 suffers from a race condition where an attacker could potentially get a bash access as xenXX user on the dom0, and then access a potentially reuse an already opened VPS console.",
- "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/04/GHSA-ppf6-892c-x6fx/GHSA-ppf6-892c-x6fx.json b/advisories/unreviewed/2022/04/GHSA-ppf6-892c-x6fx/GHSA-ppf6-892c-x6fx.json
index 481dc670845..2b6fb84140d 100644
--- a/advisories/unreviewed/2022/04/GHSA-ppf6-892c-x6fx/GHSA-ppf6-892c-x6fx.json
+++ b/advisories/unreviewed/2022/04/GHSA-ppf6-892c-x6fx/GHSA-ppf6-892c-x6fx.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-ppx8-vp24-fwpx/GHSA-ppx8-vp24-fwpx.json b/advisories/unreviewed/2022/04/GHSA-ppx8-vp24-fwpx/GHSA-ppx8-vp24-fwpx.json
index c3d299640f9..9f4d4c85b1f 100644
--- a/advisories/unreviewed/2022/04/GHSA-ppx8-vp24-fwpx/GHSA-ppx8-vp24-fwpx.json
+++ b/advisories/unreviewed/2022/04/GHSA-ppx8-vp24-fwpx/GHSA-ppx8-vp24-fwpx.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-pqvq-7v9g-rjj9/GHSA-pqvq-7v9g-rjj9.json b/advisories/unreviewed/2022/04/GHSA-pqvq-7v9g-rjj9/GHSA-pqvq-7v9g-rjj9.json
index 3a54087b461..662f1a9e98e 100644
--- a/advisories/unreviewed/2022/04/GHSA-pqvq-7v9g-rjj9/GHSA-pqvq-7v9g-rjj9.json
+++ b/advisories/unreviewed/2022/04/GHSA-pqvq-7v9g-rjj9/GHSA-pqvq-7v9g-rjj9.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-pvc9-w2p3-hggj/GHSA-pvc9-w2p3-hggj.json b/advisories/unreviewed/2022/04/GHSA-pvc9-w2p3-hggj/GHSA-pvc9-w2p3-hggj.json
index 6f2ff500ea3..e9e3e0797c6 100644
--- a/advisories/unreviewed/2022/04/GHSA-pvc9-w2p3-hggj/GHSA-pvc9-w2p3-hggj.json
+++ b/advisories/unreviewed/2022/04/GHSA-pvc9-w2p3-hggj/GHSA-pvc9-w2p3-hggj.json
@@ -7,12 +7,8 @@
"CVE-2012-1259"
],
"details": "Multiple SQL injection vulnerabilities in Plixer International Scrutinizer NetFlow & sFlow Analyzer 8.6.2.16204, and possibly other versions before 9.0.1.19899, allow remote attackers to execute arbitrary SQL commands via the (1) addip parameter to cgi-bin/scrut_fa_exclusions.cgi, (2) getPermissionsAndPreferences parameter to cgi-bin/login.cgi, or (3) possibly certain parameters to d4d/alarms.php as demonstrated by the search_str parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-pvpf-wrvr-qvg2/GHSA-pvpf-wrvr-qvg2.json b/advisories/unreviewed/2022/04/GHSA-pvpf-wrvr-qvg2/GHSA-pvpf-wrvr-qvg2.json
index e9b709a9a18..3dcb4673ed6 100644
--- a/advisories/unreviewed/2022/04/GHSA-pvpf-wrvr-qvg2/GHSA-pvpf-wrvr-qvg2.json
+++ b/advisories/unreviewed/2022/04/GHSA-pvpf-wrvr-qvg2/GHSA-pvpf-wrvr-qvg2.json
@@ -7,12 +7,8 @@
"CVE-2011-4088"
],
"details": "ABRT might allow attackers to obtain sensitive information from crash reports.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-pwcf-7grp-gwmj/GHSA-pwcf-7grp-gwmj.json b/advisories/unreviewed/2022/04/GHSA-pwcf-7grp-gwmj/GHSA-pwcf-7grp-gwmj.json
index 888d3446437..14c9346990c 100644
--- a/advisories/unreviewed/2022/04/GHSA-pwcf-7grp-gwmj/GHSA-pwcf-7grp-gwmj.json
+++ b/advisories/unreviewed/2022/04/GHSA-pwcf-7grp-gwmj/GHSA-pwcf-7grp-gwmj.json
@@ -7,12 +7,8 @@
"CVE-2012-2142"
],
"details": "The error function in Error.cc in poppler before 0.21.4 allows remote attackers to execute arbitrary commands via a PDF containing an escape sequence for a terminal emulator.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -44,9 +40,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-q28q-m6r2-88m4/GHSA-q28q-m6r2-88m4.json b/advisories/unreviewed/2022/04/GHSA-q28q-m6r2-88m4/GHSA-q28q-m6r2-88m4.json
index 84ed3e3704d..53f0ee849fe 100644
--- a/advisories/unreviewed/2022/04/GHSA-q28q-m6r2-88m4/GHSA-q28q-m6r2-88m4.json
+++ b/advisories/unreviewed/2022/04/GHSA-q28q-m6r2-88m4/GHSA-q28q-m6r2-88m4.json
@@ -7,12 +7,8 @@
"CVE-2012-4030"
],
"details": "Chamilo before 1.8.8.6 does not adequately handle user supplied input by the index.php script, which could allow remote attackers to delete arbitrary files.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-q2hh-33rr-fpj4/GHSA-q2hh-33rr-fpj4.json b/advisories/unreviewed/2022/04/GHSA-q2hh-33rr-fpj4/GHSA-q2hh-33rr-fpj4.json
index 06921d158ab..71019ccbd89 100644
--- a/advisories/unreviewed/2022/04/GHSA-q2hh-33rr-fpj4/GHSA-q2hh-33rr-fpj4.json
+++ b/advisories/unreviewed/2022/04/GHSA-q2hh-33rr-fpj4/GHSA-q2hh-33rr-fpj4.json
@@ -7,12 +7,8 @@
"CVE-2011-3610"
],
"details": "A Cross-site Scripting (XSS) vulnerability exists in the Serendipity freetag plugin before 3.30 in the tagcloud parameter to plugins/serendipity_event_freetag/tagcloud.swf.",
- "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/04/GHSA-q3rm-gwvh-vhv3/GHSA-q3rm-gwvh-vhv3.json b/advisories/unreviewed/2022/04/GHSA-q3rm-gwvh-vhv3/GHSA-q3rm-gwvh-vhv3.json
index 1f8522ed32c..848dc2cb85e 100644
--- a/advisories/unreviewed/2022/04/GHSA-q3rm-gwvh-vhv3/GHSA-q3rm-gwvh-vhv3.json
+++ b/advisories/unreviewed/2022/04/GHSA-q3rm-gwvh-vhv3/GHSA-q3rm-gwvh-vhv3.json
@@ -7,12 +7,8 @@
"CVE-2011-2195"
],
"details": "A flaw was found in WebSVN 2.3.2. Without prior authentication, if the 'allowDownload' option is enabled in config.php, an attacker can invoke the dl.php script and pass a well formed 'path' argument to execute arbitrary commands against the underlying operating system.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-q53h-rp87-x968/GHSA-q53h-rp87-x968.json b/advisories/unreviewed/2022/04/GHSA-q53h-rp87-x968/GHSA-q53h-rp87-x968.json
index 2c994d5002d..a4c1591fe81 100644
--- a/advisories/unreviewed/2022/04/GHSA-q53h-rp87-x968/GHSA-q53h-rp87-x968.json
+++ b/advisories/unreviewed/2022/04/GHSA-q53h-rp87-x968/GHSA-q53h-rp87-x968.json
@@ -7,12 +7,8 @@
"CVE-2011-4090"
],
"details": "Serendipity before 1.6 has an XSS issue in the karma plugin which may allow privilege escalation.",
- "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/04/GHSA-q65m-m45h-phvf/GHSA-q65m-m45h-phvf.json b/advisories/unreviewed/2022/04/GHSA-q65m-m45h-phvf/GHSA-q65m-m45h-phvf.json
index 4f426562092..12a73f95b0a 100644
--- a/advisories/unreviewed/2022/04/GHSA-q65m-m45h-phvf/GHSA-q65m-m45h-phvf.json
+++ b/advisories/unreviewed/2022/04/GHSA-q65m-m45h-phvf/GHSA-q65m-m45h-phvf.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:A/AC:H/PR:H/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": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-q78x-rrx8-5m7q/GHSA-q78x-rrx8-5m7q.json b/advisories/unreviewed/2022/04/GHSA-q78x-rrx8-5m7q/GHSA-q78x-rrx8-5m7q.json
index b4ae310f51a..f894f4c11d3 100644
--- a/advisories/unreviewed/2022/04/GHSA-q78x-rrx8-5m7q/GHSA-q78x-rrx8-5m7q.json
+++ b/advisories/unreviewed/2022/04/GHSA-q78x-rrx8-5m7q/GHSA-q78x-rrx8-5m7q.json
@@ -7,12 +7,8 @@
"CVE-2011-4119"
],
"details": "caml-light <= 0.75 uses mktemp() insecurely, and also does unsafe things in /tmp during make install.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-q8cr-ff8r-cv2j/GHSA-q8cr-ff8r-cv2j.json b/advisories/unreviewed/2022/04/GHSA-q8cr-ff8r-cv2j/GHSA-q8cr-ff8r-cv2j.json
index 7ea922d1b3a..cb61a7f2ebb 100644
--- a/advisories/unreviewed/2022/04/GHSA-q8cr-ff8r-cv2j/GHSA-q8cr-ff8r-cv2j.json
+++ b/advisories/unreviewed/2022/04/GHSA-q8cr-ff8r-cv2j/GHSA-q8cr-ff8r-cv2j.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-q9qx-565q-3xcc/GHSA-q9qx-565q-3xcc.json b/advisories/unreviewed/2022/04/GHSA-q9qx-565q-3xcc/GHSA-q9qx-565q-3xcc.json
index c73f45c651e..e965b6a6c84 100644
--- a/advisories/unreviewed/2022/04/GHSA-q9qx-565q-3xcc/GHSA-q9qx-565q-3xcc.json
+++ b/advisories/unreviewed/2022/04/GHSA-q9qx-565q-3xcc/GHSA-q9qx-565q-3xcc.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-q9x9-3h5c-87j4/GHSA-q9x9-3h5c-87j4.json b/advisories/unreviewed/2022/04/GHSA-q9x9-3h5c-87j4/GHSA-q9x9-3h5c-87j4.json
index 6dd1d958725..eece8c9cafb 100644
--- a/advisories/unreviewed/2022/04/GHSA-q9x9-3h5c-87j4/GHSA-q9x9-3h5c-87j4.json
+++ b/advisories/unreviewed/2022/04/GHSA-q9x9-3h5c-87j4/GHSA-q9x9-3h5c-87j4.json
@@ -7,12 +7,8 @@
"CVE-2012-3821"
],
"details": "A Security Bypass vulnerability exists in the activate.asp page in Arial Software Campaign Enterprise 11.0.551, which could let a remote malicious user modify the SerialNumber field.",
- "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/04/GHSA-qf3g-hgw2-8r8h/GHSA-qf3g-hgw2-8r8h.json b/advisories/unreviewed/2022/04/GHSA-qf3g-hgw2-8r8h/GHSA-qf3g-hgw2-8r8h.json
index 0c9f6c19f7a..fa5b2792f0e 100644
--- a/advisories/unreviewed/2022/04/GHSA-qf3g-hgw2-8r8h/GHSA-qf3g-hgw2-8r8h.json
+++ b/advisories/unreviewed/2022/04/GHSA-qf3g-hgw2-8r8h/GHSA-qf3g-hgw2-8r8h.json
@@ -7,12 +7,8 @@
"CVE-2011-2523"
],
"details": "vsftpd 2.3.4 downloaded between 20110630 and 20110703 contains a backdoor which opens a shell on port 6200/tcp.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-qjc6-wj86-mr73/GHSA-qjc6-wj86-mr73.json b/advisories/unreviewed/2022/04/GHSA-qjc6-wj86-mr73/GHSA-qjc6-wj86-mr73.json
index 3e10f47b1f0..dbc7b7c449a 100644
--- a/advisories/unreviewed/2022/04/GHSA-qjc6-wj86-mr73/GHSA-qjc6-wj86-mr73.json
+++ b/advisories/unreviewed/2022/04/GHSA-qjc6-wj86-mr73/GHSA-qjc6-wj86-mr73.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-qjrp-w62x-2crq/GHSA-qjrp-w62x-2crq.json b/advisories/unreviewed/2022/04/GHSA-qjrp-w62x-2crq/GHSA-qjrp-w62x-2crq.json
index c5f3d7906fa..3863707ea80 100644
--- a/advisories/unreviewed/2022/04/GHSA-qjrp-w62x-2crq/GHSA-qjrp-w62x-2crq.json
+++ b/advisories/unreviewed/2022/04/GHSA-qjrp-w62x-2crq/GHSA-qjrp-w62x-2crq.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-qmwg-7c3h-jmrr/GHSA-qmwg-7c3h-jmrr.json b/advisories/unreviewed/2022/04/GHSA-qmwg-7c3h-jmrr/GHSA-qmwg-7c3h-jmrr.json
index 81971098c74..41ca2422d16 100644
--- a/advisories/unreviewed/2022/04/GHSA-qmwg-7c3h-jmrr/GHSA-qmwg-7c3h-jmrr.json
+++ b/advisories/unreviewed/2022/04/GHSA-qmwg-7c3h-jmrr/GHSA-qmwg-7c3h-jmrr.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-qp3g-fwv9-c8fv/GHSA-qp3g-fwv9-c8fv.json b/advisories/unreviewed/2022/04/GHSA-qp3g-fwv9-c8fv/GHSA-qp3g-fwv9-c8fv.json
index 519bfb3359a..d9eef9ba772 100644
--- a/advisories/unreviewed/2022/04/GHSA-qp3g-fwv9-c8fv/GHSA-qp3g-fwv9-c8fv.json
+++ b/advisories/unreviewed/2022/04/GHSA-qp3g-fwv9-c8fv/GHSA-qp3g-fwv9-c8fv.json
@@ -7,12 +7,8 @@
"CVE-2011-1135"
],
"details": "Cross-Site Scripting (XSS) in Xinha, as included in the Serendipity package before 1.5.5, allows remote attackers to execute arbitrary code in plugins/ExtendedFileManager/manager.php and plugins/ImageManager/manager.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-qr44-jpvc-mm3p/GHSA-qr44-jpvc-mm3p.json b/advisories/unreviewed/2022/04/GHSA-qr44-jpvc-mm3p/GHSA-qr44-jpvc-mm3p.json
index b7ff6e41b68..2d08c2e077e 100644
--- a/advisories/unreviewed/2022/04/GHSA-qr44-jpvc-mm3p/GHSA-qr44-jpvc-mm3p.json
+++ b/advisories/unreviewed/2022/04/GHSA-qr44-jpvc-mm3p/GHSA-qr44-jpvc-mm3p.json
@@ -7,12 +7,8 @@
"CVE-2010-4664"
],
"details": "In ConsoleKit before 0.4.2, an intended security policy restriction bypass was found. This flaw allows an authenticated system user to escalate their privileges by initiating a remote VNC session.",
- "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/04/GHSA-qr5q-3r8x-rmr4/GHSA-qr5q-3r8x-rmr4.json b/advisories/unreviewed/2022/04/GHSA-qr5q-3r8x-rmr4/GHSA-qr5q-3r8x-rmr4.json
index 49542566128..b51ed49d801 100644
--- a/advisories/unreviewed/2022/04/GHSA-qr5q-3r8x-rmr4/GHSA-qr5q-3r8x-rmr4.json
+++ b/advisories/unreviewed/2022/04/GHSA-qr5q-3r8x-rmr4/GHSA-qr5q-3r8x-rmr4.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-qvc6-mjf5-whqr/GHSA-qvc6-mjf5-whqr.json b/advisories/unreviewed/2022/04/GHSA-qvc6-mjf5-whqr/GHSA-qvc6-mjf5-whqr.json
index 2989c5a8bc9..c448d2f3fcc 100644
--- a/advisories/unreviewed/2022/04/GHSA-qvc6-mjf5-whqr/GHSA-qvc6-mjf5-whqr.json
+++ b/advisories/unreviewed/2022/04/GHSA-qvc6-mjf5-whqr/GHSA-qvc6-mjf5-whqr.json
@@ -7,12 +7,8 @@
"CVE-2010-5333"
],
"details": "The web server in Integard Pro and Home before 2.0.0.9037 and 2.2.x before 2.2.0.9037 has a buffer overflow via a long password in an administration login POST request, leading to arbitrary code execution.",
- "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/04/GHSA-qvvf-p6r3-ww25/GHSA-qvvf-p6r3-ww25.json b/advisories/unreviewed/2022/04/GHSA-qvvf-p6r3-ww25/GHSA-qvvf-p6r3-ww25.json
index 51c7cbca555..06aed96c12c 100644
--- a/advisories/unreviewed/2022/04/GHSA-qvvf-p6r3-ww25/GHSA-qvvf-p6r3-ww25.json
+++ b/advisories/unreviewed/2022/04/GHSA-qvvf-p6r3-ww25/GHSA-qvvf-p6r3-ww25.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-r2cc-gvv2-cfgr/GHSA-r2cc-gvv2-cfgr.json b/advisories/unreviewed/2022/04/GHSA-r2cc-gvv2-cfgr/GHSA-r2cc-gvv2-cfgr.json
index fb165eec9ee..f79c9b7306b 100644
--- a/advisories/unreviewed/2022/04/GHSA-r2cc-gvv2-cfgr/GHSA-r2cc-gvv2-cfgr.json
+++ b/advisories/unreviewed/2022/04/GHSA-r2cc-gvv2-cfgr/GHSA-r2cc-gvv2-cfgr.json
@@ -7,12 +7,8 @@
"CVE-2010-1432"
],
"details": "Joomla! Core is prone to an information disclosure vulnerability. Attackers can exploit this issue to obtain sensitive information that may help in launching further attacks. Joomla! Core versions 1.5.x ranging from 1.5.0 and up to and including 1.5.15 are vulnerable.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-r2f8-5p9c-wc96/GHSA-r2f8-5p9c-wc96.json b/advisories/unreviewed/2022/04/GHSA-r2f8-5p9c-wc96/GHSA-r2f8-5p9c-wc96.json
index a7ce83dfac1..02a499fa56f 100644
--- a/advisories/unreviewed/2022/04/GHSA-r2f8-5p9c-wc96/GHSA-r2f8-5p9c-wc96.json
+++ b/advisories/unreviewed/2022/04/GHSA-r2f8-5p9c-wc96/GHSA-r2f8-5p9c-wc96.json
@@ -7,12 +7,8 @@
"CVE-2011-3629"
],
"details": "Joomla! core 1.7.1 allows information disclosure due to weak encryption",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-r34m-4f53-rqg5/GHSA-r34m-4f53-rqg5.json b/advisories/unreviewed/2022/04/GHSA-r34m-4f53-rqg5/GHSA-r34m-4f53-rqg5.json
index 8ceda179fbd..f46ba05b320 100644
--- a/advisories/unreviewed/2022/04/GHSA-r34m-4f53-rqg5/GHSA-r34m-4f53-rqg5.json
+++ b/advisories/unreviewed/2022/04/GHSA-r34m-4f53-rqg5/GHSA-r34m-4f53-rqg5.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-r469-3mhm-hxr6/GHSA-r469-3mhm-hxr6.json b/advisories/unreviewed/2022/04/GHSA-r469-3mhm-hxr6/GHSA-r469-3mhm-hxr6.json
index f5bc516cf05..b5e5027d5c7 100644
--- a/advisories/unreviewed/2022/04/GHSA-r469-3mhm-hxr6/GHSA-r469-3mhm-hxr6.json
+++ b/advisories/unreviewed/2022/04/GHSA-r469-3mhm-hxr6/GHSA-r469-3mhm-hxr6.json
@@ -7,12 +7,8 @@
"CVE-2011-3202"
],
"details": "A Cross-Site Scripting (XSS) vulnerability exists in the g parameter to index.php in Jcow CMS 4.2 and earlier.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-r53q-c2rv-6gmc/GHSA-r53q-c2rv-6gmc.json b/advisories/unreviewed/2022/04/GHSA-r53q-c2rv-6gmc/GHSA-r53q-c2rv-6gmc.json
index cf17cf3c408..4f2679a0385 100644
--- a/advisories/unreviewed/2022/04/GHSA-r53q-c2rv-6gmc/GHSA-r53q-c2rv-6gmc.json
+++ b/advisories/unreviewed/2022/04/GHSA-r53q-c2rv-6gmc/GHSA-r53q-c2rv-6gmc.json
@@ -7,12 +7,8 @@
"CVE-2012-6344"
],
"details": "Novell ZENworks Configuration Management before 11.2.4 allows XSS.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-r55q-38mw-x288/GHSA-r55q-38mw-x288.json b/advisories/unreviewed/2022/04/GHSA-r55q-38mw-x288/GHSA-r55q-38mw-x288.json
index a5e04731f53..b97a088c238 100644
--- a/advisories/unreviewed/2022/04/GHSA-r55q-38mw-x288/GHSA-r55q-38mw-x288.json
+++ b/advisories/unreviewed/2022/04/GHSA-r55q-38mw-x288/GHSA-r55q-38mw-x288.json
@@ -7,12 +7,8 @@
"CVE-2012-0824"
],
"details": "gnusound 0.7.5 has format string issue",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-r5h3-jcxr-xfxf/GHSA-r5h3-jcxr-xfxf.json b/advisories/unreviewed/2022/04/GHSA-r5h3-jcxr-xfxf/GHSA-r5h3-jcxr-xfxf.json
index 121d5553cc8..a68e0d72dee 100644
--- a/advisories/unreviewed/2022/04/GHSA-r5h3-jcxr-xfxf/GHSA-r5h3-jcxr-xfxf.json
+++ b/advisories/unreviewed/2022/04/GHSA-r5h3-jcxr-xfxf/GHSA-r5h3-jcxr-xfxf.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:R/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-r5jc-qfq6-m38r/GHSA-r5jc-qfq6-m38r.json b/advisories/unreviewed/2022/04/GHSA-r5jc-qfq6-m38r/GHSA-r5jc-qfq6-m38r.json
index 41cb95d33d8..8a2c9506cb1 100644
--- a/advisories/unreviewed/2022/04/GHSA-r5jc-qfq6-m38r/GHSA-r5jc-qfq6-m38r.json
+++ b/advisories/unreviewed/2022/04/GHSA-r5jc-qfq6-m38r/GHSA-r5jc-qfq6-m38r.json
@@ -7,12 +7,8 @@
"CVE-2012-3807"
],
"details": "Samsung Kies before 2.5.0.12094_27_11 has arbitrary file execution.",
- "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/04/GHSA-r732-c3fc-99gm/GHSA-r732-c3fc-99gm.json b/advisories/unreviewed/2022/04/GHSA-r732-c3fc-99gm/GHSA-r732-c3fc-99gm.json
index 15f390f5fca..7d22cf60acf 100644
--- a/advisories/unreviewed/2022/04/GHSA-r732-c3fc-99gm/GHSA-r732-c3fc-99gm.json
+++ b/advisories/unreviewed/2022/04/GHSA-r732-c3fc-99gm/GHSA-r732-c3fc-99gm.json
@@ -7,12 +7,8 @@
"CVE-2010-2222"
],
"details": "The _ger_parse_control function in Red Hat Directory Server 8 and the 389 Directory Server allows attackers to cause a denial of service (NULL pointer dereference) via a crafted search query.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-r7pf-4cx4-hvx6/GHSA-r7pf-4cx4-hvx6.json b/advisories/unreviewed/2022/04/GHSA-r7pf-4cx4-hvx6/GHSA-r7pf-4cx4-hvx6.json
index 39846da9878..60fcff7cb1f 100644
--- a/advisories/unreviewed/2022/04/GHSA-r7pf-4cx4-hvx6/GHSA-r7pf-4cx4-hvx6.json
+++ b/advisories/unreviewed/2022/04/GHSA-r7pf-4cx4-hvx6/GHSA-r7pf-4cx4-hvx6.json
@@ -7,12 +7,8 @@
"CVE-2011-4907"
],
"details": "Joomla! 1.5x through 1.5.12: Missing JEXEC Check",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-r7vh-8g59-x9gg/GHSA-r7vh-8g59-x9gg.json b/advisories/unreviewed/2022/04/GHSA-r7vh-8g59-x9gg/GHSA-r7vh-8g59-x9gg.json
index 09cd7b13c87..25580dbd391 100644
--- a/advisories/unreviewed/2022/04/GHSA-r7vh-8g59-x9gg/GHSA-r7vh-8g59-x9gg.json
+++ b/advisories/unreviewed/2022/04/GHSA-r7vh-8g59-x9gg/GHSA-r7vh-8g59-x9gg.json
@@ -7,12 +7,8 @@
"CVE-2012-5776"
],
"details": "Dokeos 2.1.1 has multiple XSS issues involving \"extra_\" parameters in main/auth/profile.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-r8jc-hp6c-qc8j/GHSA-r8jc-hp6c-qc8j.json b/advisories/unreviewed/2022/04/GHSA-r8jc-hp6c-qc8j/GHSA-r8jc-hp6c-qc8j.json
index 1a2eefb44a6..7df91b94a86 100644
--- a/advisories/unreviewed/2022/04/GHSA-r8jc-hp6c-qc8j/GHSA-r8jc-hp6c-qc8j.json
+++ b/advisories/unreviewed/2022/04/GHSA-r8jc-hp6c-qc8j/GHSA-r8jc-hp6c-qc8j.json
@@ -7,12 +7,8 @@
"CVE-2009-0948"
],
"details": "Multiple buffer overflows in the (1) cdf_read_sat, (2) cdf_read_long_sector_chain, and (3) cdf_read_ssat function in file before 5.02.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-r99q-p8p3-v8v8/GHSA-r99q-p8p3-v8v8.json b/advisories/unreviewed/2022/04/GHSA-r99q-p8p3-v8v8/GHSA-r99q-p8p3-v8v8.json
index d10bf713f88..429a42bb746 100644
--- a/advisories/unreviewed/2022/04/GHSA-r99q-p8p3-v8v8/GHSA-r99q-p8p3-v8v8.json
+++ b/advisories/unreviewed/2022/04/GHSA-r99q-p8p3-v8v8/GHSA-r99q-p8p3-v8v8.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-rf47-7f45-8wv9/GHSA-rf47-7f45-8wv9.json b/advisories/unreviewed/2022/04/GHSA-rf47-7f45-8wv9/GHSA-rf47-7f45-8wv9.json
index 9b686165b5e..dc38ae59c10 100644
--- a/advisories/unreviewed/2022/04/GHSA-rf47-7f45-8wv9/GHSA-rf47-7f45-8wv9.json
+++ b/advisories/unreviewed/2022/04/GHSA-rf47-7f45-8wv9/GHSA-rf47-7f45-8wv9.json
@@ -7,12 +7,8 @@
"CVE-2011-4454"
],
"details": "Multiple cross-site scripting vulnerabilities in Tiki 8.0 RC1 and earlier allow remote attackers to inject arbitrary web script or HTML via the path info to (1) tiki-remind_password.php, (2) tiki-index.php, (3) tiki-login_scr.php, or (4) tiki-index.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-rffg-gjv5-9xm5/GHSA-rffg-gjv5-9xm5.json b/advisories/unreviewed/2022/04/GHSA-rffg-gjv5-9xm5/GHSA-rffg-gjv5-9xm5.json
index 21fce62522a..c1696632e69 100644
--- a/advisories/unreviewed/2022/04/GHSA-rffg-gjv5-9xm5/GHSA-rffg-gjv5-9xm5.json
+++ b/advisories/unreviewed/2022/04/GHSA-rffg-gjv5-9xm5/GHSA-rffg-gjv5-9xm5.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-rgmc-f85q-83hm/GHSA-rgmc-f85q-83hm.json b/advisories/unreviewed/2022/04/GHSA-rgmc-f85q-83hm/GHSA-rgmc-f85q-83hm.json
index 22ea8f27bd3..828f1fb38a6 100644
--- a/advisories/unreviewed/2022/04/GHSA-rgmc-f85q-83hm/GHSA-rgmc-f85q-83hm.json
+++ b/advisories/unreviewed/2022/04/GHSA-rgmc-f85q-83hm/GHSA-rgmc-f85q-83hm.json
@@ -7,12 +7,8 @@
"CVE-2012-1158"
],
"details": "Moodle before 2.2.2 has a course information leak in gradebook where users are able to see hidden grade items in export",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -56,9 +52,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-rh3h-295h-xcmv/GHSA-rh3h-295h-xcmv.json b/advisories/unreviewed/2022/04/GHSA-rh3h-295h-xcmv/GHSA-rh3h-295h-xcmv.json
index 474ca65b4ff..13cd24b257a 100644
--- a/advisories/unreviewed/2022/04/GHSA-rh3h-295h-xcmv/GHSA-rh3h-295h-xcmv.json
+++ b/advisories/unreviewed/2022/04/GHSA-rh3h-295h-xcmv/GHSA-rh3h-295h-xcmv.json
@@ -7,12 +7,8 @@
"CVE-2011-4336"
],
"details": "Tiki Wiki CMS Groupware 7.0 has XSS via the GET \"ajax\" parameter to snarf_ajax.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-rj98-5wmh-q944/GHSA-rj98-5wmh-q944.json b/advisories/unreviewed/2022/04/GHSA-rj98-5wmh-q944/GHSA-rj98-5wmh-q944.json
index 92e92396d12..d05f3c6eafb 100644
--- a/advisories/unreviewed/2022/04/GHSA-rj98-5wmh-q944/GHSA-rj98-5wmh-q944.json
+++ b/advisories/unreviewed/2022/04/GHSA-rj98-5wmh-q944/GHSA-rj98-5wmh-q944.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-rq93-8x3r-f79v/GHSA-rq93-8x3r-f79v.json b/advisories/unreviewed/2022/04/GHSA-rq93-8x3r-f79v/GHSA-rq93-8x3r-f79v.json
index 8e66fab8801..5e5c4a61ce7 100644
--- a/advisories/unreviewed/2022/04/GHSA-rq93-8x3r-f79v/GHSA-rq93-8x3r-f79v.json
+++ b/advisories/unreviewed/2022/04/GHSA-rq93-8x3r-f79v/GHSA-rq93-8x3r-f79v.json
@@ -7,12 +7,8 @@
"CVE-2012-4750"
],
"details": "A Code Execution vulnerability exists in the memcpy function when processing AMF requests in Ezhometech EzServer 7.0, which could let a remote malicious user execute arbitrary code or cause a Denial of Service",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-rrj8-pg6p-62v7/GHSA-rrj8-pg6p-62v7.json b/advisories/unreviewed/2022/04/GHSA-rrj8-pg6p-62v7/GHSA-rrj8-pg6p-62v7.json
index f20eaf2fd2e..b7da9264797 100644
--- a/advisories/unreviewed/2022/04/GHSA-rrj8-pg6p-62v7/GHSA-rrj8-pg6p-62v7.json
+++ b/advisories/unreviewed/2022/04/GHSA-rrj8-pg6p-62v7/GHSA-rrj8-pg6p-62v7.json
@@ -7,12 +7,8 @@
"CVE-2010-4532"
],
"details": "offlineimap before 6.3.2 does not check for SSL server certificate validation when \"ssl = yes\" option is specified which can allow man-in-the-middle attacks.",
- "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/04/GHSA-rrvw-f7rm-6v5p/GHSA-rrvw-f7rm-6v5p.json b/advisories/unreviewed/2022/04/GHSA-rrvw-f7rm-6v5p/GHSA-rrvw-f7rm-6v5p.json
index d16069e3398..8ea5060467c 100644
--- a/advisories/unreviewed/2022/04/GHSA-rrvw-f7rm-6v5p/GHSA-rrvw-f7rm-6v5p.json
+++ b/advisories/unreviewed/2022/04/GHSA-rrvw-f7rm-6v5p/GHSA-rrvw-f7rm-6v5p.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-rv5c-3qc2-9cmx/GHSA-rv5c-3qc2-9cmx.json b/advisories/unreviewed/2022/04/GHSA-rv5c-3qc2-9cmx/GHSA-rv5c-3qc2-9cmx.json
index 265498fe752..7af68c35bda 100644
--- a/advisories/unreviewed/2022/04/GHSA-rv5c-3qc2-9cmx/GHSA-rv5c-3qc2-9cmx.json
+++ b/advisories/unreviewed/2022/04/GHSA-rv5c-3qc2-9cmx/GHSA-rv5c-3qc2-9cmx.json
@@ -7,12 +7,8 @@
"CVE-2010-5332"
],
"details": "In the Linux kernel before 2.6.37, an out of bounds array access happened in drivers/net/mlx4/port.c. When searching for a free entry in either mlx4_register_vlan() or mlx4_register_mac(), and there is no free entry, the loop terminates without updating the local variable free thus causing out of array bounds access.",
- "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/04/GHSA-rvq2-pr94-29rv/GHSA-rvq2-pr94-29rv.json b/advisories/unreviewed/2022/04/GHSA-rvq2-pr94-29rv/GHSA-rvq2-pr94-29rv.json
index 0961a63e589..7fcc6790489 100644
--- a/advisories/unreviewed/2022/04/GHSA-rvq2-pr94-29rv/GHSA-rvq2-pr94-29rv.json
+++ b/advisories/unreviewed/2022/04/GHSA-rvq2-pr94-29rv/GHSA-rvq2-pr94-29rv.json
@@ -7,12 +7,8 @@
"CVE-2012-5190"
],
"details": "Prizm Content Connect 5.1 has an Arbitrary File Upload Vulnerability",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-rw9p-4whq-876w/GHSA-rw9p-4whq-876w.json b/advisories/unreviewed/2022/04/GHSA-rw9p-4whq-876w/GHSA-rw9p-4whq-876w.json
index 30ed7f2609e..ecdc0f00dd5 100644
--- a/advisories/unreviewed/2022/04/GHSA-rw9p-4whq-876w/GHSA-rw9p-4whq-876w.json
+++ b/advisories/unreviewed/2022/04/GHSA-rw9p-4whq-876w/GHSA-rw9p-4whq-876w.json
@@ -7,12 +7,8 @@
"CVE-2010-2476"
],
"details": "syscp 1.4.2.1 allows attackers to add arbitrary paths via the documentroot of a domain by appending a colon to it and setting the open basedir path to use that domain documentroot.",
- "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/04/GHSA-rxf2-6gjw-pqpg/GHSA-rxf2-6gjw-pqpg.json b/advisories/unreviewed/2022/04/GHSA-rxf2-6gjw-pqpg/GHSA-rxf2-6gjw-pqpg.json
index d9f4e1acad7..01031296562 100644
--- a/advisories/unreviewed/2022/04/GHSA-rxf2-6gjw-pqpg/GHSA-rxf2-6gjw-pqpg.json
+++ b/advisories/unreviewed/2022/04/GHSA-rxf2-6gjw-pqpg/GHSA-rxf2-6gjw-pqpg.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-rxqj-f9pj-x22r/GHSA-rxqj-f9pj-x22r.json b/advisories/unreviewed/2022/04/GHSA-rxqj-f9pj-x22r/GHSA-rxqj-f9pj-x22r.json
index 85c3e15e774..8c5de2454fd 100644
--- a/advisories/unreviewed/2022/04/GHSA-rxqj-f9pj-x22r/GHSA-rxqj-f9pj-x22r.json
+++ b/advisories/unreviewed/2022/04/GHSA-rxqj-f9pj-x22r/GHSA-rxqj-f9pj-x22r.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-rxwc-h9c5-48jq/GHSA-rxwc-h9c5-48jq.json b/advisories/unreviewed/2022/04/GHSA-rxwc-h9c5-48jq/GHSA-rxwc-h9c5-48jq.json
index 5cacd922379..db74657f42e 100644
--- a/advisories/unreviewed/2022/04/GHSA-rxwc-h9c5-48jq/GHSA-rxwc-h9c5-48jq.json
+++ b/advisories/unreviewed/2022/04/GHSA-rxwc-h9c5-48jq/GHSA-rxwc-h9c5-48jq.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-v2r7-6rp8-j3j6/GHSA-v2r7-6rp8-j3j6.json b/advisories/unreviewed/2022/04/GHSA-v2r7-6rp8-j3j6/GHSA-v2r7-6rp8-j3j6.json
index f7c4ae6d8a5..63a1787fe4b 100644
--- a/advisories/unreviewed/2022/04/GHSA-v2r7-6rp8-j3j6/GHSA-v2r7-6rp8-j3j6.json
+++ b/advisories/unreviewed/2022/04/GHSA-v2r7-6rp8-j3j6/GHSA-v2r7-6rp8-j3j6.json
@@ -7,12 +7,8 @@
"CVE-2011-4538"
],
"details": "Lexmark X, W, T, E, and C devices before 2012-02-09 allow attackers to obtain sensitive information by reading passwords within exported settings.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-v2wv-fw8v-86pw/GHSA-v2wv-fw8v-86pw.json b/advisories/unreviewed/2022/04/GHSA-v2wv-fw8v-86pw/GHSA-v2wv-fw8v-86pw.json
index ab11c452c43..09dd0c8125b 100644
--- a/advisories/unreviewed/2022/04/GHSA-v2wv-fw8v-86pw/GHSA-v2wv-fw8v-86pw.json
+++ b/advisories/unreviewed/2022/04/GHSA-v2wv-fw8v-86pw/GHSA-v2wv-fw8v-86pw.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-v4mg-xr34-jc9w/GHSA-v4mg-xr34-jc9w.json b/advisories/unreviewed/2022/04/GHSA-v4mg-xr34-jc9w/GHSA-v4mg-xr34-jc9w.json
index 2d917de9d3f..072ea557b74 100644
--- a/advisories/unreviewed/2022/04/GHSA-v4mg-xr34-jc9w/GHSA-v4mg-xr34-jc9w.json
+++ b/advisories/unreviewed/2022/04/GHSA-v4mg-xr34-jc9w/GHSA-v4mg-xr34-jc9w.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-v5rj-5gg5-mchf/GHSA-v5rj-5gg5-mchf.json b/advisories/unreviewed/2022/04/GHSA-v5rj-5gg5-mchf/GHSA-v5rj-5gg5-mchf.json
index 367111cd9a4..662d4dec69f 100644
--- a/advisories/unreviewed/2022/04/GHSA-v5rj-5gg5-mchf/GHSA-v5rj-5gg5-mchf.json
+++ b/advisories/unreviewed/2022/04/GHSA-v5rj-5gg5-mchf/GHSA-v5rj-5gg5-mchf.json
@@ -7,12 +7,8 @@
"CVE-2012-1261"
],
"details": "Cross-site scripting (XSS) vulnerability in cgi-bin/scrut_fa_exclusions.cgi in Plixer International Scrutinizer NetFlow and sFlow Analyzer 8.6.2.16204 and other versions before 9.0.1.19899 allows remote attackers to inject arbitrary web script or HTML via the standalone parameter.",
- "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/04/GHSA-v6jg-j6xh-j95v/GHSA-v6jg-j6xh-j95v.json b/advisories/unreviewed/2022/04/GHSA-v6jg-j6xh-j95v/GHSA-v6jg-j6xh-j95v.json
index f75b94b05dd..e7cd5659fab 100644
--- a/advisories/unreviewed/2022/04/GHSA-v6jg-j6xh-j95v/GHSA-v6jg-j6xh-j95v.json
+++ b/advisories/unreviewed/2022/04/GHSA-v6jg-j6xh-j95v/GHSA-v6jg-j6xh-j95v.json
@@ -7,12 +7,8 @@
"CVE-2011-2807"
],
"details": "Incorrect handling of timer information in Timer.cpp in WebKit in Google Chrome before Blink M13.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-v7qc-cc28-4m46/GHSA-v7qc-cc28-4m46.json b/advisories/unreviewed/2022/04/GHSA-v7qc-cc28-4m46/GHSA-v7qc-cc28-4m46.json
index 36183602fd1..551af2be63b 100644
--- a/advisories/unreviewed/2022/04/GHSA-v7qc-cc28-4m46/GHSA-v7qc-cc28-4m46.json
+++ b/advisories/unreviewed/2022/04/GHSA-v7qc-cc28-4m46/GHSA-v7qc-cc28-4m46.json
@@ -7,12 +7,8 @@
"CVE-2010-3669"
],
"details": "TYPO3 before 4.2.13, 4.3.x before 4.3.4 and 4.4.x before 4.4.1 allows XSS and Open Redirection in the frontend login box.",
- "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/04/GHSA-v887-xwm6-h3cc/GHSA-v887-xwm6-h3cc.json b/advisories/unreviewed/2022/04/GHSA-v887-xwm6-h3cc/GHSA-v887-xwm6-h3cc.json
index 7a6b9d8c2b2..ad5ffec1096 100644
--- a/advisories/unreviewed/2022/04/GHSA-v887-xwm6-h3cc/GHSA-v887-xwm6-h3cc.json
+++ b/advisories/unreviewed/2022/04/GHSA-v887-xwm6-h3cc/GHSA-v887-xwm6-h3cc.json
@@ -7,12 +7,8 @@
"CVE-2010-1434"
],
"details": "Joomla! Core is prone to a session fixation vulnerability. An attacker may leverage this issue to hijack an arbitrary session and gain access to sensitive information, which may help in launching further attacks. Joomla! Core versions 1.5.x ranging from 1.5.0 and up to and including 1.5.15 are vulnerable.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-v9mm-m35w-j8fm/GHSA-v9mm-m35w-j8fm.json b/advisories/unreviewed/2022/04/GHSA-v9mm-m35w-j8fm/GHSA-v9mm-m35w-j8fm.json
index 47960b89b2b..8cfafc98dd2 100644
--- a/advisories/unreviewed/2022/04/GHSA-v9mm-m35w-j8fm/GHSA-v9mm-m35w-j8fm.json
+++ b/advisories/unreviewed/2022/04/GHSA-v9mm-m35w-j8fm/GHSA-v9mm-m35w-j8fm.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",
@@ -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-vc25-73wc-75pv/GHSA-vc25-73wc-75pv.json b/advisories/unreviewed/2022/04/GHSA-vc25-73wc-75pv/GHSA-vc25-73wc-75pv.json
index adb56139de3..e58e123f919 100644
--- a/advisories/unreviewed/2022/04/GHSA-vc25-73wc-75pv/GHSA-vc25-73wc-75pv.json
+++ b/advisories/unreviewed/2022/04/GHSA-vc25-73wc-75pv/GHSA-vc25-73wc-75pv.json
@@ -7,12 +7,8 @@
"CVE-2011-5020"
],
"details": "An SQL Injection vulnerability exists in the ID parameter in Online TV Database 2011.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-vf2x-5v97-xmmh/GHSA-vf2x-5v97-xmmh.json b/advisories/unreviewed/2022/04/GHSA-vf2x-5v97-xmmh/GHSA-vf2x-5v97-xmmh.json
index 2fe5d9e2572..7cc57131e8e 100644
--- a/advisories/unreviewed/2022/04/GHSA-vf2x-5v97-xmmh/GHSA-vf2x-5v97-xmmh.json
+++ b/advisories/unreviewed/2022/04/GHSA-vf2x-5v97-xmmh/GHSA-vf2x-5v97-xmmh.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-vh3x-qhh3-9frg/GHSA-vh3x-qhh3-9frg.json b/advisories/unreviewed/2022/04/GHSA-vh3x-qhh3-9frg/GHSA-vh3x-qhh3-9frg.json
index f477faef2cc..01f1a28ab63 100644
--- a/advisories/unreviewed/2022/04/GHSA-vh3x-qhh3-9frg/GHSA-vh3x-qhh3-9frg.json
+++ b/advisories/unreviewed/2022/04/GHSA-vh3x-qhh3-9frg/GHSA-vh3x-qhh3-9frg.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-vm48-9jq9-p4rm/GHSA-vm48-9jq9-p4rm.json b/advisories/unreviewed/2022/04/GHSA-vm48-9jq9-p4rm/GHSA-vm48-9jq9-p4rm.json
index e5a0c99bd6a..388bca38721 100644
--- a/advisories/unreviewed/2022/04/GHSA-vm48-9jq9-p4rm/GHSA-vm48-9jq9-p4rm.json
+++ b/advisories/unreviewed/2022/04/GHSA-vm48-9jq9-p4rm/GHSA-vm48-9jq9-p4rm.json
@@ -7,12 +7,8 @@
"CVE-2012-5878"
],
"details": "Bulb Security Smartphone Pentest Framework (SPF) 0.1.2 through 0.1.4 allows remote attackers to execute arbitrary commands via shell metacharacters in the hostingPath parameter to (1) SEAttack.pl or (2) CSAttack.pl in frameworkgui/ or the (3) appURLPath parameter to frameworkgui/attachMobileModem.pl.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-vqp6-f6x9-5r96/GHSA-vqp6-f6x9-5r96.json b/advisories/unreviewed/2022/04/GHSA-vqp6-f6x9-5r96/GHSA-vqp6-f6x9-5r96.json
index 82ba08c0d3d..a24ff7fb085 100644
--- a/advisories/unreviewed/2022/04/GHSA-vqp6-f6x9-5r96/GHSA-vqp6-f6x9-5r96.json
+++ b/advisories/unreviewed/2022/04/GHSA-vqp6-f6x9-5r96/GHSA-vqp6-f6x9-5r96.json
@@ -7,12 +7,8 @@
"CVE-2010-2473"
],
"details": "Drupal 6.x before 6.16 and 5.x before version 5.22 does not properly block users under certain circumstances. A user with an open session that was blocked could maintain their session on the Drupal site despite being blocked.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-vqr8-85pj-78rw/GHSA-vqr8-85pj-78rw.json b/advisories/unreviewed/2022/04/GHSA-vqr8-85pj-78rw/GHSA-vqr8-85pj-78rw.json
index 368ec70fc27..4521ba63a93 100644
--- a/advisories/unreviewed/2022/04/GHSA-vqr8-85pj-78rw/GHSA-vqr8-85pj-78rw.json
+++ b/advisories/unreviewed/2022/04/GHSA-vqr8-85pj-78rw/GHSA-vqr8-85pj-78rw.json
@@ -7,12 +7,8 @@
"CVE-2010-3438"
],
"details": "libpoe-component-irc-perl before v6.32 does not remove carriage returns and line feeds. This can be used to execute arbitrary IRC commands by passing an argument such as \"some text\\rQUIT\" to the 'privmsg' handler, which would cause the client to disconnect from the server.",
- "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/04/GHSA-vr4x-84fc-9hfq/GHSA-vr4x-84fc-9hfq.json b/advisories/unreviewed/2022/04/GHSA-vr4x-84fc-9hfq/GHSA-vr4x-84fc-9hfq.json
index df84730a2bd..65f2ab1b286 100644
--- a/advisories/unreviewed/2022/04/GHSA-vr4x-84fc-9hfq/GHSA-vr4x-84fc-9hfq.json
+++ b/advisories/unreviewed/2022/04/GHSA-vr4x-84fc-9hfq/GHSA-vr4x-84fc-9hfq.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-vrxh-fr4w-j852/GHSA-vrxh-fr4w-j852.json b/advisories/unreviewed/2022/04/GHSA-vrxh-fr4w-j852/GHSA-vrxh-fr4w-j852.json
index 1149f913bd9..0fd59be0d88 100644
--- a/advisories/unreviewed/2022/04/GHSA-vrxh-fr4w-j852/GHSA-vrxh-fr4w-j852.json
+++ b/advisories/unreviewed/2022/04/GHSA-vrxh-fr4w-j852/GHSA-vrxh-fr4w-j852.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-vw47-w94h-267c/GHSA-vw47-w94h-267c.json b/advisories/unreviewed/2022/04/GHSA-vw47-w94h-267c/GHSA-vw47-w94h-267c.json
index 1a04d2aebea..6e5bf408eae 100644
--- a/advisories/unreviewed/2022/04/GHSA-vw47-w94h-267c/GHSA-vw47-w94h-267c.json
+++ b/advisories/unreviewed/2022/04/GHSA-vw47-w94h-267c/GHSA-vw47-w94h-267c.json
@@ -7,12 +7,8 @@
"CVE-2012-1496"
],
"details": "Local file inclusion in WebCalendar before 1.2.5.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-w256-hx99-6r3x/GHSA-w256-hx99-6r3x.json b/advisories/unreviewed/2022/04/GHSA-w256-hx99-6r3x/GHSA-w256-hx99-6r3x.json
index 29afaee413f..3280ec50f41 100644
--- a/advisories/unreviewed/2022/04/GHSA-w256-hx99-6r3x/GHSA-w256-hx99-6r3x.json
+++ b/advisories/unreviewed/2022/04/GHSA-w256-hx99-6r3x/GHSA-w256-hx99-6r3x.json
@@ -7,12 +7,8 @@
"CVE-2012-1104"
],
"details": "A Security Bypass vulnerability exists in the phpCAS 1.2.2 library from the jasig project due to the way proxying of services are managed.",
- "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/04/GHSA-w257-7vc6-7c8q/GHSA-w257-7vc6-7c8q.json b/advisories/unreviewed/2022/04/GHSA-w257-7vc6-7c8q/GHSA-w257-7vc6-7c8q.json
index 0bdc1ae3eae..976e5c9fd2a 100644
--- a/advisories/unreviewed/2022/04/GHSA-w257-7vc6-7c8q/GHSA-w257-7vc6-7c8q.json
+++ b/advisories/unreviewed/2022/04/GHSA-w257-7vc6-7c8q/GHSA-w257-7vc6-7c8q.json
@@ -7,12 +7,8 @@
"CVE-2012-1326"
],
"details": "Cisco IronPort Web Security Appliance up to and including 7.5 does not validate the basic constraints of the certificate authority which could lead to MITM attacks",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-w3gh-fwx6-wrpj/GHSA-w3gh-fwx6-wrpj.json b/advisories/unreviewed/2022/04/GHSA-w3gh-fwx6-wrpj/GHSA-w3gh-fwx6-wrpj.json
index 3e99d8cbf33..54e913b25c2 100644
--- a/advisories/unreviewed/2022/04/GHSA-w3gh-fwx6-wrpj/GHSA-w3gh-fwx6-wrpj.json
+++ b/advisories/unreviewed/2022/04/GHSA-w3gh-fwx6-wrpj/GHSA-w3gh-fwx6-wrpj.json
@@ -7,12 +7,8 @@
"CVE-2011-3269"
],
"details": "Lexmark X, W, T, E, C, 6500e, and 25xxN devices before 2011-11-15 allow attackers to obtain sensitive information via a hidden email address in a Scan To Email shortcut.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-w4pp-x42p-3jff/GHSA-w4pp-x42p-3jff.json b/advisories/unreviewed/2022/04/GHSA-w4pp-x42p-3jff/GHSA-w4pp-x42p-3jff.json
index 84a1c76bf16..b7d352418ad 100644
--- a/advisories/unreviewed/2022/04/GHSA-w4pp-x42p-3jff/GHSA-w4pp-x42p-3jff.json
+++ b/advisories/unreviewed/2022/04/GHSA-w4pp-x42p-3jff/GHSA-w4pp-x42p-3jff.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-w6m4-4394-5mjr/GHSA-w6m4-4394-5mjr.json b/advisories/unreviewed/2022/04/GHSA-w6m4-4394-5mjr/GHSA-w6m4-4394-5mjr.json
index 3fce1ad1545..0e88eecbfd2 100644
--- a/advisories/unreviewed/2022/04/GHSA-w6m4-4394-5mjr/GHSA-w6m4-4394-5mjr.json
+++ b/advisories/unreviewed/2022/04/GHSA-w6m4-4394-5mjr/GHSA-w6m4-4394-5mjr.json
@@ -7,12 +7,8 @@
"CVE-2011-4919"
],
"details": "mpack 1.6 has information disclosure via eavesdropping on mails sent by other users",
- "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/04/GHSA-w6qf-5w3x-wj7f/GHSA-w6qf-5w3x-wj7f.json b/advisories/unreviewed/2022/04/GHSA-w6qf-5w3x-wj7f/GHSA-w6qf-5w3x-wj7f.json
index 46df6270f4a..30da7f3fa05 100644
--- a/advisories/unreviewed/2022/04/GHSA-w6qf-5w3x-wj7f/GHSA-w6qf-5w3x-wj7f.json
+++ b/advisories/unreviewed/2022/04/GHSA-w6qf-5w3x-wj7f/GHSA-w6qf-5w3x-wj7f.json
@@ -7,12 +7,8 @@
"CVE-2011-1075"
],
"details": "FreeBSD's crontab calculates the MD5 sum of the previous and new cronjob to determine if any changes have been made before copying the new version in. In particular, it uses the MD5File() function, which takes a pathname as an argument, and is called with euid 0. A race condition in this process may lead to an arbitrary MD5 comparison regardless of the read permissions.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-w7c7-wffw-m9r8/GHSA-w7c7-wffw-m9r8.json b/advisories/unreviewed/2022/04/GHSA-w7c7-wffw-m9r8/GHSA-w7c7-wffw-m9r8.json
index c4d7496e740..e71a7ea4ba4 100644
--- a/advisories/unreviewed/2022/04/GHSA-w7c7-wffw-m9r8/GHSA-w7c7-wffw-m9r8.json
+++ b/advisories/unreviewed/2022/04/GHSA-w7c7-wffw-m9r8/GHSA-w7c7-wffw-m9r8.json
@@ -7,12 +7,8 @@
"CVE-2011-2499"
],
"details": "Mambo CMS through 4.6.5 has multiple XSS.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-w874-rv6g-6r3m/GHSA-w874-rv6g-6r3m.json b/advisories/unreviewed/2022/04/GHSA-w874-rv6g-6r3m/GHSA-w874-rv6g-6r3m.json
index 4c9659a34e4..121dc95b51b 100644
--- a/advisories/unreviewed/2022/04/GHSA-w874-rv6g-6r3m/GHSA-w874-rv6g-6r3m.json
+++ b/advisories/unreviewed/2022/04/GHSA-w874-rv6g-6r3m/GHSA-w874-rv6g-6r3m.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/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-w89r-9q8v-vfvq/GHSA-w89r-9q8v-vfvq.json b/advisories/unreviewed/2022/04/GHSA-w89r-9q8v-vfvq/GHSA-w89r-9q8v-vfvq.json
index 5c697e1ca33..f061d1408db 100644
--- a/advisories/unreviewed/2022/04/GHSA-w89r-9q8v-vfvq/GHSA-w89r-9q8v-vfvq.json
+++ b/advisories/unreviewed/2022/04/GHSA-w89r-9q8v-vfvq/GHSA-w89r-9q8v-vfvq.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-w8hc-6857-68v3/GHSA-w8hc-6857-68v3.json b/advisories/unreviewed/2022/04/GHSA-w8hc-6857-68v3/GHSA-w8hc-6857-68v3.json
index aa64c37ca92..f93af5b68bd 100644
--- a/advisories/unreviewed/2022/04/GHSA-w8hc-6857-68v3/GHSA-w8hc-6857-68v3.json
+++ b/advisories/unreviewed/2022/04/GHSA-w8hc-6857-68v3/GHSA-w8hc-6857-68v3.json
@@ -7,12 +7,8 @@
"CVE-2012-1563"
],
"details": "Joomla! before 2.5.3 allows Admin Account Creation.",
- "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/04/GHSA-w8q2-462v-r883/GHSA-w8q2-462v-r883.json b/advisories/unreviewed/2022/04/GHSA-w8q2-462v-r883/GHSA-w8q2-462v-r883.json
index 50e3e72affd..df4100eff7c 100644
--- a/advisories/unreviewed/2022/04/GHSA-w8q2-462v-r883/GHSA-w8q2-462v-r883.json
+++ b/advisories/unreviewed/2022/04/GHSA-w8q2-462v-r883/GHSA-w8q2-462v-r883.json
@@ -7,12 +7,8 @@
"CVE-2012-2237"
],
"details": "Multiple cross-site scripting (XSS) vulnerabilities in Mahara 1.4.x before 1.4.3 and 1.5.x before 1.5.2 allow remote attackers to inject arbitrary web script or HTML via vectors related to (1) javascript innerHTML as used when generating login forms, (2) links or (3) resources URLs, and (4) the Display name in a user profile.",
- "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/04/GHSA-w9w6-fg5x-535x/GHSA-w9w6-fg5x-535x.json b/advisories/unreviewed/2022/04/GHSA-w9w6-fg5x-535x/GHSA-w9w6-fg5x-535x.json
index 180b84cfbbe..9afa7a2b11e 100644
--- a/advisories/unreviewed/2022/04/GHSA-w9w6-fg5x-535x/GHSA-w9w6-fg5x-535x.json
+++ b/advisories/unreviewed/2022/04/GHSA-w9w6-fg5x-535x/GHSA-w9w6-fg5x-535x.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:A/AC:H/PR:H/UI:R/S:U/C:L/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wc38-v432-64pf/GHSA-wc38-v432-64pf.json b/advisories/unreviewed/2022/04/GHSA-wc38-v432-64pf/GHSA-wc38-v432-64pf.json
index 300ecea52d6..408f8e941f8 100644
--- a/advisories/unreviewed/2022/04/GHSA-wc38-v432-64pf/GHSA-wc38-v432-64pf.json
+++ b/advisories/unreviewed/2022/04/GHSA-wc38-v432-64pf/GHSA-wc38-v432-64pf.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-wc79-hvvx-2qpw/GHSA-wc79-hvvx-2qpw.json b/advisories/unreviewed/2022/04/GHSA-wc79-hvvx-2qpw/GHSA-wc79-hvvx-2qpw.json
index 25a57dd706d..8ff4d26ee73 100644
--- a/advisories/unreviewed/2022/04/GHSA-wc79-hvvx-2qpw/GHSA-wc79-hvvx-2qpw.json
+++ b/advisories/unreviewed/2022/04/GHSA-wc79-hvvx-2qpw/GHSA-wc79-hvvx-2qpw.json
@@ -7,12 +7,8 @@
"CVE-2010-4266"
],
"details": "It was found in vanilla forums before 2.0.10 a potential linkbait vulnerability in dispatcher.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-wf6g-6673-f52f/GHSA-wf6g-6673-f52f.json b/advisories/unreviewed/2022/04/GHSA-wf6g-6673-f52f/GHSA-wf6g-6673-f52f.json
index 27173b4c885..34fab4c215b 100644
--- a/advisories/unreviewed/2022/04/GHSA-wf6g-6673-f52f/GHSA-wf6g-6673-f52f.json
+++ b/advisories/unreviewed/2022/04/GHSA-wf6g-6673-f52f/GHSA-wf6g-6673-f52f.json
@@ -7,12 +7,8 @@
"CVE-2010-3299"
],
"details": "The encrypt/decrypt functions in Ruby on Rails 2.3 are vulnerable to padding oracle attacks.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wfv9-547j-vw5h/GHSA-wfv9-547j-vw5h.json b/advisories/unreviewed/2022/04/GHSA-wfv9-547j-vw5h/GHSA-wfv9-547j-vw5h.json
index 6360f77301f..cc3ecce91de 100644
--- a/advisories/unreviewed/2022/04/GHSA-wfv9-547j-vw5h/GHSA-wfv9-547j-vw5h.json
+++ b/advisories/unreviewed/2022/04/GHSA-wfv9-547j-vw5h/GHSA-wfv9-547j-vw5h.json
@@ -7,12 +7,8 @@
"CVE-2010-3359"
],
"details": "If LD_LIBRARY_PATH is undefined in gargoyle-free before 2009-08-25, the variable will point to the current directory. This can allow a local user to trick another user into running gargoyle in a directory with a cracked libgarglk.so and gain access to the user's account.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wg6h-56g7-mfvv/GHSA-wg6h-56g7-mfvv.json b/advisories/unreviewed/2022/04/GHSA-wg6h-56g7-mfvv/GHSA-wg6h-56g7-mfvv.json
index 78b374aba68..f6066f8fa19 100644
--- a/advisories/unreviewed/2022/04/GHSA-wg6h-56g7-mfvv/GHSA-wg6h-56g7-mfvv.json
+++ b/advisories/unreviewed/2022/04/GHSA-wg6h-56g7-mfvv/GHSA-wg6h-56g7-mfvv.json
@@ -7,12 +7,8 @@
"CVE-2011-2670"
],
"details": "Mozilla Firefox before 3.6 is vulnerable to XSS via the rendering of Cascading Style Sheets",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wh24-mw3x-2h92/GHSA-wh24-mw3x-2h92.json b/advisories/unreviewed/2022/04/GHSA-wh24-mw3x-2h92/GHSA-wh24-mw3x-2h92.json
index cba299ac16f..84a181a6437 100644
--- a/advisories/unreviewed/2022/04/GHSA-wh24-mw3x-2h92/GHSA-wh24-mw3x-2h92.json
+++ b/advisories/unreviewed/2022/04/GHSA-wh24-mw3x-2h92/GHSA-wh24-mw3x-2h92.json
@@ -7,12 +7,8 @@
"CVE-2011-3901"
],
"details": "Android SQLite Journal before 4.0.1 has an information disclosure vulnerability.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wh68-r6p4-7cv3/GHSA-wh68-r6p4-7cv3.json b/advisories/unreviewed/2022/04/GHSA-wh68-r6p4-7cv3/GHSA-wh68-r6p4-7cv3.json
index 87162b62a12..8855dc0a4a4 100644
--- a/advisories/unreviewed/2022/04/GHSA-wh68-r6p4-7cv3/GHSA-wh68-r6p4-7cv3.json
+++ b/advisories/unreviewed/2022/04/GHSA-wh68-r6p4-7cv3/GHSA-wh68-r6p4-7cv3.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-whfw-9qvh-v4jj/GHSA-whfw-9qvh-v4jj.json b/advisories/unreviewed/2022/04/GHSA-whfw-9qvh-v4jj/GHSA-whfw-9qvh-v4jj.json
index 0f3bca58463..f3355eedd91 100644
--- a/advisories/unreviewed/2022/04/GHSA-whfw-9qvh-v4jj/GHSA-whfw-9qvh-v4jj.json
+++ b/advisories/unreviewed/2022/04/GHSA-whfw-9qvh-v4jj/GHSA-whfw-9qvh-v4jj.json
@@ -7,12 +7,8 @@
"CVE-2010-2488"
],
"details": "NULL pointer dereference vulnerability in ZNC before 0.092 caused by traffic stats when there are unauthenticated connections.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wj5f-6f57-f3p5/GHSA-wj5f-6f57-f3p5.json b/advisories/unreviewed/2022/04/GHSA-wj5f-6f57-f3p5/GHSA-wj5f-6f57-f3p5.json
index f4bbb82fad0..b42721131df 100644
--- a/advisories/unreviewed/2022/04/GHSA-wj5f-6f57-f3p5/GHSA-wj5f-6f57-f3p5.json
+++ b/advisories/unreviewed/2022/04/GHSA-wj5f-6f57-f3p5/GHSA-wj5f-6f57-f3p5.json
@@ -7,12 +7,8 @@
"CVE-2012-4525"
],
"details": "piwigo has XSS in password.php",
- "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/04/GHSA-wjm5-2p7j-f53r/GHSA-wjm5-2p7j-f53r.json b/advisories/unreviewed/2022/04/GHSA-wjm5-2p7j-f53r/GHSA-wjm5-2p7j-f53r.json
index 09eede67c25..0ddd8b59889 100644
--- a/advisories/unreviewed/2022/04/GHSA-wjm5-2p7j-f53r/GHSA-wjm5-2p7j-f53r.json
+++ b/advisories/unreviewed/2022/04/GHSA-wjm5-2p7j-f53r/GHSA-wjm5-2p7j-f53r.json
@@ -7,12 +7,8 @@
"CVE-2011-2933"
],
"details": "An Arbitrary File Upload vulnerability exists in admin/media/upload.php in WebsiteBaker 2.8.1 and earlier due to a failure to restrict uploaded files with .htaccess, .php4, .php5, and .phtl extensions.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wmwq-58jv-2qj3/GHSA-wmwq-58jv-2qj3.json b/advisories/unreviewed/2022/04/GHSA-wmwq-58jv-2qj3/GHSA-wmwq-58jv-2qj3.json
index 79fe3bd6341..9a5076bf682 100644
--- a/advisories/unreviewed/2022/04/GHSA-wmwq-58jv-2qj3/GHSA-wmwq-58jv-2qj3.json
+++ b/advisories/unreviewed/2022/04/GHSA-wmwq-58jv-2qj3/GHSA-wmwq-58jv-2qj3.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-wr49-p92q-9ch9/GHSA-wr49-p92q-9ch9.json b/advisories/unreviewed/2022/04/GHSA-wr49-p92q-9ch9/GHSA-wr49-p92q-9ch9.json
index 88ab9d7c7ff..0f5d9ec9d59 100644
--- a/advisories/unreviewed/2022/04/GHSA-wr49-p92q-9ch9/GHSA-wr49-p92q-9ch9.json
+++ b/advisories/unreviewed/2022/04/GHSA-wr49-p92q-9ch9/GHSA-wr49-p92q-9ch9.json
@@ -7,12 +7,8 @@
"CVE-2012-3822"
],
"details": "Arial Campaign Enterprise before 11.0.551 has unauthorized access to the User-Edit.asp page, which allows remote attackers to enumerate users' credentials.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wr6p-j63r-xqhv/GHSA-wr6p-j63r-xqhv.json b/advisories/unreviewed/2022/04/GHSA-wr6p-j63r-xqhv/GHSA-wr6p-j63r-xqhv.json
index 683b1589d48..ab447a931f5 100644
--- a/advisories/unreviewed/2022/04/GHSA-wr6p-j63r-xqhv/GHSA-wr6p-j63r-xqhv.json
+++ b/advisories/unreviewed/2022/04/GHSA-wr6p-j63r-xqhv/GHSA-wr6p-j63r-xqhv.json
@@ -7,12 +7,8 @@
"CVE-2012-4438"
],
"details": "Jenkins main before 1.482 and LTS before 1.466.2 allows remote attackers with read access and HTTP access to Jenkins master to insert data and execute arbitrary code.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wrpr-9pr5-gr2v/GHSA-wrpr-9pr5-gr2v.json b/advisories/unreviewed/2022/04/GHSA-wrpr-9pr5-gr2v/GHSA-wrpr-9pr5-gr2v.json
index bb9495e395a..802cbd9a964 100644
--- a/advisories/unreviewed/2022/04/GHSA-wrpr-9pr5-gr2v/GHSA-wrpr-9pr5-gr2v.json
+++ b/advisories/unreviewed/2022/04/GHSA-wrpr-9pr5-gr2v/GHSA-wrpr-9pr5-gr2v.json
@@ -7,12 +7,8 @@
"CVE-2009-3552"
],
"details": "In RHEV-M VDC 2.2.0, it was found that the SSL certificate was not verified when using the client-side Red Hat Enterprise Virtualization Manager interface (a Windows Presentation Foundation (WPF) XAML browser application) to connect to the Red Hat Enterprise Virtualization Manager. An attacker on the local network could use this flaw to conduct a man-in-the-middle attack, tricking the user into thinking they are viewing the Red Hat Enterprise Virtualization Manager when the content is actually attacker-controlled, or modifying actions a user requested Red Hat Enterprise Virtualization Manager to perform.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -32,9 +28,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wvrq-v7hr-q8xr/GHSA-wvrq-v7hr-q8xr.json b/advisories/unreviewed/2022/04/GHSA-wvrq-v7hr-q8xr/GHSA-wvrq-v7hr-q8xr.json
index baeee88b659..e583ecea642 100644
--- a/advisories/unreviewed/2022/04/GHSA-wvrq-v7hr-q8xr/GHSA-wvrq-v7hr-q8xr.json
+++ b/advisories/unreviewed/2022/04/GHSA-wvrq-v7hr-q8xr/GHSA-wvrq-v7hr-q8xr.json
@@ -7,12 +7,8 @@
"CVE-2011-2515"
],
"details": "PackageKit 0.6.17 allows installation of unsigned RPM packages as though they were signed which may allow installation of non-trusted packages and execution of arbitrary code.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wwc8-gxf2-3q24/GHSA-wwc8-gxf2-3q24.json b/advisories/unreviewed/2022/04/GHSA-wwc8-gxf2-3q24/GHSA-wwc8-gxf2-3q24.json
index 596313b1064..c50fa031c54 100644
--- a/advisories/unreviewed/2022/04/GHSA-wwc8-gxf2-3q24/GHSA-wwc8-gxf2-3q24.json
+++ b/advisories/unreviewed/2022/04/GHSA-wwc8-gxf2-3q24/GHSA-wwc8-gxf2-3q24.json
@@ -7,12 +7,8 @@
"CVE-2011-1802"
],
"details": "WebKit in Google Chrome before Blink M11 and M12 does not properly handle counter nodes, which allows remote attackers to cause a denial of service (memory corruption).",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wwrq-jww7-39jq/GHSA-wwrq-jww7-39jq.json b/advisories/unreviewed/2022/04/GHSA-wwrq-jww7-39jq/GHSA-wwrq-jww7-39jq.json
index 0c53f22966f..449ca876ad5 100644
--- a/advisories/unreviewed/2022/04/GHSA-wwrq-jww7-39jq/GHSA-wwrq-jww7-39jq.json
+++ b/advisories/unreviewed/2022/04/GHSA-wwrq-jww7-39jq/GHSA-wwrq-jww7-39jq.json
@@ -7,12 +7,8 @@
"CVE-2012-1169"
],
"details": "Moodle before 2.2.2 has Personal information disclosure, when administrative setting users name display is set to first name only full names are shown in page breadcrumbs.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -56,9 +52,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-wx44-vgjw-fr2j/GHSA-wx44-vgjw-fr2j.json b/advisories/unreviewed/2022/04/GHSA-wx44-vgjw-fr2j/GHSA-wx44-vgjw-fr2j.json
index b6565c66241..d9670a8b00b 100644
--- a/advisories/unreviewed/2022/04/GHSA-wx44-vgjw-fr2j/GHSA-wx44-vgjw-fr2j.json
+++ b/advisories/unreviewed/2022/04/GHSA-wx44-vgjw-fr2j/GHSA-wx44-vgjw-fr2j.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-wx84-836p-vqhx/GHSA-wx84-836p-vqhx.json b/advisories/unreviewed/2022/04/GHSA-wx84-836p-vqhx/GHSA-wx84-836p-vqhx.json
index fd3bac9a5a3..191157873a2 100644
--- a/advisories/unreviewed/2022/04/GHSA-wx84-836p-vqhx/GHSA-wx84-836p-vqhx.json
+++ b/advisories/unreviewed/2022/04/GHSA-wx84-836p-vqhx/GHSA-wx84-836p-vqhx.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-wxxh-m2j3-p2vq/GHSA-wxxh-m2j3-p2vq.json b/advisories/unreviewed/2022/04/GHSA-wxxh-m2j3-p2vq/GHSA-wxxh-m2j3-p2vq.json
index 1be42d98382..ce111f2aa1e 100644
--- a/advisories/unreviewed/2022/04/GHSA-wxxh-m2j3-p2vq/GHSA-wxxh-m2j3-p2vq.json
+++ b/advisories/unreviewed/2022/04/GHSA-wxxh-m2j3-p2vq/GHSA-wxxh-m2j3-p2vq.json
@@ -7,12 +7,8 @@
"CVE-2011-4629"
],
"details": "Cross-site Scripting (XSS) in TYPO3 before 4.3.12, 4.4.x before 4.4.9, and 4.5.x before 4.5.4 allows remote attackers to inject arbitrary web script or HTML via the admin panel.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-x29m-778g-4mpc/GHSA-x29m-778g-4mpc.json b/advisories/unreviewed/2022/04/GHSA-x29m-778g-4mpc/GHSA-x29m-778g-4mpc.json
index 2ae72b42c31..e126b444733 100644
--- a/advisories/unreviewed/2022/04/GHSA-x29m-778g-4mpc/GHSA-x29m-778g-4mpc.json
+++ b/advisories/unreviewed/2022/04/GHSA-x29m-778g-4mpc/GHSA-x29m-778g-4mpc.json
@@ -7,12 +7,8 @@
"CVE-2012-1260"
],
"details": "Cross-site scripting (XSS) vulnerability in cgi-bin/userprefs.cgi in Plixer International Scrutinizer NetFlow & sFlow Analyzer 8.6.2.16204, and possibly other versions before 9.0.1.19899, allows remote attackers to inject arbitrary web script or HTML via the newUser parameter. NOTE: this might not be a vulnerability, since an administrator might already have the privileges to create arbitrary script.",
- "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/04/GHSA-x2hx-2frv-429m/GHSA-x2hx-2frv-429m.json b/advisories/unreviewed/2022/04/GHSA-x2hx-2frv-429m/GHSA-x2hx-2frv-429m.json
index 0455848210b..ae46cd59158 100644
--- a/advisories/unreviewed/2022/04/GHSA-x2hx-2frv-429m/GHSA-x2hx-2frv-429m.json
+++ b/advisories/unreviewed/2022/04/GHSA-x2hx-2frv-429m/GHSA-x2hx-2frv-429m.json
@@ -7,12 +7,8 @@
"CVE-2012-0049"
],
"details": "OpenTTD before 1.1.5 contains a Denial of Service (slow read attack) that prevents users from joining the server.",
- "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/04/GHSA-x2p9-f5fv-m7m7/GHSA-x2p9-f5fv-m7m7.json b/advisories/unreviewed/2022/04/GHSA-x2p9-f5fv-m7m7/GHSA-x2p9-f5fv-m7m7.json
index 90df34cdffc..3d1225a74d7 100644
--- a/advisories/unreviewed/2022/04/GHSA-x2p9-f5fv-m7m7/GHSA-x2p9-f5fv-m7m7.json
+++ b/advisories/unreviewed/2022/04/GHSA-x2p9-f5fv-m7m7/GHSA-x2p9-f5fv-m7m7.json
@@ -7,12 +7,8 @@
"CVE-2012-1155"
],
"details": "Moodle has a database activity export permission issue where the export function of the database activity module exports all entries even those from groups the user does not belong to",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -56,9 +52,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-x75f-hqp8-w29f/GHSA-x75f-hqp8-w29f.json b/advisories/unreviewed/2022/04/GHSA-x75f-hqp8-w29f/GHSA-x75f-hqp8-w29f.json
index 372fed524eb..1859e630c1b 100644
--- a/advisories/unreviewed/2022/04/GHSA-x75f-hqp8-w29f/GHSA-x75f-hqp8-w29f.json
+++ b/advisories/unreviewed/2022/04/GHSA-x75f-hqp8-w29f/GHSA-x75f-hqp8-w29f.json
@@ -7,12 +7,8 @@
"CVE-2012-5558"
],
"details": "Cross-site scripting (XSS) vulnerability in the Smiley module 6.x-1.x versions prior to 6.x-1.1 and Smileys module 6.x-1.x versions prior to 6.x-1.1 for Drupal allows remote authenticated users with the \"administer smiley\" permission to inject arbitrary web script or HTML via a smiley acronym.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-x7cv-v7gm-9r2x/GHSA-x7cv-v7gm-9r2x.json b/advisories/unreviewed/2022/04/GHSA-x7cv-v7gm-9r2x/GHSA-x7cv-v7gm-9r2x.json
index c1c09b9cc08..7f9e04e31b8 100644
--- a/advisories/unreviewed/2022/04/GHSA-x7cv-v7gm-9r2x/GHSA-x7cv-v7gm-9r2x.json
+++ b/advisories/unreviewed/2022/04/GHSA-x7cv-v7gm-9r2x/GHSA-x7cv-v7gm-9r2x.json
@@ -7,12 +7,8 @@
"CVE-2009-5046"
],
"details": "JSP Dump and Session Dump Servlet XSS in jetty before 6.1.22.",
- "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/04/GHSA-x87q-gpr2-r7wm/GHSA-x87q-gpr2-r7wm.json b/advisories/unreviewed/2022/04/GHSA-x87q-gpr2-r7wm/GHSA-x87q-gpr2-r7wm.json
index f3a3dbccf69..86f44fce9f2 100644
--- a/advisories/unreviewed/2022/04/GHSA-x87q-gpr2-r7wm/GHSA-x87q-gpr2-r7wm.json
+++ b/advisories/unreviewed/2022/04/GHSA-x87q-gpr2-r7wm/GHSA-x87q-gpr2-r7wm.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-x95h-4fhf-p9gw/GHSA-x95h-4fhf-p9gw.json b/advisories/unreviewed/2022/04/GHSA-x95h-4fhf-p9gw/GHSA-x95h-4fhf-p9gw.json
index 3c0cf02abd0..9c80fe9d350 100644
--- a/advisories/unreviewed/2022/04/GHSA-x95h-4fhf-p9gw/GHSA-x95h-4fhf-p9gw.json
+++ b/advisories/unreviewed/2022/04/GHSA-x95h-4fhf-p9gw/GHSA-x95h-4fhf-p9gw.json
@@ -7,12 +7,8 @@
"CVE-2012-4428"
],
"details": "openslp: SLPIntersectStringList()' Function has a DoS vulnerability",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -60,9 +56,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-x996-66p6-8fwx/GHSA-x996-66p6-8fwx.json b/advisories/unreviewed/2022/04/GHSA-x996-66p6-8fwx/GHSA-x996-66p6-8fwx.json
index efa9f555ce1..6e53682427a 100644
--- a/advisories/unreviewed/2022/04/GHSA-x996-66p6-8fwx/GHSA-x996-66p6-8fwx.json
+++ b/advisories/unreviewed/2022/04/GHSA-x996-66p6-8fwx/GHSA-x996-66p6-8fwx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/04/GHSA-x9fv-8cwx-6m58/GHSA-x9fv-8cwx-6m58.json b/advisories/unreviewed/2022/04/GHSA-x9fv-8cwx-6m58/GHSA-x9fv-8cwx-6m58.json
index 99b2d25fca3..35cac15e28b 100644
--- a/advisories/unreviewed/2022/04/GHSA-x9fv-8cwx-6m58/GHSA-x9fv-8cwx-6m58.json
+++ b/advisories/unreviewed/2022/04/GHSA-x9fv-8cwx-6m58/GHSA-x9fv-8cwx-6m58.json
@@ -7,12 +7,8 @@
"CVE-2007-6745"
],
"details": "clamav 0.91.2 suffers from a floating point exception when using ScanOLE2.",
- "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/04/GHSA-x9xq-9225-2896/GHSA-x9xq-9225-2896.json b/advisories/unreviewed/2022/04/GHSA-x9xq-9225-2896/GHSA-x9xq-9225-2896.json
index c920432a202..2aaf585aa42 100644
--- a/advisories/unreviewed/2022/04/GHSA-x9xq-9225-2896/GHSA-x9xq-9225-2896.json
+++ b/advisories/unreviewed/2022/04/GHSA-x9xq-9225-2896/GHSA-x9xq-9225-2896.json
@@ -7,12 +7,8 @@
"CVE-2011-2498"
],
"details": "The Linux kernel from v2.3.36 before v2.6.39 allows local unprivileged users to cause a denial of service (memory consumption) by triggering creation of PTE pages.",
- "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/04/GHSA-xcf5-966v-cjjm/GHSA-xcf5-966v-cjjm.json b/advisories/unreviewed/2022/04/GHSA-xcf5-966v-cjjm/GHSA-xcf5-966v-cjjm.json
index 84a1fc9d571..34a0770e614 100644
--- a/advisories/unreviewed/2022/04/GHSA-xcf5-966v-cjjm/GHSA-xcf5-966v-cjjm.json
+++ b/advisories/unreviewed/2022/04/GHSA-xcf5-966v-cjjm/GHSA-xcf5-966v-cjjm.json
@@ -7,12 +7,8 @@
"CVE-2009-5045"
],
"details": "Dump Servlet information leak in jetty before 6.1.22.",
- "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/04/GHSA-xcfc-9gm4-cqj8/GHSA-xcfc-9gm4-cqj8.json b/advisories/unreviewed/2022/04/GHSA-xcfc-9gm4-cqj8/GHSA-xcfc-9gm4-cqj8.json
index 9e02b84f4eb..1b00115d3ac 100644
--- a/advisories/unreviewed/2022/04/GHSA-xcfc-9gm4-cqj8/GHSA-xcfc-9gm4-cqj8.json
+++ b/advisories/unreviewed/2022/04/GHSA-xcfc-9gm4-cqj8/GHSA-xcfc-9gm4-cqj8.json
@@ -7,12 +7,8 @@
"CVE-2009-2802"
],
"details": "MantisBT 1.2.x before 1.2.2 insecurely handles attachments and MIME types. Arbitrary inline attachment rendering could lead to cross-domain scripting or other browser attacks.",
- "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/04/GHSA-xcxp-75xq-4wfj/GHSA-xcxp-75xq-4wfj.json b/advisories/unreviewed/2022/04/GHSA-xcxp-75xq-4wfj/GHSA-xcxp-75xq-4wfj.json
index 9febc7eeedd..e0fde680d0a 100644
--- a/advisories/unreviewed/2022/04/GHSA-xcxp-75xq-4wfj/GHSA-xcxp-75xq-4wfj.json
+++ b/advisories/unreviewed/2022/04/GHSA-xcxp-75xq-4wfj/GHSA-xcxp-75xq-4wfj.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-xg94-r739-55h8/GHSA-xg94-r739-55h8.json b/advisories/unreviewed/2022/04/GHSA-xg94-r739-55h8/GHSA-xg94-r739-55h8.json
index e4470d0c9ff..c8a13ea35e8 100644
--- a/advisories/unreviewed/2022/04/GHSA-xg94-r739-55h8/GHSA-xg94-r739-55h8.json
+++ b/advisories/unreviewed/2022/04/GHSA-xg94-r739-55h8/GHSA-xg94-r739-55h8.json
@@ -7,12 +7,8 @@
"CVE-2010-4662"
],
"details": "PmWiki before 2.2.21 has XSS.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/04/GHSA-xp3x-85w4-72px/GHSA-xp3x-85w4-72px.json b/advisories/unreviewed/2022/04/GHSA-xp3x-85w4-72px/GHSA-xp3x-85w4-72px.json
index 6cb6e670d0b..91c0e909dba 100644
--- a/advisories/unreviewed/2022/04/GHSA-xp3x-85w4-72px/GHSA-xp3x-85w4-72px.json
+++ b/advisories/unreviewed/2022/04/GHSA-xp3x-85w4-72px/GHSA-xp3x-85w4-72px.json
@@ -7,12 +7,8 @@
"CVE-2011-4115"
],
"details": "Parallel::ForkManager module before 1.0.0 for Perl does not properly handle temporary files.",
- "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/04/GHSA-xr4f-cr86-pfhv/GHSA-xr4f-cr86-pfhv.json b/advisories/unreviewed/2022/04/GHSA-xr4f-cr86-pfhv/GHSA-xr4f-cr86-pfhv.json
index 007ab268ca0..5f91753bca8 100644
--- a/advisories/unreviewed/2022/04/GHSA-xr4f-cr86-pfhv/GHSA-xr4f-cr86-pfhv.json
+++ b/advisories/unreviewed/2022/04/GHSA-xr4f-cr86-pfhv/GHSA-xr4f-cr86-pfhv.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-xv93-mqjm-cvfq/GHSA-xv93-mqjm-cvfq.json b/advisories/unreviewed/2022/04/GHSA-xv93-mqjm-cvfq/GHSA-xv93-mqjm-cvfq.json
index 084f7d86710..c9f0ad96f85 100644
--- a/advisories/unreviewed/2022/04/GHSA-xv93-mqjm-cvfq/GHSA-xv93-mqjm-cvfq.json
+++ b/advisories/unreviewed/2022/04/GHSA-xv93-mqjm-cvfq/GHSA-xv93-mqjm-cvfq.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",
@@ -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-xvh8-g3fx-684w/GHSA-xvh8-g3fx-684w.json b/advisories/unreviewed/2022/04/GHSA-xvh8-g3fx-684w/GHSA-xvh8-g3fx-684w.json
index 6eb80f61dfa..d4aea4ca103 100644
--- a/advisories/unreviewed/2022/04/GHSA-xvh8-g3fx-684w/GHSA-xvh8-g3fx-684w.json
+++ b/advisories/unreviewed/2022/04/GHSA-xvh8-g3fx-684w/GHSA-xvh8-g3fx-684w.json
@@ -7,12 +7,8 @@
"CVE-2012-6613"
],
"details": "D-Link DSR-250N devices with firmware 1.05B73_WW allow Persistent Root Access because of the admin password for the admin account.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -24,9 +20,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-27xw-q7rh-9mrw/GHSA-27xw-q7rh-9mrw.json b/advisories/unreviewed/2022/05/GHSA-27xw-q7rh-9mrw/GHSA-27xw-q7rh-9mrw.json
index 7ef0f5f496d..b4a7801a3b9 100644
--- a/advisories/unreviewed/2022/05/GHSA-27xw-q7rh-9mrw/GHSA-27xw-q7rh-9mrw.json
+++ b/advisories/unreviewed/2022/05/GHSA-27xw-q7rh-9mrw/GHSA-27xw-q7rh-9mrw.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-2cpx-h9r5-454w/GHSA-2cpx-h9r5-454w.json b/advisories/unreviewed/2022/05/GHSA-2cpx-h9r5-454w/GHSA-2cpx-h9r5-454w.json
index ca4b100d6ef..153f3f0508c 100644
--- a/advisories/unreviewed/2022/05/GHSA-2cpx-h9r5-454w/GHSA-2cpx-h9r5-454w.json
+++ b/advisories/unreviewed/2022/05/GHSA-2cpx-h9r5-454w/GHSA-2cpx-h9r5-454w.json
@@ -7,12 +7,8 @@
"CVE-2008-5171"
],
"details": "Multiple directory traversal vulnerabilities in admin/minibb/index.php in phpBLASTER CMS 1.0 RC1, when register_globals is enabled, allow remote attackers to include and execute arbitrary local files via directory traversal sequences in the (1) DB, (2) lang, and (3) skin parameters.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-2q9v-v58g-5c4c/GHSA-2q9v-v58g-5c4c.json b/advisories/unreviewed/2022/05/GHSA-2q9v-v58g-5c4c/GHSA-2q9v-v58g-5c4c.json
index af88f2aa0fb..b1e2e5fafa1 100644
--- a/advisories/unreviewed/2022/05/GHSA-2q9v-v58g-5c4c/GHSA-2q9v-v58g-5c4c.json
+++ b/advisories/unreviewed/2022/05/GHSA-2q9v-v58g-5c4c/GHSA-2q9v-v58g-5c4c.json
@@ -7,12 +7,8 @@
"CVE-2008-5354"
],
"details": "Stack-based buffer overflow in Java Runtime Environment (JRE) for Sun JDK and JRE 6 Update 10 and earlier; JDK and JRE 5.0 Update 16 and earlier; and SDK and JRE 1.4.2_18 and earlier allows locally-launched and possibly remote untrusted Java applications to execute arbitrary code via a JAR file with a long Main-Class manifest entry.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-2rpm-6c5g-j32f/GHSA-2rpm-6c5g-j32f.json b/advisories/unreviewed/2022/05/GHSA-2rpm-6c5g-j32f/GHSA-2rpm-6c5g-j32f.json
index 24aca81a5ba..b03ab8a9d65 100644
--- a/advisories/unreviewed/2022/05/GHSA-2rpm-6c5g-j32f/GHSA-2rpm-6c5g-j32f.json
+++ b/advisories/unreviewed/2022/05/GHSA-2rpm-6c5g-j32f/GHSA-2rpm-6c5g-j32f.json
@@ -7,12 +7,8 @@
"CVE-2008-5767"
],
"details": "SQL injection vulnerability in authors.asp in gNews Publisher allows remote attackers to execute arbitrary SQL commands via the authorID parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-3843-gw6w-ffcc/GHSA-3843-gw6w-ffcc.json b/advisories/unreviewed/2022/05/GHSA-3843-gw6w-ffcc/GHSA-3843-gw6w-ffcc.json
index 11a54f17ed8..5064bc0e865 100644
--- a/advisories/unreviewed/2022/05/GHSA-3843-gw6w-ffcc/GHSA-3843-gw6w-ffcc.json
+++ b/advisories/unreviewed/2022/05/GHSA-3843-gw6w-ffcc/GHSA-3843-gw6w-ffcc.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-3f49-xrvw-r3qr/GHSA-3f49-xrvw-r3qr.json b/advisories/unreviewed/2022/05/GHSA-3f49-xrvw-r3qr/GHSA-3f49-xrvw-r3qr.json
index a07c84f2977..b9ee4d5a0a4 100644
--- a/advisories/unreviewed/2022/05/GHSA-3f49-xrvw-r3qr/GHSA-3f49-xrvw-r3qr.json
+++ b/advisories/unreviewed/2022/05/GHSA-3f49-xrvw-r3qr/GHSA-3f49-xrvw-r3qr.json
@@ -7,12 +7,8 @@
"CVE-2008-5856"
],
"details": "Directory traversal vulnerability in scripts/export.php in ClaSS before 0.8.61 allows remote attackers to read arbitrary files via directory traversal sequences in the ftype parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-3h7v-p5q7-mcrq/GHSA-3h7v-p5q7-mcrq.json b/advisories/unreviewed/2022/05/GHSA-3h7v-p5q7-mcrq/GHSA-3h7v-p5q7-mcrq.json
index 96081e64622..2c10c8e3117 100644
--- a/advisories/unreviewed/2022/05/GHSA-3h7v-p5q7-mcrq/GHSA-3h7v-p5q7-mcrq.json
+++ b/advisories/unreviewed/2022/05/GHSA-3h7v-p5q7-mcrq/GHSA-3h7v-p5q7-mcrq.json
@@ -7,12 +7,8 @@
"CVE-2008-5805"
],
"details": "SQL injection vulnerability in detail.php in DeltaScripts PHP Classifieds 7.5 and earlier allows remote attackers to execute arbitrary SQL commands via the siteid parameter, a different vector than CVE-2006-5828.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-3hc2-c7c2-f785/GHSA-3hc2-c7c2-f785.json b/advisories/unreviewed/2022/05/GHSA-3hc2-c7c2-f785/GHSA-3hc2-c7c2-f785.json
index b0df4211a41..b679de1409d 100644
--- a/advisories/unreviewed/2022/05/GHSA-3hc2-c7c2-f785/GHSA-3hc2-c7c2-f785.json
+++ b/advisories/unreviewed/2022/05/GHSA-3hc2-c7c2-f785/GHSA-3hc2-c7c2-f785.json
@@ -7,12 +7,8 @@
"CVE-2008-1721"
],
"details": "Integer signedness error in the zlib extension module in Python 2.5.2 and earlier allows remote attackers to execute arbitrary code via a negative signed integer, which triggers insufficient memory allocation and a buffer overflow.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-3hhv-jmm7-4v3q/GHSA-3hhv-jmm7-4v3q.json b/advisories/unreviewed/2022/05/GHSA-3hhv-jmm7-4v3q/GHSA-3hhv-jmm7-4v3q.json
index 2667162b045..f12981ad059 100644
--- a/advisories/unreviewed/2022/05/GHSA-3hhv-jmm7-4v3q/GHSA-3hhv-jmm7-4v3q.json
+++ b/advisories/unreviewed/2022/05/GHSA-3hhv-jmm7-4v3q/GHSA-3hhv-jmm7-4v3q.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-3q75-gmh9-x7r6/GHSA-3q75-gmh9-x7r6.json b/advisories/unreviewed/2022/05/GHSA-3q75-gmh9-x7r6/GHSA-3q75-gmh9-x7r6.json
index c04cdfb6aca..70dd7519fdb 100644
--- a/advisories/unreviewed/2022/05/GHSA-3q75-gmh9-x7r6/GHSA-3q75-gmh9-x7r6.json
+++ b/advisories/unreviewed/2022/05/GHSA-3q75-gmh9-x7r6/GHSA-3q75-gmh9-x7r6.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/05/GHSA-3v25-grm8-qvf9/GHSA-3v25-grm8-qvf9.json b/advisories/unreviewed/2022/05/GHSA-3v25-grm8-qvf9/GHSA-3v25-grm8-qvf9.json
index 7f369a92e2b..ac426635b84 100644
--- a/advisories/unreviewed/2022/05/GHSA-3v25-grm8-qvf9/GHSA-3v25-grm8-qvf9.json
+++ b/advisories/unreviewed/2022/05/GHSA-3v25-grm8-qvf9/GHSA-3v25-grm8-qvf9.json
@@ -7,12 +7,8 @@
"CVE-2008-5815"
],
"details": "SQL injection vulnerability in Acomment.php in phpAlumni 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-4262-475v-w946/GHSA-4262-475v-w946.json b/advisories/unreviewed/2022/05/GHSA-4262-475v-w946/GHSA-4262-475v-w946.json
index ff724d199d6..c5e769fea80 100644
--- a/advisories/unreviewed/2022/05/GHSA-4262-475v-w946/GHSA-4262-475v-w946.json
+++ b/advisories/unreviewed/2022/05/GHSA-4262-475v-w946/GHSA-4262-475v-w946.json
@@ -7,12 +7,8 @@
"CVE-2008-5878"
],
"details": "Multiple directory traversal vulnerabilities in Phpclanwebsite (aka PCW) 1.23.3 Fix Pack 5 and earlier, when magic_quotes_gpc is disabled and register_globals is enabled, allow remote attackers to include and execute arbitrary files via a .. (dot dot) in the (1) boxname parameter to theme/superchrome/box.php and the (2) theme parameter to phpclanwebsite/footer.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-44mj-v588-fp95/GHSA-44mj-v588-fp95.json b/advisories/unreviewed/2022/05/GHSA-44mj-v588-fp95/GHSA-44mj-v588-fp95.json
index be45d2f6fed..78c2aefa8b3 100644
--- a/advisories/unreviewed/2022/05/GHSA-44mj-v588-fp95/GHSA-44mj-v588-fp95.json
+++ b/advisories/unreviewed/2022/05/GHSA-44mj-v588-fp95/GHSA-44mj-v588-fp95.json
@@ -7,12 +7,8 @@
"CVE-2008-5636"
],
"details": "SQL injection vulnerability in cate.php in Lito Lite CMS, when magic_quotes_gpc is disabled, 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-4662-p5h4-fv37/GHSA-4662-p5h4-fv37.json b/advisories/unreviewed/2022/05/GHSA-4662-p5h4-fv37/GHSA-4662-p5h4-fv37.json
index 1a1f2f59944..4d8f128bd13 100644
--- a/advisories/unreviewed/2022/05/GHSA-4662-p5h4-fv37/GHSA-4662-p5h4-fv37.json
+++ b/advisories/unreviewed/2022/05/GHSA-4662-p5h4-fv37/GHSA-4662-p5h4-fv37.json
@@ -7,12 +7,8 @@
"CVE-2008-5852"
],
"details": "Emefa Guestbook 3.0 stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file via a direct request for guestbook.mdb.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-47gj-jq93-7cpf/GHSA-47gj-jq93-7cpf.json b/advisories/unreviewed/2022/05/GHSA-47gj-jq93-7cpf/GHSA-47gj-jq93-7cpf.json
index 8f2151b8180..3042f253251 100644
--- a/advisories/unreviewed/2022/05/GHSA-47gj-jq93-7cpf/GHSA-47gj-jq93-7cpf.json
+++ b/advisories/unreviewed/2022/05/GHSA-47gj-jq93-7cpf/GHSA-47gj-jq93-7cpf.json
@@ -7,12 +7,8 @@
"CVE-2008-5793"
],
"details": "Multiple PHP remote file inclusion vulnerabilities in the Clickheat - Heatmap stats (com_clickheat) component 1.0.1 for Joomla! allow remote attackers to execute arbitrary PHP code via a URL in the (1) GLOBALS[mosConfig_absolute_path] parameter to (a) install.clickheat.php, (b) Cache.php and (c) Clickheat_Heatmap.php in Recly/Clickheat/, and (d) Recly/common/GlobalVariables.php; and the (2) mosConfig_absolute_path parameter to (e) _main.php and (f) main.php in includes/heatmap, and (g) includes/overview/main.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-4jfj-f72q-22fg/GHSA-4jfj-f72q-22fg.json b/advisories/unreviewed/2022/05/GHSA-4jfj-f72q-22fg/GHSA-4jfj-f72q-22fg.json
index 7ae13883319..fff3c4a4a00 100644
--- a/advisories/unreviewed/2022/05/GHSA-4jfj-f72q-22fg/GHSA-4jfj-f72q-22fg.json
+++ b/advisories/unreviewed/2022/05/GHSA-4jfj-f72q-22fg/GHSA-4jfj-f72q-22fg.json
@@ -7,12 +7,8 @@
"CVE-2008-5771"
],
"details": "Directory traversal vulnerability in test.php in PHP Weather 2.2.2 allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the language parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-4jh5-9c29-9299/GHSA-4jh5-9c29-9299.json b/advisories/unreviewed/2022/05/GHSA-4jh5-9c29-9299/GHSA-4jh5-9c29-9299.json
index 198b48cab4a..e20ae00d018 100644
--- a/advisories/unreviewed/2022/05/GHSA-4jh5-9c29-9299/GHSA-4jh5-9c29-9299.json
+++ b/advisories/unreviewed/2022/05/GHSA-4jh5-9c29-9299/GHSA-4jh5-9c29-9299.json
@@ -7,12 +7,8 @@
"CVE-2008-5841"
],
"details": "Multiple SQL injection vulnerabilities in iGaming 1.5 and earlier allow remote attackers to execute arbitrary SQL commands via the browse parameter to (1) previews.php and (2) reviews.php, and the (3) id parameter to index.php in a viewarticle action.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-4qv2-3fq8-gvx4/GHSA-4qv2-3fq8-gvx4.json b/advisories/unreviewed/2022/05/GHSA-4qv2-3fq8-gvx4/GHSA-4qv2-3fq8-gvx4.json
index 934e38859af..a76a21c1c46 100644
--- a/advisories/unreviewed/2022/05/GHSA-4qv2-3fq8-gvx4/GHSA-4qv2-3fq8-gvx4.json
+++ b/advisories/unreviewed/2022/05/GHSA-4qv2-3fq8-gvx4/GHSA-4qv2-3fq8-gvx4.json
@@ -7,12 +7,8 @@
"CVE-2008-5918"
],
"details": "Cross-site scripting (XSS) vulnerability in the getParameterisedSelfUrl function in index.php in WebSVN 2.0 and earlier allows remote attackers to inject arbitrary web script or HTML via the PATH_INFO.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-4wjj-j8m7-7gxw/GHSA-4wjj-j8m7-7gxw.json b/advisories/unreviewed/2022/05/GHSA-4wjj-j8m7-7gxw/GHSA-4wjj-j8m7-7gxw.json
index 205254fc873..cfce431c4e7 100644
--- a/advisories/unreviewed/2022/05/GHSA-4wjj-j8m7-7gxw/GHSA-4wjj-j8m7-7gxw.json
+++ b/advisories/unreviewed/2022/05/GHSA-4wjj-j8m7-7gxw/GHSA-4wjj-j8m7-7gxw.json
@@ -7,12 +7,8 @@
"CVE-2008-5886"
],
"details": "TAKempis Discussion Web 4.0 stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing a password via a direct request for _private/discussion.mdb. NOTE: some of these details are obtained from third party information.",
- "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-4wpc-wfjx-8hjc/GHSA-4wpc-wfjx-8hjc.json b/advisories/unreviewed/2022/05/GHSA-4wpc-wfjx-8hjc/GHSA-4wpc-wfjx-8hjc.json
index 6af6ff527db..f07d20dc0cf 100644
--- a/advisories/unreviewed/2022/05/GHSA-4wpc-wfjx-8hjc/GHSA-4wpc-wfjx-8hjc.json
+++ b/advisories/unreviewed/2022/05/GHSA-4wpc-wfjx-8hjc/GHSA-4wpc-wfjx-8hjc.json
@@ -7,12 +7,8 @@
"CVE-2008-5643"
],
"details": "SQL injection vulnerability in the Books (com_books) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the book_id parameter in a book_details action to index.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-575p-54g9-595f/GHSA-575p-54g9-595f.json b/advisories/unreviewed/2022/05/GHSA-575p-54g9-595f/GHSA-575p-54g9-595f.json
index 952a666950d..f8e47708fe9 100644
--- a/advisories/unreviewed/2022/05/GHSA-575p-54g9-595f/GHSA-575p-54g9-595f.json
+++ b/advisories/unreviewed/2022/05/GHSA-575p-54g9-595f/GHSA-575p-54g9-595f.json
@@ -7,12 +7,8 @@
"CVE-2008-5785"
],
"details": "SQL injection vulnerability in V3 Chat - Profiles/Dating Script 3.0.2 allows remote attackers to execute arbitrary SQL commands via the (1) username and (2) password fields.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-586c-hfhv-c936/GHSA-586c-hfhv-c936.json b/advisories/unreviewed/2022/05/GHSA-586c-hfhv-c936/GHSA-586c-hfhv-c936.json
index 8aca6847da9..057fc4d2dbe 100644
--- a/advisories/unreviewed/2022/05/GHSA-586c-hfhv-c936/GHSA-586c-hfhv-c936.json
+++ b/advisories/unreviewed/2022/05/GHSA-586c-hfhv-c936/GHSA-586c-hfhv-c936.json
@@ -7,12 +7,8 @@
"CVE-2008-5802"
],
"details": "SQL injection vulnerability in index.php in E-topbiz Online Store 1.0 allows remote attackers to execute arbitrary SQL commands via the cat_id parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-5929-w48j-r4m7/GHSA-5929-w48j-r4m7.json b/advisories/unreviewed/2022/05/GHSA-5929-w48j-r4m7/GHSA-5929-w48j-r4m7.json
index 81f44207edf..494b72158fd 100644
--- a/advisories/unreviewed/2022/05/GHSA-5929-w48j-r4m7/GHSA-5929-w48j-r4m7.json
+++ b/advisories/unreviewed/2022/05/GHSA-5929-w48j-r4m7/GHSA-5929-w48j-r4m7.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/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-5h8m-h64j-68fr/GHSA-5h8m-h64j-68fr.json b/advisories/unreviewed/2022/05/GHSA-5h8m-h64j-68fr/GHSA-5h8m-h64j-68fr.json
index 086fd9d2cf8..a19791c510c 100644
--- a/advisories/unreviewed/2022/05/GHSA-5h8m-h64j-68fr/GHSA-5h8m-h64j-68fr.json
+++ b/advisories/unreviewed/2022/05/GHSA-5h8m-h64j-68fr/GHSA-5h8m-h64j-68fr.json
@@ -7,12 +7,8 @@
"CVE-2008-5804"
],
"details": "SQL injection vulnerability in admin/admin_catalog.php in e-topbiz Number Links 1 Php Script allows remote attackers to execute arbitrary SQL commands via the id parameter in an edit action.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-5r4m-4q9j-5jhh/GHSA-5r4m-4q9j-5jhh.json b/advisories/unreviewed/2022/05/GHSA-5r4m-4q9j-5jhh/GHSA-5r4m-4q9j-5jhh.json
index 43a9a21884a..1acaba654ef 100644
--- a/advisories/unreviewed/2022/05/GHSA-5r4m-4q9j-5jhh/GHSA-5r4m-4q9j-5jhh.json
+++ b/advisories/unreviewed/2022/05/GHSA-5r4m-4q9j-5jhh/GHSA-5r4m-4q9j-5jhh.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-5xjq-6f2f-pgrr/GHSA-5xjq-6f2f-pgrr.json b/advisories/unreviewed/2022/05/GHSA-5xjq-6f2f-pgrr/GHSA-5xjq-6f2f-pgrr.json
index e84e4b9ccc6..9a801b5f07d 100644
--- a/advisories/unreviewed/2022/05/GHSA-5xjq-6f2f-pgrr/GHSA-5xjq-6f2f-pgrr.json
+++ b/advisories/unreviewed/2022/05/GHSA-5xjq-6f2f-pgrr/GHSA-5xjq-6f2f-pgrr.json
@@ -7,12 +7,8 @@
"CVE-2008-5789"
],
"details": "Multiple PHP remote file inclusion vulnerabilities in the Recly Interactive Feederator (com_feederator) component 1.0.5 for Joomla! allow remote attackers to execute arbitrary PHP code via a URL in the (1) mosConfig_absolute_path parameter to (a) add_tmsp.php, (b) edit_tmsp.php and (c) tmsp.php in includes/tmsp/; and the (2) GLOBALS[mosConfig_absolute_path] parameter to (d) includes/tmsp/subscription.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-653q-fj3p-cqrg/GHSA-653q-fj3p-cqrg.json b/advisories/unreviewed/2022/05/GHSA-653q-fj3p-cqrg/GHSA-653q-fj3p-cqrg.json
index 73d8ca59601..5df18cab9e4 100644
--- a/advisories/unreviewed/2022/05/GHSA-653q-fj3p-cqrg/GHSA-653q-fj3p-cqrg.json
+++ b/advisories/unreviewed/2022/05/GHSA-653q-fj3p-cqrg/GHSA-653q-fj3p-cqrg.json
@@ -7,12 +7,8 @@
"CVE-2008-1897"
],
"details": "The IAX2 channel driver (chan_iax2) in Asterisk Open Source 1.0.x, 1.2.x before 1.2.28, and 1.4.x before 1.4.19.1; Business Edition A.x.x, B.x.x before B.2.5.2, and C.x.x before C.1.8.1; AsteriskNOW before 1.0.3; Appliance Developer Kit 0.x.x; and s800i before 1.1.0.3, when configured to allow unauthenticated calls, does not verify that an ACK response contains a call number matching the server's reply to a NEW message, which allows remote attackers to cause a denial of service (traffic amplification) via a spoofed ACK response that does not complete a 3-way handshake. NOTE: this issue exists because of an incomplete fix for CVE-2008-1923.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-69hm-h9g9-hph4/GHSA-69hm-h9g9-hph4.json b/advisories/unreviewed/2022/05/GHSA-69hm-h9g9-hph4/GHSA-69hm-h9g9-hph4.json
index 4f1373da695..2d758d74baf 100644
--- a/advisories/unreviewed/2022/05/GHSA-69hm-h9g9-hph4/GHSA-69hm-h9g9-hph4.json
+++ b/advisories/unreviewed/2022/05/GHSA-69hm-h9g9-hph4/GHSA-69hm-h9g9-hph4.json
@@ -7,12 +7,8 @@
"CVE-2008-5739"
],
"details": "SQL injection vulnerability in evb/check_url.php in Pligg CMS 9.9.5 Beta allows remote attackers to execute arbitrary SQL commands via the url parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-6m5v-q775-pqxr/GHSA-6m5v-q775-pqxr.json b/advisories/unreviewed/2022/05/GHSA-6m5v-q775-pqxr/GHSA-6m5v-q775-pqxr.json
index 3e026edd5a3..cf1440fc32c 100644
--- a/advisories/unreviewed/2022/05/GHSA-6m5v-q775-pqxr/GHSA-6m5v-q775-pqxr.json
+++ b/advisories/unreviewed/2022/05/GHSA-6m5v-q775-pqxr/GHSA-6m5v-q775-pqxr.json
@@ -7,12 +7,8 @@
"CVE-2008-5921"
],
"details": "SQL injection vulnerability in albums.php in Umer Inc Songs Portal 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-6v5x-8px5-jx2g/GHSA-6v5x-8px5-jx2g.json b/advisories/unreviewed/2022/05/GHSA-6v5x-8px5-jx2g/GHSA-6v5x-8px5-jx2g.json
index f5f979fbb4d..9bc44339f56 100644
--- a/advisories/unreviewed/2022/05/GHSA-6v5x-8px5-jx2g/GHSA-6v5x-8px5-jx2g.json
+++ b/advisories/unreviewed/2022/05/GHSA-6v5x-8px5-jx2g/GHSA-6v5x-8px5-jx2g.json
@@ -7,12 +7,8 @@
"CVE-2008-5816"
],
"details": "SQL injection vulnerability in repository.php in ILIAS 3.7.4 and earlier allows remote attackers to execute arbitrary SQL commands via the ref_id parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-6xhm-68px-vg49/GHSA-6xhm-68px-vg49.json b/advisories/unreviewed/2022/05/GHSA-6xhm-68px-vg49/GHSA-6xhm-68px-vg49.json
index 138bcd4b62f..26631dffd63 100644
--- a/advisories/unreviewed/2022/05/GHSA-6xhm-68px-vg49/GHSA-6xhm-68px-vg49.json
+++ b/advisories/unreviewed/2022/05/GHSA-6xhm-68px-vg49/GHSA-6xhm-68px-vg49.json
@@ -7,12 +7,8 @@
"CVE-2008-5818"
],
"details": "Directory traversal vulnerability in index.php in eDreamers eDContainer 2.22, when magic_quotes_gpc is disabled, allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the lg 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-72pp-v9jm-c6xj/GHSA-72pp-v9jm-c6xj.json b/advisories/unreviewed/2022/05/GHSA-72pp-v9jm-c6xj/GHSA-72pp-v9jm-c6xj.json
index b51f5030d6a..49775b36c7a 100644
--- a/advisories/unreviewed/2022/05/GHSA-72pp-v9jm-c6xj/GHSA-72pp-v9jm-c6xj.json
+++ b/advisories/unreviewed/2022/05/GHSA-72pp-v9jm-c6xj/GHSA-72pp-v9jm-c6xj.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",
@@ -99,9 +97,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-77wc-m5p2-7cfw/GHSA-77wc-m5p2-7cfw.json b/advisories/unreviewed/2022/05/GHSA-77wc-m5p2-7cfw/GHSA-77wc-m5p2-7cfw.json
index bb153fafe95..f2e492e4055 100644
--- a/advisories/unreviewed/2022/05/GHSA-77wc-m5p2-7cfw/GHSA-77wc-m5p2-7cfw.json
+++ b/advisories/unreviewed/2022/05/GHSA-77wc-m5p2-7cfw/GHSA-77wc-m5p2-7cfw.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-7c3f-rp75-mw4v/GHSA-7c3f-rp75-mw4v.json b/advisories/unreviewed/2022/05/GHSA-7c3f-rp75-mw4v/GHSA-7c3f-rp75-mw4v.json
index a8b159be1a1..653bfb09697 100644
--- a/advisories/unreviewed/2022/05/GHSA-7c3f-rp75-mw4v/GHSA-7c3f-rp75-mw4v.json
+++ b/advisories/unreviewed/2022/05/GHSA-7c3f-rp75-mw4v/GHSA-7c3f-rp75-mw4v.json
@@ -7,12 +7,8 @@
"CVE-2008-5874"
],
"details": "Multiple SQL injection vulnerabilities in the Hotel Booking Reservation System (aka HBS) for Joomla! allow remote attackers to execute arbitrary SQL commands via the id parameter in a showhoteldetails action to index.php in the (1) com_allhotels or (2) com_5starhotels module. 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-7mj9-f8rr-cqvj/GHSA-7mj9-f8rr-cqvj.json b/advisories/unreviewed/2022/05/GHSA-7mj9-f8rr-cqvj/GHSA-7mj9-f8rr-cqvj.json
index 9058da9a25f..a562d4a1dd7 100644
--- a/advisories/unreviewed/2022/05/GHSA-7mj9-f8rr-cqvj/GHSA-7mj9-f8rr-cqvj.json
+++ b/advisories/unreviewed/2022/05/GHSA-7mj9-f8rr-cqvj/GHSA-7mj9-f8rr-cqvj.json
@@ -7,12 +7,8 @@
"CVE-2008-5913"
],
"details": "The Math.random function in the JavaScript implementation in Mozilla Firefox 3.5.x before 3.5.10 and 3.6.x before 3.6.4, and SeaMonkey before 2.0.5, uses a random number generator that is seeded only once per browser session, which makes it easier for remote attackers to track a user, or trick a user into acting upon a spoofed pop-up message, by calculating the seed value, related to a \"temporary footprint\" and an \"in-session phishing attack.\"",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -120,9 +116,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-7p6p-4577-fphg/GHSA-7p6p-4577-fphg.json b/advisories/unreviewed/2022/05/GHSA-7p6p-4577-fphg/GHSA-7p6p-4577-fphg.json
index 6f632a733c5..15f3bf7fd02 100644
--- a/advisories/unreviewed/2022/05/GHSA-7p6p-4577-fphg/GHSA-7p6p-4577-fphg.json
+++ b/advisories/unreviewed/2022/05/GHSA-7p6p-4577-fphg/GHSA-7p6p-4577-fphg.json
@@ -7,12 +7,8 @@
"CVE-2008-5706"
],
"details": "The cTrigger::DoIt function in src/ctrigger.cpp in the trigger mechanism in the daemon in Verlihub 0.9.8d-RC2 and earlier allows local users to overwrite arbitrary files via a symlink attack on the /tmp/trigger.tmp temporary file.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-7rg8-6m5r-jc3p/GHSA-7rg8-6m5r-jc3p.json b/advisories/unreviewed/2022/05/GHSA-7rg8-6m5r-jc3p/GHSA-7rg8-6m5r-jc3p.json
index 4ad54c2778d..4762eaa4ba2 100644
--- a/advisories/unreviewed/2022/05/GHSA-7rg8-6m5r-jc3p/GHSA-7rg8-6m5r-jc3p.json
+++ b/advisories/unreviewed/2022/05/GHSA-7rg8-6m5r-jc3p/GHSA-7rg8-6m5r-jc3p.json
@@ -7,12 +7,8 @@
"CVE-2008-5860"
],
"details": "Directory traversal vulnerability in backend/template.php in Constructr CMS 3.02.5 and earlier, when register_globals is enabled and magic_quotes_gpc is disabled, allows remote attackers to create or read arbitrary files via directory traversal sequences in the edit_file parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-7rhj-h438-3ghx/GHSA-7rhj-h438-3ghx.json b/advisories/unreviewed/2022/05/GHSA-7rhj-h438-3ghx/GHSA-7rhj-h438-3ghx.json
index 4ce7a17a5e6..7d7c79e139e 100644
--- a/advisories/unreviewed/2022/05/GHSA-7rhj-h438-3ghx/GHSA-7rhj-h438-3ghx.json
+++ b/advisories/unreviewed/2022/05/GHSA-7rhj-h438-3ghx/GHSA-7rhj-h438-3ghx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-7x5g-4298-r464/GHSA-7x5g-4298-r464.json b/advisories/unreviewed/2022/05/GHSA-7x5g-4298-r464/GHSA-7x5g-4298-r464.json
index 2d16edcc57a..1edd9588a04 100644
--- a/advisories/unreviewed/2022/05/GHSA-7x5g-4298-r464/GHSA-7x5g-4298-r464.json
+++ b/advisories/unreviewed/2022/05/GHSA-7x5g-4298-r464/GHSA-7x5g-4298-r464.json
@@ -7,12 +7,8 @@
"CVE-2008-5888"
],
"details": "Multiple SQL injection vulnerabilities in Click&Rank allow remote attackers to execute arbitrary SQL commands via the id parameter to (1) hitcounter.asp, (2) user_delete.asp, and (3) user_update.asp; (4) the userid parameter to admin_login.asp (aka the USERNAME field in admin.asp); and (5) the PassWord parameter to admin_login.asp (aka the PASSWORD field in admin.asp). 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-83gg-hw83-97hx/GHSA-83gg-hw83-97hx.json b/advisories/unreviewed/2022/05/GHSA-83gg-hw83-97hx/GHSA-83gg-hw83-97hx.json
index 37a238edecb..c7c106ebd8c 100644
--- a/advisories/unreviewed/2022/05/GHSA-83gg-hw83-97hx/GHSA-83gg-hw83-97hx.json
+++ b/advisories/unreviewed/2022/05/GHSA-83gg-hw83-97hx/GHSA-83gg-hw83-97hx.json
@@ -7,12 +7,8 @@
"CVE-2008-5756"
],
"details": "Buffer overflow in BreakPoint Software Hex Workshop 5.1.4 allows user-assisted attackers to cause a denial of service and possibly execute arbitrary code via a long mapping reference in a Color Mapping (.cmap) file.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-8453-pp6g-55gh/GHSA-8453-pp6g-55gh.json b/advisories/unreviewed/2022/05/GHSA-8453-pp6g-55gh/GHSA-8453-pp6g-55gh.json
index c576055d650..95b5f87079a 100644
--- a/advisories/unreviewed/2022/05/GHSA-8453-pp6g-55gh/GHSA-8453-pp6g-55gh.json
+++ b/advisories/unreviewed/2022/05/GHSA-8453-pp6g-55gh/GHSA-8453-pp6g-55gh.json
@@ -7,12 +7,8 @@
"CVE-2008-5885"
],
"details": "The Net Guys ASPired2Quote stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing usernames and passwords via a direct request for admin/quote.mdb. NOTE: some of these details are obtained from third party information.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-84pq-rgvh-gvmq/GHSA-84pq-rgvh-gvmq.json b/advisories/unreviewed/2022/05/GHSA-84pq-rgvh-gvmq/GHSA-84pq-rgvh-gvmq.json
index 63bd515ffff..399301090fd 100644
--- a/advisories/unreviewed/2022/05/GHSA-84pq-rgvh-gvmq/GHSA-84pq-rgvh-gvmq.json
+++ b/advisories/unreviewed/2022/05/GHSA-84pq-rgvh-gvmq/GHSA-84pq-rgvh-gvmq.json
@@ -7,12 +7,8 @@
"CVE-2008-5893"
],
"details": "Cross-site scripting (XSS) vulnerability in admin_dblayers.asp in ClickAndEmail allows remote attackers to inject arbitrary web script or HTML via the tablename parameter in an update action.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-853v-4rcq-pjpw/GHSA-853v-4rcq-pjpw.json b/advisories/unreviewed/2022/05/GHSA-853v-4rcq-pjpw/GHSA-853v-4rcq-pjpw.json
index 2b4260c8fdb..ded9d5ac51a 100644
--- a/advisories/unreviewed/2022/05/GHSA-853v-4rcq-pjpw/GHSA-853v-4rcq-pjpw.json
+++ b/advisories/unreviewed/2022/05/GHSA-853v-4rcq-pjpw/GHSA-853v-4rcq-pjpw.json
@@ -7,12 +7,8 @@
"CVE-2008-2371"
],
"details": "Heap-based buffer overflow in pcre_compile.c in the Perl-Compatible Regular Expression (PCRE) library 7.7 allows context-dependent attackers to cause a denial of service (crash) or possibly execute arbitrary code via a regular expression that begins with an option and contains multiple branches.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-867w-fmxg-m2g8/GHSA-867w-fmxg-m2g8.json b/advisories/unreviewed/2022/05/GHSA-867w-fmxg-m2g8/GHSA-867w-fmxg-m2g8.json
index e7fe06952e3..737b2ef6e3f 100644
--- a/advisories/unreviewed/2022/05/GHSA-867w-fmxg-m2g8/GHSA-867w-fmxg-m2g8.json
+++ b/advisories/unreviewed/2022/05/GHSA-867w-fmxg-m2g8/GHSA-867w-fmxg-m2g8.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-8j4p-hm4m-gch2/GHSA-8j4p-hm4m-gch2.json b/advisories/unreviewed/2022/05/GHSA-8j4p-hm4m-gch2/GHSA-8j4p-hm4m-gch2.json
index 17c64c5ffad..8d6cafc7208 100644
--- a/advisories/unreviewed/2022/05/GHSA-8j4p-hm4m-gch2/GHSA-8j4p-hm4m-gch2.json
+++ b/advisories/unreviewed/2022/05/GHSA-8j4p-hm4m-gch2/GHSA-8j4p-hm4m-gch2.json
@@ -7,12 +7,8 @@
"CVE-2008-5859"
],
"details": "SQL injection vulnerability in index.php in Constructr CMS 3.02.5 and earlier, when register_globals is enabled and magic_quotes_gpc is disabled, allows remote attackers to execute arbitrary SQL commands via the show_page parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-8m6h-hpr3-hm4g/GHSA-8m6h-hpr3-hm4g.json b/advisories/unreviewed/2022/05/GHSA-8m6h-hpr3-hm4g/GHSA-8m6h-hpr3-hm4g.json
index c8dc473fdfe..272a0e2b7a9 100644
--- a/advisories/unreviewed/2022/05/GHSA-8m6h-hpr3-hm4g/GHSA-8m6h-hpr3-hm4g.json
+++ b/advisories/unreviewed/2022/05/GHSA-8m6h-hpr3-hm4g/GHSA-8m6h-hpr3-hm4g.json
@@ -7,12 +7,8 @@
"CVE-2008-5847"
],
"details": "Constructr CMS 3.02.5 and earlier stores passwords in cleartext in a MySQL database, which allows context-dependent attackers to obtain sensitive information by reading the hash column.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -28,9 +24,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-8p32-q5c5-q65x/GHSA-8p32-q5c5-q65x.json b/advisories/unreviewed/2022/05/GHSA-8p32-q5c5-q65x/GHSA-8p32-q5c5-q65x.json
index 0c9dd2a8ec6..b700c4f867d 100644
--- a/advisories/unreviewed/2022/05/GHSA-8p32-q5c5-q65x/GHSA-8p32-q5c5-q65x.json
+++ b/advisories/unreviewed/2022/05/GHSA-8p32-q5c5-q65x/GHSA-8p32-q5c5-q65x.json
@@ -7,12 +7,8 @@
"CVE-2008-5929"
],
"details": "VP-ASP Shopping Cart 6.50 stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database containing the password via a direct request for database/shopping650.mdb. NOTE: some of these details are obtained from third party information.",
- "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-8p3r-9538-fcv4/GHSA-8p3r-9538-fcv4.json b/advisories/unreviewed/2022/05/GHSA-8p3r-9538-fcv4/GHSA-8p3r-9538-fcv4.json
index f2ff3b3f16a..643d87028dc 100644
--- a/advisories/unreviewed/2022/05/GHSA-8p3r-9538-fcv4/GHSA-8p3r-9538-fcv4.json
+++ b/advisories/unreviewed/2022/05/GHSA-8p3r-9538-fcv4/GHSA-8p3r-9538-fcv4.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",
@@ -83,9 +81,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-8prm-7qj4-cvc7/GHSA-8prm-7qj4-cvc7.json b/advisories/unreviewed/2022/05/GHSA-8prm-7qj4-cvc7/GHSA-8prm-7qj4-cvc7.json
index 3a4f6f49984..9bb18fffc3b 100644
--- a/advisories/unreviewed/2022/05/GHSA-8prm-7qj4-cvc7/GHSA-8prm-7qj4-cvc7.json
+++ b/advisories/unreviewed/2022/05/GHSA-8prm-7qj4-cvc7/GHSA-8prm-7qj4-cvc7.json
@@ -7,12 +7,8 @@
"CVE-2008-5920"
],
"details": "The create_anchors function in utils.inc in WebSVN 1.x allows remote attackers to execute arbitrary PHP code via a crafted username that is processed by the preg_replace function with the eval switch.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-8qmg-7qf9-p6rv/GHSA-8qmg-7qf9-p6rv.json b/advisories/unreviewed/2022/05/GHSA-8qmg-7qf9-p6rv/GHSA-8qmg-7qf9-p6rv.json
index 52e17eef797..e82a2ea7e61 100644
--- a/advisories/unreviewed/2022/05/GHSA-8qmg-7qf9-p6rv/GHSA-8qmg-7qf9-p6rv.json
+++ b/advisories/unreviewed/2022/05/GHSA-8qmg-7qf9-p6rv/GHSA-8qmg-7qf9-p6rv.json
@@ -7,12 +7,8 @@
"CVE-2008-5722"
],
"details": "Buffer overflow in SAWStudio 3.9i allows user-assisted remote attackers to cause a denial of service (application crash) and possibly execute arbitrary code via a long SAWSTUDIO PREFERENCES STRUCT value in a .prf (preferences) file.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-8qrp-vpc4-vphf/GHSA-8qrp-vpc4-vphf.json b/advisories/unreviewed/2022/05/GHSA-8qrp-vpc4-vphf/GHSA-8qrp-vpc4-vphf.json
index b08e96b5cd2..c4038769c1e 100644
--- a/advisories/unreviewed/2022/05/GHSA-8qrp-vpc4-vphf/GHSA-8qrp-vpc4-vphf.json
+++ b/advisories/unreviewed/2022/05/GHSA-8qrp-vpc4-vphf/GHSA-8qrp-vpc4-vphf.json
@@ -7,12 +7,8 @@
"CVE-2008-5753"
],
"details": "Stack-based buffer overflow in BulletProof FTP Client 2.63 and 2010 allows user-assisted attackers to execute arbitrary code via a bookmark file entry with a long host name, which appears as a host parameter within the quick-connect bar.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-8rrv-3xx7-wmfc/GHSA-8rrv-3xx7-wmfc.json b/advisories/unreviewed/2022/05/GHSA-8rrv-3xx7-wmfc/GHSA-8rrv-3xx7-wmfc.json
index 9f01d5251e1..fbf1ec68f4b 100644
--- a/advisories/unreviewed/2022/05/GHSA-8rrv-3xx7-wmfc/GHSA-8rrv-3xx7-wmfc.json
+++ b/advisories/unreviewed/2022/05/GHSA-8rrv-3xx7-wmfc/GHSA-8rrv-3xx7-wmfc.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",
@@ -183,9 +181,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-8vvv-m77r-h43q/GHSA-8vvv-m77r-h43q.json b/advisories/unreviewed/2022/05/GHSA-8vvv-m77r-h43q/GHSA-8vvv-m77r-h43q.json
index e7822fb4309..d201032957a 100644
--- a/advisories/unreviewed/2022/05/GHSA-8vvv-m77r-h43q/GHSA-8vvv-m77r-h43q.json
+++ b/advisories/unreviewed/2022/05/GHSA-8vvv-m77r-h43q/GHSA-8vvv-m77r-h43q.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-938g-fg7w-7c7v/GHSA-938g-fg7w-7c7v.json b/advisories/unreviewed/2022/05/GHSA-938g-fg7w-7c7v/GHSA-938g-fg7w-7c7v.json
index 6dce83c03ee..af9ac58bead 100644
--- a/advisories/unreviewed/2022/05/GHSA-938g-fg7w-7c7v/GHSA-938g-fg7w-7c7v.json
+++ b/advisories/unreviewed/2022/05/GHSA-938g-fg7w-7c7v/GHSA-938g-fg7w-7c7v.json
@@ -7,12 +7,8 @@
"CVE-2006-4483"
],
"details": "The cURL extension files (1) ext/curl/interface.c and (2) ext/curl/streams.c in PHP before 5.1.5 permit the CURLOPT_FOLLOWLOCATION option when open_basedir or safe_mode is enabled, which allows attackers to perform unauthorized actions, possibly related to the realpath cache.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-93f3-c68j-fw9c/GHSA-93f3-c68j-fw9c.json b/advisories/unreviewed/2022/05/GHSA-93f3-c68j-fw9c/GHSA-93f3-c68j-fw9c.json
index 4c73dc6b576..01cda7a0953 100644
--- a/advisories/unreviewed/2022/05/GHSA-93f3-c68j-fw9c/GHSA-93f3-c68j-fw9c.json
+++ b/advisories/unreviewed/2022/05/GHSA-93f3-c68j-fw9c/GHSA-93f3-c68j-fw9c.json
@@ -7,12 +7,8 @@
"CVE-2008-5763"
],
"details": "PHP remote file inclusion vulnerability in slogin_lib.inc.php in Simple Text-File Login Script (SiTeFiLo) 1.0.6 allows remote attackers to execute arbitrary PHP code via a URL in the slogin_path parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-94vw-2f3v-j88m/GHSA-94vw-2f3v-j88m.json b/advisories/unreviewed/2022/05/GHSA-94vw-2f3v-j88m/GHSA-94vw-2f3v-j88m.json
index 8040c55be2b..df3a3cf9439 100644
--- a/advisories/unreviewed/2022/05/GHSA-94vw-2f3v-j88m/GHSA-94vw-2f3v-j88m.json
+++ b/advisories/unreviewed/2022/05/GHSA-94vw-2f3v-j88m/GHSA-94vw-2f3v-j88m.json
@@ -7,12 +7,8 @@
"CVE-2008-2383"
],
"details": "CRLF injection vulnerability in xterm allows user-assisted attackers to execute arbitrary commands via LF (aka \\n) characters surrounding a command name within a Device Control Request Status String (DECRQSS) escape sequence in a text file, a related issue to CVE-2003-0063 and CVE-2003-0071.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-95mf-mxcg-8956/GHSA-95mf-mxcg-8956.json b/advisories/unreviewed/2022/05/GHSA-95mf-mxcg-8956/GHSA-95mf-mxcg-8956.json
index 887a0f2653d..7d948c8900f 100644
--- a/advisories/unreviewed/2022/05/GHSA-95mf-mxcg-8956/GHSA-95mf-mxcg-8956.json
+++ b/advisories/unreviewed/2022/05/GHSA-95mf-mxcg-8956/GHSA-95mf-mxcg-8956.json
@@ -7,12 +7,8 @@
"CVE-2008-5640"
],
"details": "SQL injection vulnerability in bidhistory.asp in Active Bids 3.5 allows remote attackers to execute arbitrary SQL commands via the ItemID parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-95pc-cqw8-jx9f/GHSA-95pc-cqw8-jx9f.json b/advisories/unreviewed/2022/05/GHSA-95pc-cqw8-jx9f/GHSA-95pc-cqw8-jx9f.json
index 9679b9d4b48..27d0234bceb 100644
--- a/advisories/unreviewed/2022/05/GHSA-95pc-cqw8-jx9f/GHSA-95pc-cqw8-jx9f.json
+++ b/advisories/unreviewed/2022/05/GHSA-95pc-cqw8-jx9f/GHSA-95pc-cqw8-jx9f.json
@@ -7,12 +7,8 @@
"CVE-2008-5927"
],
"details": "Multiple SQL injection vulnerabilities in admin/usercheck.php in FlexPHPNews 0.0.6 allow remote attackers to execute arbitrary SQL commands via the (1) checkuser parameter (aka username field) or (2) checkpass parameter (aka password field) 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-962j-gjgv-9xmr/GHSA-962j-gjgv-9xmr.json b/advisories/unreviewed/2022/05/GHSA-962j-gjgv-9xmr/GHSA-962j-gjgv-9xmr.json
index 1e40f7a37f7..6e2b1993a3e 100644
--- a/advisories/unreviewed/2022/05/GHSA-962j-gjgv-9xmr/GHSA-962j-gjgv-9xmr.json
+++ b/advisories/unreviewed/2022/05/GHSA-962j-gjgv-9xmr/GHSA-962j-gjgv-9xmr.json
@@ -7,12 +7,8 @@
"CVE-2008-5765"
],
"details": "WorkSimple 1.2.1 stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing usernames and passwords via a direct request for data/usr.txt.",
- "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-9fpx-5cq9-9m34/GHSA-9fpx-5cq9-9m34.json b/advisories/unreviewed/2022/05/GHSA-9fpx-5cq9-9m34/GHSA-9fpx-5cq9-9m34.json
index 6d4232718a1..f6604102e14 100644
--- a/advisories/unreviewed/2022/05/GHSA-9fpx-5cq9-9m34/GHSA-9fpx-5cq9-9m34.json
+++ b/advisories/unreviewed/2022/05/GHSA-9fpx-5cq9-9m34/GHSA-9fpx-5cq9-9m34.json
@@ -7,12 +7,8 @@
"CVE-2008-5728"
],
"details": "Multiple directory traversal vulnerabilities in AIST NetCat 3.12 and earlier, when magic_quotes_gpc is disabled and register_globals is enabled, allow remote attackers to include and execute arbitrary local files via a .. (dot dot) in (1) the system parameter in modules/netshop/post.php; and the INCLUDE_FOLDER parameter in (2) auth.inc.php, (3) banner.inc.php, (4) blog.inc.php, and (5) forum.inc.php in modules/.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-9m4g-67v5-8rww/GHSA-9m4g-67v5-8rww.json b/advisories/unreviewed/2022/05/GHSA-9m4g-67v5-8rww/GHSA-9m4g-67v5-8rww.json
index 877e0ff7688..48d41ef5196 100644
--- a/advisories/unreviewed/2022/05/GHSA-9m4g-67v5-8rww/GHSA-9m4g-67v5-8rww.json
+++ b/advisories/unreviewed/2022/05/GHSA-9m4g-67v5-8rww/GHSA-9m4g-67v5-8rww.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-9qrj-w7fw-96wj/GHSA-9qrj-w7fw-96wj.json b/advisories/unreviewed/2022/05/GHSA-9qrj-w7fw-96wj/GHSA-9qrj-w7fw-96wj.json
index 6023dc00ac5..45165e3f7ca 100644
--- a/advisories/unreviewed/2022/05/GHSA-9qrj-w7fw-96wj/GHSA-9qrj-w7fw-96wj.json
+++ b/advisories/unreviewed/2022/05/GHSA-9qrj-w7fw-96wj/GHSA-9qrj-w7fw-96wj.json
@@ -7,12 +7,8 @@
"CVE-2008-5919"
],
"details": "Directory traversal vulnerability in rss.php in WebSVN 2.0 and earlier, when magic_quotes_gpc is disabled, allows remote attackers to overwrite arbitrary files via directory traversal sequences in the rev parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-9rm2-9q89-9524/GHSA-9rm2-9q89-9524.json b/advisories/unreviewed/2022/05/GHSA-9rm2-9q89-9524/GHSA-9rm2-9q89-9524.json
index 10859e85ee2..757b0ed6478 100644
--- a/advisories/unreviewed/2022/05/GHSA-9rm2-9q89-9524/GHSA-9rm2-9q89-9524.json
+++ b/advisories/unreviewed/2022/05/GHSA-9rm2-9q89-9524/GHSA-9rm2-9q89-9524.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-9x37-5wpr-p7mq/GHSA-9x37-5wpr-p7mq.json b/advisories/unreviewed/2022/05/GHSA-9x37-5wpr-p7mq/GHSA-9x37-5wpr-p7mq.json
index 9b8efe9f4c7..f63ba300943 100644
--- a/advisories/unreviewed/2022/05/GHSA-9x37-5wpr-p7mq/GHSA-9x37-5wpr-p7mq.json
+++ b/advisories/unreviewed/2022/05/GHSA-9x37-5wpr-p7mq/GHSA-9x37-5wpr-p7mq.json
@@ -7,12 +7,8 @@
"CVE-2007-0803"
],
"details": "Multiple buffer overflows in STLport before 5.0.3 allow remote attackers to execute arbitrary code via unspecified vectors relating to (1) \"print floats\" and (2) a missing null termination in the \"rope constructor.\"",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-c2jr-j6q7-w7p7/GHSA-c2jr-j6q7-w7p7.json b/advisories/unreviewed/2022/05/GHSA-c2jr-j6q7-w7p7/GHSA-c2jr-j6q7-w7p7.json
index 95303910ded..0a77f022a30 100644
--- a/advisories/unreviewed/2022/05/GHSA-c2jr-j6q7-w7p7/GHSA-c2jr-j6q7-w7p7.json
+++ b/advisories/unreviewed/2022/05/GHSA-c2jr-j6q7-w7p7/GHSA-c2jr-j6q7-w7p7.json
@@ -7,12 +7,8 @@
"CVE-2008-5772"
],
"details": "Multiple SQL injection vulnerabilities in ASPSiteWare RealtyListings 1.0 and 2.0 allow remote attackers to execute arbitrary SQL commands via the (1) iType parameter to type.asp and the (2) iPro parameter to detail.asp.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-c5gv-wrcx-cw6x/GHSA-c5gv-wrcx-cw6x.json b/advisories/unreviewed/2022/05/GHSA-c5gv-wrcx-cw6x/GHSA-c5gv-wrcx-cw6x.json
index cc677a34bb6..373d3a5b7b5 100644
--- a/advisories/unreviewed/2022/05/GHSA-c5gv-wrcx-cw6x/GHSA-c5gv-wrcx-cw6x.json
+++ b/advisories/unreviewed/2022/05/GHSA-c5gv-wrcx-cw6x/GHSA-c5gv-wrcx-cw6x.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-c74m-9m65-53r5/GHSA-c74m-9m65-53r5.json b/advisories/unreviewed/2022/05/GHSA-c74m-9m65-53r5/GHSA-c74m-9m65-53r5.json
index 568c42d0d79..f49a5249c9b 100644
--- a/advisories/unreviewed/2022/05/GHSA-c74m-9m65-53r5/GHSA-c74m-9m65-53r5.json
+++ b/advisories/unreviewed/2022/05/GHSA-c74m-9m65-53r5/GHSA-c74m-9m65-53r5.json
@@ -7,12 +7,8 @@
"CVE-2008-5861"
],
"details": "Directory traversal vulnerability in source.php in FreeLyrics 1.0 allows remote attackers to read arbitrary files via directory traversal sequences in the p 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-cr39-jwm6-p577/GHSA-cr39-jwm6-p577.json b/advisories/unreviewed/2022/05/GHSA-cr39-jwm6-p577/GHSA-cr39-jwm6-p577.json
index 8980704d58f..2dbcf216e21 100644
--- a/advisories/unreviewed/2022/05/GHSA-cr39-jwm6-p577/GHSA-cr39-jwm6-p577.json
+++ b/advisories/unreviewed/2022/05/GHSA-cr39-jwm6-p577/GHSA-cr39-jwm6-p577.json
@@ -7,12 +7,8 @@
"CVE-2008-5892"
],
"details": "Multiple SQL injection vulnerabilities in ClickAndEmail allow remote attackers to execute arbitrary SQL commands via (1) the ID parameter to admin_dblayers.asp in an update action, (2) the adminid parameter to admin_loginCheck.asp (aka the USERNAME field in admin_main.asp), and (3) the PassWord parameter to admin_loginCheck.asp (aka the PASSWORD field in admin_main.asp). 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-crf7-38q6-679m/GHSA-crf7-38q6-679m.json b/advisories/unreviewed/2022/05/GHSA-crf7-38q6-679m/GHSA-crf7-38q6-679m.json
index 167134bb56b..ac67844eb45 100644
--- a/advisories/unreviewed/2022/05/GHSA-crf7-38q6-679m/GHSA-crf7-38q6-679m.json
+++ b/advisories/unreviewed/2022/05/GHSA-crf7-38q6-679m/GHSA-crf7-38q6-679m.json
@@ -7,12 +7,8 @@
"CVE-2008-5642"
],
"details": "Directory traversal vulnerability in admin/login.php in CMS Made Simple 1.4.1 allows remote attackers to read arbitrary files via a .. (dot dot) in a cms_language cookie.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-crp2-c5rh-r33x/GHSA-crp2-c5rh-r33x.json b/advisories/unreviewed/2022/05/GHSA-crp2-c5rh-r33x/GHSA-crp2-c5rh-r33x.json
index c4627403a1c..f9c1e0cfe7a 100644
--- a/advisories/unreviewed/2022/05/GHSA-crp2-c5rh-r33x/GHSA-crp2-c5rh-r33x.json
+++ b/advisories/unreviewed/2022/05/GHSA-crp2-c5rh-r33x/GHSA-crp2-c5rh-r33x.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",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-cvp3-pjrm-gpxx/GHSA-cvp3-pjrm-gpxx.json b/advisories/unreviewed/2022/05/GHSA-cvp3-pjrm-gpxx/GHSA-cvp3-pjrm-gpxx.json
index ed09eee01a0..1dd8ae6a185 100644
--- a/advisories/unreviewed/2022/05/GHSA-cvp3-pjrm-gpxx/GHSA-cvp3-pjrm-gpxx.json
+++ b/advisories/unreviewed/2022/05/GHSA-cvp3-pjrm-gpxx/GHSA-cvp3-pjrm-gpxx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-f32r-fgjh-cm3q/GHSA-f32r-fgjh-cm3q.json b/advisories/unreviewed/2022/05/GHSA-f32r-fgjh-cm3q/GHSA-f32r-fgjh-cm3q.json
index 9bb303cf867..6b94841c10f 100644
--- a/advisories/unreviewed/2022/05/GHSA-f32r-fgjh-cm3q/GHSA-f32r-fgjh-cm3q.json
+++ b/advisories/unreviewed/2022/05/GHSA-f32r-fgjh-cm3q/GHSA-f32r-fgjh-cm3q.json
@@ -7,12 +7,8 @@
"CVE-2008-5711"
],
"details": "Heap-based buffer overflow in the Facebook PhotoUploader ActiveX control 5.0.14.0 and earlier allows remote attackers to execute arbitrary code via a long FileMask property value.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-f48x-hvc8-qr9c/GHSA-f48x-hvc8-qr9c.json b/advisories/unreviewed/2022/05/GHSA-f48x-hvc8-qr9c/GHSA-f48x-hvc8-qr9c.json
index dedffac4ffe..55dc2f2a2bb 100644
--- a/advisories/unreviewed/2022/05/GHSA-f48x-hvc8-qr9c/GHSA-f48x-hvc8-qr9c.json
+++ b/advisories/unreviewed/2022/05/GHSA-f48x-hvc8-qr9c/GHSA-f48x-hvc8-qr9c.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-fhwx-hgv2-hhh3/GHSA-fhwx-hgv2-hhh3.json b/advisories/unreviewed/2022/05/GHSA-fhwx-hgv2-hhh3/GHSA-fhwx-hgv2-hhh3.json
index 3de437584f8..0ebfd4455c9 100644
--- a/advisories/unreviewed/2022/05/GHSA-fhwx-hgv2-hhh3/GHSA-fhwx-hgv2-hhh3.json
+++ b/advisories/unreviewed/2022/05/GHSA-fhwx-hgv2-hhh3/GHSA-fhwx-hgv2-hhh3.json
@@ -7,12 +7,8 @@
"CVE-2008-5895"
],
"details": "SQL injection vulnerability in connection.php in Mediatheka 4.2 and earlier allows remote attackers to execute arbitrary SQL commands via the user parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-fmhx-jh46-8mxr/GHSA-fmhx-jh46-8mxr.json b/advisories/unreviewed/2022/05/GHSA-fmhx-jh46-8mxr/GHSA-fmhx-jh46-8mxr.json
index bca8fb3569b..e54591a4be6 100644
--- a/advisories/unreviewed/2022/05/GHSA-fmhx-jh46-8mxr/GHSA-fmhx-jh46-8mxr.json
+++ b/advisories/unreviewed/2022/05/GHSA-fmhx-jh46-8mxr/GHSA-fmhx-jh46-8mxr.json
@@ -7,12 +7,8 @@
"CVE-2008-5635"
],
"details": "SQL injection vulnerability in account.asp in Active Membership 2.0 allows remote attackers to execute arbitrary SQL commands via the (1) username and (2) password parameters, possibly related to start.asp. 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-fmm9-vhfj-rm44/GHSA-fmm9-vhfj-rm44.json b/advisories/unreviewed/2022/05/GHSA-fmm9-vhfj-rm44/GHSA-fmm9-vhfj-rm44.json
index 97caa973b36..0987e490c86 100644
--- a/advisories/unreviewed/2022/05/GHSA-fmm9-vhfj-rm44/GHSA-fmm9-vhfj-rm44.json
+++ b/advisories/unreviewed/2022/05/GHSA-fmm9-vhfj-rm44/GHSA-fmm9-vhfj-rm44.json
@@ -7,12 +7,8 @@
"CVE-2008-5754"
],
"details": "Stack-based buffer overflow in BulletProof FTP Client allows user-assisted attackers to execute arbitrary code via a .bps file (aka Session-File) with a long second line, possibly a related issue to CVE-2008-5753.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-fqhg-58rx-5ghm/GHSA-fqhg-58rx-5ghm.json b/advisories/unreviewed/2022/05/GHSA-fqhg-58rx-5ghm/GHSA-fqhg-58rx-5ghm.json
index bbb9200c045..6876e704eb9 100644
--- a/advisories/unreviewed/2022/05/GHSA-fqhg-58rx-5ghm/GHSA-fqhg-58rx-5ghm.json
+++ b/advisories/unreviewed/2022/05/GHSA-fqhg-58rx-5ghm/GHSA-fqhg-58rx-5ghm.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-fr79-wrcg-rgxc/GHSA-fr79-wrcg-rgxc.json b/advisories/unreviewed/2022/05/GHSA-fr79-wrcg-rgxc/GHSA-fr79-wrcg-rgxc.json
index f52c91ca0bc..f2f3f420c63 100644
--- a/advisories/unreviewed/2022/05/GHSA-fr79-wrcg-rgxc/GHSA-fr79-wrcg-rgxc.json
+++ b/advisories/unreviewed/2022/05/GHSA-fr79-wrcg-rgxc/GHSA-fr79-wrcg-rgxc.json
@@ -7,12 +7,8 @@
"CVE-2008-5773"
],
"details": "Nukedit 4.9.8 stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing usernames and passwords via a direct request for database/dbsite.mdb.",
- "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-fx5c-j887-359m/GHSA-fx5c-j887-359m.json b/advisories/unreviewed/2022/05/GHSA-fx5c-j887-359m/GHSA-fx5c-j887-359m.json
index 8763db32efd..5e4b928520a 100644
--- a/advisories/unreviewed/2022/05/GHSA-fx5c-j887-359m/GHSA-fx5c-j887-359m.json
+++ b/advisories/unreviewed/2022/05/GHSA-fx5c-j887-359m/GHSA-fx5c-j887-359m.json
@@ -7,12 +7,8 @@
"CVE-2008-5783"
],
"details": "admin/index.php in V3 Chat Live Support 3.0.4 allows remote attackers to bypass authentication and gain administrative access by setting the admin cookie to 1.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-g7wv-p3vg-qr6m/GHSA-g7wv-p3vg-qr6m.json b/advisories/unreviewed/2022/05/GHSA-g7wv-p3vg-qr6m/GHSA-g7wv-p3vg-qr6m.json
index 13d254ff208..e1216b2f0ff 100644
--- a/advisories/unreviewed/2022/05/GHSA-g7wv-p3vg-qr6m/GHSA-g7wv-p3vg-qr6m.json
+++ b/advisories/unreviewed/2022/05/GHSA-g7wv-p3vg-qr6m/GHSA-g7wv-p3vg-qr6m.json
@@ -7,12 +7,8 @@
"CVE-2008-5873"
],
"details": "Yerba SACphp 6.3 and earlier allows remote attackers to bypass authentication and gain administrative access via a galleta[sesion] cookie that has a value beginning with 1:1: followed by a username.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-gcm3-8rfv-r45x/GHSA-gcm3-8rfv-r45x.json b/advisories/unreviewed/2022/05/GHSA-gcm3-8rfv-r45x/GHSA-gcm3-8rfv-r45x.json
index faedf1f09dd..4ddb8c3b3d1 100644
--- a/advisories/unreviewed/2022/05/GHSA-gcm3-8rfv-r45x/GHSA-gcm3-8rfv-r45x.json
+++ b/advisories/unreviewed/2022/05/GHSA-gcm3-8rfv-r45x/GHSA-gcm3-8rfv-r45x.json
@@ -7,12 +7,8 @@
"CVE-2008-5788"
],
"details": "SQL injection vulnerability in index.php in Domain Seller Pro 1.5 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-gcqp-6x6v-fpm2/GHSA-gcqp-6x6v-fpm2.json b/advisories/unreviewed/2022/05/GHSA-gcqp-6x6v-fpm2/GHSA-gcqp-6x6v-fpm2.json
index c5d8359ff93..d5653dfa642 100644
--- a/advisories/unreviewed/2022/05/GHSA-gcqp-6x6v-fpm2/GHSA-gcqp-6x6v-fpm2.json
+++ b/advisories/unreviewed/2022/05/GHSA-gcqp-6x6v-fpm2/GHSA-gcqp-6x6v-fpm2.json
@@ -7,12 +7,8 @@
"CVE-2008-5770"
],
"details": "Cross-site scripting (XSS) vulnerability in config/make_config.php in PHP Weather 2.2.2 allows remote attackers to inject arbitrary web script or HTML via the PATH_INFO.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-gj72-wrc3-pvjg/GHSA-gj72-wrc3-pvjg.json b/advisories/unreviewed/2022/05/GHSA-gj72-wrc3-pvjg/GHSA-gj72-wrc3-pvjg.json
index af25fecf308..1de225bf5f6 100644
--- a/advisories/unreviewed/2022/05/GHSA-gj72-wrc3-pvjg/GHSA-gj72-wrc3-pvjg.json
+++ b/advisories/unreviewed/2022/05/GHSA-gj72-wrc3-pvjg/GHSA-gj72-wrc3-pvjg.json
@@ -7,12 +7,8 @@
"CVE-2008-5811"
],
"details": "SQL injection vulnerability in the PaxGallery (com_paxgallery) component 0.1 for Joomla! allows remote attackers to execute arbitrary SQL commands via the gid parameter in a table action to index.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-gmv7-cm23-wj83/GHSA-gmv7-cm23-wj83.json b/advisories/unreviewed/2022/05/GHSA-gmv7-cm23-wj83/GHSA-gmv7-cm23-wj83.json
index 3150a2d6bbb..970e802c0ee 100644
--- a/advisories/unreviewed/2022/05/GHSA-gmv7-cm23-wj83/GHSA-gmv7-cm23-wj83.json
+++ b/advisories/unreviewed/2022/05/GHSA-gmv7-cm23-wj83/GHSA-gmv7-cm23-wj83.json
@@ -7,12 +7,8 @@
"CVE-2008-5738"
],
"details": "Nodstrum MySQL Calendar 1.1 and 1.2 allows remote attackers to bypass authentication and gain administrative access by setting the nodstrumCalendarV2 cookie to 1. NOTE: some of these details are obtained from third party information.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -40,9 +36,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-gpq7-8cmf-3pxq/GHSA-gpq7-8cmf-3pxq.json b/advisories/unreviewed/2022/05/GHSA-gpq7-8cmf-3pxq/GHSA-gpq7-8cmf-3pxq.json
index 5ddc8dec14d..4bade6795f7 100644
--- a/advisories/unreviewed/2022/05/GHSA-gpq7-8cmf-3pxq/GHSA-gpq7-8cmf-3pxq.json
+++ b/advisories/unreviewed/2022/05/GHSA-gpq7-8cmf-3pxq/GHSA-gpq7-8cmf-3pxq.json
@@ -7,12 +7,8 @@
"CVE-2008-5780"
],
"details": "Forest Blog 1.3.2 stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing passwords via a direct request for blog.mdb.",
- "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-gr3f-xghj-7g47/GHSA-gr3f-xghj-7g47.json b/advisories/unreviewed/2022/05/GHSA-gr3f-xghj-7g47/GHSA-gr3f-xghj-7g47.json
index 96c96510251..a1658e6af4d 100644
--- a/advisories/unreviewed/2022/05/GHSA-gr3f-xghj-7g47/GHSA-gr3f-xghj-7g47.json
+++ b/advisories/unreviewed/2022/05/GHSA-gr3f-xghj-7g47/GHSA-gr3f-xghj-7g47.json
@@ -7,12 +7,8 @@
"CVE-2008-5192"
],
"details": "SQL injection vulnerability in forum.asp in W1L3D4 Philboard 1.14 and 1.2 allows remote attackers to execute arbitrary SQL commands via the forumid parameter. NOTE: this might overlap CVE-2008-2334, CVE-2008-1939, CVE-2007-2641, or CVE-2007-0920.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-gr5v-m7pw-v38r/GHSA-gr5v-m7pw-v38r.json b/advisories/unreviewed/2022/05/GHSA-gr5v-m7pw-v38r/GHSA-gr5v-m7pw-v38r.json
index 55fc3ce0600..ad7b83945bc 100644
--- a/advisories/unreviewed/2022/05/GHSA-gr5v-m7pw-v38r/GHSA-gr5v-m7pw-v38r.json
+++ b/advisories/unreviewed/2022/05/GHSA-gr5v-m7pw-v38r/GHSA-gr5v-m7pw-v38r.json
@@ -7,12 +7,8 @@
"CVE-2008-5897"
],
"details": "CodeAvalanche FreeWallpaper stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing the administrator password via a direct request for _private/CAFreeWallpaper.mdb. NOTE: some of these details are obtained from third party information.",
- "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-grpp-29wc-7cg7/GHSA-grpp-29wc-7cg7.json b/advisories/unreviewed/2022/05/GHSA-grpp-29wc-7cg7/GHSA-grpp-29wc-7cg7.json
index b855fb8d228..c9ca26ab9ca 100644
--- a/advisories/unreviewed/2022/05/GHSA-grpp-29wc-7cg7/GHSA-grpp-29wc-7cg7.json
+++ b/advisories/unreviewed/2022/05/GHSA-grpp-29wc-7cg7/GHSA-grpp-29wc-7cg7.json
@@ -7,12 +7,8 @@
"CVE-2008-5752"
],
"details": "Directory traversal vulnerability in getConfig.php in the Page Flip Image Gallery plugin 0.2.2 and earlier for WordPress, when magic_quotes_gpc is disabled, allows remote attackers to read arbitrary files via a .. (dot dot) in the book_id 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-grqg-9g7g-p425/GHSA-grqg-9g7g-p425.json b/advisories/unreviewed/2022/05/GHSA-grqg-9g7g-p425/GHSA-grqg-9g7g-p425.json
index 321f3c56fbd..915e5618c76 100644
--- a/advisories/unreviewed/2022/05/GHSA-grqg-9g7g-p425/GHSA-grqg-9g7g-p425.json
+++ b/advisories/unreviewed/2022/05/GHSA-grqg-9g7g-p425/GHSA-grqg-9g7g-p425.json
@@ -7,12 +7,8 @@
"CVE-2008-5926"
],
"details": "Multiple SQL injection vulnerabilities in login.asp in ASP-DEv Internal E-Mail System allow remote attackers to execute arbitrary SQL commands via the (1) login parameter (aka user field) or the (2) password parameter (aka pass field). 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-h3p2-p62v-cpmr/GHSA-h3p2-p62v-cpmr.json b/advisories/unreviewed/2022/05/GHSA-h3p2-p62v-cpmr/GHSA-h3p2-p62v-cpmr.json
index 7d95afeeeec..d835d66f34f 100644
--- a/advisories/unreviewed/2022/05/GHSA-h3p2-p62v-cpmr/GHSA-h3p2-p62v-cpmr.json
+++ b/advisories/unreviewed/2022/05/GHSA-h3p2-p62v-cpmr/GHSA-h3p2-p62v-cpmr.json
@@ -7,12 +7,8 @@
"CVE-2008-5890"
],
"details": "SQL injection vulnerability in feeds.php in Injader before 2.1.2 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-h3x4-rhwr-ch52/GHSA-h3x4-rhwr-ch52.json b/advisories/unreviewed/2022/05/GHSA-h3x4-rhwr-ch52/GHSA-h3x4-rhwr-ch52.json
index 121e260b678..e0acdf62ba2 100644
--- a/advisories/unreviewed/2022/05/GHSA-h3x4-rhwr-ch52/GHSA-h3x4-rhwr-ch52.json
+++ b/advisories/unreviewed/2022/05/GHSA-h3x4-rhwr-ch52/GHSA-h3x4-rhwr-ch52.json
@@ -7,12 +7,8 @@
"CVE-2008-5751"
],
"details": "SQL injection vulnerability in index.php in AlstraSoft Web Email Script Enterprise (ESE) allows remote attackers to execute arbitrary SQL commands via the id parameter in a directory action.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-h5pm-mp5c-qgvv/GHSA-h5pm-mp5c-qgvv.json b/advisories/unreviewed/2022/05/GHSA-h5pm-mp5c-qgvv/GHSA-h5pm-mp5c-qgvv.json
index 2fc9c4a95ac..d4a5a7632c6 100644
--- a/advisories/unreviewed/2022/05/GHSA-h5pm-mp5c-qgvv/GHSA-h5pm-mp5c-qgvv.json
+++ b/advisories/unreviewed/2022/05/GHSA-h5pm-mp5c-qgvv/GHSA-h5pm-mp5c-qgvv.json
@@ -7,12 +7,8 @@
"CVE-2008-5894"
],
"details": "Directory traversal vulnerability in index.php in Mediatheka 4.2 allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the lang parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-h5v7-7qm3-r9v2/GHSA-h5v7-7qm3-r9v2.json b/advisories/unreviewed/2022/05/GHSA-h5v7-7qm3-r9v2/GHSA-h5v7-7qm3-r9v2.json
index 7da209253dd..6efa3d538f5 100644
--- a/advisories/unreviewed/2022/05/GHSA-h5v7-7qm3-r9v2/GHSA-h5v7-7qm3-r9v2.json
+++ b/advisories/unreviewed/2022/05/GHSA-h5v7-7qm3-r9v2/GHSA-h5v7-7qm3-r9v2.json
@@ -7,12 +7,8 @@
"CVE-2008-5631"
],
"details": "SQL injection vulnerability in start.asp in Active eWebquiz 8.0 allows remote attackers to execute arbitrary SQL commands via the (1) useremail parameter (aka username field) or the (2) password 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-h6ww-x4xv-2vj2/GHSA-h6ww-x4xv-2vj2.json b/advisories/unreviewed/2022/05/GHSA-h6ww-x4xv-2vj2/GHSA-h6ww-x4xv-2vj2.json
index 9d2f839f26b..add669fbd44 100644
--- a/advisories/unreviewed/2022/05/GHSA-h6ww-x4xv-2vj2/GHSA-h6ww-x4xv-2vj2.json
+++ b/advisories/unreviewed/2022/05/GHSA-h6ww-x4xv-2vj2/GHSA-h6ww-x4xv-2vj2.json
@@ -7,12 +7,8 @@
"CVE-2012-0056"
],
"details": "The mem_write function in the Linux kernel before 3.2.2, when ASLR is disabled, does not properly check permissions when writing to /proc//mem, which allows local users to gain privileges by modifying process memory, as demonstrated by Mempodipper.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -92,9 +88,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-h8jh-g7wj-qxjv/GHSA-h8jh-g7wj-qxjv.json b/advisories/unreviewed/2022/05/GHSA-h8jh-g7wj-qxjv/GHSA-h8jh-g7wj-qxjv.json
index 72791051ecc..e3dd790bc31 100644
--- a/advisories/unreviewed/2022/05/GHSA-h8jh-g7wj-qxjv/GHSA-h8jh-g7wj-qxjv.json
+++ b/advisories/unreviewed/2022/05/GHSA-h8jh-g7wj-qxjv/GHSA-h8jh-g7wj-qxjv.json
@@ -7,12 +7,8 @@
"CVE-2008-5712"
],
"details": "The HTML parser in KDE Konqueror 3.5.9 allows remote attackers to cause a denial of service (application crash) via (1) a long COLOR attribute in an HR element; or a long (a) BGCOLOR or (b) BORDERCOLOR attribute in a (2) TABLE, (3) TD, or (4) TR element. NOTE: the FONT vector is already covered by CVE-2008-4514.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-h8qq-vgcw-6px5/GHSA-h8qq-vgcw-6px5.json b/advisories/unreviewed/2022/05/GHSA-h8qq-vgcw-6px5/GHSA-h8qq-vgcw-6px5.json
index f0807665157..2a058eb7349 100644
--- a/advisories/unreviewed/2022/05/GHSA-h8qq-vgcw-6px5/GHSA-h8qq-vgcw-6px5.json
+++ b/advisories/unreviewed/2022/05/GHSA-h8qq-vgcw-6px5/GHSA-h8qq-vgcw-6px5.json
@@ -7,12 +7,8 @@
"CVE-2008-5883"
],
"details": "Absolute path traversal vulnerability in front-end/dir.php in mini-pub 0.3 and earlier allows remote attackers to list arbitrary directories via a full pathname in the sDir parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-h97g-gfrr-wg44/GHSA-h97g-gfrr-wg44.json b/advisories/unreviewed/2022/05/GHSA-h97g-gfrr-wg44/GHSA-h97g-gfrr-wg44.json
index c6cf48473e6..2eb8ba232a5 100644
--- a/advisories/unreviewed/2022/05/GHSA-h97g-gfrr-wg44/GHSA-h97g-gfrr-wg44.json
+++ b/advisories/unreviewed/2022/05/GHSA-h97g-gfrr-wg44/GHSA-h97g-gfrr-wg44.json
@@ -7,12 +7,8 @@
"CVE-2008-5899"
],
"details": "CodeAvalanche FreeForAll stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing the administrator password via a direct request for _private/CAFFAPage.mdb. NOTE: some of these details are obtained from third party information.",
- "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-hj4p-hm2v-92p5/GHSA-hj4p-hm2v-92p5.json b/advisories/unreviewed/2022/05/GHSA-hj4p-hm2v-92p5/GHSA-hj4p-hm2v-92p5.json
index 333c7ca66a8..392ae6f3325 100644
--- a/advisories/unreviewed/2022/05/GHSA-hj4p-hm2v-92p5/GHSA-hj4p-hm2v-92p5.json
+++ b/advisories/unreviewed/2022/05/GHSA-hj4p-hm2v-92p5/GHSA-hj4p-hm2v-92p5.json
@@ -7,12 +7,8 @@
"CVE-2008-5691"
],
"details": "Heap-based buffer overflow in the Phoenician Casino FlashAX ActiveX control 1.0.0.7 allows remote attackers to execute arbitrary code via a long argument to the SetID method.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-hpf2-34xr-xh43/GHSA-hpf2-34xr-xh43.json b/advisories/unreviewed/2022/05/GHSA-hpf2-34xr-xh43/GHSA-hpf2-34xr-xh43.json
index b9feb6fcba0..ce5e6359ec6 100644
--- a/advisories/unreviewed/2022/05/GHSA-hpf2-34xr-xh43/GHSA-hpf2-34xr-xh43.json
+++ b/advisories/unreviewed/2022/05/GHSA-hpf2-34xr-xh43/GHSA-hpf2-34xr-xh43.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-hq3r-79m9-8fph/GHSA-hq3r-79m9-8fph.json b/advisories/unreviewed/2022/05/GHSA-hq3r-79m9-8fph/GHSA-hq3r-79m9-8fph.json
index 66f17a1c6a6..cc555932d36 100644
--- a/advisories/unreviewed/2022/05/GHSA-hq3r-79m9-8fph/GHSA-hq3r-79m9-8fph.json
+++ b/advisories/unreviewed/2022/05/GHSA-hq3r-79m9-8fph/GHSA-hq3r-79m9-8fph.json
@@ -7,12 +7,8 @@
"CVE-2008-5638"
],
"details": "Multiple SQL injection vulnerabilities in Active Price Comparison 4 allow remote attackers to execute arbitrary SQL commands via the (1) ProductID parameter to reviews.aspx or the (2) linkid parameter to links.asp.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-hq84-pvgw-424h/GHSA-hq84-pvgw-424h.json b/advisories/unreviewed/2022/05/GHSA-hq84-pvgw-424h/GHSA-hq84-pvgw-424h.json
index 442fd1c7730..9f902c49bbc 100644
--- a/advisories/unreviewed/2022/05/GHSA-hq84-pvgw-424h/GHSA-hq84-pvgw-424h.json
+++ b/advisories/unreviewed/2022/05/GHSA-hq84-pvgw-424h/GHSA-hq84-pvgw-424h.json
@@ -7,12 +7,8 @@
"CVE-2008-5865"
],
"details": "SQL injection vulnerability in the com_hbssearch component 1.0 in the Hotel Booking Reservation System (aka HBS) 1.0.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the r_type parameter in a showhoteldetails action to index.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-hwqw-j7g8-gm23/GHSA-hwqw-j7g8-gm23.json b/advisories/unreviewed/2022/05/GHSA-hwqw-j7g8-gm23/GHSA-hwqw-j7g8-gm23.json
index 6d1e5bc0349..0c38ddb5ff9 100644
--- a/advisories/unreviewed/2022/05/GHSA-hwqw-j7g8-gm23/GHSA-hwqw-j7g8-gm23.json
+++ b/advisories/unreviewed/2022/05/GHSA-hwqw-j7g8-gm23/GHSA-hwqw-j7g8-gm23.json
@@ -7,12 +7,8 @@
"CVE-2008-5170"
],
"details": "SQL injection vulnerability in item.php in Cheats Complete Website 1.1.1 allows remote attackers to execute arbitrary SQL commands via the itemid parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-hxpp-755m-rwxg/GHSA-hxpp-755m-rwxg.json b/advisories/unreviewed/2022/05/GHSA-hxpp-755m-rwxg/GHSA-hxpp-755m-rwxg.json
index 3879a36485a..4ac7ddf3478 100644
--- a/advisories/unreviewed/2022/05/GHSA-hxpp-755m-rwxg/GHSA-hxpp-755m-rwxg.json
+++ b/advisories/unreviewed/2022/05/GHSA-hxpp-755m-rwxg/GHSA-hxpp-755m-rwxg.json
@@ -7,12 +7,8 @@
"CVE-2008-5901"
],
"details": "iyzi Forum 1.0 beta 3 stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing a password via a direct request for db/iyziforum.mdb. NOTE: some of these details are obtained from third party information.",
- "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-j275-7h9j-3q9c/GHSA-j275-7h9j-3q9c.json b/advisories/unreviewed/2022/05/GHSA-j275-7h9j-3q9c/GHSA-j275-7h9j-3q9c.json
index 3662ba08502..75fbe9691e0 100644
--- a/advisories/unreviewed/2022/05/GHSA-j275-7h9j-3q9c/GHSA-j275-7h9j-3q9c.json
+++ b/advisories/unreviewed/2022/05/GHSA-j275-7h9j-3q9c/GHSA-j275-7h9j-3q9c.json
@@ -7,12 +7,8 @@
"CVE-2008-5727"
],
"details": "SQL injection vulnerability in modules/auth/password_recovery.php in AIST NetCat 3.12 and earlier, when magic_quotes_gpc is disabled, allows remote attackers to execute arbitrary SQL commands via the query string.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-j68v-4fgm-23fp/GHSA-j68v-4fgm-23fp.json b/advisories/unreviewed/2022/05/GHSA-j68v-4fgm-23fp/GHSA-j68v-4fgm-23fp.json
index 8bdbdce607c..129b1c9157e 100644
--- a/advisories/unreviewed/2022/05/GHSA-j68v-4fgm-23fp/GHSA-j68v-4fgm-23fp.json
+++ b/advisories/unreviewed/2022/05/GHSA-j68v-4fgm-23fp/GHSA-j68v-4fgm-23fp.json
@@ -7,12 +7,8 @@
"CVE-2008-5806"
],
"details": "SQL injection vulnerability in login.php in DeltaScripts PHP Classifieds 7.5 and earlier allows remote attackers to execute arbitrary SQL commands via the admin_username parameter (aka admin field). 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-jcq4-g9pc-2rr8/GHSA-jcq4-g9pc-2rr8.json b/advisories/unreviewed/2022/05/GHSA-jcq4-g9pc-2rr8/GHSA-jcq4-g9pc-2rr8.json
index b8dff5f62da..7b65ea5cb0c 100644
--- a/advisories/unreviewed/2022/05/GHSA-jcq4-g9pc-2rr8/GHSA-jcq4-g9pc-2rr8.json
+++ b/advisories/unreviewed/2022/05/GHSA-jcq4-g9pc-2rr8/GHSA-jcq4-g9pc-2rr8.json
@@ -7,12 +7,8 @@
"CVE-2008-5862"
],
"details": "Directory traversal vulnerability in webcamXP 5.3.2.375 and 5.3.2.410 build 2132 allows remote attackers to read arbitrary files via a ..%2F (encoded dot dot slash) in the URI.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-jcqw-qr7v-6pr3/GHSA-jcqw-qr7v-6pr3.json b/advisories/unreviewed/2022/05/GHSA-jcqw-qr7v-6pr3/GHSA-jcqw-qr7v-6pr3.json
index 8a9e1948529..3a9851f1574 100644
--- a/advisories/unreviewed/2022/05/GHSA-jcqw-qr7v-6pr3/GHSA-jcqw-qr7v-6pr3.json
+++ b/advisories/unreviewed/2022/05/GHSA-jcqw-qr7v-6pr3/GHSA-jcqw-qr7v-6pr3.json
@@ -7,12 +7,8 @@
"CVE-2008-5868"
],
"details": "Stack-based buffer overflow in IntelliTamper 2.07 and 2.08 allows user-assisted attackers to execute arbitrary code via a long ProxyLogin value in a configuration (.cfg) file.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-jg9c-x93h-p57v/GHSA-jg9c-x93h-p57v.json b/advisories/unreviewed/2022/05/GHSA-jg9c-x93h-p57v/GHSA-jg9c-x93h-p57v.json
index 2bd2c90b2e9..7fd9d467e32 100644
--- a/advisories/unreviewed/2022/05/GHSA-jg9c-x93h-p57v/GHSA-jg9c-x93h-p57v.json
+++ b/advisories/unreviewed/2022/05/GHSA-jg9c-x93h-p57v/GHSA-jg9c-x93h-p57v.json
@@ -7,12 +7,8 @@
"CVE-2008-5854"
],
"details": "Multiple cross-site scripting (XSS) vulnerabilities in login.php in myPHPscripts Login Session 2.0 allow remote attackers to inject arbitrary web script or HTML via the (1) ls_user and (2) ls_email parameters (aka the User form) in an ls_register action. 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-jr38-ch73-ccgx/GHSA-jr38-ch73-ccgx.json b/advisories/unreviewed/2022/05/GHSA-jr38-ch73-ccgx/GHSA-jr38-ch73-ccgx.json
index ca720342957..fe72aa37c14 100644
--- a/advisories/unreviewed/2022/05/GHSA-jr38-ch73-ccgx/GHSA-jr38-ch73-ccgx.json
+++ b/advisories/unreviewed/2022/05/GHSA-jr38-ch73-ccgx/GHSA-jr38-ch73-ccgx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-m252-5c67-5535/GHSA-m252-5c67-5535.json b/advisories/unreviewed/2022/05/GHSA-m252-5c67-5535/GHSA-m252-5c67-5535.json
index 97ec535f093..94f519e3e63 100644
--- a/advisories/unreviewed/2022/05/GHSA-m252-5c67-5535/GHSA-m252-5c67-5535.json
+++ b/advisories/unreviewed/2022/05/GHSA-m252-5c67-5535/GHSA-m252-5c67-5535.json
@@ -7,12 +7,8 @@
"CVE-2008-5630"
],
"details": "SQL injection vulnerability in merchants/index.php in Post Affiliate Pro 3 and 3.1.4 allows remote attackers to execute arbitrary SQL commands via the umprof_status parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-m26x-qvx8-4xp6/GHSA-m26x-qvx8-4xp6.json b/advisories/unreviewed/2022/05/GHSA-m26x-qvx8-4xp6/GHSA-m26x-qvx8-4xp6.json
index 350e1a82665..cb2f77323fe 100644
--- a/advisories/unreviewed/2022/05/GHSA-m26x-qvx8-4xp6/GHSA-m26x-qvx8-4xp6.json
+++ b/advisories/unreviewed/2022/05/GHSA-m26x-qvx8-4xp6/GHSA-m26x-qvx8-4xp6.json
@@ -7,12 +7,8 @@
"CVE-2008-5819"
],
"details": "Directory traversal vulnerability in eDNews_archive.php in eDreamers eDNews 2, when magic_quotes_gpc is disabled, allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the lg 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-m459-97qh-vx64/GHSA-m459-97qh-vx64.json b/advisories/unreviewed/2022/05/GHSA-m459-97qh-vx64/GHSA-m459-97qh-vx64.json
index 48e3eac3c62..a8d239b7af7 100644
--- a/advisories/unreviewed/2022/05/GHSA-m459-97qh-vx64/GHSA-m459-97qh-vx64.json
+++ b/advisories/unreviewed/2022/05/GHSA-m459-97qh-vx64/GHSA-m459-97qh-vx64.json
@@ -7,12 +7,8 @@
"CVE-2008-5781"
],
"details": "SQL injection vulnerability in right.php in Cant Find A Gaming CMS (CFAGCMS) 1.0 Beta 1 allows remote attackers to execute arbitrary SQL commands via the title parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-m9vj-ghg6-qxqh/GHSA-m9vj-ghg6-qxqh.json b/advisories/unreviewed/2022/05/GHSA-m9vj-ghg6-qxqh/GHSA-m9vj-ghg6-qxqh.json
index 4cf6d59a4ff..49f44cc3d9e 100644
--- a/advisories/unreviewed/2022/05/GHSA-m9vj-ghg6-qxqh/GHSA-m9vj-ghg6-qxqh.json
+++ b/advisories/unreviewed/2022/05/GHSA-m9vj-ghg6-qxqh/GHSA-m9vj-ghg6-qxqh.json
@@ -7,12 +7,8 @@
"CVE-2008-5881"
],
"details": "Multiple directory traversal vulnerabilities in playSMS 0.9.3 allow remote attackers to include and execute arbitrary local files via directory traversal sequences in the (1) gateway_module parameter to plugin/gateway/gnokii/init.php and the (2) themes_module parameter to plugin/themes/default/init.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-mch2-793w-vxg8/GHSA-mch2-793w-vxg8.json b/advisories/unreviewed/2022/05/GHSA-mch2-793w-vxg8/GHSA-mch2-793w-vxg8.json
index d09b6a28f71..7d22896f9ea 100644
--- a/advisories/unreviewed/2022/05/GHSA-mch2-793w-vxg8/GHSA-mch2-793w-vxg8.json
+++ b/advisories/unreviewed/2022/05/GHSA-mch2-793w-vxg8/GHSA-mch2-793w-vxg8.json
@@ -7,12 +7,8 @@
"CVE-2008-5820"
],
"details": "SQL injection vulnerability in eDNews_view.php in eDreamers eDNews 2 allows remote attackers to execute arbitrary SQL commands via the newsid parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-mhm5-jfxc-c962/GHSA-mhm5-jfxc-c962.json b/advisories/unreviewed/2022/05/GHSA-mhm5-jfxc-c962/GHSA-mhm5-jfxc-c962.json
index d7a00fa312f..f05ed7b0c2f 100644
--- a/advisories/unreviewed/2022/05/GHSA-mhm5-jfxc-c962/GHSA-mhm5-jfxc-c962.json
+++ b/advisories/unreviewed/2022/05/GHSA-mhm5-jfxc-c962/GHSA-mhm5-jfxc-c962.json
@@ -7,12 +7,8 @@
"CVE-2008-5606"
],
"details": "Gazatem QMail Mailing List Manager 1.2 stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file via a direct request for qmail.mdb.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-mpxc-7f3r-fj2c/GHSA-mpxc-7f3r-fj2c.json b/advisories/unreviewed/2022/05/GHSA-mpxc-7f3r-fj2c/GHSA-mpxc-7f3r-fj2c.json
index 7bcbd51a424..17d824a56c5 100644
--- a/advisories/unreviewed/2022/05/GHSA-mpxc-7f3r-fj2c/GHSA-mpxc-7f3r-fj2c.json
+++ b/advisories/unreviewed/2022/05/GHSA-mpxc-7f3r-fj2c/GHSA-mpxc-7f3r-fj2c.json
@@ -7,12 +7,8 @@
"CVE-2008-5774"
],
"details": "Multiple SQL injection vulnerabilities in ASPSiteWare HomeBuilder 1.0 and 2.0 allow remote attackers to execute arbitrary SQL commands via the (1) iType parameter to (a) type.asp and (b) type2.asp and the (2) iPro parameter to (c) detail.asp.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-mqjx-xw97-cwv5/GHSA-mqjx-xw97-cwv5.json b/advisories/unreviewed/2022/05/GHSA-mqjx-xw97-cwv5/GHSA-mqjx-xw97-cwv5.json
index 8ec3e746c2e..445816a7256 100644
--- a/advisories/unreviewed/2022/05/GHSA-mqjx-xw97-cwv5/GHSA-mqjx-xw97-cwv5.json
+++ b/advisories/unreviewed/2022/05/GHSA-mqjx-xw97-cwv5/GHSA-mqjx-xw97-cwv5.json
@@ -7,12 +7,8 @@
"CVE-2008-5777"
],
"details": "SQL injection vulnerability in index.php in CadeNix 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-mwmq-3358-vg7q/GHSA-mwmq-3358-vg7q.json b/advisories/unreviewed/2022/05/GHSA-mwmq-3358-vg7q/GHSA-mwmq-3358-vg7q.json
index a206f021efa..3541ae99130 100644
--- a/advisories/unreviewed/2022/05/GHSA-mwmq-3358-vg7q/GHSA-mwmq-3358-vg7q.json
+++ b/advisories/unreviewed/2022/05/GHSA-mwmq-3358-vg7q/GHSA-mwmq-3358-vg7q.json
@@ -7,12 +7,8 @@
"CVE-2008-5840"
],
"details": "PHP iCalendar 2.24 and earlier allows remote attackers to bypass authentication by setting the phpicalendar and phpicalendar_login cookies to 1.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-p293-2w9f-jrwc/GHSA-p293-2w9f-jrwc.json b/advisories/unreviewed/2022/05/GHSA-p293-2w9f-jrwc/GHSA-p293-2w9f-jrwc.json
index 58afe64d532..954bf0a9205 100644
--- a/advisories/unreviewed/2022/05/GHSA-p293-2w9f-jrwc/GHSA-p293-2w9f-jrwc.json
+++ b/advisories/unreviewed/2022/05/GHSA-p293-2w9f-jrwc/GHSA-p293-2w9f-jrwc.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-p4j2-jx4g-w88w/GHSA-p4j2-jx4g-w88w.json b/advisories/unreviewed/2022/05/GHSA-p4j2-jx4g-w88w/GHSA-p4j2-jx4g-w88w.json
index b09889c9ece..f61051639f1 100644
--- a/advisories/unreviewed/2022/05/GHSA-p4j2-jx4g-w88w/GHSA-p4j2-jx4g-w88w.json
+++ b/advisories/unreviewed/2022/05/GHSA-p4j2-jx4g-w88w/GHSA-p4j2-jx4g-w88w.json
@@ -7,12 +7,8 @@
"CVE-2008-5775"
],
"details": "SQL injection vulnerability in categories.php in Aperto Blog 0.1.1 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-p5rq-xwjq-jpjc/GHSA-p5rq-xwjq-jpjc.json b/advisories/unreviewed/2022/05/GHSA-p5rq-xwjq-jpjc/GHSA-p5rq-xwjq-jpjc.json
index a4ebe2f0514..c634d6c409b 100644
--- a/advisories/unreviewed/2022/05/GHSA-p5rq-xwjq-jpjc/GHSA-p5rq-xwjq-jpjc.json
+++ b/advisories/unreviewed/2022/05/GHSA-p5rq-xwjq-jpjc/GHSA-p5rq-xwjq-jpjc.json
@@ -7,12 +7,8 @@
"CVE-2008-5782"
],
"details": "SQL injection vulnerability in bannerclick.php in ZeeMatri 3.0 allows remote attackers to execute arbitrary SQL commands via the adid parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-p7qj-3j9m-qrxm/GHSA-p7qj-3j9m-qrxm.json b/advisories/unreviewed/2022/05/GHSA-p7qj-3j9m-qrxm/GHSA-p7qj-3j9m-qrxm.json
index d77b05474df..da45fc29f4b 100644
--- a/advisories/unreviewed/2022/05/GHSA-p7qj-3j9m-qrxm/GHSA-p7qj-3j9m-qrxm.json
+++ b/advisories/unreviewed/2022/05/GHSA-p7qj-3j9m-qrxm/GHSA-p7qj-3j9m-qrxm.json
@@ -7,12 +7,8 @@
"CVE-2008-5879"
],
"details": "Cross-site scripting (XSS) vulnerability in index.php in Phpclanwebsite (aka PCW) 1.23.3 Fix Pack 5 and earlier, allows remote attackers to inject arbitrary web script or HTML via the page parameter and other unspecified vectors.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-p7xr-j3cg-2w5r/GHSA-p7xr-j3cg-2w5r.json b/advisories/unreviewed/2022/05/GHSA-p7xr-j3cg-2w5r/GHSA-p7xr-j3cg-2w5r.json
index 2a2b01e7783..6ede50158a2 100644
--- a/advisories/unreviewed/2022/05/GHSA-p7xr-j3cg-2w5r/GHSA-p7xr-j3cg-2w5r.json
+++ b/advisories/unreviewed/2022/05/GHSA-p7xr-j3cg-2w5r/GHSA-p7xr-j3cg-2w5r.json
@@ -7,12 +7,8 @@
"CVE-2008-3142"
],
"details": "Multiple buffer overflows in Python 2.5.2 and earlier on 32bit platforms allow context-dependent attackers to cause a denial of service (crash) or have unspecified other impact via a long string that leads to incorrect memory allocation during Unicode string processing, related to the unicode_resize function and the PyMem_RESIZE macro.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-p9r7-xj7p-2mw2/GHSA-p9r7-xj7p-2mw2.json b/advisories/unreviewed/2022/05/GHSA-p9r7-xj7p-2mw2/GHSA-p9r7-xj7p-2mw2.json
index d99150f69a6..d79364b0dac 100644
--- a/advisories/unreviewed/2022/05/GHSA-p9r7-xj7p-2mw2/GHSA-p9r7-xj7p-2mw2.json
+++ b/advisories/unreviewed/2022/05/GHSA-p9r7-xj7p-2mw2/GHSA-p9r7-xj7p-2mw2.json
@@ -7,12 +7,8 @@
"CVE-2008-5790"
],
"details": "Multiple PHP remote file inclusion vulnerabilities in the Recly!Competitions (com_competitions) component 1.0 for Joomla! allow remote attackers to execute arbitrary PHP code via a URL in the (1) GLOBALS[mosConfig_absolute_path] parameter to (a) add.php and (b) competitions.php in includes/competitions/, and the (2) mosConfig_absolute_path parameter to (c) includes/settings/settings.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-pfmp-4g6v-g76x/GHSA-pfmp-4g6v-g76x.json b/advisories/unreviewed/2022/05/GHSA-pfmp-4g6v-g76x/GHSA-pfmp-4g6v-g76x.json
index 0f0f5ec94a5..ab3b8ef9c28 100644
--- a/advisories/unreviewed/2022/05/GHSA-pfmp-4g6v-g76x/GHSA-pfmp-4g6v-g76x.json
+++ b/advisories/unreviewed/2022/05/GHSA-pfmp-4g6v-g76x/GHSA-pfmp-4g6v-g76x.json
@@ -7,12 +7,8 @@
"CVE-2008-5755"
],
"details": "Stack-based buffer overflow in IntelliTamper 2.07 and 2.08 allows remote attackers to execute arbitrary code via a MAP file containing a long URL, possibly a related issue to CVE-2006-2494.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-pgcc-q3j9-q46w/GHSA-pgcc-q3j9-q46w.json b/advisories/unreviewed/2022/05/GHSA-pgcc-q3j9-q46w/GHSA-pgcc-q3j9-q46w.json
index 589b9bc09f5..5fa11e99ee0 100644
--- a/advisories/unreviewed/2022/05/GHSA-pgcc-q3j9-q46w/GHSA-pgcc-q3j9-q46w.json
+++ b/advisories/unreviewed/2022/05/GHSA-pgcc-q3j9-q46w/GHSA-pgcc-q3j9-q46w.json
@@ -7,12 +7,8 @@
"CVE-2008-5726"
],
"details": "SQL injection vulnerability in thread.php in stormBoards 1.0.1 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-pxjw-j5mq-w46p/GHSA-pxjw-j5mq-w46p.json b/advisories/unreviewed/2022/05/GHSA-pxjw-j5mq-w46p/GHSA-pxjw-j5mq-w46p.json
index 44cdc1be8c1..67902edba45 100644
--- a/advisories/unreviewed/2022/05/GHSA-pxjw-j5mq-w46p/GHSA-pxjw-j5mq-w46p.json
+++ b/advisories/unreviewed/2022/05/GHSA-pxjw-j5mq-w46p/GHSA-pxjw-j5mq-w46p.json
@@ -7,12 +7,8 @@
"CVE-2008-5803"
],
"details": "SQL injection vulnerability in admin/login.php in E-topbiz Online Store 1.0 allows remote attackers to execute arbitrary SQL commands via the user parameter (aka username field). 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-q33g-frvq-p7gc/GHSA-q33g-frvq-p7gc.json b/advisories/unreviewed/2022/05/GHSA-q33g-frvq-p7gc/GHSA-q33g-frvq-p7gc.json
index 935429176da..aaadbbeda7a 100644
--- a/advisories/unreviewed/2022/05/GHSA-q33g-frvq-p7gc/GHSA-q33g-frvq-p7gc.json
+++ b/advisories/unreviewed/2022/05/GHSA-q33g-frvq-p7gc/GHSA-q33g-frvq-p7gc.json
@@ -7,12 +7,8 @@
"CVE-2008-5637"
],
"details": "SQL injection vulnerability in blog.asp in ParsBlogger (Pb) allows remote attackers to execute arbitrary SQL commands via the wr parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-q855-r9x6-prhq/GHSA-q855-r9x6-prhq.json b/advisories/unreviewed/2022/05/GHSA-q855-r9x6-prhq/GHSA-q855-r9x6-prhq.json
index 99e9f7dcaf8..7cab154d956 100644
--- a/advisories/unreviewed/2022/05/GHSA-q855-r9x6-prhq/GHSA-q855-r9x6-prhq.json
+++ b/advisories/unreviewed/2022/05/GHSA-q855-r9x6-prhq/GHSA-q855-r9x6-prhq.json
@@ -7,12 +7,8 @@
"CVE-2008-5626"
],
"details": "XM Easy Personal FTP Server 5.6.0 allows remote authenticated users to cause a denial of service via a crafted argument to the NLST command, as demonstrated by a -1 argument.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-qjv6-vxmp-4m8g/GHSA-qjv6-vxmp-4m8g.json b/advisories/unreviewed/2022/05/GHSA-qjv6-vxmp-4m8g/GHSA-qjv6-vxmp-4m8g.json
index 2cdd81a2f96..8b2426d629b 100644
--- a/advisories/unreviewed/2022/05/GHSA-qjv6-vxmp-4m8g/GHSA-qjv6-vxmp-4m8g.json
+++ b/advisories/unreviewed/2022/05/GHSA-qjv6-vxmp-4m8g/GHSA-qjv6-vxmp-4m8g.json
@@ -7,12 +7,8 @@
"CVE-2008-5732"
],
"details": "Unrestricted file upload vulnerability in lib/image_upload.php in KafooeyBlog 1.55b allows remote attackers to execute arbitrary code by uploading a file with an executable extension, then accessing it via a direct request to the file.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-qmgf-hfc6-6cf8/GHSA-qmgf-hfc6-6cf8.json b/advisories/unreviewed/2022/05/GHSA-qmgf-hfc6-6cf8/GHSA-qmgf-hfc6-6cf8.json
index a09e1d37b0f..14a0d5c934a 100644
--- a/advisories/unreviewed/2022/05/GHSA-qmgf-hfc6-6cf8/GHSA-qmgf-hfc6-6cf8.json
+++ b/advisories/unreviewed/2022/05/GHSA-qmgf-hfc6-6cf8/GHSA-qmgf-hfc6-6cf8.json
@@ -7,12 +7,8 @@
"CVE-2008-5729"
],
"details": "Multiple cross-site scripting (XSS) vulnerabilities in AIST NetCat 3.12 and earlier allow remote attackers to inject arbitrary web script or HTML via the (1) form and (2) control parameters to FCKeditor/neditor.php, and the (3) path parameter to admin/siteinfo/iframe.inc.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-r66x-78gw-39v4/GHSA-r66x-78gw-39v4.json b/advisories/unreviewed/2022/05/GHSA-r66x-78gw-39v4/GHSA-r66x-78gw-39v4.json
index 7039407b4bb..3a75f168832 100644
--- a/advisories/unreviewed/2022/05/GHSA-r66x-78gw-39v4/GHSA-r66x-78gw-39v4.json
+++ b/advisories/unreviewed/2022/05/GHSA-r66x-78gw-39v4/GHSA-r66x-78gw-39v4.json
@@ -7,12 +7,8 @@
"CVE-2008-5898"
],
"details": "CodeAvalanche Directory stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing the administrator password via a direct request for _private/CADirectory.mdb. NOTE: some of these details are obtained from third party information.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-r79p-5rjp-qq52/GHSA-r79p-5rjp-qq52.json b/advisories/unreviewed/2022/05/GHSA-r79p-5rjp-qq52/GHSA-r79p-5rjp-qq52.json
index e96e9691aeb..ec38bc1addf 100644
--- a/advisories/unreviewed/2022/05/GHSA-r79p-5rjp-qq52/GHSA-r79p-5rjp-qq52.json
+++ b/advisories/unreviewed/2022/05/GHSA-r79p-5rjp-qq52/GHSA-r79p-5rjp-qq52.json
@@ -7,12 +7,8 @@
"CVE-2008-5768"
],
"details": "SQL injection vulnerability in print.php in the AM Events (aka Amevents) module 0.22 for XOOPS 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-r7f3-pfmj-wj6w/GHSA-r7f3-pfmj-wj6w.json b/advisories/unreviewed/2022/05/GHSA-r7f3-pfmj-wj6w/GHSA-r7f3-pfmj-wj6w.json
index 9cbed7290d3..c6d62cd268c 100644
--- a/advisories/unreviewed/2022/05/GHSA-r7f3-pfmj-wj6w/GHSA-r7f3-pfmj-wj6w.json
+++ b/advisories/unreviewed/2022/05/GHSA-r7f3-pfmj-wj6w/GHSA-r7f3-pfmj-wj6w.json
@@ -7,12 +7,8 @@
"CVE-2008-5863"
],
"details": "SQL injection vulnerability in locator.php in the Userlocator module 3.0 for Woltlab Burning Board (wBB) allows remote attackers to execute arbitrary SQL commands via the y parameter in a get_user action.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-rg67-pc27-xqp8/GHSA-rg67-pc27-xqp8.json b/advisories/unreviewed/2022/05/GHSA-rg67-pc27-xqp8/GHSA-rg67-pc27-xqp8.json
index 6d1e24ca51f..6cdcb969428 100644
--- a/advisories/unreviewed/2022/05/GHSA-rg67-pc27-xqp8/GHSA-rg67-pc27-xqp8.json
+++ b/advisories/unreviewed/2022/05/GHSA-rg67-pc27-xqp8/GHSA-rg67-pc27-xqp8.json
@@ -7,12 +7,8 @@
"CVE-2008-5725"
],
"details": "The NT kernel-mode driver (aka pstrip.sys) 5.0.1.1 and earlier in EnTech Taiwan PowerStrip 3.84 and earlier allows local users to gain privileges via certain IRP parameters in an IOCTL request to \\Device\\Powerstrip1 that overwrites portions of memory.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -44,9 +40,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-rhhp-2wh8-92m3/GHSA-rhhp-2wh8-92m3.json b/advisories/unreviewed/2022/05/GHSA-rhhp-2wh8-92m3/GHSA-rhhp-2wh8-92m3.json
index f2dfe7002f2..0f0079b1345 100644
--- a/advisories/unreviewed/2022/05/GHSA-rhhp-2wh8-92m3/GHSA-rhhp-2wh8-92m3.json
+++ b/advisories/unreviewed/2022/05/GHSA-rhhp-2wh8-92m3/GHSA-rhhp-2wh8-92m3.json
@@ -7,12 +7,8 @@
"CVE-2008-5737"
],
"details": "SQL injection vulnerability in index.php in Nodstrum MySQL Calendar 1.1 and 1.2 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-rq28-x6fq-j954/GHSA-rq28-x6fq-j954.json b/advisories/unreviewed/2022/05/GHSA-rq28-x6fq-j954/GHSA-rq28-x6fq-j954.json
index 0ff680a44e4..4fb5952353d 100644
--- a/advisories/unreviewed/2022/05/GHSA-rq28-x6fq-j954/GHSA-rq28-x6fq-j954.json
+++ b/advisories/unreviewed/2022/05/GHSA-rq28-x6fq-j954/GHSA-rq28-x6fq-j954.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/05/GHSA-rq3x-hvwf-fgcm/GHSA-rq3x-hvwf-fgcm.json b/advisories/unreviewed/2022/05/GHSA-rq3x-hvwf-fgcm/GHSA-rq3x-hvwf-fgcm.json
index bd4ff9c2865..eb890ac907c 100644
--- a/advisories/unreviewed/2022/05/GHSA-rq3x-hvwf-fgcm/GHSA-rq3x-hvwf-fgcm.json
+++ b/advisories/unreviewed/2022/05/GHSA-rq3x-hvwf-fgcm/GHSA-rq3x-hvwf-fgcm.json
@@ -7,12 +7,8 @@
"CVE-2008-5877"
],
"details": "Multiple SQL injection vulnerabilities in Phpclanwebsite (aka PCW) 1.23.3 Fix Pack 5 and earlier, when magic_quotes_gpc is disabled, allow remote attackers to execute arbitrary SQL commands via the (1) page parameter to index.php, (2) form_id parameter to pcw/processforms.php, (3) pcwlogin and (4) pcw_pass parameters to pcw/setlogin.php, (5) searchvalue parameter to pcw/downloads.php, and the (6) searchvalue and (7) whichfield parameter to pcw/downloads.php, a different vector than CVE-2006-0444.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-rw6m-vgvc-h948/GHSA-rw6m-vgvc-h948.json b/advisories/unreviewed/2022/05/GHSA-rw6m-vgvc-h948/GHSA-rw6m-vgvc-h948.json
index 3ec765d9965..88f9940894a 100644
--- a/advisories/unreviewed/2022/05/GHSA-rw6m-vgvc-h948/GHSA-rw6m-vgvc-h948.json
+++ b/advisories/unreviewed/2022/05/GHSA-rw6m-vgvc-h948/GHSA-rw6m-vgvc-h948.json
@@ -7,12 +7,8 @@
"CVE-2008-5855"
],
"details": "myPHPscripts Login Session 2.0 stores sensitive information under the web root with insufficient access control, which allows remote attackers to discover usernames, e-mail addresses, and password hashes via a direct request for users.txt.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-rxx4-92m4-w3mh/GHSA-rxx4-92m4-w3mh.json b/advisories/unreviewed/2022/05/GHSA-rxx4-92m4-w3mh/GHSA-rxx4-92m4-w3mh.json
index 11302dd1f47..73a5cae0226 100644
--- a/advisories/unreviewed/2022/05/GHSA-rxx4-92m4-w3mh/GHSA-rxx4-92m4-w3mh.json
+++ b/advisories/unreviewed/2022/05/GHSA-rxx4-92m4-w3mh/GHSA-rxx4-92m4-w3mh.json
@@ -7,12 +7,8 @@
"CVE-2008-5880"
],
"details": "admin/auth.php in Gobbl CMS 1.0 allows remote attackers to bypass authentication and gain administrative access by setting the auth cookie to \"ok\".",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-v299-cg5h-hfqq/GHSA-v299-cg5h-hfqq.json b/advisories/unreviewed/2022/05/GHSA-v299-cg5h-hfqq/GHSA-v299-cg5h-hfqq.json
index 4bceeddfdf0..607f21ead9a 100644
--- a/advisories/unreviewed/2022/05/GHSA-v299-cg5h-hfqq/GHSA-v299-cg5h-hfqq.json
+++ b/advisories/unreviewed/2022/05/GHSA-v299-cg5h-hfqq/GHSA-v299-cg5h-hfqq.json
@@ -7,12 +7,8 @@
"CVE-2008-5778"
],
"details": "SQL injection vulnerability in report.php in Free Links Directory Script (FLDS) 1.2a allows remote attackers to execute arbitrary SQL commands via the linkid parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-v4q3-4wc9-gf9f/GHSA-v4q3-4wc9-gf9f.json b/advisories/unreviewed/2022/05/GHSA-v4q3-4wc9-gf9f/GHSA-v4q3-4wc9-gf9f.json
index 9a3ff400b3b..7de6815803b 100644
--- a/advisories/unreviewed/2022/05/GHSA-v4q3-4wc9-gf9f/GHSA-v4q3-4wc9-gf9f.json
+++ b/advisories/unreviewed/2022/05/GHSA-v4q3-4wc9-gf9f/GHSA-v4q3-4wc9-gf9f.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-v673-gch5-v3pp/GHSA-v673-gch5-v3pp.json b/advisories/unreviewed/2022/05/GHSA-v673-gch5-v3pp/GHSA-v673-gch5-v3pp.json
index b1bac70f298..ea56f9af1dc 100644
--- a/advisories/unreviewed/2022/05/GHSA-v673-gch5-v3pp/GHSA-v673-gch5-v3pp.json
+++ b/advisories/unreviewed/2022/05/GHSA-v673-gch5-v3pp/GHSA-v673-gch5-v3pp.json
@@ -7,12 +7,8 @@
"CVE-2008-5764"
],
"details": "PHP remote file inclusion vulnerability in calendar.php in WorkSimple 1.2.1, when register_globals is enabled, allows remote attackers to execute arbitrary PHP code via a URL in the lang parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-vcwg-4772-7rvx/GHSA-vcwg-4772-7rvx.json b/advisories/unreviewed/2022/05/GHSA-vcwg-4772-7rvx/GHSA-vcwg-4772-7rvx.json
index df34315c9c3..59a7d4cb9e6 100644
--- a/advisories/unreviewed/2022/05/GHSA-vcwg-4772-7rvx/GHSA-vcwg-4772-7rvx.json
+++ b/advisories/unreviewed/2022/05/GHSA-vcwg-4772-7rvx/GHSA-vcwg-4772-7rvx.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",
@@ -67,9 +65,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-vfq3-4hcr-qmqp/GHSA-vfq3-4hcr-qmqp.json b/advisories/unreviewed/2022/05/GHSA-vfq3-4hcr-qmqp/GHSA-vfq3-4hcr-qmqp.json
index 8d589ec0922..0110dd6b9d9 100644
--- a/advisories/unreviewed/2022/05/GHSA-vfq3-4hcr-qmqp/GHSA-vfq3-4hcr-qmqp.json
+++ b/advisories/unreviewed/2022/05/GHSA-vfq3-4hcr-qmqp/GHSA-vfq3-4hcr-qmqp.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-vrx5-cp65-fr95/GHSA-vrx5-cp65-fr95.json b/advisories/unreviewed/2022/05/GHSA-vrx5-cp65-fr95/GHSA-vrx5-cp65-fr95.json
index dfbbd4c9def..6092a0087a6 100644
--- a/advisories/unreviewed/2022/05/GHSA-vrx5-cp65-fr95/GHSA-vrx5-cp65-fr95.json
+++ b/advisories/unreviewed/2022/05/GHSA-vrx5-cp65-fr95/GHSA-vrx5-cp65-fr95.json
@@ -7,12 +7,8 @@
"CVE-2008-5766"
],
"details": "SQL injection vulnerability in download.php in Farsi Script Faupload 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-vwgx-w8wv-95f6/GHSA-vwgx-w8wv-95f6.json b/advisories/unreviewed/2022/05/GHSA-vwgx-w8wv-95f6/GHSA-vwgx-w8wv-95f6.json
index 3ea8031ffce..ac50744e7ea 100644
--- a/advisories/unreviewed/2022/05/GHSA-vwgx-w8wv-95f6/GHSA-vwgx-w8wv-95f6.json
+++ b/advisories/unreviewed/2022/05/GHSA-vwgx-w8wv-95f6/GHSA-vwgx-w8wv-95f6.json
@@ -7,12 +7,8 @@
"CVE-2008-5794"
],
"details": "Directory traversal vulnerability in system/admin/images.php in LoveCMS 1.6.2 Final allows remote attackers to delete arbitrary files via a .. (dot dot) in the delete parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-vx5h-4p6q-r7r2/GHSA-vx5h-4p6q-r7r2.json b/advisories/unreviewed/2022/05/GHSA-vx5h-4p6q-r7r2/GHSA-vx5h-4p6q-r7r2.json
index 8bc3b3a4bf3..d047ecc4483 100644
--- a/advisories/unreviewed/2022/05/GHSA-vx5h-4p6q-r7r2/GHSA-vx5h-4p6q-r7r2.json
+++ b/advisories/unreviewed/2022/05/GHSA-vx5h-4p6q-r7r2/GHSA-vx5h-4p6q-r7r2.json
@@ -7,12 +7,8 @@
"CVE-2008-5730"
],
"details": "Multiple CRLF injection vulnerabilities in AIST NetCat 3.12 and earlier allow remote attackers to have an unknown impact via unspecified vectors involving (1) a %0a sequence in a cookie and (2) the add.php file.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-vx82-3vmh-hc4q/GHSA-vx82-3vmh-hc4q.json b/advisories/unreviewed/2022/05/GHSA-vx82-3vmh-hc4q/GHSA-vx82-3vmh-hc4q.json
index 13670b7e4b0..439d097635c 100644
--- a/advisories/unreviewed/2022/05/GHSA-vx82-3vmh-hc4q/GHSA-vx82-3vmh-hc4q.json
+++ b/advisories/unreviewed/2022/05/GHSA-vx82-3vmh-hc4q/GHSA-vx82-3vmh-hc4q.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-w2cc-c38q-h9rw/GHSA-w2cc-c38q-h9rw.json b/advisories/unreviewed/2022/05/GHSA-w2cc-c38q-h9rw/GHSA-w2cc-c38q-h9rw.json
index 1f3fdb6ab40..58bdc80eada 100644
--- a/advisories/unreviewed/2022/05/GHSA-w2cc-c38q-h9rw/GHSA-w2cc-c38q-h9rw.json
+++ b/advisories/unreviewed/2022/05/GHSA-w2cc-c38q-h9rw/GHSA-w2cc-c38q-h9rw.json
@@ -7,12 +7,8 @@
"CVE-2008-5776"
],
"details": "Multiple directory traversal vulnerabilities in Aperto Blog 0.1.1 allow remote attackers to include and execute arbitrary local files via directory traversal sequences in the (1) action parameter to admin.php and the (2) get parameter to index.php. NOTE: in some environments, this can be leveraged for remote file inclusion by using a UNC share pathname or an ftp, ftps, or ssh2.sftp URL.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-w359-vg47-mc85/GHSA-w359-vg47-mc85.json b/advisories/unreviewed/2022/05/GHSA-w359-vg47-mc85/GHSA-w359-vg47-mc85.json
index c09eb3b1343..86d177ecdb1 100644
--- a/advisories/unreviewed/2022/05/GHSA-w359-vg47-mc85/GHSA-w359-vg47-mc85.json
+++ b/advisories/unreviewed/2022/05/GHSA-w359-vg47-mc85/GHSA-w359-vg47-mc85.json
@@ -7,12 +7,8 @@
"CVE-2008-5896"
],
"details": "CodeAvalanche RateMySite stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing the administrator password via a direct request for _private/CARateMySite.mdb. NOTE: some of these details are obtained from third party information.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-wg24-7m7r-fcx2/GHSA-wg24-7m7r-fcx2.json b/advisories/unreviewed/2022/05/GHSA-wg24-7m7r-fcx2/GHSA-wg24-7m7r-fcx2.json
index 05b06b4fae7..17b6522ab30 100644
--- a/advisories/unreviewed/2022/05/GHSA-wg24-7m7r-fcx2/GHSA-wg24-7m7r-fcx2.json
+++ b/advisories/unreviewed/2022/05/GHSA-wg24-7m7r-fcx2/GHSA-wg24-7m7r-fcx2.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-wmrm-c3j6-6rvh/GHSA-wmrm-c3j6-6rvh.json b/advisories/unreviewed/2022/05/GHSA-wmrm-c3j6-6rvh/GHSA-wmrm-c3j6-6rvh.json
index 304e2658b97..0861fdb5ea9 100644
--- a/advisories/unreviewed/2022/05/GHSA-wmrm-c3j6-6rvh/GHSA-wmrm-c3j6-6rvh.json
+++ b/advisories/unreviewed/2022/05/GHSA-wmrm-c3j6-6rvh/GHSA-wmrm-c3j6-6rvh.json
@@ -7,12 +7,8 @@
"CVE-2008-5742"
],
"details": "Multiple open redirect vulnerabilities in AIST NetCat 3.12 and earlier allow remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via (1) the redirect parameter in a logoff action to modules/auth/index.php or (2) the url parameter to modules/linkmanager/redirect.php. NOTE: this was reported within an \"HTTP Response Splitting\" section in the original disclosure.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-wp7g-v2c4-7pw5/GHSA-wp7g-v2c4-7pw5.json b/advisories/unreviewed/2022/05/GHSA-wp7g-v2c4-7pw5/GHSA-wp7g-v2c4-7pw5.json
index b0ae8065be0..2e3e3b79330 100644
--- a/advisories/unreviewed/2022/05/GHSA-wp7g-v2c4-7pw5/GHSA-wp7g-v2c4-7pw5.json
+++ b/advisories/unreviewed/2022/05/GHSA-wp7g-v2c4-7pw5/GHSA-wp7g-v2c4-7pw5.json
@@ -7,12 +7,8 @@
"CVE-2008-5900"
],
"details": "CodeAvalanche Articles stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing the administrator password via a direct request for _private/CAArticles.mdb. NOTE: some of these details are obtained from third party information.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-wp9v-5956-j972/GHSA-wp9v-5956-j972.json b/advisories/unreviewed/2022/05/GHSA-wp9v-5956-j972/GHSA-wp9v-5956-j972.json
index c6ae37960a0..dd03e07b5be 100644
--- a/advisories/unreviewed/2022/05/GHSA-wp9v-5956-j972/GHSA-wp9v-5956-j972.json
+++ b/advisories/unreviewed/2022/05/GHSA-wp9v-5956-j972/GHSA-wp9v-5956-j972.json
@@ -7,12 +7,8 @@
"CVE-2008-5762"
],
"details": "Simple Text-File Login Script (SiTeFiLo) 1.0.6 stores sensitive information under the web root with insufficient access control, which allows remote attackers to download the database file containing the password via a direct request for slog_users.txt.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -36,9 +32,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/05/GHSA-wqj8-465w-mxwg/GHSA-wqj8-465w-mxwg.json b/advisories/unreviewed/2022/05/GHSA-wqj8-465w-mxwg/GHSA-wqj8-465w-mxwg.json
index 7e9fe87ea30..68c8761d15d 100644
--- a/advisories/unreviewed/2022/05/GHSA-wqj8-465w-mxwg/GHSA-wqj8-465w-mxwg.json
+++ b/advisories/unreviewed/2022/05/GHSA-wqj8-465w-mxwg/GHSA-wqj8-465w-mxwg.json
@@ -7,12 +7,8 @@
"CVE-2008-5779"
],
"details": "SQL injection vulnerability in lpro.php in Free Links Directory Script (FLDS) 1.2a 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-wr8x-hwcx-gq4p/GHSA-wr8x-hwcx-gq4p.json b/advisories/unreviewed/2022/05/GHSA-wr8x-hwcx-gq4p/GHSA-wr8x-hwcx-gq4p.json
index 39beb92d8e2..00c8d3e9470 100644
--- a/advisories/unreviewed/2022/05/GHSA-wr8x-hwcx-gq4p/GHSA-wr8x-hwcx-gq4p.json
+++ b/advisories/unreviewed/2022/05/GHSA-wr8x-hwcx-gq4p/GHSA-wr8x-hwcx-gq4p.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-wvvf-rpmq-rjj7/GHSA-wvvf-rpmq-rjj7.json b/advisories/unreviewed/2022/05/GHSA-wvvf-rpmq-rjj7/GHSA-wvvf-rpmq-rjj7.json
index e3e85159d49..210de535042 100644
--- a/advisories/unreviewed/2022/05/GHSA-wvvf-rpmq-rjj7/GHSA-wvvf-rpmq-rjj7.json
+++ b/advisories/unreviewed/2022/05/GHSA-wvvf-rpmq-rjj7/GHSA-wvvf-rpmq-rjj7.json
@@ -7,12 +7,8 @@
"CVE-2008-5708"
],
"details": "redirect.php in SlimCMS 1.0.0 does not require authentication, which allows remote attackers to create administrative users by using the newusername and newpassword parameters and setting the newisadmin parameter to 1.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-wxxh-p7c3-p3xm/GHSA-wxxh-p7c3-p3xm.json b/advisories/unreviewed/2022/05/GHSA-wxxh-p7c3-p3xm/GHSA-wxxh-p7c3-p3xm.json
index 87ed9957fa0..c4122c16d38 100644
--- a/advisories/unreviewed/2022/05/GHSA-wxxh-p7c3-p3xm/GHSA-wxxh-p7c3-p3xm.json
+++ b/advisories/unreviewed/2022/05/GHSA-wxxh-p7c3-p3xm/GHSA-wxxh-p7c3-p3xm.json
@@ -7,12 +7,8 @@
"CVE-2008-5633"
],
"details": "SQL injection vulnerability in register.asp in ActiveVotes 2.2 allows remote attackers to execute arbitrary SQL commands via the (1) username and (2) password parameters, possibly related to start.asp. 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-x327-rhq4-2q5c/GHSA-x327-rhq4-2q5c.json b/advisories/unreviewed/2022/05/GHSA-x327-rhq4-2q5c/GHSA-x327-rhq4-2q5c.json
index 133d30d7939..933c91bd6a8 100644
--- a/advisories/unreviewed/2022/05/GHSA-x327-rhq4-2q5c/GHSA-x327-rhq4-2q5c.json
+++ b/advisories/unreviewed/2022/05/GHSA-x327-rhq4-2q5c/GHSA-x327-rhq4-2q5c.json
@@ -7,12 +7,8 @@
"CVE-2008-5761"
],
"details": "Multiple cross-site scripting (XSS) vulnerabilities in FlatnuX CMS (aka Flatnuke3) 2008-12-11 allow remote attackers to inject arbitrary web script or HTML via (1) the mod parameter to the default URI; (2) the foto parameter to photo.php in the 05_Foto module; or (3) the name parameter in an insertrecord action to index.php in the 08_Files module, as demonstrated by injection within a SRC attribute of an IFRAME element.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-x6h2-vr5p-2w5v/GHSA-x6h2-vr5p-2w5v.json b/advisories/unreviewed/2022/05/GHSA-x6h2-vr5p-2w5v/GHSA-x6h2-vr5p-2w5v.json
index 697d114c744..dab87f84394 100644
--- a/advisories/unreviewed/2022/05/GHSA-x6h2-vr5p-2w5v/GHSA-x6h2-vr5p-2w5v.json
+++ b/advisories/unreviewed/2022/05/GHSA-x6h2-vr5p-2w5v/GHSA-x6h2-vr5p-2w5v.json
@@ -7,12 +7,8 @@
"CVE-2008-5641"
],
"details": "SQL injection vulnerability in account.asp in Active Photo Gallery 6.2 allows remote attackers to execute arbitrary SQL commands via the (1) username and (2) password parameters.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-x6r6-328j-gcjv/GHSA-x6r6-328j-gcjv.json b/advisories/unreviewed/2022/05/GHSA-x6r6-328j-gcjv/GHSA-x6r6-328j-gcjv.json
index e606824efc6..59dea02256d 100644
--- a/advisories/unreviewed/2022/05/GHSA-x6r6-328j-gcjv/GHSA-x6r6-328j-gcjv.json
+++ b/advisories/unreviewed/2022/05/GHSA-x6r6-328j-gcjv/GHSA-x6r6-328j-gcjv.json
@@ -7,12 +7,8 @@
"CVE-2008-5817"
],
"details": "Multiple SQL injection vulnerabilities in index.php in Web Scribble Solutions webClassifieds 2005 allow remote attackers to execute arbitrary SQL commands via the (1) user and (2) password fields in a sign_in action.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-x9xx-q9fh-6gfv/GHSA-x9xx-q9fh-6gfv.json b/advisories/unreviewed/2022/05/GHSA-x9xx-q9fh-6gfv/GHSA-x9xx-q9fh-6gfv.json
index 9795665b962..142e2271827 100644
--- a/advisories/unreviewed/2022/05/GHSA-x9xx-q9fh-6gfv/GHSA-x9xx-q9fh-6gfv.json
+++ b/advisories/unreviewed/2022/05/GHSA-x9xx-q9fh-6gfv/GHSA-x9xx-q9fh-6gfv.json
@@ -7,12 +7,8 @@
"CVE-2008-5634"
],
"details": "SQL injection vulnerability in account.asp in Active Force Matrix 2.0 allows remote attackers to execute arbitrary SQL commands via the (1) username and (2) password parameters, possibly related to start.asp. 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-xgj7-vxrr-7g96/GHSA-xgj7-vxrr-7g96.json b/advisories/unreviewed/2022/05/GHSA-xgj7-vxrr-7g96/GHSA-xgj7-vxrr-7g96.json
index 9eca13edb05..0ca0ca25010 100644
--- a/advisories/unreviewed/2022/05/GHSA-xgj7-vxrr-7g96/GHSA-xgj7-vxrr-7g96.json
+++ b/advisories/unreviewed/2022/05/GHSA-xgj7-vxrr-7g96/GHSA-xgj7-vxrr-7g96.json
@@ -7,12 +7,8 @@
"CVE-2008-5632"
],
"details": "SQL injection vulnerability in Account.asp in Active Time Billing 3.2 allows remote attackers to execute arbitrary SQL commands via the (1) username and (2) password parameters, possibly related to start.asp. 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-xmj7-qjjh-43p3/GHSA-xmj7-qjjh-43p3.json b/advisories/unreviewed/2022/05/GHSA-xmj7-qjjh-43p3/GHSA-xmj7-qjjh-43p3.json
index 6df016ba269..e401ec27ec4 100644
--- a/advisories/unreviewed/2022/05/GHSA-xmj7-qjjh-43p3/GHSA-xmj7-qjjh-43p3.json
+++ b/advisories/unreviewed/2022/05/GHSA-xmj7-qjjh-43p3/GHSA-xmj7-qjjh-43p3.json
@@ -7,12 +7,8 @@
"CVE-2008-5875"
],
"details": "SQL injection vulnerability in the com_lowcosthotels component in the Hotel Booking Reservation System (aka HBS) for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a showhoteldetails action to index.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-xr8h-99r6-56hg/GHSA-xr8h-99r6-56hg.json b/advisories/unreviewed/2022/05/GHSA-xr8h-99r6-56hg/GHSA-xr8h-99r6-56hg.json
index 089ac909239..190ee1cc7b9 100644
--- a/advisories/unreviewed/2022/05/GHSA-xr8h-99r6-56hg/GHSA-xr8h-99r6-56hg.json
+++ b/advisories/unreviewed/2022/05/GHSA-xr8h-99r6-56hg/GHSA-xr8h-99r6-56hg.json
@@ -7,12 +7,8 @@
"CVE-2008-5851"
],
"details": "SQL injection vulnerability in index.php in My PHP Baseball Stats (MyPBS) allows remote attackers to execute arbitrary SQL commands via the seasonID parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-xv9r-263w-w6p9/GHSA-xv9r-263w-w6p9.json b/advisories/unreviewed/2022/05/GHSA-xv9r-263w-w6p9/GHSA-xv9r-263w-w6p9.json
index 891453185ca..206f877b435 100644
--- a/advisories/unreviewed/2022/05/GHSA-xv9r-263w-w6p9/GHSA-xv9r-263w-w6p9.json
+++ b/advisories/unreviewed/2022/05/GHSA-xv9r-263w-w6p9/GHSA-xv9r-263w-w6p9.json
@@ -7,12 +7,8 @@
"CVE-2008-5889"
],
"details": "Cross-site scripting (XSS) vulnerability in user.asp in Click&Rank allows remote attackers to inject arbitrary web script or HTML via the action parameter.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/05/GHSA-xwxp-rxpg-mg4w/GHSA-xwxp-rxpg-mg4w.json b/advisories/unreviewed/2022/05/GHSA-xwxp-rxpg-mg4w/GHSA-xwxp-rxpg-mg4w.json
index b43c4057e09..026a71b34b0 100644
--- a/advisories/unreviewed/2022/05/GHSA-xwxp-rxpg-mg4w/GHSA-xwxp-rxpg-mg4w.json
+++ b/advisories/unreviewed/2022/05/GHSA-xwxp-rxpg-mg4w/GHSA-xwxp-rxpg-mg4w.json
@@ -7,12 +7,8 @@
"CVE-2008-5864"
],
"details": "SQL injection vulnerability in the Top Hotel (com_tophotelmodule) component 1.0 in the Hotel Booking Reservation System (aka HBS) 1.0.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a showhoteldetails action to index.php.",
- "severity": [
-
- ],
- "affected": [
-
- ],
+ "severity": [],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/06/GHSA-cq67-chj5-8385/GHSA-cq67-chj5-8385.json b/advisories/unreviewed/2022/06/GHSA-cq67-chj5-8385/GHSA-cq67-chj5-8385.json
index 92cc4350de9..cc7abee261b 100644
--- a/advisories/unreviewed/2022/06/GHSA-cq67-chj5-8385/GHSA-cq67-chj5-8385.json
+++ b/advisories/unreviewed/2022/06/GHSA-cq67-chj5-8385/GHSA-cq67-chj5-8385.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/06/GHSA-m9r7-42xp-mhjp/GHSA-m9r7-42xp-mhjp.json b/advisories/unreviewed/2022/06/GHSA-m9r7-42xp-mhjp/GHSA-m9r7-42xp-mhjp.json
index 8485732a7be..310b6c66559 100644
--- a/advisories/unreviewed/2022/06/GHSA-m9r7-42xp-mhjp/GHSA-m9r7-42xp-mhjp.json
+++ b/advisories/unreviewed/2022/06/GHSA-m9r7-42xp-mhjp/GHSA-m9r7-42xp-mhjp.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/06/GHSA-rhqr-qpwj-fp49/GHSA-rhqr-qpwj-fp49.json b/advisories/unreviewed/2022/06/GHSA-rhqr-qpwj-fp49/GHSA-rhqr-qpwj-fp49.json
index 1a58d2764e2..72cab7a6011 100644
--- a/advisories/unreviewed/2022/06/GHSA-rhqr-qpwj-fp49/GHSA-rhqr-qpwj-fp49.json
+++ b/advisories/unreviewed/2022/06/GHSA-rhqr-qpwj-fp49/GHSA-rhqr-qpwj-fp49.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/07/GHSA-45w9-4pgf-x3fr/GHSA-45w9-4pgf-x3fr.json b/advisories/unreviewed/2022/07/GHSA-45w9-4pgf-x3fr/GHSA-45w9-4pgf-x3fr.json
index 05c36104db2..6e19e5abde9 100644
--- a/advisories/unreviewed/2022/07/GHSA-45w9-4pgf-x3fr/GHSA-45w9-4pgf-x3fr.json
+++ b/advisories/unreviewed/2022/07/GHSA-45w9-4pgf-x3fr/GHSA-45w9-4pgf-x3fr.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/07/GHSA-g33g-qhjr-v6fq/GHSA-g33g-qhjr-v6fq.json b/advisories/unreviewed/2022/07/GHSA-g33g-qhjr-v6fq/GHSA-g33g-qhjr-v6fq.json
index 871ebbc53a2..a1f67ce2796 100644
--- a/advisories/unreviewed/2022/07/GHSA-g33g-qhjr-v6fq/GHSA-g33g-qhjr-v6fq.json
+++ b/advisories/unreviewed/2022/07/GHSA-g33g-qhjr-v6fq/GHSA-g33g-qhjr-v6fq.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/07/GHSA-xx9f-xg2j-c647/GHSA-xx9f-xg2j-c647.json b/advisories/unreviewed/2022/07/GHSA-xx9f-xg2j-c647/GHSA-xx9f-xg2j-c647.json
index 1c26d5ab861..ffb6a7ce388 100644
--- a/advisories/unreviewed/2022/07/GHSA-xx9f-xg2j-c647/GHSA-xx9f-xg2j-c647.json
+++ b/advisories/unreviewed/2022/07/GHSA-xx9f-xg2j-c647/GHSA-xx9f-xg2j-c647.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/08/GHSA-22qw-643c-4mjg/GHSA-22qw-643c-4mjg.json b/advisories/unreviewed/2022/08/GHSA-22qw-643c-4mjg/GHSA-22qw-643c-4mjg.json
index 1c0699d3771..3f98ce9fe1d 100644
--- a/advisories/unreviewed/2022/08/GHSA-22qw-643c-4mjg/GHSA-22qw-643c-4mjg.json
+++ b/advisories/unreviewed/2022/08/GHSA-22qw-643c-4mjg/GHSA-22qw-643c-4mjg.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/08/GHSA-25r2-963f-gx8g/GHSA-25r2-963f-gx8g.json b/advisories/unreviewed/2022/08/GHSA-25r2-963f-gx8g/GHSA-25r2-963f-gx8g.json
index ab95059d3bd..3beeb32acb5 100644
--- a/advisories/unreviewed/2022/08/GHSA-25r2-963f-gx8g/GHSA-25r2-963f-gx8g.json
+++ b/advisories/unreviewed/2022/08/GHSA-25r2-963f-gx8g/GHSA-25r2-963f-gx8g.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-275c-wjvg-g854/GHSA-275c-wjvg-g854.json b/advisories/unreviewed/2022/08/GHSA-275c-wjvg-g854/GHSA-275c-wjvg-g854.json
index 748bf6b0a61..a116e081699 100644
--- a/advisories/unreviewed/2022/08/GHSA-275c-wjvg-g854/GHSA-275c-wjvg-g854.json
+++ b/advisories/unreviewed/2022/08/GHSA-275c-wjvg-g854/GHSA-275c-wjvg-g854.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/08/GHSA-29p5-chfq-8h6j/GHSA-29p5-chfq-8h6j.json b/advisories/unreviewed/2022/08/GHSA-29p5-chfq-8h6j/GHSA-29p5-chfq-8h6j.json
index 9674a90a548..da45b50f2f3 100644
--- a/advisories/unreviewed/2022/08/GHSA-29p5-chfq-8h6j/GHSA-29p5-chfq-8h6j.json
+++ b/advisories/unreviewed/2022/08/GHSA-29p5-chfq-8h6j/GHSA-29p5-chfq-8h6j.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-2g74-jphp-9qch/GHSA-2g74-jphp-9qch.json b/advisories/unreviewed/2022/08/GHSA-2g74-jphp-9qch/GHSA-2g74-jphp-9qch.json
index a689492b326..2f24b0c3360 100644
--- a/advisories/unreviewed/2022/08/GHSA-2g74-jphp-9qch/GHSA-2g74-jphp-9qch.json
+++ b/advisories/unreviewed/2022/08/GHSA-2g74-jphp-9qch/GHSA-2g74-jphp-9qch.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/08/GHSA-2q9q-pff8-pf57/GHSA-2q9q-pff8-pf57.json b/advisories/unreviewed/2022/08/GHSA-2q9q-pff8-pf57/GHSA-2q9q-pff8-pf57.json
index 42d7faedf12..e13327620ef 100644
--- a/advisories/unreviewed/2022/08/GHSA-2q9q-pff8-pf57/GHSA-2q9q-pff8-pf57.json
+++ b/advisories/unreviewed/2022/08/GHSA-2q9q-pff8-pf57/GHSA-2q9q-pff8-pf57.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-32x9-4hqf-vxmj/GHSA-32x9-4hqf-vxmj.json b/advisories/unreviewed/2022/08/GHSA-32x9-4hqf-vxmj/GHSA-32x9-4hqf-vxmj.json
index 13d7e22a1ca..c644da20f77 100644
--- a/advisories/unreviewed/2022/08/GHSA-32x9-4hqf-vxmj/GHSA-32x9-4hqf-vxmj.json
+++ b/advisories/unreviewed/2022/08/GHSA-32x9-4hqf-vxmj/GHSA-32x9-4hqf-vxmj.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-3745-7ch9-97fr/GHSA-3745-7ch9-97fr.json b/advisories/unreviewed/2022/08/GHSA-3745-7ch9-97fr/GHSA-3745-7ch9-97fr.json
index bced0020bd4..84ca224aa8f 100644
--- a/advisories/unreviewed/2022/08/GHSA-3745-7ch9-97fr/GHSA-3745-7ch9-97fr.json
+++ b/advisories/unreviewed/2022/08/GHSA-3745-7ch9-97fr/GHSA-3745-7ch9-97fr.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-379h-2h4c-f6gr/GHSA-379h-2h4c-f6gr.json b/advisories/unreviewed/2022/08/GHSA-379h-2h4c-f6gr/GHSA-379h-2h4c-f6gr.json
index a0b48b986b0..14380675084 100644
--- a/advisories/unreviewed/2022/08/GHSA-379h-2h4c-f6gr/GHSA-379h-2h4c-f6gr.json
+++ b/advisories/unreviewed/2022/08/GHSA-379h-2h4c-f6gr/GHSA-379h-2h4c-f6gr.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/08/GHSA-3h5g-rhxf-84j5/GHSA-3h5g-rhxf-84j5.json b/advisories/unreviewed/2022/08/GHSA-3h5g-rhxf-84j5/GHSA-3h5g-rhxf-84j5.json
index 0afaeb08c42..e2741da79f5 100644
--- a/advisories/unreviewed/2022/08/GHSA-3h5g-rhxf-84j5/GHSA-3h5g-rhxf-84j5.json
+++ b/advisories/unreviewed/2022/08/GHSA-3h5g-rhxf-84j5/GHSA-3h5g-rhxf-84j5.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-3hwv-x5p9-3h2h/GHSA-3hwv-x5p9-3h2h.json b/advisories/unreviewed/2022/08/GHSA-3hwv-x5p9-3h2h/GHSA-3hwv-x5p9-3h2h.json
index 1ab896b46b0..b96df7d0aa6 100644
--- a/advisories/unreviewed/2022/08/GHSA-3hwv-x5p9-3h2h/GHSA-3hwv-x5p9-3h2h.json
+++ b/advisories/unreviewed/2022/08/GHSA-3hwv-x5p9-3h2h/GHSA-3hwv-x5p9-3h2h.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-3jrr-28fg-vcxg/GHSA-3jrr-28fg-vcxg.json b/advisories/unreviewed/2022/08/GHSA-3jrr-28fg-vcxg/GHSA-3jrr-28fg-vcxg.json
index 88fb0162ff8..b8543d7bc62 100644
--- a/advisories/unreviewed/2022/08/GHSA-3jrr-28fg-vcxg/GHSA-3jrr-28fg-vcxg.json
+++ b/advisories/unreviewed/2022/08/GHSA-3jrr-28fg-vcxg/GHSA-3jrr-28fg-vcxg.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-3jvf-6wvh-pm32/GHSA-3jvf-6wvh-pm32.json b/advisories/unreviewed/2022/08/GHSA-3jvf-6wvh-pm32/GHSA-3jvf-6wvh-pm32.json
index a406c88a24f..871aaacdf89 100644
--- a/advisories/unreviewed/2022/08/GHSA-3jvf-6wvh-pm32/GHSA-3jvf-6wvh-pm32.json
+++ b/advisories/unreviewed/2022/08/GHSA-3jvf-6wvh-pm32/GHSA-3jvf-6wvh-pm32.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-3vg8-37g3-xjh9/GHSA-3vg8-37g3-xjh9.json b/advisories/unreviewed/2022/08/GHSA-3vg8-37g3-xjh9/GHSA-3vg8-37g3-xjh9.json
index 94b7acef349..011e4c20b0b 100644
--- a/advisories/unreviewed/2022/08/GHSA-3vg8-37g3-xjh9/GHSA-3vg8-37g3-xjh9.json
+++ b/advisories/unreviewed/2022/08/GHSA-3vg8-37g3-xjh9/GHSA-3vg8-37g3-xjh9.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-44rf-828c-2jp5/GHSA-44rf-828c-2jp5.json b/advisories/unreviewed/2022/08/GHSA-44rf-828c-2jp5/GHSA-44rf-828c-2jp5.json
index b4e9a0c68f1..80fcf699325 100644
--- a/advisories/unreviewed/2022/08/GHSA-44rf-828c-2jp5/GHSA-44rf-828c-2jp5.json
+++ b/advisories/unreviewed/2022/08/GHSA-44rf-828c-2jp5/GHSA-44rf-828c-2jp5.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:H/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/08/GHSA-45jv-368x-w5m8/GHSA-45jv-368x-w5m8.json b/advisories/unreviewed/2022/08/GHSA-45jv-368x-w5m8/GHSA-45jv-368x-w5m8.json
index 38cba49ae28..749ba5a6819 100644
--- a/advisories/unreviewed/2022/08/GHSA-45jv-368x-w5m8/GHSA-45jv-368x-w5m8.json
+++ b/advisories/unreviewed/2022/08/GHSA-45jv-368x-w5m8/GHSA-45jv-368x-w5m8.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/08/GHSA-47c6-4mjw-35wh/GHSA-47c6-4mjw-35wh.json b/advisories/unreviewed/2022/08/GHSA-47c6-4mjw-35wh/GHSA-47c6-4mjw-35wh.json
index a03546733d0..f6627bc6fd4 100644
--- a/advisories/unreviewed/2022/08/GHSA-47c6-4mjw-35wh/GHSA-47c6-4mjw-35wh.json
+++ b/advisories/unreviewed/2022/08/GHSA-47c6-4mjw-35wh/GHSA-47c6-4mjw-35wh.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/08/GHSA-48h9-6hv6-4qph/GHSA-48h9-6hv6-4qph.json b/advisories/unreviewed/2022/08/GHSA-48h9-6hv6-4qph/GHSA-48h9-6hv6-4qph.json
index f6d0fc8097d..4b78066bb61 100644
--- a/advisories/unreviewed/2022/08/GHSA-48h9-6hv6-4qph/GHSA-48h9-6hv6-4qph.json
+++ b/advisories/unreviewed/2022/08/GHSA-48h9-6hv6-4qph/GHSA-48h9-6hv6-4qph.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-4983-fxgx-8x3j/GHSA-4983-fxgx-8x3j.json b/advisories/unreviewed/2022/08/GHSA-4983-fxgx-8x3j/GHSA-4983-fxgx-8x3j.json
index 6478df5e587..82c366646cb 100644
--- a/advisories/unreviewed/2022/08/GHSA-4983-fxgx-8x3j/GHSA-4983-fxgx-8x3j.json
+++ b/advisories/unreviewed/2022/08/GHSA-4983-fxgx-8x3j/GHSA-4983-fxgx-8x3j.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/08/GHSA-4jwm-hxmq-3463/GHSA-4jwm-hxmq-3463.json b/advisories/unreviewed/2022/08/GHSA-4jwm-hxmq-3463/GHSA-4jwm-hxmq-3463.json
index b77322eafc3..c9c7c44e98f 100644
--- a/advisories/unreviewed/2022/08/GHSA-4jwm-hxmq-3463/GHSA-4jwm-hxmq-3463.json
+++ b/advisories/unreviewed/2022/08/GHSA-4jwm-hxmq-3463/GHSA-4jwm-hxmq-3463.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/08/GHSA-4m5r-pmx8-v22v/GHSA-4m5r-pmx8-v22v.json b/advisories/unreviewed/2022/08/GHSA-4m5r-pmx8-v22v/GHSA-4m5r-pmx8-v22v.json
index 5834186e356..ad0525203f2 100644
--- a/advisories/unreviewed/2022/08/GHSA-4m5r-pmx8-v22v/GHSA-4m5r-pmx8-v22v.json
+++ b/advisories/unreviewed/2022/08/GHSA-4m5r-pmx8-v22v/GHSA-4m5r-pmx8-v22v.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/08/GHSA-4x87-pf2v-xm33/GHSA-4x87-pf2v-xm33.json b/advisories/unreviewed/2022/08/GHSA-4x87-pf2v-xm33/GHSA-4x87-pf2v-xm33.json
index d103cd936ed..05a5e201c20 100644
--- a/advisories/unreviewed/2022/08/GHSA-4x87-pf2v-xm33/GHSA-4x87-pf2v-xm33.json
+++ b/advisories/unreviewed/2022/08/GHSA-4x87-pf2v-xm33/GHSA-4x87-pf2v-xm33.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-5cgc-v55q-gqqc/GHSA-5cgc-v55q-gqqc.json b/advisories/unreviewed/2022/08/GHSA-5cgc-v55q-gqqc/GHSA-5cgc-v55q-gqqc.json
index 9081d83deae..011145edee9 100644
--- a/advisories/unreviewed/2022/08/GHSA-5cgc-v55q-gqqc/GHSA-5cgc-v55q-gqqc.json
+++ b/advisories/unreviewed/2022/08/GHSA-5cgc-v55q-gqqc/GHSA-5cgc-v55q-gqqc.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/08/GHSA-5f4x-4qq5-67fx/GHSA-5f4x-4qq5-67fx.json b/advisories/unreviewed/2022/08/GHSA-5f4x-4qq5-67fx/GHSA-5f4x-4qq5-67fx.json
index 75a548d0c2b..1fa81b40b1f 100644
--- a/advisories/unreviewed/2022/08/GHSA-5f4x-4qq5-67fx/GHSA-5f4x-4qq5-67fx.json
+++ b/advisories/unreviewed/2022/08/GHSA-5f4x-4qq5-67fx/GHSA-5f4x-4qq5-67fx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-5g33-j8wg-cw73/GHSA-5g33-j8wg-cw73.json b/advisories/unreviewed/2022/08/GHSA-5g33-j8wg-cw73/GHSA-5g33-j8wg-cw73.json
index da16bb5e9cb..1b6636b3bd4 100644
--- a/advisories/unreviewed/2022/08/GHSA-5g33-j8wg-cw73/GHSA-5g33-j8wg-cw73.json
+++ b/advisories/unreviewed/2022/08/GHSA-5g33-j8wg-cw73/GHSA-5g33-j8wg-cw73.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-65cm-pjh5-p57v/GHSA-65cm-pjh5-p57v.json b/advisories/unreviewed/2022/08/GHSA-65cm-pjh5-p57v/GHSA-65cm-pjh5-p57v.json
index 689b845b794..1ffd56d30b3 100644
--- a/advisories/unreviewed/2022/08/GHSA-65cm-pjh5-p57v/GHSA-65cm-pjh5-p57v.json
+++ b/advisories/unreviewed/2022/08/GHSA-65cm-pjh5-p57v/GHSA-65cm-pjh5-p57v.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-65w4-3m8r-grwj/GHSA-65w4-3m8r-grwj.json b/advisories/unreviewed/2022/08/GHSA-65w4-3m8r-grwj/GHSA-65w4-3m8r-grwj.json
index 2de11400622..d6233dd4427 100644
--- a/advisories/unreviewed/2022/08/GHSA-65w4-3m8r-grwj/GHSA-65w4-3m8r-grwj.json
+++ b/advisories/unreviewed/2022/08/GHSA-65w4-3m8r-grwj/GHSA-65w4-3m8r-grwj.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/08/GHSA-66w3-x75f-pxr2/GHSA-66w3-x75f-pxr2.json b/advisories/unreviewed/2022/08/GHSA-66w3-x75f-pxr2/GHSA-66w3-x75f-pxr2.json
index 5ee053204c2..b5fb27c87a2 100644
--- a/advisories/unreviewed/2022/08/GHSA-66w3-x75f-pxr2/GHSA-66w3-x75f-pxr2.json
+++ b/advisories/unreviewed/2022/08/GHSA-66w3-x75f-pxr2/GHSA-66w3-x75f-pxr2.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-6r4c-273j-37ff/GHSA-6r4c-273j-37ff.json b/advisories/unreviewed/2022/08/GHSA-6r4c-273j-37ff/GHSA-6r4c-273j-37ff.json
index 49c91547262..60d69d6fa0a 100644
--- a/advisories/unreviewed/2022/08/GHSA-6r4c-273j-37ff/GHSA-6r4c-273j-37ff.json
+++ b/advisories/unreviewed/2022/08/GHSA-6r4c-273j-37ff/GHSA-6r4c-273j-37ff.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",
@@ -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/08/GHSA-6v7c-83f3-78cr/GHSA-6v7c-83f3-78cr.json b/advisories/unreviewed/2022/08/GHSA-6v7c-83f3-78cr/GHSA-6v7c-83f3-78cr.json
index 0c61beef029..dde8415136a 100644
--- a/advisories/unreviewed/2022/08/GHSA-6v7c-83f3-78cr/GHSA-6v7c-83f3-78cr.json
+++ b/advisories/unreviewed/2022/08/GHSA-6v7c-83f3-78cr/GHSA-6v7c-83f3-78cr.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/08/GHSA-727v-vqm5-hv9w/GHSA-727v-vqm5-hv9w.json b/advisories/unreviewed/2022/08/GHSA-727v-vqm5-hv9w/GHSA-727v-vqm5-hv9w.json
index 19e9687d6a0..58aee1170af 100644
--- a/advisories/unreviewed/2022/08/GHSA-727v-vqm5-hv9w/GHSA-727v-vqm5-hv9w.json
+++ b/advisories/unreviewed/2022/08/GHSA-727v-vqm5-hv9w/GHSA-727v-vqm5-hv9w.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/08/GHSA-7644-j7jq-m5v9/GHSA-7644-j7jq-m5v9.json b/advisories/unreviewed/2022/08/GHSA-7644-j7jq-m5v9/GHSA-7644-j7jq-m5v9.json
index b316e0f96c0..94f7427a6ef 100644
--- a/advisories/unreviewed/2022/08/GHSA-7644-j7jq-m5v9/GHSA-7644-j7jq-m5v9.json
+++ b/advisories/unreviewed/2022/08/GHSA-7644-j7jq-m5v9/GHSA-7644-j7jq-m5v9.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-7cx8-44fw-pww4/GHSA-7cx8-44fw-pww4.json b/advisories/unreviewed/2022/08/GHSA-7cx8-44fw-pww4/GHSA-7cx8-44fw-pww4.json
index e1627864105..487b31f8362 100644
--- a/advisories/unreviewed/2022/08/GHSA-7cx8-44fw-pww4/GHSA-7cx8-44fw-pww4.json
+++ b/advisories/unreviewed/2022/08/GHSA-7cx8-44fw-pww4/GHSA-7cx8-44fw-pww4.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-7hmp-cwqj-4q3h/GHSA-7hmp-cwqj-4q3h.json b/advisories/unreviewed/2022/08/GHSA-7hmp-cwqj-4q3h/GHSA-7hmp-cwqj-4q3h.json
index 9762878e0c6..62dbe7e3307 100644
--- a/advisories/unreviewed/2022/08/GHSA-7hmp-cwqj-4q3h/GHSA-7hmp-cwqj-4q3h.json
+++ b/advisories/unreviewed/2022/08/GHSA-7hmp-cwqj-4q3h/GHSA-7hmp-cwqj-4q3h.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-7v8j-xhm2-676r/GHSA-7v8j-xhm2-676r.json b/advisories/unreviewed/2022/08/GHSA-7v8j-xhm2-676r/GHSA-7v8j-xhm2-676r.json
index 0078d02e088..ac875ee1369 100644
--- a/advisories/unreviewed/2022/08/GHSA-7v8j-xhm2-676r/GHSA-7v8j-xhm2-676r.json
+++ b/advisories/unreviewed/2022/08/GHSA-7v8j-xhm2-676r/GHSA-7v8j-xhm2-676r.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-89mq-5fqm-7w3m/GHSA-89mq-5fqm-7w3m.json b/advisories/unreviewed/2022/08/GHSA-89mq-5fqm-7w3m/GHSA-89mq-5fqm-7w3m.json
index f67af2d678a..9c206dfba6b 100644
--- a/advisories/unreviewed/2022/08/GHSA-89mq-5fqm-7w3m/GHSA-89mq-5fqm-7w3m.json
+++ b/advisories/unreviewed/2022/08/GHSA-89mq-5fqm-7w3m/GHSA-89mq-5fqm-7w3m.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/08/GHSA-8f2g-vrjv-j68r/GHSA-8f2g-vrjv-j68r.json b/advisories/unreviewed/2022/08/GHSA-8f2g-vrjv-j68r/GHSA-8f2g-vrjv-j68r.json
index f6e13a9ed1b..07cb8e46407 100644
--- a/advisories/unreviewed/2022/08/GHSA-8f2g-vrjv-j68r/GHSA-8f2g-vrjv-j68r.json
+++ b/advisories/unreviewed/2022/08/GHSA-8f2g-vrjv-j68r/GHSA-8f2g-vrjv-j68r.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -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/08/GHSA-8g45-4cc8-cgmh/GHSA-8g45-4cc8-cgmh.json b/advisories/unreviewed/2022/08/GHSA-8g45-4cc8-cgmh/GHSA-8g45-4cc8-cgmh.json
index af3887e7016..8c086ca1f6f 100644
--- a/advisories/unreviewed/2022/08/GHSA-8g45-4cc8-cgmh/GHSA-8g45-4cc8-cgmh.json
+++ b/advisories/unreviewed/2022/08/GHSA-8g45-4cc8-cgmh/GHSA-8g45-4cc8-cgmh.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/08/GHSA-8q5m-233q-4cpc/GHSA-8q5m-233q-4cpc.json b/advisories/unreviewed/2022/08/GHSA-8q5m-233q-4cpc/GHSA-8q5m-233q-4cpc.json
index e2e070b4a99..c918e52d925 100644
--- a/advisories/unreviewed/2022/08/GHSA-8q5m-233q-4cpc/GHSA-8q5m-233q-4cpc.json
+++ b/advisories/unreviewed/2022/08/GHSA-8q5m-233q-4cpc/GHSA-8q5m-233q-4cpc.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/08/GHSA-9mv4-wx25-qqc9/GHSA-9mv4-wx25-qqc9.json b/advisories/unreviewed/2022/08/GHSA-9mv4-wx25-qqc9/GHSA-9mv4-wx25-qqc9.json
index 265f689527a..1ad88e43655 100644
--- a/advisories/unreviewed/2022/08/GHSA-9mv4-wx25-qqc9/GHSA-9mv4-wx25-qqc9.json
+++ b/advisories/unreviewed/2022/08/GHSA-9mv4-wx25-qqc9/GHSA-9mv4-wx25-qqc9.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/08/GHSA-9rv6-g3wr-cxfw/GHSA-9rv6-g3wr-cxfw.json b/advisories/unreviewed/2022/08/GHSA-9rv6-g3wr-cxfw/GHSA-9rv6-g3wr-cxfw.json
index 685c823a7f3..0763d23ad84 100644
--- a/advisories/unreviewed/2022/08/GHSA-9rv6-g3wr-cxfw/GHSA-9rv6-g3wr-cxfw.json
+++ b/advisories/unreviewed/2022/08/GHSA-9rv6-g3wr-cxfw/GHSA-9rv6-g3wr-cxfw.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-c2cv-w83f-92x6/GHSA-c2cv-w83f-92x6.json b/advisories/unreviewed/2022/08/GHSA-c2cv-w83f-92x6/GHSA-c2cv-w83f-92x6.json
index 66fe53d7a9e..4b23ac0fe0c 100644
--- a/advisories/unreviewed/2022/08/GHSA-c2cv-w83f-92x6/GHSA-c2cv-w83f-92x6.json
+++ b/advisories/unreviewed/2022/08/GHSA-c2cv-w83f-92x6/GHSA-c2cv-w83f-92x6.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/08/GHSA-c4w7-8364-jh9r/GHSA-c4w7-8364-jh9r.json b/advisories/unreviewed/2022/08/GHSA-c4w7-8364-jh9r/GHSA-c4w7-8364-jh9r.json
index 8862f4b6289..d4dab51ca8c 100644
--- a/advisories/unreviewed/2022/08/GHSA-c4w7-8364-jh9r/GHSA-c4w7-8364-jh9r.json
+++ b/advisories/unreviewed/2022/08/GHSA-c4w7-8364-jh9r/GHSA-c4w7-8364-jh9r.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/08/GHSA-c59m-xfxc-m38p/GHSA-c59m-xfxc-m38p.json b/advisories/unreviewed/2022/08/GHSA-c59m-xfxc-m38p/GHSA-c59m-xfxc-m38p.json
index 3a316e050be..4c77a2755d4 100644
--- a/advisories/unreviewed/2022/08/GHSA-c59m-xfxc-m38p/GHSA-c59m-xfxc-m38p.json
+++ b/advisories/unreviewed/2022/08/GHSA-c59m-xfxc-m38p/GHSA-c59m-xfxc-m38p.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-c6vf-j64c-727f/GHSA-c6vf-j64c-727f.json b/advisories/unreviewed/2022/08/GHSA-c6vf-j64c-727f/GHSA-c6vf-j64c-727f.json
index 2c64b93092f..c033e1e19f1 100644
--- a/advisories/unreviewed/2022/08/GHSA-c6vf-j64c-727f/GHSA-c6vf-j64c-727f.json
+++ b/advisories/unreviewed/2022/08/GHSA-c6vf-j64c-727f/GHSA-c6vf-j64c-727f.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/08/GHSA-fcff-4g79-6vxv/GHSA-fcff-4g79-6vxv.json b/advisories/unreviewed/2022/08/GHSA-fcff-4g79-6vxv/GHSA-fcff-4g79-6vxv.json
index 40f62f15de6..74ab2888365 100644
--- a/advisories/unreviewed/2022/08/GHSA-fcff-4g79-6vxv/GHSA-fcff-4g79-6vxv.json
+++ b/advisories/unreviewed/2022/08/GHSA-fcff-4g79-6vxv/GHSA-fcff-4g79-6vxv.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/08/GHSA-fq9q-7wp8-gpr7/GHSA-fq9q-7wp8-gpr7.json b/advisories/unreviewed/2022/08/GHSA-fq9q-7wp8-gpr7/GHSA-fq9q-7wp8-gpr7.json
index 4b4507dd902..605351b1d75 100644
--- a/advisories/unreviewed/2022/08/GHSA-fq9q-7wp8-gpr7/GHSA-fq9q-7wp8-gpr7.json
+++ b/advisories/unreviewed/2022/08/GHSA-fq9q-7wp8-gpr7/GHSA-fq9q-7wp8-gpr7.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-g8gm-623r-j63p/GHSA-g8gm-623r-j63p.json b/advisories/unreviewed/2022/08/GHSA-g8gm-623r-j63p/GHSA-g8gm-623r-j63p.json
index d779ba67cb3..4b9c6ad240d 100644
--- a/advisories/unreviewed/2022/08/GHSA-g8gm-623r-j63p/GHSA-g8gm-623r-j63p.json
+++ b/advisories/unreviewed/2022/08/GHSA-g8gm-623r-j63p/GHSA-g8gm-623r-j63p.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/08/GHSA-g9m5-gh55-83cg/GHSA-g9m5-gh55-83cg.json b/advisories/unreviewed/2022/08/GHSA-g9m5-gh55-83cg/GHSA-g9m5-gh55-83cg.json
index 21f30d972b3..5b70e48fdcd 100644
--- a/advisories/unreviewed/2022/08/GHSA-g9m5-gh55-83cg/GHSA-g9m5-gh55-83cg.json
+++ b/advisories/unreviewed/2022/08/GHSA-g9m5-gh55-83cg/GHSA-g9m5-gh55-83cg.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-gc9v-66vr-w74v/GHSA-gc9v-66vr-w74v.json b/advisories/unreviewed/2022/08/GHSA-gc9v-66vr-w74v/GHSA-gc9v-66vr-w74v.json
index 21bda4007b0..54783febd43 100644
--- a/advisories/unreviewed/2022/08/GHSA-gc9v-66vr-w74v/GHSA-gc9v-66vr-w74v.json
+++ b/advisories/unreviewed/2022/08/GHSA-gc9v-66vr-w74v/GHSA-gc9v-66vr-w74v.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/08/GHSA-ggv4-gh8g-hp7p/GHSA-ggv4-gh8g-hp7p.json b/advisories/unreviewed/2022/08/GHSA-ggv4-gh8g-hp7p/GHSA-ggv4-gh8g-hp7p.json
index 97368f6b1fc..48f1828a064 100644
--- a/advisories/unreviewed/2022/08/GHSA-ggv4-gh8g-hp7p/GHSA-ggv4-gh8g-hp7p.json
+++ b/advisories/unreviewed/2022/08/GHSA-ggv4-gh8g-hp7p/GHSA-ggv4-gh8g-hp7p.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/08/GHSA-gqmq-qc32-77h6/GHSA-gqmq-qc32-77h6.json b/advisories/unreviewed/2022/08/GHSA-gqmq-qc32-77h6/GHSA-gqmq-qc32-77h6.json
index c115806027b..29a5498efcf 100644
--- a/advisories/unreviewed/2022/08/GHSA-gqmq-qc32-77h6/GHSA-gqmq-qc32-77h6.json
+++ b/advisories/unreviewed/2022/08/GHSA-gqmq-qc32-77h6/GHSA-gqmq-qc32-77h6.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-hmc2-jvqh-rgq5/GHSA-hmc2-jvqh-rgq5.json b/advisories/unreviewed/2022/08/GHSA-hmc2-jvqh-rgq5/GHSA-hmc2-jvqh-rgq5.json
index 3062ccf4580..a42f8624821 100644
--- a/advisories/unreviewed/2022/08/GHSA-hmc2-jvqh-rgq5/GHSA-hmc2-jvqh-rgq5.json
+++ b/advisories/unreviewed/2022/08/GHSA-hmc2-jvqh-rgq5/GHSA-hmc2-jvqh-rgq5.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-jc7q-x9r6-vfvf/GHSA-jc7q-x9r6-vfvf.json b/advisories/unreviewed/2022/08/GHSA-jc7q-x9r6-vfvf/GHSA-jc7q-x9r6-vfvf.json
index 6e3830188cd..d629843dea8 100644
--- a/advisories/unreviewed/2022/08/GHSA-jc7q-x9r6-vfvf/GHSA-jc7q-x9r6-vfvf.json
+++ b/advisories/unreviewed/2022/08/GHSA-jc7q-x9r6-vfvf/GHSA-jc7q-x9r6-vfvf.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:H/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-jmgx-h3ph-4gpf/GHSA-jmgx-h3ph-4gpf.json b/advisories/unreviewed/2022/08/GHSA-jmgx-h3ph-4gpf/GHSA-jmgx-h3ph-4gpf.json
index ad44b49dabe..9ea26af7a91 100644
--- a/advisories/unreviewed/2022/08/GHSA-jmgx-h3ph-4gpf/GHSA-jmgx-h3ph-4gpf.json
+++ b/advisories/unreviewed/2022/08/GHSA-jmgx-h3ph-4gpf/GHSA-jmgx-h3ph-4gpf.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/08/GHSA-jxx4-58j9-4g57/GHSA-jxx4-58j9-4g57.json b/advisories/unreviewed/2022/08/GHSA-jxx4-58j9-4g57/GHSA-jxx4-58j9-4g57.json
index 3a7fda813e7..b2f08ccd67c 100644
--- a/advisories/unreviewed/2022/08/GHSA-jxx4-58j9-4g57/GHSA-jxx4-58j9-4g57.json
+++ b/advisories/unreviewed/2022/08/GHSA-jxx4-58j9-4g57/GHSA-jxx4-58j9-4g57.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-m23h-q673-4jcq/GHSA-m23h-q673-4jcq.json b/advisories/unreviewed/2022/08/GHSA-m23h-q673-4jcq/GHSA-m23h-q673-4jcq.json
index 05c2759a86b..c83d6cad08b 100644
--- a/advisories/unreviewed/2022/08/GHSA-m23h-q673-4jcq/GHSA-m23h-q673-4jcq.json
+++ b/advisories/unreviewed/2022/08/GHSA-m23h-q673-4jcq/GHSA-m23h-q673-4jcq.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/08/GHSA-m3xh-3j9j-x6h5/GHSA-m3xh-3j9j-x6h5.json b/advisories/unreviewed/2022/08/GHSA-m3xh-3j9j-x6h5/GHSA-m3xh-3j9j-x6h5.json
index 4c5e2c27df4..3ce51c6e2b3 100644
--- a/advisories/unreviewed/2022/08/GHSA-m3xh-3j9j-x6h5/GHSA-m3xh-3j9j-x6h5.json
+++ b/advisories/unreviewed/2022/08/GHSA-m3xh-3j9j-x6h5/GHSA-m3xh-3j9j-x6h5.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/08/GHSA-m4fj-98pf-qj75/GHSA-m4fj-98pf-qj75.json b/advisories/unreviewed/2022/08/GHSA-m4fj-98pf-qj75/GHSA-m4fj-98pf-qj75.json
index fbb1aed5ee0..223bedfdec1 100644
--- a/advisories/unreviewed/2022/08/GHSA-m4fj-98pf-qj75/GHSA-m4fj-98pf-qj75.json
+++ b/advisories/unreviewed/2022/08/GHSA-m4fj-98pf-qj75/GHSA-m4fj-98pf-qj75.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-m5qm-mh2p-v9h5/GHSA-m5qm-mh2p-v9h5.json b/advisories/unreviewed/2022/08/GHSA-m5qm-mh2p-v9h5/GHSA-m5qm-mh2p-v9h5.json
index 6d17c3b8915..05db24a9d24 100644
--- a/advisories/unreviewed/2022/08/GHSA-m5qm-mh2p-v9h5/GHSA-m5qm-mh2p-v9h5.json
+++ b/advisories/unreviewed/2022/08/GHSA-m5qm-mh2p-v9h5/GHSA-m5qm-mh2p-v9h5.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-m6gg-4mpp-4pm5/GHSA-m6gg-4mpp-4pm5.json b/advisories/unreviewed/2022/08/GHSA-m6gg-4mpp-4pm5/GHSA-m6gg-4mpp-4pm5.json
index 0a89f17352b..317987820bf 100644
--- a/advisories/unreviewed/2022/08/GHSA-m6gg-4mpp-4pm5/GHSA-m6gg-4mpp-4pm5.json
+++ b/advisories/unreviewed/2022/08/GHSA-m6gg-4mpp-4pm5/GHSA-m6gg-4mpp-4pm5.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/08/GHSA-m7c9-5c5m-jq4q/GHSA-m7c9-5c5m-jq4q.json b/advisories/unreviewed/2022/08/GHSA-m7c9-5c5m-jq4q/GHSA-m7c9-5c5m-jq4q.json
index bc0ecfcf11c..756f4b3c714 100644
--- a/advisories/unreviewed/2022/08/GHSA-m7c9-5c5m-jq4q/GHSA-m7c9-5c5m-jq4q.json
+++ b/advisories/unreviewed/2022/08/GHSA-m7c9-5c5m-jq4q/GHSA-m7c9-5c5m-jq4q.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/08/GHSA-mg69-v2mv-3r9r/GHSA-mg69-v2mv-3r9r.json b/advisories/unreviewed/2022/08/GHSA-mg69-v2mv-3r9r/GHSA-mg69-v2mv-3r9r.json
index 04a2889c9f8..c2bbab60f37 100644
--- a/advisories/unreviewed/2022/08/GHSA-mg69-v2mv-3r9r/GHSA-mg69-v2mv-3r9r.json
+++ b/advisories/unreviewed/2022/08/GHSA-mg69-v2mv-3r9r/GHSA-mg69-v2mv-3r9r.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/08/GHSA-mpcj-458x-32j9/GHSA-mpcj-458x-32j9.json b/advisories/unreviewed/2022/08/GHSA-mpcj-458x-32j9/GHSA-mpcj-458x-32j9.json
index d6c76194853..74f40a5dac0 100644
--- a/advisories/unreviewed/2022/08/GHSA-mpcj-458x-32j9/GHSA-mpcj-458x-32j9.json
+++ b/advisories/unreviewed/2022/08/GHSA-mpcj-458x-32j9/GHSA-mpcj-458x-32j9.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-p5gm-5mcg-gjxp/GHSA-p5gm-5mcg-gjxp.json b/advisories/unreviewed/2022/08/GHSA-p5gm-5mcg-gjxp/GHSA-p5gm-5mcg-gjxp.json
index a5c4ffc7ea2..4427d11109b 100644
--- a/advisories/unreviewed/2022/08/GHSA-p5gm-5mcg-gjxp/GHSA-p5gm-5mcg-gjxp.json
+++ b/advisories/unreviewed/2022/08/GHSA-p5gm-5mcg-gjxp/GHSA-p5gm-5mcg-gjxp.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-pc2c-q8pm-5wm4/GHSA-pc2c-q8pm-5wm4.json b/advisories/unreviewed/2022/08/GHSA-pc2c-q8pm-5wm4/GHSA-pc2c-q8pm-5wm4.json
index 9f571652b61..348cd6513af 100644
--- a/advisories/unreviewed/2022/08/GHSA-pc2c-q8pm-5wm4/GHSA-pc2c-q8pm-5wm4.json
+++ b/advisories/unreviewed/2022/08/GHSA-pc2c-q8pm-5wm4/GHSA-pc2c-q8pm-5wm4.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/08/GHSA-pcc3-px7r-r8pf/GHSA-pcc3-px7r-r8pf.json b/advisories/unreviewed/2022/08/GHSA-pcc3-px7r-r8pf/GHSA-pcc3-px7r-r8pf.json
index 8bac025ec7c..7e2c2599fc9 100644
--- a/advisories/unreviewed/2022/08/GHSA-pcc3-px7r-r8pf/GHSA-pcc3-px7r-r8pf.json
+++ b/advisories/unreviewed/2022/08/GHSA-pcc3-px7r-r8pf/GHSA-pcc3-px7r-r8pf.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/08/GHSA-pm6h-2vpw-rhhg/GHSA-pm6h-2vpw-rhhg.json b/advisories/unreviewed/2022/08/GHSA-pm6h-2vpw-rhhg/GHSA-pm6h-2vpw-rhhg.json
index 5b639c8aab8..eceb94a43ba 100644
--- a/advisories/unreviewed/2022/08/GHSA-pm6h-2vpw-rhhg/GHSA-pm6h-2vpw-rhhg.json
+++ b/advisories/unreviewed/2022/08/GHSA-pm6h-2vpw-rhhg/GHSA-pm6h-2vpw-rhhg.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/08/GHSA-pr4w-5j3v-gj63/GHSA-pr4w-5j3v-gj63.json b/advisories/unreviewed/2022/08/GHSA-pr4w-5j3v-gj63/GHSA-pr4w-5j3v-gj63.json
index 6667c63c702..a59ecd36b2d 100644
--- a/advisories/unreviewed/2022/08/GHSA-pr4w-5j3v-gj63/GHSA-pr4w-5j3v-gj63.json
+++ b/advisories/unreviewed/2022/08/GHSA-pr4w-5j3v-gj63/GHSA-pr4w-5j3v-gj63.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",
@@ -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/08/GHSA-pxmq-mrfp-h4m4/GHSA-pxmq-mrfp-h4m4.json b/advisories/unreviewed/2022/08/GHSA-pxmq-mrfp-h4m4/GHSA-pxmq-mrfp-h4m4.json
index 40a6606c700..eb9372a02b5 100644
--- a/advisories/unreviewed/2022/08/GHSA-pxmq-mrfp-h4m4/GHSA-pxmq-mrfp-h4m4.json
+++ b/advisories/unreviewed/2022/08/GHSA-pxmq-mrfp-h4m4/GHSA-pxmq-mrfp-h4m4.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/08/GHSA-q3ch-h2m7-6mff/GHSA-q3ch-h2m7-6mff.json b/advisories/unreviewed/2022/08/GHSA-q3ch-h2m7-6mff/GHSA-q3ch-h2m7-6mff.json
index da26f1cf62e..20cd7e336a3 100644
--- a/advisories/unreviewed/2022/08/GHSA-q3ch-h2m7-6mff/GHSA-q3ch-h2m7-6mff.json
+++ b/advisories/unreviewed/2022/08/GHSA-q3ch-h2m7-6mff/GHSA-q3ch-h2m7-6mff.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:P/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": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-q9gm-4xgw-gmjq/GHSA-q9gm-4xgw-gmjq.json b/advisories/unreviewed/2022/08/GHSA-q9gm-4xgw-gmjq/GHSA-q9gm-4xgw-gmjq.json
index a79bad6dd1b..c65bb6258d2 100644
--- a/advisories/unreviewed/2022/08/GHSA-q9gm-4xgw-gmjq/GHSA-q9gm-4xgw-gmjq.json
+++ b/advisories/unreviewed/2022/08/GHSA-q9gm-4xgw-gmjq/GHSA-q9gm-4xgw-gmjq.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/08/GHSA-qjvg-8pjv-whmc/GHSA-qjvg-8pjv-whmc.json b/advisories/unreviewed/2022/08/GHSA-qjvg-8pjv-whmc/GHSA-qjvg-8pjv-whmc.json
index 5efbfe03255..1afa488872d 100644
--- a/advisories/unreviewed/2022/08/GHSA-qjvg-8pjv-whmc/GHSA-qjvg-8pjv-whmc.json
+++ b/advisories/unreviewed/2022/08/GHSA-qjvg-8pjv-whmc/GHSA-qjvg-8pjv-whmc.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-rcf7-88xj-wgjc/GHSA-rcf7-88xj-wgjc.json b/advisories/unreviewed/2022/08/GHSA-rcf7-88xj-wgjc/GHSA-rcf7-88xj-wgjc.json
index 6bd6cdd1e0f..0986586061a 100644
--- a/advisories/unreviewed/2022/08/GHSA-rcf7-88xj-wgjc/GHSA-rcf7-88xj-wgjc.json
+++ b/advisories/unreviewed/2022/08/GHSA-rcf7-88xj-wgjc/GHSA-rcf7-88xj-wgjc.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-rhv9-xhjc-3chf/GHSA-rhv9-xhjc-3chf.json b/advisories/unreviewed/2022/08/GHSA-rhv9-xhjc-3chf/GHSA-rhv9-xhjc-3chf.json
index 7147316f85a..75b794c742e 100644
--- a/advisories/unreviewed/2022/08/GHSA-rhv9-xhjc-3chf/GHSA-rhv9-xhjc-3chf.json
+++ b/advisories/unreviewed/2022/08/GHSA-rhv9-xhjc-3chf/GHSA-rhv9-xhjc-3chf.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/08/GHSA-rrxw-6cxg-833x/GHSA-rrxw-6cxg-833x.json b/advisories/unreviewed/2022/08/GHSA-rrxw-6cxg-833x/GHSA-rrxw-6cxg-833x.json
index 2ad98867d02..42f4bced9e9 100644
--- a/advisories/unreviewed/2022/08/GHSA-rrxw-6cxg-833x/GHSA-rrxw-6cxg-833x.json
+++ b/advisories/unreviewed/2022/08/GHSA-rrxw-6cxg-833x/GHSA-rrxw-6cxg-833x.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-v27m-7953-qppq/GHSA-v27m-7953-qppq.json b/advisories/unreviewed/2022/08/GHSA-v27m-7953-qppq/GHSA-v27m-7953-qppq.json
index d3cbae99428..889ad61cd44 100644
--- a/advisories/unreviewed/2022/08/GHSA-v27m-7953-qppq/GHSA-v27m-7953-qppq.json
+++ b/advisories/unreviewed/2022/08/GHSA-v27m-7953-qppq/GHSA-v27m-7953-qppq.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/08/GHSA-v3rv-q539-p6m8/GHSA-v3rv-q539-p6m8.json b/advisories/unreviewed/2022/08/GHSA-v3rv-q539-p6m8/GHSA-v3rv-q539-p6m8.json
index 723fd2a1060..4af97dbdad5 100644
--- a/advisories/unreviewed/2022/08/GHSA-v3rv-q539-p6m8/GHSA-v3rv-q539-p6m8.json
+++ b/advisories/unreviewed/2022/08/GHSA-v3rv-q539-p6m8/GHSA-v3rv-q539-p6m8.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-v5m3-2xh7-34xq/GHSA-v5m3-2xh7-34xq.json b/advisories/unreviewed/2022/08/GHSA-v5m3-2xh7-34xq/GHSA-v5m3-2xh7-34xq.json
index 940c3c29abd..daf7539b7d3 100644
--- a/advisories/unreviewed/2022/08/GHSA-v5m3-2xh7-34xq/GHSA-v5m3-2xh7-34xq.json
+++ b/advisories/unreviewed/2022/08/GHSA-v5m3-2xh7-34xq/GHSA-v5m3-2xh7-34xq.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/08/GHSA-v6w4-vf63-mfp4/GHSA-v6w4-vf63-mfp4.json b/advisories/unreviewed/2022/08/GHSA-v6w4-vf63-mfp4/GHSA-v6w4-vf63-mfp4.json
index b39ce887fbb..f96005b7eef 100644
--- a/advisories/unreviewed/2022/08/GHSA-v6w4-vf63-mfp4/GHSA-v6w4-vf63-mfp4.json
+++ b/advisories/unreviewed/2022/08/GHSA-v6w4-vf63-mfp4/GHSA-v6w4-vf63-mfp4.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/08/GHSA-vq2h-cpgf-cp92/GHSA-vq2h-cpgf-cp92.json b/advisories/unreviewed/2022/08/GHSA-vq2h-cpgf-cp92/GHSA-vq2h-cpgf-cp92.json
index 3d2148de679..e19b80fbc6a 100644
--- a/advisories/unreviewed/2022/08/GHSA-vq2h-cpgf-cp92/GHSA-vq2h-cpgf-cp92.json
+++ b/advisories/unreviewed/2022/08/GHSA-vq2h-cpgf-cp92/GHSA-vq2h-cpgf-cp92.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",
@@ -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/08/GHSA-vqvw-xj95-wcp4/GHSA-vqvw-xj95-wcp4.json b/advisories/unreviewed/2022/08/GHSA-vqvw-xj95-wcp4/GHSA-vqvw-xj95-wcp4.json
index e0987f6f97c..dbb54aa5ab8 100644
--- a/advisories/unreviewed/2022/08/GHSA-vqvw-xj95-wcp4/GHSA-vqvw-xj95-wcp4.json
+++ b/advisories/unreviewed/2022/08/GHSA-vqvw-xj95-wcp4/GHSA-vqvw-xj95-wcp4.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/08/GHSA-vwvj-x4j4-77x5/GHSA-vwvj-x4j4-77x5.json b/advisories/unreviewed/2022/08/GHSA-vwvj-x4j4-77x5/GHSA-vwvj-x4j4-77x5.json
index a289a966798..e81777c6b5d 100644
--- a/advisories/unreviewed/2022/08/GHSA-vwvj-x4j4-77x5/GHSA-vwvj-x4j4-77x5.json
+++ b/advisories/unreviewed/2022/08/GHSA-vwvj-x4j4-77x5/GHSA-vwvj-x4j4-77x5.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/08/GHSA-w6mm-7v83-jgpv/GHSA-w6mm-7v83-jgpv.json b/advisories/unreviewed/2022/08/GHSA-w6mm-7v83-jgpv/GHSA-w6mm-7v83-jgpv.json
index b351f8dd7f2..fd4eb1ff4ad 100644
--- a/advisories/unreviewed/2022/08/GHSA-w6mm-7v83-jgpv/GHSA-w6mm-7v83-jgpv.json
+++ b/advisories/unreviewed/2022/08/GHSA-w6mm-7v83-jgpv/GHSA-w6mm-7v83-jgpv.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-whpg-cvgx-j44f/GHSA-whpg-cvgx-j44f.json b/advisories/unreviewed/2022/08/GHSA-whpg-cvgx-j44f/GHSA-whpg-cvgx-j44f.json
index 96bcbe3bb41..32c92ffb387 100644
--- a/advisories/unreviewed/2022/08/GHSA-whpg-cvgx-j44f/GHSA-whpg-cvgx-j44f.json
+++ b/advisories/unreviewed/2022/08/GHSA-whpg-cvgx-j44f/GHSA-whpg-cvgx-j44f.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/08/GHSA-wvvj-xvx9-p6v7/GHSA-wvvj-xvx9-p6v7.json b/advisories/unreviewed/2022/08/GHSA-wvvj-xvx9-p6v7/GHSA-wvvj-xvx9-p6v7.json
index 5dc5a69227a..643233a78f8 100644
--- a/advisories/unreviewed/2022/08/GHSA-wvvj-xvx9-p6v7/GHSA-wvvj-xvx9-p6v7.json
+++ b/advisories/unreviewed/2022/08/GHSA-wvvj-xvx9-p6v7/GHSA-wvvj-xvx9-p6v7.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/08/GHSA-xwcm-q6m6-465v/GHSA-xwcm-q6m6-465v.json b/advisories/unreviewed/2022/08/GHSA-xwcm-q6m6-465v/GHSA-xwcm-q6m6-465v.json
index 4bef2fb2d90..8c37f1bb312 100644
--- a/advisories/unreviewed/2022/08/GHSA-xwcm-q6m6-465v/GHSA-xwcm-q6m6-465v.json
+++ b/advisories/unreviewed/2022/08/GHSA-xwcm-q6m6-465v/GHSA-xwcm-q6m6-465v.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/09/GHSA-3f3c-74mp-823m/GHSA-3f3c-74mp-823m.json b/advisories/unreviewed/2022/09/GHSA-3f3c-74mp-823m/GHSA-3f3c-74mp-823m.json
index ac60250a1d6..b0cb4dd51c9 100644
--- a/advisories/unreviewed/2022/09/GHSA-3f3c-74mp-823m/GHSA-3f3c-74mp-823m.json
+++ b/advisories/unreviewed/2022/09/GHSA-3f3c-74mp-823m/GHSA-3f3c-74mp-823m.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/09/GHSA-8qr4-5p8p-5524/GHSA-8qr4-5p8p-5524.json b/advisories/unreviewed/2022/09/GHSA-8qr4-5p8p-5524/GHSA-8qr4-5p8p-5524.json
index 89aad69f01e..c1811f7ee5d 100644
--- a/advisories/unreviewed/2022/09/GHSA-8qr4-5p8p-5524/GHSA-8qr4-5p8p-5524.json
+++ b/advisories/unreviewed/2022/09/GHSA-8qr4-5p8p-5524/GHSA-8qr4-5p8p-5524.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/09/GHSA-xgw2-h7jv-85pm/GHSA-xgw2-h7jv-85pm.json b/advisories/unreviewed/2022/09/GHSA-xgw2-h7jv-85pm/GHSA-xgw2-h7jv-85pm.json
index ed4ca5c2597..abce97d43b7 100644
--- a/advisories/unreviewed/2022/09/GHSA-xgw2-h7jv-85pm/GHSA-xgw2-h7jv-85pm.json
+++ b/advisories/unreviewed/2022/09/GHSA-xgw2-h7jv-85pm/GHSA-xgw2-h7jv-85pm.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/10/GHSA-2h8w-grhw-cqcr/GHSA-2h8w-grhw-cqcr.json b/advisories/unreviewed/2022/10/GHSA-2h8w-grhw-cqcr/GHSA-2h8w-grhw-cqcr.json
index ba49c314638..f1d042d7891 100644
--- a/advisories/unreviewed/2022/10/GHSA-2h8w-grhw-cqcr/GHSA-2h8w-grhw-cqcr.json
+++ b/advisories/unreviewed/2022/10/GHSA-2h8w-grhw-cqcr/GHSA-2h8w-grhw-cqcr.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/10/GHSA-4ghh-j426-rf97/GHSA-4ghh-j426-rf97.json b/advisories/unreviewed/2022/10/GHSA-4ghh-j426-rf97/GHSA-4ghh-j426-rf97.json
index 3adc4671ba8..dc30bb3ba58 100644
--- a/advisories/unreviewed/2022/10/GHSA-4ghh-j426-rf97/GHSA-4ghh-j426-rf97.json
+++ b/advisories/unreviewed/2022/10/GHSA-4ghh-j426-rf97/GHSA-4ghh-j426-rf97.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/10/GHSA-5239-v43c-m59r/GHSA-5239-v43c-m59r.json b/advisories/unreviewed/2022/10/GHSA-5239-v43c-m59r/GHSA-5239-v43c-m59r.json
index 6fd4b74514f..fbeb1806b46 100644
--- a/advisories/unreviewed/2022/10/GHSA-5239-v43c-m59r/GHSA-5239-v43c-m59r.json
+++ b/advisories/unreviewed/2022/10/GHSA-5239-v43c-m59r/GHSA-5239-v43c-m59r.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/10/GHSA-7479-jvwq-rgf3/GHSA-7479-jvwq-rgf3.json b/advisories/unreviewed/2022/10/GHSA-7479-jvwq-rgf3/GHSA-7479-jvwq-rgf3.json
index 8e606739fb0..ce87a821767 100644
--- a/advisories/unreviewed/2022/10/GHSA-7479-jvwq-rgf3/GHSA-7479-jvwq-rgf3.json
+++ b/advisories/unreviewed/2022/10/GHSA-7479-jvwq-rgf3/GHSA-7479-jvwq-rgf3.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/10/GHSA-7mf9-h5cr-xm8v/GHSA-7mf9-h5cr-xm8v.json b/advisories/unreviewed/2022/10/GHSA-7mf9-h5cr-xm8v/GHSA-7mf9-h5cr-xm8v.json
index f84fed5e344..98bdc040b47 100644
--- a/advisories/unreviewed/2022/10/GHSA-7mf9-h5cr-xm8v/GHSA-7mf9-h5cr-xm8v.json
+++ b/advisories/unreviewed/2022/10/GHSA-7mf9-h5cr-xm8v/GHSA-7mf9-h5cr-xm8v.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/10/GHSA-953g-4f76-943p/GHSA-953g-4f76-943p.json b/advisories/unreviewed/2022/10/GHSA-953g-4f76-943p/GHSA-953g-4f76-943p.json
index 604644b4fc9..a05999dc290 100644
--- a/advisories/unreviewed/2022/10/GHSA-953g-4f76-943p/GHSA-953g-4f76-943p.json
+++ b/advisories/unreviewed/2022/10/GHSA-953g-4f76-943p/GHSA-953g-4f76-943p.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/10/GHSA-gqh7-2v33-8jc4/GHSA-gqh7-2v33-8jc4.json b/advisories/unreviewed/2022/10/GHSA-gqh7-2v33-8jc4/GHSA-gqh7-2v33-8jc4.json
index ef364a9db16..61b2796d31a 100644
--- a/advisories/unreviewed/2022/10/GHSA-gqh7-2v33-8jc4/GHSA-gqh7-2v33-8jc4.json
+++ b/advisories/unreviewed/2022/10/GHSA-gqh7-2v33-8jc4/GHSA-gqh7-2v33-8jc4.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/10/GHSA-jjg3-p48q-c3cw/GHSA-jjg3-p48q-c3cw.json b/advisories/unreviewed/2022/10/GHSA-jjg3-p48q-c3cw/GHSA-jjg3-p48q-c3cw.json
index d5437edab7f..976bde971a3 100644
--- a/advisories/unreviewed/2022/10/GHSA-jjg3-p48q-c3cw/GHSA-jjg3-p48q-c3cw.json
+++ b/advisories/unreviewed/2022/10/GHSA-jjg3-p48q-c3cw/GHSA-jjg3-p48q-c3cw.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/10/GHSA-jpvx-hr4h-p665/GHSA-jpvx-hr4h-p665.json b/advisories/unreviewed/2022/10/GHSA-jpvx-hr4h-p665/GHSA-jpvx-hr4h-p665.json
index 6349c9867ba..f587f85b898 100644
--- a/advisories/unreviewed/2022/10/GHSA-jpvx-hr4h-p665/GHSA-jpvx-hr4h-p665.json
+++ b/advisories/unreviewed/2022/10/GHSA-jpvx-hr4h-p665/GHSA-jpvx-hr4h-p665.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/10/GHSA-qm6r-3jcr-p3fm/GHSA-qm6r-3jcr-p3fm.json b/advisories/unreviewed/2022/10/GHSA-qm6r-3jcr-p3fm/GHSA-qm6r-3jcr-p3fm.json
index d21e1a1dced..fc1e08f380b 100644
--- a/advisories/unreviewed/2022/10/GHSA-qm6r-3jcr-p3fm/GHSA-qm6r-3jcr-p3fm.json
+++ b/advisories/unreviewed/2022/10/GHSA-qm6r-3jcr-p3fm/GHSA-qm6r-3jcr-p3fm.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/10/GHSA-r8mh-6h4v-v5rm/GHSA-r8mh-6h4v-v5rm.json b/advisories/unreviewed/2022/10/GHSA-r8mh-6h4v-v5rm/GHSA-r8mh-6h4v-v5rm.json
index 44d37f9c930..e7bdb8af7d9 100644
--- a/advisories/unreviewed/2022/10/GHSA-r8mh-6h4v-v5rm/GHSA-r8mh-6h4v-v5rm.json
+++ b/advisories/unreviewed/2022/10/GHSA-r8mh-6h4v-v5rm/GHSA-r8mh-6h4v-v5rm.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/10/GHSA-rvm4-785h-hr73/GHSA-rvm4-785h-hr73.json b/advisories/unreviewed/2022/10/GHSA-rvm4-785h-hr73/GHSA-rvm4-785h-hr73.json
index 7c053d616f1..99e79e3a1ba 100644
--- a/advisories/unreviewed/2022/10/GHSA-rvm4-785h-hr73/GHSA-rvm4-785h-hr73.json
+++ b/advisories/unreviewed/2022/10/GHSA-rvm4-785h-hr73/GHSA-rvm4-785h-hr73.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/10/GHSA-vpcq-88fj-8776/GHSA-vpcq-88fj-8776.json b/advisories/unreviewed/2022/10/GHSA-vpcq-88fj-8776/GHSA-vpcq-88fj-8776.json
index ea31360a7b3..03e4b3c52a4 100644
--- a/advisories/unreviewed/2022/10/GHSA-vpcq-88fj-8776/GHSA-vpcq-88fj-8776.json
+++ b/advisories/unreviewed/2022/10/GHSA-vpcq-88fj-8776/GHSA-vpcq-88fj-8776.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/10/GHSA-w4pf-496r-gp7q/GHSA-w4pf-496r-gp7q.json b/advisories/unreviewed/2022/10/GHSA-w4pf-496r-gp7q/GHSA-w4pf-496r-gp7q.json
index 61a2c95872e..d286d9a0c33 100644
--- a/advisories/unreviewed/2022/10/GHSA-w4pf-496r-gp7q/GHSA-w4pf-496r-gp7q.json
+++ b/advisories/unreviewed/2022/10/GHSA-w4pf-496r-gp7q/GHSA-w4pf-496r-gp7q.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/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/10/GHSA-whxf-92hp-qfgc/GHSA-whxf-92hp-qfgc.json b/advisories/unreviewed/2022/10/GHSA-whxf-92hp-qfgc/GHSA-whxf-92hp-qfgc.json
index 43b1a16874c..ac2e45bb0b3 100644
--- a/advisories/unreviewed/2022/10/GHSA-whxf-92hp-qfgc/GHSA-whxf-92hp-qfgc.json
+++ b/advisories/unreviewed/2022/10/GHSA-whxf-92hp-qfgc/GHSA-whxf-92hp-qfgc.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-2pp5-7m97-7f6x/GHSA-2pp5-7m97-7f6x.json b/advisories/unreviewed/2022/11/GHSA-2pp5-7m97-7f6x/GHSA-2pp5-7m97-7f6x.json
index 85b5af2f556..969b2557605 100644
--- a/advisories/unreviewed/2022/11/GHSA-2pp5-7m97-7f6x/GHSA-2pp5-7m97-7f6x.json
+++ b/advisories/unreviewed/2022/11/GHSA-2pp5-7m97-7f6x/GHSA-2pp5-7m97-7f6x.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-3f2r-h473-hqjx/GHSA-3f2r-h473-hqjx.json b/advisories/unreviewed/2022/11/GHSA-3f2r-h473-hqjx/GHSA-3f2r-h473-hqjx.json
index 470921d1354..00873fb9219 100644
--- a/advisories/unreviewed/2022/11/GHSA-3f2r-h473-hqjx/GHSA-3f2r-h473-hqjx.json
+++ b/advisories/unreviewed/2022/11/GHSA-3f2r-h473-hqjx/GHSA-3f2r-h473-hqjx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-4r9w-2v2j-x44v/GHSA-4r9w-2v2j-x44v.json b/advisories/unreviewed/2022/11/GHSA-4r9w-2v2j-x44v/GHSA-4r9w-2v2j-x44v.json
index 6e23ca7034a..41d2162b1d6 100644
--- a/advisories/unreviewed/2022/11/GHSA-4r9w-2v2j-x44v/GHSA-4r9w-2v2j-x44v.json
+++ b/advisories/unreviewed/2022/11/GHSA-4r9w-2v2j-x44v/GHSA-4r9w-2v2j-x44v.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-54jx-89rf-xgf4/GHSA-54jx-89rf-xgf4.json b/advisories/unreviewed/2022/11/GHSA-54jx-89rf-xgf4/GHSA-54jx-89rf-xgf4.json
index e62682be8e6..84fa5c57c9d 100644
--- a/advisories/unreviewed/2022/11/GHSA-54jx-89rf-xgf4/GHSA-54jx-89rf-xgf4.json
+++ b/advisories/unreviewed/2022/11/GHSA-54jx-89rf-xgf4/GHSA-54jx-89rf-xgf4.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/11/GHSA-5h3p-5xx6-mh88/GHSA-5h3p-5xx6-mh88.json b/advisories/unreviewed/2022/11/GHSA-5h3p-5xx6-mh88/GHSA-5h3p-5xx6-mh88.json
index d1f1277be7d..39088ddf8c0 100644
--- a/advisories/unreviewed/2022/11/GHSA-5h3p-5xx6-mh88/GHSA-5h3p-5xx6-mh88.json
+++ b/advisories/unreviewed/2022/11/GHSA-5h3p-5xx6-mh88/GHSA-5h3p-5xx6-mh88.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",
@@ -31,9 +29,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/11/GHSA-5hhh-hc74-c79r/GHSA-5hhh-hc74-c79r.json b/advisories/unreviewed/2022/11/GHSA-5hhh-hc74-c79r/GHSA-5hhh-hc74-c79r.json
index c13183359b0..b596fe6f8b9 100644
--- a/advisories/unreviewed/2022/11/GHSA-5hhh-hc74-c79r/GHSA-5hhh-hc74-c79r.json
+++ b/advisories/unreviewed/2022/11/GHSA-5hhh-hc74-c79r/GHSA-5hhh-hc74-c79r.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/11/GHSA-5x9q-p83x-cp4w/GHSA-5x9q-p83x-cp4w.json b/advisories/unreviewed/2022/11/GHSA-5x9q-p83x-cp4w/GHSA-5x9q-p83x-cp4w.json
index 546bf11c389..ab8756e8ae6 100644
--- a/advisories/unreviewed/2022/11/GHSA-5x9q-p83x-cp4w/GHSA-5x9q-p83x-cp4w.json
+++ b/advisories/unreviewed/2022/11/GHSA-5x9q-p83x-cp4w/GHSA-5x9q-p83x-cp4w.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",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/11/GHSA-6f4x-cvj9-6q6j/GHSA-6f4x-cvj9-6q6j.json b/advisories/unreviewed/2022/11/GHSA-6f4x-cvj9-6q6j/GHSA-6f4x-cvj9-6q6j.json
index 9c66775fc31..4aed8e5af3a 100644
--- a/advisories/unreviewed/2022/11/GHSA-6f4x-cvj9-6q6j/GHSA-6f4x-cvj9-6q6j.json
+++ b/advisories/unreviewed/2022/11/GHSA-6f4x-cvj9-6q6j/GHSA-6f4x-cvj9-6q6j.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-6jrf-5qcg-qcqx/GHSA-6jrf-5qcg-qcqx.json b/advisories/unreviewed/2022/11/GHSA-6jrf-5qcg-qcqx/GHSA-6jrf-5qcg-qcqx.json
index 400942f693f..e13748b6b84 100644
--- a/advisories/unreviewed/2022/11/GHSA-6jrf-5qcg-qcqx/GHSA-6jrf-5qcg-qcqx.json
+++ b/advisories/unreviewed/2022/11/GHSA-6jrf-5qcg-qcqx/GHSA-6jrf-5qcg-qcqx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-75mr-4jcm-6rrg/GHSA-75mr-4jcm-6rrg.json b/advisories/unreviewed/2022/11/GHSA-75mr-4jcm-6rrg/GHSA-75mr-4jcm-6rrg.json
index 8e7e8f83380..b737a5729b0 100644
--- a/advisories/unreviewed/2022/11/GHSA-75mr-4jcm-6rrg/GHSA-75mr-4jcm-6rrg.json
+++ b/advisories/unreviewed/2022/11/GHSA-75mr-4jcm-6rrg/GHSA-75mr-4jcm-6rrg.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-88wh-qc3q-cp9g/GHSA-88wh-qc3q-cp9g.json b/advisories/unreviewed/2022/11/GHSA-88wh-qc3q-cp9g/GHSA-88wh-qc3q-cp9g.json
index f8f81e3c320..e44e7debd0e 100644
--- a/advisories/unreviewed/2022/11/GHSA-88wh-qc3q-cp9g/GHSA-88wh-qc3q-cp9g.json
+++ b/advisories/unreviewed/2022/11/GHSA-88wh-qc3q-cp9g/GHSA-88wh-qc3q-cp9g.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/11/GHSA-8g29-4rmw-qr86/GHSA-8g29-4rmw-qr86.json b/advisories/unreviewed/2022/11/GHSA-8g29-4rmw-qr86/GHSA-8g29-4rmw-qr86.json
index 7779a9c29e9..660c6252767 100644
--- a/advisories/unreviewed/2022/11/GHSA-8g29-4rmw-qr86/GHSA-8g29-4rmw-qr86.json
+++ b/advisories/unreviewed/2022/11/GHSA-8g29-4rmw-qr86/GHSA-8g29-4rmw-qr86.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-8qj2-8fh7-7fpj/GHSA-8qj2-8fh7-7fpj.json b/advisories/unreviewed/2022/11/GHSA-8qj2-8fh7-7fpj/GHSA-8qj2-8fh7-7fpj.json
index 50137f99f29..d0fac2e8b4e 100644
--- a/advisories/unreviewed/2022/11/GHSA-8qj2-8fh7-7fpj/GHSA-8qj2-8fh7-7fpj.json
+++ b/advisories/unreviewed/2022/11/GHSA-8qj2-8fh7-7fpj/GHSA-8qj2-8fh7-7fpj.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-9hp4-vwrv-6cw7/GHSA-9hp4-vwrv-6cw7.json b/advisories/unreviewed/2022/11/GHSA-9hp4-vwrv-6cw7/GHSA-9hp4-vwrv-6cw7.json
index dee1336178a..dc9cf2d36fd 100644
--- a/advisories/unreviewed/2022/11/GHSA-9hp4-vwrv-6cw7/GHSA-9hp4-vwrv-6cw7.json
+++ b/advisories/unreviewed/2022/11/GHSA-9hp4-vwrv-6cw7/GHSA-9hp4-vwrv-6cw7.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/11/GHSA-c524-q7r6-h3vj/GHSA-c524-q7r6-h3vj.json b/advisories/unreviewed/2022/11/GHSA-c524-q7r6-h3vj/GHSA-c524-q7r6-h3vj.json
index 71b47a2cd73..fced176e06b 100644
--- a/advisories/unreviewed/2022/11/GHSA-c524-q7r6-h3vj/GHSA-c524-q7r6-h3vj.json
+++ b/advisories/unreviewed/2022/11/GHSA-c524-q7r6-h3vj/GHSA-c524-q7r6-h3vj.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-c744-gxrc-9rh4/GHSA-c744-gxrc-9rh4.json b/advisories/unreviewed/2022/11/GHSA-c744-gxrc-9rh4/GHSA-c744-gxrc-9rh4.json
index 4427b809a5f..72f654f357d 100644
--- a/advisories/unreviewed/2022/11/GHSA-c744-gxrc-9rh4/GHSA-c744-gxrc-9rh4.json
+++ b/advisories/unreviewed/2022/11/GHSA-c744-gxrc-9rh4/GHSA-c744-gxrc-9rh4.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/11/GHSA-cf67-5fv6-2x7c/GHSA-cf67-5fv6-2x7c.json b/advisories/unreviewed/2022/11/GHSA-cf67-5fv6-2x7c/GHSA-cf67-5fv6-2x7c.json
index 7a52e93fb96..25da7843f22 100644
--- a/advisories/unreviewed/2022/11/GHSA-cf67-5fv6-2x7c/GHSA-cf67-5fv6-2x7c.json
+++ b/advisories/unreviewed/2022/11/GHSA-cf67-5fv6-2x7c/GHSA-cf67-5fv6-2x7c.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "HIGH",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2022/11/GHSA-g234-c6c3-7mx9/GHSA-g234-c6c3-7mx9.json b/advisories/unreviewed/2022/11/GHSA-g234-c6c3-7mx9/GHSA-g234-c6c3-7mx9.json
index fda7ee14730..35ae5329b1f 100644
--- a/advisories/unreviewed/2022/11/GHSA-g234-c6c3-7mx9/GHSA-g234-c6c3-7mx9.json
+++ b/advisories/unreviewed/2022/11/GHSA-g234-c6c3-7mx9/GHSA-g234-c6c3-7mx9.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-g34g-w2hh-7ghj/GHSA-g34g-w2hh-7ghj.json b/advisories/unreviewed/2022/11/GHSA-g34g-w2hh-7ghj/GHSA-g34g-w2hh-7ghj.json
index 3b5401612c2..66cb5d3ee12 100644
--- a/advisories/unreviewed/2022/11/GHSA-g34g-w2hh-7ghj/GHSA-g34g-w2hh-7ghj.json
+++ b/advisories/unreviewed/2022/11/GHSA-g34g-w2hh-7ghj/GHSA-g34g-w2hh-7ghj.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-ph2x-jpwc-wrxq/GHSA-ph2x-jpwc-wrxq.json b/advisories/unreviewed/2022/11/GHSA-ph2x-jpwc-wrxq/GHSA-ph2x-jpwc-wrxq.json
index 9054773418d..a8d2bc22333 100644
--- a/advisories/unreviewed/2022/11/GHSA-ph2x-jpwc-wrxq/GHSA-ph2x-jpwc-wrxq.json
+++ b/advisories/unreviewed/2022/11/GHSA-ph2x-jpwc-wrxq/GHSA-ph2x-jpwc-wrxq.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-phgf-827r-fv8x/GHSA-phgf-827r-fv8x.json b/advisories/unreviewed/2022/11/GHSA-phgf-827r-fv8x/GHSA-phgf-827r-fv8x.json
index 18c84ebad22..449049c4c49 100644
--- a/advisories/unreviewed/2022/11/GHSA-phgf-827r-fv8x/GHSA-phgf-827r-fv8x.json
+++ b/advisories/unreviewed/2022/11/GHSA-phgf-827r-fv8x/GHSA-phgf-827r-fv8x.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/11/GHSA-rx2f-pj28-88g5/GHSA-rx2f-pj28-88g5.json b/advisories/unreviewed/2022/11/GHSA-rx2f-pj28-88g5/GHSA-rx2f-pj28-88g5.json
index 9a4bbaedc2f..01f618a2f69 100644
--- a/advisories/unreviewed/2022/11/GHSA-rx2f-pj28-88g5/GHSA-rx2f-pj28-88g5.json
+++ b/advisories/unreviewed/2022/11/GHSA-rx2f-pj28-88g5/GHSA-rx2f-pj28-88g5.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-x372-9xvw-hg7r/GHSA-x372-9xvw-hg7r.json b/advisories/unreviewed/2022/11/GHSA-x372-9xvw-hg7r/GHSA-x372-9xvw-hg7r.json
index a72d12759ab..a71aab73790 100644
--- a/advisories/unreviewed/2022/11/GHSA-x372-9xvw-hg7r/GHSA-x372-9xvw-hg7r.json
+++ b/advisories/unreviewed/2022/11/GHSA-x372-9xvw-hg7r/GHSA-x372-9xvw-hg7r.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/11/GHSA-x7j5-2qjw-2rrx/GHSA-x7j5-2qjw-2rrx.json b/advisories/unreviewed/2022/11/GHSA-x7j5-2qjw-2rrx/GHSA-x7j5-2qjw-2rrx.json
index f6cac9a04fa..b2c2a45a3bd 100644
--- a/advisories/unreviewed/2022/11/GHSA-x7j5-2qjw-2rrx/GHSA-x7j5-2qjw-2rrx.json
+++ b/advisories/unreviewed/2022/11/GHSA-x7j5-2qjw-2rrx/GHSA-x7j5-2qjw-2rrx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2022/12/GHSA-4mxg-39wc-hw87/GHSA-4mxg-39wc-hw87.json b/advisories/unreviewed/2022/12/GHSA-4mxg-39wc-hw87/GHSA-4mxg-39wc-hw87.json
index 11e205433b8..27ecfdc0ea7 100644
--- a/advisories/unreviewed/2022/12/GHSA-4mxg-39wc-hw87/GHSA-4mxg-39wc-hw87.json
+++ b/advisories/unreviewed/2022/12/GHSA-4mxg-39wc-hw87/GHSA-4mxg-39wc-hw87.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/12/GHSA-4q43-phw7-hf98/GHSA-4q43-phw7-hf98.json b/advisories/unreviewed/2022/12/GHSA-4q43-phw7-hf98/GHSA-4q43-phw7-hf98.json
index 7cd692fae6d..0f7f0773027 100644
--- a/advisories/unreviewed/2022/12/GHSA-4q43-phw7-hf98/GHSA-4q43-phw7-hf98.json
+++ b/advisories/unreviewed/2022/12/GHSA-4q43-phw7-hf98/GHSA-4q43-phw7-hf98.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-5qf6-g6p6-fq89/GHSA-5qf6-g6p6-fq89.json b/advisories/unreviewed/2022/12/GHSA-5qf6-g6p6-fq89/GHSA-5qf6-g6p6-fq89.json
index 4875f3685c8..84d6d8e3f97 100644
--- a/advisories/unreviewed/2022/12/GHSA-5qf6-g6p6-fq89/GHSA-5qf6-g6p6-fq89.json
+++ b/advisories/unreviewed/2022/12/GHSA-5qf6-g6p6-fq89/GHSA-5qf6-g6p6-fq89.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/12/GHSA-fgq9-7jq6-9m7c/GHSA-fgq9-7jq6-9m7c.json b/advisories/unreviewed/2022/12/GHSA-fgq9-7jq6-9m7c/GHSA-fgq9-7jq6-9m7c.json
index 35051ed9fad..3f9ec410286 100644
--- a/advisories/unreviewed/2022/12/GHSA-fgq9-7jq6-9m7c/GHSA-fgq9-7jq6-9m7c.json
+++ b/advisories/unreviewed/2022/12/GHSA-fgq9-7jq6-9m7c/GHSA-fgq9-7jq6-9m7c.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-h9xp-mrv3-8452/GHSA-h9xp-mrv3-8452.json b/advisories/unreviewed/2022/12/GHSA-h9xp-mrv3-8452/GHSA-h9xp-mrv3-8452.json
index e13ffdc5066..347b82a879d 100644
--- a/advisories/unreviewed/2022/12/GHSA-h9xp-mrv3-8452/GHSA-h9xp-mrv3-8452.json
+++ b/advisories/unreviewed/2022/12/GHSA-h9xp-mrv3-8452/GHSA-h9xp-mrv3-8452.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-hqg9-2w7q-vr32/GHSA-hqg9-2w7q-vr32.json b/advisories/unreviewed/2022/12/GHSA-hqg9-2w7q-vr32/GHSA-hqg9-2w7q-vr32.json
index 2b4823b001f..438ed1054eb 100644
--- a/advisories/unreviewed/2022/12/GHSA-hqg9-2w7q-vr32/GHSA-hqg9-2w7q-vr32.json
+++ b/advisories/unreviewed/2022/12/GHSA-hqg9-2w7q-vr32/GHSA-hqg9-2w7q-vr32.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-383h-w6h6-rxm5/GHSA-383h-w6h6-rxm5.json b/advisories/unreviewed/2023/01/GHSA-383h-w6h6-rxm5/GHSA-383h-w6h6-rxm5.json
index eaf418725f7..934a5a04fad 100644
--- a/advisories/unreviewed/2023/01/GHSA-383h-w6h6-rxm5/GHSA-383h-w6h6-rxm5.json
+++ b/advisories/unreviewed/2023/01/GHSA-383h-w6h6-rxm5/GHSA-383h-w6h6-rxm5.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",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2023/01/GHSA-hm3f-fwmw-7g2j/GHSA-hm3f-fwmw-7g2j.json b/advisories/unreviewed/2023/01/GHSA-hm3f-fwmw-7g2j/GHSA-hm3f-fwmw-7g2j.json
index 07610e0e7b5..2e109c8fe42 100644
--- a/advisories/unreviewed/2023/01/GHSA-hm3f-fwmw-7g2j/GHSA-hm3f-fwmw-7g2j.json
+++ b/advisories/unreviewed/2023/01/GHSA-hm3f-fwmw-7g2j/GHSA-hm3f-fwmw-7g2j.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-qcxf-3r2g-vpvx/GHSA-qcxf-3r2g-vpvx.json b/advisories/unreviewed/2023/01/GHSA-qcxf-3r2g-vpvx/GHSA-qcxf-3r2g-vpvx.json
index 46f76c8d86e..6235d9f3f4c 100644
--- a/advisories/unreviewed/2023/01/GHSA-qcxf-3r2g-vpvx/GHSA-qcxf-3r2g-vpvx.json
+++ b/advisories/unreviewed/2023/01/GHSA-qcxf-3r2g-vpvx/GHSA-qcxf-3r2g-vpvx.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/05/GHSA-65xx-vwx2-w8qf/GHSA-65xx-vwx2-w8qf.json b/advisories/unreviewed/2023/05/GHSA-65xx-vwx2-w8qf/GHSA-65xx-vwx2-w8qf.json
index 4b591feaa50..ecae792c194 100644
--- a/advisories/unreviewed/2023/05/GHSA-65xx-vwx2-w8qf/GHSA-65xx-vwx2-w8qf.json
+++ b/advisories/unreviewed/2023/05/GHSA-65xx-vwx2-w8qf/GHSA-65xx-vwx2-w8qf.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/2023/07/GHSA-229r-cp46-m292/GHSA-229r-cp46-m292.json b/advisories/unreviewed/2023/07/GHSA-229r-cp46-m292/GHSA-229r-cp46-m292.json
index bf7827a9016..e2a3abf5579 100644
--- a/advisories/unreviewed/2023/07/GHSA-229r-cp46-m292/GHSA-229r-cp46-m292.json
+++ b/advisories/unreviewed/2023/07/GHSA-229r-cp46-m292/GHSA-229r-cp46-m292.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/07/GHSA-w684-j4f7-xfm9/GHSA-w684-j4f7-xfm9.json b/advisories/unreviewed/2023/07/GHSA-w684-j4f7-xfm9/GHSA-w684-j4f7-xfm9.json
index 3a0fbca4e40..d6fd0d2107d 100644
--- a/advisories/unreviewed/2023/07/GHSA-w684-j4f7-xfm9/GHSA-w684-j4f7-xfm9.json
+++ b/advisories/unreviewed/2023/07/GHSA-w684-j4f7-xfm9/GHSA-w684-j4f7-xfm9.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/11/GHSA-h9rm-8fhf-mvcc/GHSA-h9rm-8fhf-mvcc.json b/advisories/unreviewed/2023/11/GHSA-h9rm-8fhf-mvcc/GHSA-h9rm-8fhf-mvcc.json
index 8f2559cd79b..5cf4f530e50 100644
--- a/advisories/unreviewed/2023/11/GHSA-h9rm-8fhf-mvcc/GHSA-h9rm-8fhf-mvcc.json
+++ b/advisories/unreviewed/2023/11/GHSA-h9rm-8fhf-mvcc/GHSA-h9rm-8fhf-mvcc.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/2023/11/GHSA-vfh3-2mj3-hwx3/GHSA-vfh3-2mj3-hwx3.json b/advisories/unreviewed/2023/11/GHSA-vfh3-2mj3-hwx3/GHSA-vfh3-2mj3-hwx3.json
index b75d3c17d30..c5f876dc95b 100644
--- a/advisories/unreviewed/2023/11/GHSA-vfh3-2mj3-hwx3/GHSA-vfh3-2mj3-hwx3.json
+++ b/advisories/unreviewed/2023/11/GHSA-vfh3-2mj3-hwx3/GHSA-vfh3-2mj3-hwx3.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/12/GHSA-2896-2qh4-gww9/GHSA-2896-2qh4-gww9.json b/advisories/unreviewed/2023/12/GHSA-2896-2qh4-gww9/GHSA-2896-2qh4-gww9.json
index 72aeae6b955..3420c3cbff9 100644
--- a/advisories/unreviewed/2023/12/GHSA-2896-2qh4-gww9/GHSA-2896-2qh4-gww9.json
+++ b/advisories/unreviewed/2023/12/GHSA-2896-2qh4-gww9/GHSA-2896-2qh4-gww9.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": "WEB",
diff --git a/advisories/unreviewed/2023/12/GHSA-2j82-v6wc-3928/GHSA-2j82-v6wc-3928.json b/advisories/unreviewed/2023/12/GHSA-2j82-v6wc-3928/GHSA-2j82-v6wc-3928.json
index c92045b8706..673e9ae313e 100644
--- a/advisories/unreviewed/2023/12/GHSA-2j82-v6wc-3928/GHSA-2j82-v6wc-3928.json
+++ b/advisories/unreviewed/2023/12/GHSA-2j82-v6wc-3928/GHSA-2j82-v6wc-3928.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-2rwf-gw57-98vq/GHSA-2rwf-gw57-98vq.json b/advisories/unreviewed/2023/12/GHSA-2rwf-gw57-98vq/GHSA-2rwf-gw57-98vq.json
index 560b71fe7e6..5c9f255c8cc 100644
--- a/advisories/unreviewed/2023/12/GHSA-2rwf-gw57-98vq/GHSA-2rwf-gw57-98vq.json
+++ b/advisories/unreviewed/2023/12/GHSA-2rwf-gw57-98vq/GHSA-2rwf-gw57-98vq.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-3f5j-mfg2-hxvj/GHSA-3f5j-mfg2-hxvj.json b/advisories/unreviewed/2023/12/GHSA-3f5j-mfg2-hxvj/GHSA-3f5j-mfg2-hxvj.json
index 33ea7e4de97..f39c2cf2caa 100644
--- a/advisories/unreviewed/2023/12/GHSA-3f5j-mfg2-hxvj/GHSA-3f5j-mfg2-hxvj.json
+++ b/advisories/unreviewed/2023/12/GHSA-3f5j-mfg2-hxvj/GHSA-3f5j-mfg2-hxvj.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-3hpp-7g65-f848/GHSA-3hpp-7g65-f848.json b/advisories/unreviewed/2023/12/GHSA-3hpp-7g65-f848/GHSA-3hpp-7g65-f848.json
index 78b39646856..9ef0417443b 100644
--- a/advisories/unreviewed/2023/12/GHSA-3hpp-7g65-f848/GHSA-3hpp-7g65-f848.json
+++ b/advisories/unreviewed/2023/12/GHSA-3hpp-7g65-f848/GHSA-3hpp-7g65-f848.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/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/2023/12/GHSA-3p46-hrfw-c9xm/GHSA-3p46-hrfw-c9xm.json b/advisories/unreviewed/2023/12/GHSA-3p46-hrfw-c9xm/GHSA-3p46-hrfw-c9xm.json
index 9fabfb2ff05..16083018c88 100644
--- a/advisories/unreviewed/2023/12/GHSA-3p46-hrfw-c9xm/GHSA-3p46-hrfw-c9xm.json
+++ b/advisories/unreviewed/2023/12/GHSA-3p46-hrfw-c9xm/GHSA-3p46-hrfw-c9xm.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-3q89-rj9x-cm52/GHSA-3q89-rj9x-cm52.json b/advisories/unreviewed/2023/12/GHSA-3q89-rj9x-cm52/GHSA-3q89-rj9x-cm52.json
index 238be301565..b2025a052f9 100644
--- a/advisories/unreviewed/2023/12/GHSA-3q89-rj9x-cm52/GHSA-3q89-rj9x-cm52.json
+++ b/advisories/unreviewed/2023/12/GHSA-3q89-rj9x-cm52/GHSA-3q89-rj9x-cm52.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/2023/12/GHSA-3r3w-gg47-w53h/GHSA-3r3w-gg47-w53h.json b/advisories/unreviewed/2023/12/GHSA-3r3w-gg47-w53h/GHSA-3r3w-gg47-w53h.json
index 214d757f031..6413bfac907 100644
--- a/advisories/unreviewed/2023/12/GHSA-3r3w-gg47-w53h/GHSA-3r3w-gg47-w53h.json
+++ b/advisories/unreviewed/2023/12/GHSA-3r3w-gg47-w53h/GHSA-3r3w-gg47-w53h.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-3x3h-vg3c-vcrx/GHSA-3x3h-vg3c-vcrx.json b/advisories/unreviewed/2023/12/GHSA-3x3h-vg3c-vcrx/GHSA-3x3h-vg3c-vcrx.json
index 1f6813f0d14..64d8b845c8a 100644
--- a/advisories/unreviewed/2023/12/GHSA-3x3h-vg3c-vcrx/GHSA-3x3h-vg3c-vcrx.json
+++ b/advisories/unreviewed/2023/12/GHSA-3x3h-vg3c-vcrx/GHSA-3x3h-vg3c-vcrx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-44wj-8576-vhvg/GHSA-44wj-8576-vhvg.json b/advisories/unreviewed/2023/12/GHSA-44wj-8576-vhvg/GHSA-44wj-8576-vhvg.json
index c5229594f1e..7ae0b663189 100644
--- a/advisories/unreviewed/2023/12/GHSA-44wj-8576-vhvg/GHSA-44wj-8576-vhvg.json
+++ b/advisories/unreviewed/2023/12/GHSA-44wj-8576-vhvg/GHSA-44wj-8576-vhvg.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-45hv-4hc6-jvf2/GHSA-45hv-4hc6-jvf2.json b/advisories/unreviewed/2023/12/GHSA-45hv-4hc6-jvf2/GHSA-45hv-4hc6-jvf2.json
index a49971edeaa..3eaf53edded 100644
--- a/advisories/unreviewed/2023/12/GHSA-45hv-4hc6-jvf2/GHSA-45hv-4hc6-jvf2.json
+++ b/advisories/unreviewed/2023/12/GHSA-45hv-4hc6-jvf2/GHSA-45hv-4hc6-jvf2.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-4m45-v7m2-3276/GHSA-4m45-v7m2-3276.json b/advisories/unreviewed/2023/12/GHSA-4m45-v7m2-3276/GHSA-4m45-v7m2-3276.json
index 663ff6a5595..d2325551653 100644
--- a/advisories/unreviewed/2023/12/GHSA-4m45-v7m2-3276/GHSA-4m45-v7m2-3276.json
+++ b/advisories/unreviewed/2023/12/GHSA-4m45-v7m2-3276/GHSA-4m45-v7m2-3276.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-4qcv-5m27-xvj9/GHSA-4qcv-5m27-xvj9.json b/advisories/unreviewed/2023/12/GHSA-4qcv-5m27-xvj9/GHSA-4qcv-5m27-xvj9.json
index 17238f5bea2..775c6724430 100644
--- a/advisories/unreviewed/2023/12/GHSA-4qcv-5m27-xvj9/GHSA-4qcv-5m27-xvj9.json
+++ b/advisories/unreviewed/2023/12/GHSA-4qcv-5m27-xvj9/GHSA-4qcv-5m27-xvj9.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-54hg-4m42-28c5/GHSA-54hg-4m42-28c5.json b/advisories/unreviewed/2023/12/GHSA-54hg-4m42-28c5/GHSA-54hg-4m42-28c5.json
index 66728d69640..69061883ee1 100644
--- a/advisories/unreviewed/2023/12/GHSA-54hg-4m42-28c5/GHSA-54hg-4m42-28c5.json
+++ b/advisories/unreviewed/2023/12/GHSA-54hg-4m42-28c5/GHSA-54hg-4m42-28c5.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-54wr-xmjg-j9mj/GHSA-54wr-xmjg-j9mj.json b/advisories/unreviewed/2023/12/GHSA-54wr-xmjg-j9mj/GHSA-54wr-xmjg-j9mj.json
index 3c28cac1902..9cabd5baea0 100644
--- a/advisories/unreviewed/2023/12/GHSA-54wr-xmjg-j9mj/GHSA-54wr-xmjg-j9mj.json
+++ b/advisories/unreviewed/2023/12/GHSA-54wr-xmjg-j9mj/GHSA-54wr-xmjg-j9mj.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/12/GHSA-5798-fpq9-x4vx/GHSA-5798-fpq9-x4vx.json b/advisories/unreviewed/2023/12/GHSA-5798-fpq9-x4vx/GHSA-5798-fpq9-x4vx.json
index 677acb7b73f..3e495b3d27f 100644
--- a/advisories/unreviewed/2023/12/GHSA-5798-fpq9-x4vx/GHSA-5798-fpq9-x4vx.json
+++ b/advisories/unreviewed/2023/12/GHSA-5798-fpq9-x4vx/GHSA-5798-fpq9-x4vx.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/12/GHSA-5mmm-33gx-vhf7/GHSA-5mmm-33gx-vhf7.json b/advisories/unreviewed/2023/12/GHSA-5mmm-33gx-vhf7/GHSA-5mmm-33gx-vhf7.json
index f5547c7904a..b6234b968a6 100644
--- a/advisories/unreviewed/2023/12/GHSA-5mmm-33gx-vhf7/GHSA-5mmm-33gx-vhf7.json
+++ b/advisories/unreviewed/2023/12/GHSA-5mmm-33gx-vhf7/GHSA-5mmm-33gx-vhf7.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-5q4h-2vw3-5vc3/GHSA-5q4h-2vw3-5vc3.json b/advisories/unreviewed/2023/12/GHSA-5q4h-2vw3-5vc3/GHSA-5q4h-2vw3-5vc3.json
index 8cbaf56e1fe..10fe04d4d44 100644
--- a/advisories/unreviewed/2023/12/GHSA-5q4h-2vw3-5vc3/GHSA-5q4h-2vw3-5vc3.json
+++ b/advisories/unreviewed/2023/12/GHSA-5q4h-2vw3-5vc3/GHSA-5q4h-2vw3-5vc3.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/12/GHSA-5whq-6jp7-w2mg/GHSA-5whq-6jp7-w2mg.json b/advisories/unreviewed/2023/12/GHSA-5whq-6jp7-w2mg/GHSA-5whq-6jp7-w2mg.json
index 62d4b9c6dcf..5bca73a4c90 100644
--- a/advisories/unreviewed/2023/12/GHSA-5whq-6jp7-w2mg/GHSA-5whq-6jp7-w2mg.json
+++ b/advisories/unreviewed/2023/12/GHSA-5whq-6jp7-w2mg/GHSA-5whq-6jp7-w2mg.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/12/GHSA-66jv-2xqf-9p8x/GHSA-66jv-2xqf-9p8x.json b/advisories/unreviewed/2023/12/GHSA-66jv-2xqf-9p8x/GHSA-66jv-2xqf-9p8x.json
index 92770c9a1f4..9454a51f0f6 100644
--- a/advisories/unreviewed/2023/12/GHSA-66jv-2xqf-9p8x/GHSA-66jv-2xqf-9p8x.json
+++ b/advisories/unreviewed/2023/12/GHSA-66jv-2xqf-9p8x/GHSA-66jv-2xqf-9p8x.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/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/2023/12/GHSA-6x7c-m4cm-f7rp/GHSA-6x7c-m4cm-f7rp.json b/advisories/unreviewed/2023/12/GHSA-6x7c-m4cm-f7rp/GHSA-6x7c-m4cm-f7rp.json
index 175ed77c655..a3183330f8c 100644
--- a/advisories/unreviewed/2023/12/GHSA-6x7c-m4cm-f7rp/GHSA-6x7c-m4cm-f7rp.json
+++ b/advisories/unreviewed/2023/12/GHSA-6x7c-m4cm-f7rp/GHSA-6x7c-m4cm-f7rp.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-798f-8mrw-53rg/GHSA-798f-8mrw-53rg.json b/advisories/unreviewed/2023/12/GHSA-798f-8mrw-53rg/GHSA-798f-8mrw-53rg.json
index ae52b755d9f..28ed8cd3edf 100644
--- a/advisories/unreviewed/2023/12/GHSA-798f-8mrw-53rg/GHSA-798f-8mrw-53rg.json
+++ b/advisories/unreviewed/2023/12/GHSA-798f-8mrw-53rg/GHSA-798f-8mrw-53rg.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/12/GHSA-7gxc-74rc-72cp/GHSA-7gxc-74rc-72cp.json b/advisories/unreviewed/2023/12/GHSA-7gxc-74rc-72cp/GHSA-7gxc-74rc-72cp.json
index 9f2c6da0396..c07cf0a4ee8 100644
--- a/advisories/unreviewed/2023/12/GHSA-7gxc-74rc-72cp/GHSA-7gxc-74rc-72cp.json
+++ b/advisories/unreviewed/2023/12/GHSA-7gxc-74rc-72cp/GHSA-7gxc-74rc-72cp.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-7jfc-pfh4-4gx2/GHSA-7jfc-pfh4-4gx2.json b/advisories/unreviewed/2023/12/GHSA-7jfc-pfh4-4gx2/GHSA-7jfc-pfh4-4gx2.json
index a23601aad5a..30941d69dbb 100644
--- a/advisories/unreviewed/2023/12/GHSA-7jfc-pfh4-4gx2/GHSA-7jfc-pfh4-4gx2.json
+++ b/advisories/unreviewed/2023/12/GHSA-7jfc-pfh4-4gx2/GHSA-7jfc-pfh4-4gx2.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",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "LOW",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2023/12/GHSA-7mj6-6785-5954/GHSA-7mj6-6785-5954.json b/advisories/unreviewed/2023/12/GHSA-7mj6-6785-5954/GHSA-7mj6-6785-5954.json
index 8b50543abcd..5a11c260481 100644
--- a/advisories/unreviewed/2023/12/GHSA-7mj6-6785-5954/GHSA-7mj6-6785-5954.json
+++ b/advisories/unreviewed/2023/12/GHSA-7mj6-6785-5954/GHSA-7mj6-6785-5954.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/12/GHSA-7xf3-8mxm-8vxc/GHSA-7xf3-8mxm-8vxc.json b/advisories/unreviewed/2023/12/GHSA-7xf3-8mxm-8vxc/GHSA-7xf3-8mxm-8vxc.json
index 5d0521e86c4..5dbb34e36eb 100644
--- a/advisories/unreviewed/2023/12/GHSA-7xf3-8mxm-8vxc/GHSA-7xf3-8mxm-8vxc.json
+++ b/advisories/unreviewed/2023/12/GHSA-7xf3-8mxm-8vxc/GHSA-7xf3-8mxm-8vxc.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-866h-q63m-66xm/GHSA-866h-q63m-66xm.json b/advisories/unreviewed/2023/12/GHSA-866h-q63m-66xm/GHSA-866h-q63m-66xm.json
index 28f82ea519d..c9774f0bd2d 100644
--- a/advisories/unreviewed/2023/12/GHSA-866h-q63m-66xm/GHSA-866h-q63m-66xm.json
+++ b/advisories/unreviewed/2023/12/GHSA-866h-q63m-66xm/GHSA-866h-q63m-66xm.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/12/GHSA-88m5-rfvg-rhq2/GHSA-88m5-rfvg-rhq2.json b/advisories/unreviewed/2023/12/GHSA-88m5-rfvg-rhq2/GHSA-88m5-rfvg-rhq2.json
index bea11d5987c..e4964b96f5f 100644
--- a/advisories/unreviewed/2023/12/GHSA-88m5-rfvg-rhq2/GHSA-88m5-rfvg-rhq2.json
+++ b/advisories/unreviewed/2023/12/GHSA-88m5-rfvg-rhq2/GHSA-88m5-rfvg-rhq2.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:N/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-8fxv-xj5w-c8qc/GHSA-8fxv-xj5w-c8qc.json b/advisories/unreviewed/2023/12/GHSA-8fxv-xj5w-c8qc/GHSA-8fxv-xj5w-c8qc.json
index 3d32338ebea..08fc11c5ad9 100644
--- a/advisories/unreviewed/2023/12/GHSA-8fxv-xj5w-c8qc/GHSA-8fxv-xj5w-c8qc.json
+++ b/advisories/unreviewed/2023/12/GHSA-8fxv-xj5w-c8qc/GHSA-8fxv-xj5w-c8qc.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/12/GHSA-8gv6-cw5x-4wvm/GHSA-8gv6-cw5x-4wvm.json b/advisories/unreviewed/2023/12/GHSA-8gv6-cw5x-4wvm/GHSA-8gv6-cw5x-4wvm.json
index cd0300a3a6c..33dd8ac64eb 100644
--- a/advisories/unreviewed/2023/12/GHSA-8gv6-cw5x-4wvm/GHSA-8gv6-cw5x-4wvm.json
+++ b/advisories/unreviewed/2023/12/GHSA-8gv6-cw5x-4wvm/GHSA-8gv6-cw5x-4wvm.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/12/GHSA-8jch-c3fw-9vgq/GHSA-8jch-c3fw-9vgq.json b/advisories/unreviewed/2023/12/GHSA-8jch-c3fw-9vgq/GHSA-8jch-c3fw-9vgq.json
index 68e34eecbc3..b6d9a0cb01d 100644
--- a/advisories/unreviewed/2023/12/GHSA-8jch-c3fw-9vgq/GHSA-8jch-c3fw-9vgq.json
+++ b/advisories/unreviewed/2023/12/GHSA-8jch-c3fw-9vgq/GHSA-8jch-c3fw-9vgq.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-8pxx-f34x-f793/GHSA-8pxx-f34x-f793.json b/advisories/unreviewed/2023/12/GHSA-8pxx-f34x-f793/GHSA-8pxx-f34x-f793.json
index 829037f41a2..4b74ff152e3 100644
--- a/advisories/unreviewed/2023/12/GHSA-8pxx-f34x-f793/GHSA-8pxx-f34x-f793.json
+++ b/advisories/unreviewed/2023/12/GHSA-8pxx-f34x-f793/GHSA-8pxx-f34x-f793.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-93vw-2xp9-jc53/GHSA-93vw-2xp9-jc53.json b/advisories/unreviewed/2023/12/GHSA-93vw-2xp9-jc53/GHSA-93vw-2xp9-jc53.json
index 8814cc32523..0ecb27d847e 100644
--- a/advisories/unreviewed/2023/12/GHSA-93vw-2xp9-jc53/GHSA-93vw-2xp9-jc53.json
+++ b/advisories/unreviewed/2023/12/GHSA-93vw-2xp9-jc53/GHSA-93vw-2xp9-jc53.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-9hr4-7jqw-c29q/GHSA-9hr4-7jqw-c29q.json b/advisories/unreviewed/2023/12/GHSA-9hr4-7jqw-c29q/GHSA-9hr4-7jqw-c29q.json
index 8b01c05c4bf..180ea649780 100644
--- a/advisories/unreviewed/2023/12/GHSA-9hr4-7jqw-c29q/GHSA-9hr4-7jqw-c29q.json
+++ b/advisories/unreviewed/2023/12/GHSA-9hr4-7jqw-c29q/GHSA-9hr4-7jqw-c29q.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-9rhv-wh54-fxjm/GHSA-9rhv-wh54-fxjm.json b/advisories/unreviewed/2023/12/GHSA-9rhv-wh54-fxjm/GHSA-9rhv-wh54-fxjm.json
index e8431da648e..9d58808bf40 100644
--- a/advisories/unreviewed/2023/12/GHSA-9rhv-wh54-fxjm/GHSA-9rhv-wh54-fxjm.json
+++ b/advisories/unreviewed/2023/12/GHSA-9rhv-wh54-fxjm/GHSA-9rhv-wh54-fxjm.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-9vmm-rq94-phr7/GHSA-9vmm-rq94-phr7.json b/advisories/unreviewed/2023/12/GHSA-9vmm-rq94-phr7/GHSA-9vmm-rq94-phr7.json
index 9043f6ff833..106003e02df 100644
--- a/advisories/unreviewed/2023/12/GHSA-9vmm-rq94-phr7/GHSA-9vmm-rq94-phr7.json
+++ b/advisories/unreviewed/2023/12/GHSA-9vmm-rq94-phr7/GHSA-9vmm-rq94-phr7.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:P/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-9vr4-q3ch-rj27/GHSA-9vr4-q3ch-rj27.json b/advisories/unreviewed/2023/12/GHSA-9vr4-q3ch-rj27/GHSA-9vr4-q3ch-rj27.json
index daa38b5024a..2ae70ba668b 100644
--- a/advisories/unreviewed/2023/12/GHSA-9vr4-q3ch-rj27/GHSA-9vr4-q3ch-rj27.json
+++ b/advisories/unreviewed/2023/12/GHSA-9vr4-q3ch-rj27/GHSA-9vr4-q3ch-rj27.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/12/GHSA-9vx6-546g-266v/GHSA-9vx6-546g-266v.json b/advisories/unreviewed/2023/12/GHSA-9vx6-546g-266v/GHSA-9vx6-546g-266v.json
index 49ae60f54bb..93b065259ef 100644
--- a/advisories/unreviewed/2023/12/GHSA-9vx6-546g-266v/GHSA-9vx6-546g-266v.json
+++ b/advisories/unreviewed/2023/12/GHSA-9vx6-546g-266v/GHSA-9vx6-546g-266v.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-c4f2-4cmw-rccv/GHSA-c4f2-4cmw-rccv.json b/advisories/unreviewed/2023/12/GHSA-c4f2-4cmw-rccv/GHSA-c4f2-4cmw-rccv.json
index d0c90d81be8..7eace021a35 100644
--- a/advisories/unreviewed/2023/12/GHSA-c4f2-4cmw-rccv/GHSA-c4f2-4cmw-rccv.json
+++ b/advisories/unreviewed/2023/12/GHSA-c4f2-4cmw-rccv/GHSA-c4f2-4cmw-rccv.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/12/GHSA-ccvr-j87g-x67g/GHSA-ccvr-j87g-x67g.json b/advisories/unreviewed/2023/12/GHSA-ccvr-j87g-x67g/GHSA-ccvr-j87g-x67g.json
index d2b0debbcb2..143dee7a47a 100644
--- a/advisories/unreviewed/2023/12/GHSA-ccvr-j87g-x67g/GHSA-ccvr-j87g-x67g.json
+++ b/advisories/unreviewed/2023/12/GHSA-ccvr-j87g-x67g/GHSA-ccvr-j87g-x67g.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-cgf4-3952-w724/GHSA-cgf4-3952-w724.json b/advisories/unreviewed/2023/12/GHSA-cgf4-3952-w724/GHSA-cgf4-3952-w724.json
index 4707b0d96c2..e1389cfb9c6 100644
--- a/advisories/unreviewed/2023/12/GHSA-cgf4-3952-w724/GHSA-cgf4-3952-w724.json
+++ b/advisories/unreviewed/2023/12/GHSA-cgf4-3952-w724/GHSA-cgf4-3952-w724.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-f4gg-hh5p-pjmg/GHSA-f4gg-hh5p-pjmg.json b/advisories/unreviewed/2023/12/GHSA-f4gg-hh5p-pjmg/GHSA-f4gg-hh5p-pjmg.json
index 1dfcdcfaec1..88222f446dc 100644
--- a/advisories/unreviewed/2023/12/GHSA-f4gg-hh5p-pjmg/GHSA-f4gg-hh5p-pjmg.json
+++ b/advisories/unreviewed/2023/12/GHSA-f4gg-hh5p-pjmg/GHSA-f4gg-hh5p-pjmg.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/2023/12/GHSA-f9c3-v8hj-gm62/GHSA-f9c3-v8hj-gm62.json b/advisories/unreviewed/2023/12/GHSA-f9c3-v8hj-gm62/GHSA-f9c3-v8hj-gm62.json
index 5b5ac6f640d..d0c2e72b819 100644
--- a/advisories/unreviewed/2023/12/GHSA-f9c3-v8hj-gm62/GHSA-f9c3-v8hj-gm62.json
+++ b/advisories/unreviewed/2023/12/GHSA-f9c3-v8hj-gm62/GHSA-f9c3-v8hj-gm62.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-fpr5-pmwh-c27h/GHSA-fpr5-pmwh-c27h.json b/advisories/unreviewed/2023/12/GHSA-fpr5-pmwh-c27h/GHSA-fpr5-pmwh-c27h.json
index 015f36bed84..256d4958534 100644
--- a/advisories/unreviewed/2023/12/GHSA-fpr5-pmwh-c27h/GHSA-fpr5-pmwh-c27h.json
+++ b/advisories/unreviewed/2023/12/GHSA-fpr5-pmwh-c27h/GHSA-fpr5-pmwh-c27h.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-g8w6-ghch-w9w2/GHSA-g8w6-ghch-w9w2.json b/advisories/unreviewed/2023/12/GHSA-g8w6-ghch-w9w2/GHSA-g8w6-ghch-w9w2.json
index fb824a16239..b52f1aed320 100644
--- a/advisories/unreviewed/2023/12/GHSA-g8w6-ghch-w9w2/GHSA-g8w6-ghch-w9w2.json
+++ b/advisories/unreviewed/2023/12/GHSA-g8w6-ghch-w9w2/GHSA-g8w6-ghch-w9w2.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/12/GHSA-gfm8-gr5x-c42h/GHSA-gfm8-gr5x-c42h.json b/advisories/unreviewed/2023/12/GHSA-gfm8-gr5x-c42h/GHSA-gfm8-gr5x-c42h.json
index 941062ac9da..8bbb59d9abb 100644
--- a/advisories/unreviewed/2023/12/GHSA-gfm8-gr5x-c42h/GHSA-gfm8-gr5x-c42h.json
+++ b/advisories/unreviewed/2023/12/GHSA-gfm8-gr5x-c42h/GHSA-gfm8-gr5x-c42h.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/2023/12/GHSA-gh6q-hg4q-mm5j/GHSA-gh6q-hg4q-mm5j.json b/advisories/unreviewed/2023/12/GHSA-gh6q-hg4q-mm5j/GHSA-gh6q-hg4q-mm5j.json
index 5400bd26ba1..7a5bbbd491a 100644
--- a/advisories/unreviewed/2023/12/GHSA-gh6q-hg4q-mm5j/GHSA-gh6q-hg4q-mm5j.json
+++ b/advisories/unreviewed/2023/12/GHSA-gh6q-hg4q-mm5j/GHSA-gh6q-hg4q-mm5j.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-ghvq-25qv-wp2m/GHSA-ghvq-25qv-wp2m.json b/advisories/unreviewed/2023/12/GHSA-ghvq-25qv-wp2m/GHSA-ghvq-25qv-wp2m.json
index 45e752ff57b..dc5fb5b0b6d 100644
--- a/advisories/unreviewed/2023/12/GHSA-ghvq-25qv-wp2m/GHSA-ghvq-25qv-wp2m.json
+++ b/advisories/unreviewed/2023/12/GHSA-ghvq-25qv-wp2m/GHSA-ghvq-25qv-wp2m.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/12/GHSA-gpgq-5q34-mh72/GHSA-gpgq-5q34-mh72.json b/advisories/unreviewed/2023/12/GHSA-gpgq-5q34-mh72/GHSA-gpgq-5q34-mh72.json
index 57623161560..d3bf8e9cee9 100644
--- a/advisories/unreviewed/2023/12/GHSA-gpgq-5q34-mh72/GHSA-gpgq-5q34-mh72.json
+++ b/advisories/unreviewed/2023/12/GHSA-gpgq-5q34-mh72/GHSA-gpgq-5q34-mh72.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/12/GHSA-h42c-h7r7-cg2m/GHSA-h42c-h7r7-cg2m.json b/advisories/unreviewed/2023/12/GHSA-h42c-h7r7-cg2m/GHSA-h42c-h7r7-cg2m.json
index ba4dc90e791..e2d2018007b 100644
--- a/advisories/unreviewed/2023/12/GHSA-h42c-h7r7-cg2m/GHSA-h42c-h7r7-cg2m.json
+++ b/advisories/unreviewed/2023/12/GHSA-h42c-h7r7-cg2m/GHSA-h42c-h7r7-cg2m.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/12/GHSA-h7fw-h5jr-wr5j/GHSA-h7fw-h5jr-wr5j.json b/advisories/unreviewed/2023/12/GHSA-h7fw-h5jr-wr5j/GHSA-h7fw-h5jr-wr5j.json
index ac6846e7072..88f67290af1 100644
--- a/advisories/unreviewed/2023/12/GHSA-h7fw-h5jr-wr5j/GHSA-h7fw-h5jr-wr5j.json
+++ b/advisories/unreviewed/2023/12/GHSA-h7fw-h5jr-wr5j/GHSA-h7fw-h5jr-wr5j.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-j37f-j5pq-r37j/GHSA-j37f-j5pq-r37j.json b/advisories/unreviewed/2023/12/GHSA-j37f-j5pq-r37j/GHSA-j37f-j5pq-r37j.json
index 3d6c9e3a96b..d9d252db41e 100644
--- a/advisories/unreviewed/2023/12/GHSA-j37f-j5pq-r37j/GHSA-j37f-j5pq-r37j.json
+++ b/advisories/unreviewed/2023/12/GHSA-j37f-j5pq-r37j/GHSA-j37f-j5pq-r37j.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/12/GHSA-jfvx-rjp6-p69p/GHSA-jfvx-rjp6-p69p.json b/advisories/unreviewed/2023/12/GHSA-jfvx-rjp6-p69p/GHSA-jfvx-rjp6-p69p.json
index 0b2be49626b..ec813810a93 100644
--- a/advisories/unreviewed/2023/12/GHSA-jfvx-rjp6-p69p/GHSA-jfvx-rjp6-p69p.json
+++ b/advisories/unreviewed/2023/12/GHSA-jfvx-rjp6-p69p/GHSA-jfvx-rjp6-p69p.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-jg2h-858x-hq45/GHSA-jg2h-858x-hq45.json b/advisories/unreviewed/2023/12/GHSA-jg2h-858x-hq45/GHSA-jg2h-858x-hq45.json
index 6844228b131..41be0083bc9 100644
--- a/advisories/unreviewed/2023/12/GHSA-jg2h-858x-hq45/GHSA-jg2h-858x-hq45.json
+++ b/advisories/unreviewed/2023/12/GHSA-jg2h-858x-hq45/GHSA-jg2h-858x-hq45.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/12/GHSA-jh5h-57c3-2c78/GHSA-jh5h-57c3-2c78.json b/advisories/unreviewed/2023/12/GHSA-jh5h-57c3-2c78/GHSA-jh5h-57c3-2c78.json
index 729e6c602f0..86000c73618 100644
--- a/advisories/unreviewed/2023/12/GHSA-jh5h-57c3-2c78/GHSA-jh5h-57c3-2c78.json
+++ b/advisories/unreviewed/2023/12/GHSA-jh5h-57c3-2c78/GHSA-jh5h-57c3-2c78.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:N/I:H/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-jj5v-fhp7-pww8/GHSA-jj5v-fhp7-pww8.json b/advisories/unreviewed/2023/12/GHSA-jj5v-fhp7-pww8/GHSA-jj5v-fhp7-pww8.json
index a913634b620..e92d40999bf 100644
--- a/advisories/unreviewed/2023/12/GHSA-jj5v-fhp7-pww8/GHSA-jj5v-fhp7-pww8.json
+++ b/advisories/unreviewed/2023/12/GHSA-jj5v-fhp7-pww8/GHSA-jj5v-fhp7-pww8.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-jqpm-4rcf-qhrx/GHSA-jqpm-4rcf-qhrx.json b/advisories/unreviewed/2023/12/GHSA-jqpm-4rcf-qhrx/GHSA-jqpm-4rcf-qhrx.json
index 10fc52d1679..cbbad3a7094 100644
--- a/advisories/unreviewed/2023/12/GHSA-jqpm-4rcf-qhrx/GHSA-jqpm-4rcf-qhrx.json
+++ b/advisories/unreviewed/2023/12/GHSA-jqpm-4rcf-qhrx/GHSA-jqpm-4rcf-qhrx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:L/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/2023/12/GHSA-jr35-4jcw-x43v/GHSA-jr35-4jcw-x43v.json b/advisories/unreviewed/2023/12/GHSA-jr35-4jcw-x43v/GHSA-jr35-4jcw-x43v.json
index 8793198798f..af6a6f38e11 100644
--- a/advisories/unreviewed/2023/12/GHSA-jr35-4jcw-x43v/GHSA-jr35-4jcw-x43v.json
+++ b/advisories/unreviewed/2023/12/GHSA-jr35-4jcw-x43v/GHSA-jr35-4jcw-x43v.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/12/GHSA-jvgh-f9m8-mh2r/GHSA-jvgh-f9m8-mh2r.json b/advisories/unreviewed/2023/12/GHSA-jvgh-f9m8-mh2r/GHSA-jvgh-f9m8-mh2r.json
index 97fb0ffb258..aee79a62df4 100644
--- a/advisories/unreviewed/2023/12/GHSA-jvgh-f9m8-mh2r/GHSA-jvgh-f9m8-mh2r.json
+++ b/advisories/unreviewed/2023/12/GHSA-jvgh-f9m8-mh2r/GHSA-jvgh-f9m8-mh2r.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/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/2023/12/GHSA-jx5r-5mcr-7q4g/GHSA-jx5r-5mcr-7q4g.json b/advisories/unreviewed/2023/12/GHSA-jx5r-5mcr-7q4g/GHSA-jx5r-5mcr-7q4g.json
index 5aefc490697..04c9834866f 100644
--- a/advisories/unreviewed/2023/12/GHSA-jx5r-5mcr-7q4g/GHSA-jx5r-5mcr-7q4g.json
+++ b/advisories/unreviewed/2023/12/GHSA-jx5r-5mcr-7q4g/GHSA-jx5r-5mcr-7q4g.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/12/GHSA-mh75-hrg8-8qhx/GHSA-mh75-hrg8-8qhx.json b/advisories/unreviewed/2023/12/GHSA-mh75-hrg8-8qhx/GHSA-mh75-hrg8-8qhx.json
index 96b1a8e9325..badbddb1641 100644
--- a/advisories/unreviewed/2023/12/GHSA-mh75-hrg8-8qhx/GHSA-mh75-hrg8-8qhx.json
+++ b/advisories/unreviewed/2023/12/GHSA-mh75-hrg8-8qhx/GHSA-mh75-hrg8-8qhx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-p56m-p9rr-p55q/GHSA-p56m-p9rr-p55q.json b/advisories/unreviewed/2023/12/GHSA-p56m-p9rr-p55q/GHSA-p56m-p9rr-p55q.json
index ac7b107ad1e..54d0b185b6b 100644
--- a/advisories/unreviewed/2023/12/GHSA-p56m-p9rr-p55q/GHSA-p56m-p9rr-p55q.json
+++ b/advisories/unreviewed/2023/12/GHSA-p56m-p9rr-p55q/GHSA-p56m-p9rr-p55q.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/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/2023/12/GHSA-p77w-v26g-9pxw/GHSA-p77w-v26g-9pxw.json b/advisories/unreviewed/2023/12/GHSA-p77w-v26g-9pxw/GHSA-p77w-v26g-9pxw.json
index 3008254ea31..22d82e76340 100644
--- a/advisories/unreviewed/2023/12/GHSA-p77w-v26g-9pxw/GHSA-p77w-v26g-9pxw.json
+++ b/advisories/unreviewed/2023/12/GHSA-p77w-v26g-9pxw/GHSA-p77w-v26g-9pxw.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-pcxg-g343-mxxx/GHSA-pcxg-g343-mxxx.json b/advisories/unreviewed/2023/12/GHSA-pcxg-g343-mxxx/GHSA-pcxg-g343-mxxx.json
index 4c21fa7ef7b..b39d3f35a39 100644
--- a/advisories/unreviewed/2023/12/GHSA-pcxg-g343-mxxx/GHSA-pcxg-g343-mxxx.json
+++ b/advisories/unreviewed/2023/12/GHSA-pcxg-g343-mxxx/GHSA-pcxg-g343-mxxx.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
@@ -27,9 +25,7 @@
}
],
"database_specific": {
- "cwe_ids": [
-
- ],
+ "cwe_ids": [],
"severity": "MODERATE",
"github_reviewed": false,
"github_reviewed_at": null,
diff --git a/advisories/unreviewed/2023/12/GHSA-phgv-cmcv-w837/GHSA-phgv-cmcv-w837.json b/advisories/unreviewed/2023/12/GHSA-phgv-cmcv-w837/GHSA-phgv-cmcv-w837.json
index 0ff0b216150..4c1b3b92923 100644
--- a/advisories/unreviewed/2023/12/GHSA-phgv-cmcv-w837/GHSA-phgv-cmcv-w837.json
+++ b/advisories/unreviewed/2023/12/GHSA-phgv-cmcv-w837/GHSA-phgv-cmcv-w837.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-phqw-f6xp-qmmc/GHSA-phqw-f6xp-qmmc.json b/advisories/unreviewed/2023/12/GHSA-phqw-f6xp-qmmc/GHSA-phqw-f6xp-qmmc.json
index b9183bce7e0..0c316efccd0 100644
--- a/advisories/unreviewed/2023/12/GHSA-phqw-f6xp-qmmc/GHSA-phqw-f6xp-qmmc.json
+++ b/advisories/unreviewed/2023/12/GHSA-phqw-f6xp-qmmc/GHSA-phqw-f6xp-qmmc.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-phr5-43p5-mfwq/GHSA-phr5-43p5-mfwq.json b/advisories/unreviewed/2023/12/GHSA-phr5-43p5-mfwq/GHSA-phr5-43p5-mfwq.json
index 702f15c5bdb..1b33aaf2e35 100644
--- a/advisories/unreviewed/2023/12/GHSA-phr5-43p5-mfwq/GHSA-phr5-43p5-mfwq.json
+++ b/advisories/unreviewed/2023/12/GHSA-phr5-43p5-mfwq/GHSA-phr5-43p5-mfwq.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-pp4m-v63p-xvqj/GHSA-pp4m-v63p-xvqj.json b/advisories/unreviewed/2023/12/GHSA-pp4m-v63p-xvqj/GHSA-pp4m-v63p-xvqj.json
index d07d7dc07e1..f27ed14bc35 100644
--- a/advisories/unreviewed/2023/12/GHSA-pp4m-v63p-xvqj/GHSA-pp4m-v63p-xvqj.json
+++ b/advisories/unreviewed/2023/12/GHSA-pp4m-v63p-xvqj/GHSA-pp4m-v63p-xvqj.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-ppm9-6vj8-gfgp/GHSA-ppm9-6vj8-gfgp.json b/advisories/unreviewed/2023/12/GHSA-ppm9-6vj8-gfgp/GHSA-ppm9-6vj8-gfgp.json
index cfd2714fe8f..92808793558 100644
--- a/advisories/unreviewed/2023/12/GHSA-ppm9-6vj8-gfgp/GHSA-ppm9-6vj8-gfgp.json
+++ b/advisories/unreviewed/2023/12/GHSA-ppm9-6vj8-gfgp/GHSA-ppm9-6vj8-gfgp.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-ppwv-ccv8-qf82/GHSA-ppwv-ccv8-qf82.json b/advisories/unreviewed/2023/12/GHSA-ppwv-ccv8-qf82/GHSA-ppwv-ccv8-qf82.json
index bd42fab8bc2..74b18914e3d 100644
--- a/advisories/unreviewed/2023/12/GHSA-ppwv-ccv8-qf82/GHSA-ppwv-ccv8-qf82.json
+++ b/advisories/unreviewed/2023/12/GHSA-ppwv-ccv8-qf82/GHSA-ppwv-ccv8-qf82.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/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/2023/12/GHSA-pq3w-qg2x-wx83/GHSA-pq3w-qg2x-wx83.json b/advisories/unreviewed/2023/12/GHSA-pq3w-qg2x-wx83/GHSA-pq3w-qg2x-wx83.json
index 32d21c361a0..113d9a1a8c7 100644
--- a/advisories/unreviewed/2023/12/GHSA-pq3w-qg2x-wx83/GHSA-pq3w-qg2x-wx83.json
+++ b/advisories/unreviewed/2023/12/GHSA-pq3w-qg2x-wx83/GHSA-pq3w-qg2x-wx83.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/2023/12/GHSA-q9f4-6pf9-qvh4/GHSA-q9f4-6pf9-qvh4.json b/advisories/unreviewed/2023/12/GHSA-q9f4-6pf9-qvh4/GHSA-q9f4-6pf9-qvh4.json
index af27f5b1000..1be5715bcc9 100644
--- a/advisories/unreviewed/2023/12/GHSA-q9f4-6pf9-qvh4/GHSA-q9f4-6pf9-qvh4.json
+++ b/advisories/unreviewed/2023/12/GHSA-q9f4-6pf9-qvh4/GHSA-q9f4-6pf9-qvh4.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-qgvh-24vw-pm43/GHSA-qgvh-24vw-pm43.json b/advisories/unreviewed/2023/12/GHSA-qgvh-24vw-pm43/GHSA-qgvh-24vw-pm43.json
index 1b2ab279320..3bf6a08fac6 100644
--- a/advisories/unreviewed/2023/12/GHSA-qgvh-24vw-pm43/GHSA-qgvh-24vw-pm43.json
+++ b/advisories/unreviewed/2023/12/GHSA-qgvh-24vw-pm43/GHSA-qgvh-24vw-pm43.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:N/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-qmw9-j9cf-fc9w/GHSA-qmw9-j9cf-fc9w.json b/advisories/unreviewed/2023/12/GHSA-qmw9-j9cf-fc9w/GHSA-qmw9-j9cf-fc9w.json
index d04136dfe8e..866b3a4ada0 100644
--- a/advisories/unreviewed/2023/12/GHSA-qmw9-j9cf-fc9w/GHSA-qmw9-j9cf-fc9w.json
+++ b/advisories/unreviewed/2023/12/GHSA-qmw9-j9cf-fc9w/GHSA-qmw9-j9cf-fc9w.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/12/GHSA-qvpv-2v6r-9c85/GHSA-qvpv-2v6r-9c85.json b/advisories/unreviewed/2023/12/GHSA-qvpv-2v6r-9c85/GHSA-qvpv-2v6r-9c85.json
index d3d42370320..23ba8548950 100644
--- a/advisories/unreviewed/2023/12/GHSA-qvpv-2v6r-9c85/GHSA-qvpv-2v6r-9c85.json
+++ b/advisories/unreviewed/2023/12/GHSA-qvpv-2v6r-9c85/GHSA-qvpv-2v6r-9c85.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/12/GHSA-r2x8-rf8m-w2r2/GHSA-r2x8-rf8m-w2r2.json b/advisories/unreviewed/2023/12/GHSA-r2x8-rf8m-w2r2/GHSA-r2x8-rf8m-w2r2.json
index c0692ebb305..041f57becdc 100644
--- a/advisories/unreviewed/2023/12/GHSA-r2x8-rf8m-w2r2/GHSA-r2x8-rf8m-w2r2.json
+++ b/advisories/unreviewed/2023/12/GHSA-r2x8-rf8m-w2r2/GHSA-r2x8-rf8m-w2r2.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/12/GHSA-r43r-rvvf-rrh9/GHSA-r43r-rvvf-rrh9.json b/advisories/unreviewed/2023/12/GHSA-r43r-rvvf-rrh9/GHSA-r43r-rvvf-rrh9.json
index 5ce4e7dedd9..30416e08947 100644
--- a/advisories/unreviewed/2023/12/GHSA-r43r-rvvf-rrh9/GHSA-r43r-rvvf-rrh9.json
+++ b/advisories/unreviewed/2023/12/GHSA-r43r-rvvf-rrh9/GHSA-r43r-rvvf-rrh9.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/12/GHSA-rhqw-486f-x8rq/GHSA-rhqw-486f-x8rq.json b/advisories/unreviewed/2023/12/GHSA-rhqw-486f-x8rq/GHSA-rhqw-486f-x8rq.json
index a2c30e8a6b4..5bab0be207e 100644
--- a/advisories/unreviewed/2023/12/GHSA-rhqw-486f-x8rq/GHSA-rhqw-486f-x8rq.json
+++ b/advisories/unreviewed/2023/12/GHSA-rhqw-486f-x8rq/GHSA-rhqw-486f-x8rq.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-rpjr-9h83-wxwm/GHSA-rpjr-9h83-wxwm.json b/advisories/unreviewed/2023/12/GHSA-rpjr-9h83-wxwm/GHSA-rpjr-9h83-wxwm.json
index dae1d1b6aae..54927f7735b 100644
--- a/advisories/unreviewed/2023/12/GHSA-rpjr-9h83-wxwm/GHSA-rpjr-9h83-wxwm.json
+++ b/advisories/unreviewed/2023/12/GHSA-rpjr-9h83-wxwm/GHSA-rpjr-9h83-wxwm.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:L/I:H/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-rxww-qvhg-88h2/GHSA-rxww-qvhg-88h2.json b/advisories/unreviewed/2023/12/GHSA-rxww-qvhg-88h2/GHSA-rxww-qvhg-88h2.json
index 2527ecf4343..29da871c98a 100644
--- a/advisories/unreviewed/2023/12/GHSA-rxww-qvhg-88h2/GHSA-rxww-qvhg-88h2.json
+++ b/advisories/unreviewed/2023/12/GHSA-rxww-qvhg-88h2/GHSA-rxww-qvhg-88h2.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-v2pm-g2fx-6m9c/GHSA-v2pm-g2fx-6m9c.json b/advisories/unreviewed/2023/12/GHSA-v2pm-g2fx-6m9c/GHSA-v2pm-g2fx-6m9c.json
index 5ded4206a5d..596e12a6c05 100644
--- a/advisories/unreviewed/2023/12/GHSA-v2pm-g2fx-6m9c/GHSA-v2pm-g2fx-6m9c.json
+++ b/advisories/unreviewed/2023/12/GHSA-v2pm-g2fx-6m9c/GHSA-v2pm-g2fx-6m9c.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/2023/12/GHSA-v4xf-p739-569h/GHSA-v4xf-p739-569h.json b/advisories/unreviewed/2023/12/GHSA-v4xf-p739-569h/GHSA-v4xf-p739-569h.json
index dd0962d2524..f1afdee1fec 100644
--- a/advisories/unreviewed/2023/12/GHSA-v4xf-p739-569h/GHSA-v4xf-p739-569h.json
+++ b/advisories/unreviewed/2023/12/GHSA-v4xf-p739-569h/GHSA-v4xf-p739-569h.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-v624-cfg3-pgh9/GHSA-v624-cfg3-pgh9.json b/advisories/unreviewed/2023/12/GHSA-v624-cfg3-pgh9/GHSA-v624-cfg3-pgh9.json
index ea4987b88c3..aacab0694b2 100644
--- a/advisories/unreviewed/2023/12/GHSA-v624-cfg3-pgh9/GHSA-v624-cfg3-pgh9.json
+++ b/advisories/unreviewed/2023/12/GHSA-v624-cfg3-pgh9/GHSA-v624-cfg3-pgh9.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/2023/12/GHSA-vpcq-h894-5962/GHSA-vpcq-h894-5962.json b/advisories/unreviewed/2023/12/GHSA-vpcq-h894-5962/GHSA-vpcq-h894-5962.json
index e46c9a92219..5a95eabaaab 100644
--- a/advisories/unreviewed/2023/12/GHSA-vpcq-h894-5962/GHSA-vpcq-h894-5962.json
+++ b/advisories/unreviewed/2023/12/GHSA-vpcq-h894-5962/GHSA-vpcq-h894-5962.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-vrcj-gpp3-5v75/GHSA-vrcj-gpp3-5v75.json b/advisories/unreviewed/2023/12/GHSA-vrcj-gpp3-5v75/GHSA-vrcj-gpp3-5v75.json
index 6197e49a754..9cd7331ea6c 100644
--- a/advisories/unreviewed/2023/12/GHSA-vrcj-gpp3-5v75/GHSA-vrcj-gpp3-5v75.json
+++ b/advisories/unreviewed/2023/12/GHSA-vrcj-gpp3-5v75/GHSA-vrcj-gpp3-5v75.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:N/I:L/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-xch8-frxx-v8q6/GHSA-xch8-frxx-v8q6.json b/advisories/unreviewed/2023/12/GHSA-xch8-frxx-v8q6/GHSA-xch8-frxx-v8q6.json
index 1c479c28288..687a5ef4060 100644
--- a/advisories/unreviewed/2023/12/GHSA-xch8-frxx-v8q6/GHSA-xch8-frxx-v8q6.json
+++ b/advisories/unreviewed/2023/12/GHSA-xch8-frxx-v8q6/GHSA-xch8-frxx-v8q6.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2023/12/GHSA-xqmc-g86x-qfxp/GHSA-xqmc-g86x-qfxp.json b/advisories/unreviewed/2023/12/GHSA-xqmc-g86x-qfxp/GHSA-xqmc-g86x-qfxp.json
index ca6aed3ba53..925efcbc534 100644
--- a/advisories/unreviewed/2023/12/GHSA-xqmc-g86x-qfxp/GHSA-xqmc-g86x-qfxp.json
+++ b/advisories/unreviewed/2023/12/GHSA-xqmc-g86x-qfxp/GHSA-xqmc-g86x-qfxp.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-3cj9-hfvh-chhg/GHSA-3cj9-hfvh-chhg.json b/advisories/unreviewed/2024/01/GHSA-3cj9-hfvh-chhg/GHSA-3cj9-hfvh-chhg.json
index b0e15f6da4b..54cf9b6420c 100644
--- a/advisories/unreviewed/2024/01/GHSA-3cj9-hfvh-chhg/GHSA-3cj9-hfvh-chhg.json
+++ b/advisories/unreviewed/2024/01/GHSA-3cj9-hfvh-chhg/GHSA-3cj9-hfvh-chhg.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-3q9m-89p9-39jw/GHSA-3q9m-89p9-39jw.json b/advisories/unreviewed/2024/01/GHSA-3q9m-89p9-39jw/GHSA-3q9m-89p9-39jw.json
index 74edcb5b83c..01ad9e2a7bb 100644
--- a/advisories/unreviewed/2024/01/GHSA-3q9m-89p9-39jw/GHSA-3q9m-89p9-39jw.json
+++ b/advisories/unreviewed/2024/01/GHSA-3q9m-89p9-39jw/GHSA-3q9m-89p9-39jw.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-49g3-99r8-54xm/GHSA-49g3-99r8-54xm.json b/advisories/unreviewed/2024/01/GHSA-49g3-99r8-54xm/GHSA-49g3-99r8-54xm.json
index 063e0e67850..d020019ad22 100644
--- a/advisories/unreviewed/2024/01/GHSA-49g3-99r8-54xm/GHSA-49g3-99r8-54xm.json
+++ b/advisories/unreviewed/2024/01/GHSA-49g3-99r8-54xm/GHSA-49g3-99r8-54xm.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-4r39-fvrv-xrfj/GHSA-4r39-fvrv-xrfj.json b/advisories/unreviewed/2024/01/GHSA-4r39-fvrv-xrfj/GHSA-4r39-fvrv-xrfj.json
index a220f5f06ab..59efa7fb7d4 100644
--- a/advisories/unreviewed/2024/01/GHSA-4r39-fvrv-xrfj/GHSA-4r39-fvrv-xrfj.json
+++ b/advisories/unreviewed/2024/01/GHSA-4r39-fvrv-xrfj/GHSA-4r39-fvrv-xrfj.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-56fh-6xpm-28x9/GHSA-56fh-6xpm-28x9.json b/advisories/unreviewed/2024/01/GHSA-56fh-6xpm-28x9/GHSA-56fh-6xpm-28x9.json
index dffa31e597f..3e5f5ef5b39 100644
--- a/advisories/unreviewed/2024/01/GHSA-56fh-6xpm-28x9/GHSA-56fh-6xpm-28x9.json
+++ b/advisories/unreviewed/2024/01/GHSA-56fh-6xpm-28x9/GHSA-56fh-6xpm-28x9.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-7q9f-5fqh-wq7w/GHSA-7q9f-5fqh-wq7w.json b/advisories/unreviewed/2024/01/GHSA-7q9f-5fqh-wq7w/GHSA-7q9f-5fqh-wq7w.json
index 1c8705decad..b794ca5347b 100644
--- a/advisories/unreviewed/2024/01/GHSA-7q9f-5fqh-wq7w/GHSA-7q9f-5fqh-wq7w.json
+++ b/advisories/unreviewed/2024/01/GHSA-7q9f-5fqh-wq7w/GHSA-7q9f-5fqh-wq7w.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-96m6-2664-p2j5/GHSA-96m6-2664-p2j5.json b/advisories/unreviewed/2024/01/GHSA-96m6-2664-p2j5/GHSA-96m6-2664-p2j5.json
index 628e0cf3837..305cf29b702 100644
--- a/advisories/unreviewed/2024/01/GHSA-96m6-2664-p2j5/GHSA-96m6-2664-p2j5.json
+++ b/advisories/unreviewed/2024/01/GHSA-96m6-2664-p2j5/GHSA-96m6-2664-p2j5.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-96x2-hrr8-p6mj/GHSA-96x2-hrr8-p6mj.json b/advisories/unreviewed/2024/01/GHSA-96x2-hrr8-p6mj/GHSA-96x2-hrr8-p6mj.json
index 8bbcc54354d..129abe02209 100644
--- a/advisories/unreviewed/2024/01/GHSA-96x2-hrr8-p6mj/GHSA-96x2-hrr8-p6mj.json
+++ b/advisories/unreviewed/2024/01/GHSA-96x2-hrr8-p6mj/GHSA-96x2-hrr8-p6mj.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-9cch-8hqx-34qw/GHSA-9cch-8hqx-34qw.json b/advisories/unreviewed/2024/01/GHSA-9cch-8hqx-34qw/GHSA-9cch-8hqx-34qw.json
index 9993c234ca7..c791c1c6848 100644
--- a/advisories/unreviewed/2024/01/GHSA-9cch-8hqx-34qw/GHSA-9cch-8hqx-34qw.json
+++ b/advisories/unreviewed/2024/01/GHSA-9cch-8hqx-34qw/GHSA-9cch-8hqx-34qw.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-g93x-q39r-v946/GHSA-g93x-q39r-v946.json b/advisories/unreviewed/2024/01/GHSA-g93x-q39r-v946/GHSA-g93x-q39r-v946.json
index 6ecead8e21e..7f1809b04d8 100644
--- a/advisories/unreviewed/2024/01/GHSA-g93x-q39r-v946/GHSA-g93x-q39r-v946.json
+++ b/advisories/unreviewed/2024/01/GHSA-g93x-q39r-v946/GHSA-g93x-q39r-v946.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-gm33-x2h3-qg5f/GHSA-gm33-x2h3-qg5f.json b/advisories/unreviewed/2024/01/GHSA-gm33-x2h3-qg5f/GHSA-gm33-x2h3-qg5f.json
index 409ace49876..90c38fc125c 100644
--- a/advisories/unreviewed/2024/01/GHSA-gm33-x2h3-qg5f/GHSA-gm33-x2h3-qg5f.json
+++ b/advisories/unreviewed/2024/01/GHSA-gm33-x2h3-qg5f/GHSA-gm33-x2h3-qg5f.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-p34p-8w3x-9vqr/GHSA-p34p-8w3x-9vqr.json b/advisories/unreviewed/2024/01/GHSA-p34p-8w3x-9vqr/GHSA-p34p-8w3x-9vqr.json
index ba93054188d..e85592d23df 100644
--- a/advisories/unreviewed/2024/01/GHSA-p34p-8w3x-9vqr/GHSA-p34p-8w3x-9vqr.json
+++ b/advisories/unreviewed/2024/01/GHSA-p34p-8w3x-9vqr/GHSA-p34p-8w3x-9vqr.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-p6gc-xg55-f8m4/GHSA-p6gc-xg55-f8m4.json b/advisories/unreviewed/2024/01/GHSA-p6gc-xg55-f8m4/GHSA-p6gc-xg55-f8m4.json
index 80c75d0156f..ba7bf32a2d7 100644
--- a/advisories/unreviewed/2024/01/GHSA-p6gc-xg55-f8m4/GHSA-p6gc-xg55-f8m4.json
+++ b/advisories/unreviewed/2024/01/GHSA-p6gc-xg55-f8m4/GHSA-p6gc-xg55-f8m4.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-p8vq-xh8f-9wx6/GHSA-p8vq-xh8f-9wx6.json b/advisories/unreviewed/2024/01/GHSA-p8vq-xh8f-9wx6/GHSA-p8vq-xh8f-9wx6.json
index b5b2342e380..f4efad7381b 100644
--- a/advisories/unreviewed/2024/01/GHSA-p8vq-xh8f-9wx6/GHSA-p8vq-xh8f-9wx6.json
+++ b/advisories/unreviewed/2024/01/GHSA-p8vq-xh8f-9wx6/GHSA-p8vq-xh8f-9wx6.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-v432-65m6-c4x6/GHSA-v432-65m6-c4x6.json b/advisories/unreviewed/2024/01/GHSA-v432-65m6-c4x6/GHSA-v432-65m6-c4x6.json
index 88d75b7b22a..8f288b4927c 100644
--- a/advisories/unreviewed/2024/01/GHSA-v432-65m6-c4x6/GHSA-v432-65m6-c4x6.json
+++ b/advisories/unreviewed/2024/01/GHSA-v432-65m6-c4x6/GHSA-v432-65m6-c4x6.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-vjj5-xg7p-f752/GHSA-vjj5-xg7p-f752.json b/advisories/unreviewed/2024/01/GHSA-vjj5-xg7p-f752/GHSA-vjj5-xg7p-f752.json
index 372036d0075..a7458028c50 100644
--- a/advisories/unreviewed/2024/01/GHSA-vjj5-xg7p-f752/GHSA-vjj5-xg7p-f752.json
+++ b/advisories/unreviewed/2024/01/GHSA-vjj5-xg7p-f752/GHSA-vjj5-xg7p-f752.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-w24g-xjx9-4966/GHSA-w24g-xjx9-4966.json b/advisories/unreviewed/2024/01/GHSA-w24g-xjx9-4966/GHSA-w24g-xjx9-4966.json
index 9be28afb9a5..9c0f2b7d6dc 100644
--- a/advisories/unreviewed/2024/01/GHSA-w24g-xjx9-4966/GHSA-w24g-xjx9-4966.json
+++ b/advisories/unreviewed/2024/01/GHSA-w24g-xjx9-4966/GHSA-w24g-xjx9-4966.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/01/GHSA-xx52-9m5j-pp7h/GHSA-xx52-9m5j-pp7h.json b/advisories/unreviewed/2024/01/GHSA-xx52-9m5j-pp7h/GHSA-xx52-9m5j-pp7h.json
index 344d82b6e3b..ef83862ae64 100644
--- a/advisories/unreviewed/2024/01/GHSA-xx52-9m5j-pp7h/GHSA-xx52-9m5j-pp7h.json
+++ b/advisories/unreviewed/2024/01/GHSA-xx52-9m5j-pp7h/GHSA-xx52-9m5j-pp7h.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/02/GHSA-g24h-xx4p-jc7j/GHSA-g24h-xx4p-jc7j.json b/advisories/unreviewed/2024/02/GHSA-g24h-xx4p-jc7j/GHSA-g24h-xx4p-jc7j.json
index 1be6d2e94ee..1fd745fe1ce 100644
--- a/advisories/unreviewed/2024/02/GHSA-g24h-xx4p-jc7j/GHSA-g24h-xx4p-jc7j.json
+++ b/advisories/unreviewed/2024/02/GHSA-g24h-xx4p-jc7j/GHSA-g24h-xx4p-jc7j.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/02/GHSA-mmjv-3699-c2q5/GHSA-mmjv-3699-c2q5.json b/advisories/unreviewed/2024/02/GHSA-mmjv-3699-c2q5/GHSA-mmjv-3699-c2q5.json
index 8679c7e3790..788910d4974 100644
--- a/advisories/unreviewed/2024/02/GHSA-mmjv-3699-c2q5/GHSA-mmjv-3699-c2q5.json
+++ b/advisories/unreviewed/2024/02/GHSA-mmjv-3699-c2q5/GHSA-mmjv-3699-c2q5.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/02/GHSA-mwr4-m2r6-rmh7/GHSA-mwr4-m2r6-rmh7.json b/advisories/unreviewed/2024/02/GHSA-mwr4-m2r6-rmh7/GHSA-mwr4-m2r6-rmh7.json
index b21d3820728..bc4de58ca5d 100644
--- a/advisories/unreviewed/2024/02/GHSA-mwr4-m2r6-rmh7/GHSA-mwr4-m2r6-rmh7.json
+++ b/advisories/unreviewed/2024/02/GHSA-mwr4-m2r6-rmh7/GHSA-mwr4-m2r6-rmh7.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/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/2024/02/GHSA-qrf5-gh6v-gv6g/GHSA-qrf5-gh6v-gv6g.json b/advisories/unreviewed/2024/02/GHSA-qrf5-gh6v-gv6g/GHSA-qrf5-gh6v-gv6g.json
index b69c91aded2..78da030be54 100644
--- a/advisories/unreviewed/2024/02/GHSA-qrf5-gh6v-gv6g/GHSA-qrf5-gh6v-gv6g.json
+++ b/advisories/unreviewed/2024/02/GHSA-qrf5-gh6v-gv6g/GHSA-qrf5-gh6v-gv6g.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/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/2024/02/GHSA-v4q2-79g6-j728/GHSA-v4q2-79g6-j728.json b/advisories/unreviewed/2024/02/GHSA-v4q2-79g6-j728/GHSA-v4q2-79g6-j728.json
index 2a2822a660a..17aee7c2691 100644
--- a/advisories/unreviewed/2024/02/GHSA-v4q2-79g6-j728/GHSA-v4q2-79g6-j728.json
+++ b/advisories/unreviewed/2024/02/GHSA-v4q2-79g6-j728/GHSA-v4q2-79g6-j728.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/04/GHSA-33qx-4qqq-fc86/GHSA-33qx-4qqq-fc86.json b/advisories/unreviewed/2024/04/GHSA-33qx-4qqq-fc86/GHSA-33qx-4qqq-fc86.json
index e29496879a7..d85f52fef77 100644
--- a/advisories/unreviewed/2024/04/GHSA-33qx-4qqq-fc86/GHSA-33qx-4qqq-fc86.json
+++ b/advisories/unreviewed/2024/04/GHSA-33qx-4qqq-fc86/GHSA-33qx-4qqq-fc86.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/2024/04/GHSA-cj2r-9qx3-cf53/GHSA-cj2r-9qx3-cf53.json b/advisories/unreviewed/2024/04/GHSA-cj2r-9qx3-cf53/GHSA-cj2r-9qx3-cf53.json
index b44eb763149..e223c389a50 100644
--- a/advisories/unreviewed/2024/04/GHSA-cj2r-9qx3-cf53/GHSA-cj2r-9qx3-cf53.json
+++ b/advisories/unreviewed/2024/04/GHSA-cj2r-9qx3-cf53/GHSA-cj2r-9qx3-cf53.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/2024/04/GHSA-m67v-rhjq-4r57/GHSA-m67v-rhjq-4r57.json b/advisories/unreviewed/2024/04/GHSA-m67v-rhjq-4r57/GHSA-m67v-rhjq-4r57.json
index 2749f3cfc8f..b9e23fb8c26 100644
--- a/advisories/unreviewed/2024/04/GHSA-m67v-rhjq-4r57/GHSA-m67v-rhjq-4r57.json
+++ b/advisories/unreviewed/2024/04/GHSA-m67v-rhjq-4r57/GHSA-m67v-rhjq-4r57.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/2024/05/GHSA-79f2-582m-m8p8/GHSA-79f2-582m-m8p8.json b/advisories/unreviewed/2024/05/GHSA-79f2-582m-m8p8/GHSA-79f2-582m-m8p8.json
index 2200ac60230..d34a71ef204 100644
--- a/advisories/unreviewed/2024/05/GHSA-79f2-582m-m8p8/GHSA-79f2-582m-m8p8.json
+++ b/advisories/unreviewed/2024/05/GHSA-79f2-582m-m8p8/GHSA-79f2-582m-m8p8.json
@@ -13,9 +13,7 @@
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
- "affected": [
-
- ],
+ "affected": [],
"references": [
{
"type": "ADVISORY",
diff --git a/advisories/unreviewed/2024/07/GHSA-gmp6-hg9q-f8gw/GHSA-gmp6-hg9q-f8gw.json b/advisories/unreviewed/2024/07/GHSA-gmp6-hg9q-f8gw/GHSA-gmp6-hg9q-f8gw.json
index 78f1376fa2f..0f7dc7d2886 100644
--- a/advisories/unreviewed/2024/07/GHSA-gmp6-hg9q-f8gw/GHSA-gmp6-hg9q-f8gw.json
+++ b/advisories/unreviewed/2024/07/GHSA-gmp6-hg9q-f8gw/GHSA-gmp6-hg9q-f8gw.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",