diff --git a/advisories/github-reviewed/2022/05/GHSA-989h-wv8x-933p/GHSA-989h-wv8x-933p.json b/advisories/github-reviewed/2022/05/GHSA-989h-wv8x-933p/GHSA-989h-wv8x-933p.json index 3ad4dccb228..2e1e03afe43 100644 --- a/advisories/github-reviewed/2022/05/GHSA-989h-wv8x-933p/GHSA-989h-wv8x-933p.json +++ b/advisories/github-reviewed/2022/05/GHSA-989h-wv8x-933p/GHSA-989h-wv8x-933p.json @@ -8,9 +8,7 @@ ], "summary": "TYPO3 cross-site scripting (XSS)", "details": "The sanitizeLocalUrl function in TYPO3 6.x before 6.2.15, 7.x before 7.4.0, 4.5.40, and earlier allows remote authenticated users to bypass the XSS filter and conduct cross-site scripting (XSS) attacks via a base64 encoded data URI, as demonstrated by the (1) returnUrl parameter to show_rechis.php and the (2) redirect_url parameter to index.php.", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { diff --git a/advisories/github-reviewed/2022/06/GHSA-cqpr-pcm7-m3jc/GHSA-cqpr-pcm7-m3jc.json b/advisories/github-reviewed/2022/06/GHSA-cqpr-pcm7-m3jc/GHSA-cqpr-pcm7-m3jc.json index 88c26f6b3ee..eb8284a81a8 100644 --- a/advisories/github-reviewed/2022/06/GHSA-cqpr-pcm7-m3jc/GHSA-cqpr-pcm7-m3jc.json +++ b/advisories/github-reviewed/2022/06/GHSA-cqpr-pcm7-m3jc/GHSA-cqpr-pcm7-m3jc.json @@ -4,14 +4,10 @@ "modified": "2022-08-04T19:38:53Z", "published": "2022-06-16T23:48:34Z", "withdrawn": "2022-07-21T18:06:06Z", - "aliases": [ - - ], + "aliases": [], "summary": "Potential segfault in `localtime_r` invocations", "details": "### Impact\n\nUnix-like operating systems may segfault due to dereferencing a dangling pointer in specific circumstances. This requires an environment variable to be set in a different thread than the affected functions. This may occur without the user's knowledge, notably in a third-party library.\n\n### Workarounds \n\nNo workarounds are known.", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { @@ -52,9 +48,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": true, "github_reviewed_at": "2022-06-16T23:48:34Z", diff --git a/advisories/github-reviewed/2022/06/GHSA-gfg9-x6px-r7gr/GHSA-gfg9-x6px-r7gr.json b/advisories/github-reviewed/2022/06/GHSA-gfg9-x6px-r7gr/GHSA-gfg9-x6px-r7gr.json index 25816f3226f..ef8f2ea2eec 100644 --- a/advisories/github-reviewed/2022/06/GHSA-gfg9-x6px-r7gr/GHSA-gfg9-x6px-r7gr.json +++ b/advisories/github-reviewed/2022/06/GHSA-gfg9-x6px-r7gr/GHSA-gfg9-x6px-r7gr.json @@ -3,14 +3,10 @@ "id": "GHSA-gfg9-x6px-r7gr", "modified": "2022-06-16T23:09:17Z", "published": "2022-06-16T23:09:17Z", - "aliases": [ - - ], + "aliases": [], "summary": "Library exclusively intended to obfuscate code.", "details": "This crate allows you to write safe functions with unsafe bodies without the `unsafe` keyword.\n\nThe value this adds is questionable, and hides `unsafe` usages from naive analysis.\n", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { @@ -43,9 +39,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": true, "github_reviewed_at": "2022-06-16T23:09:17Z", diff --git a/advisories/github-reviewed/2022/06/GHSA-jp3w-3q88-34cf/GHSA-jp3w-3q88-34cf.json b/advisories/github-reviewed/2022/06/GHSA-jp3w-3q88-34cf/GHSA-jp3w-3q88-34cf.json index 35332e44432..74e6796e1eb 100644 --- a/advisories/github-reviewed/2022/06/GHSA-jp3w-3q88-34cf/GHSA-jp3w-3q88-34cf.json +++ b/advisories/github-reviewed/2022/06/GHSA-jp3w-3q88-34cf/GHSA-jp3w-3q88-34cf.json @@ -3,14 +3,10 @@ "id": "GHSA-jp3w-3q88-34cf", "modified": "2022-06-17T00:17:08Z", "published": "2022-06-17T00:17:08Z", - "aliases": [ - - ], + "aliases": [], "summary": "Miscomputation when performing AES encryption in rust-crypto", "details": "The following Rust program demonstrates some strangeness in AES encryption - if you have an immutable key slice and then operate on that slice, you get different encryption output than if you operate on a copy of that key.\n\nFor these functions, we expect that extending a 16 byte key to a 32 byte key by repeating it gives the same encrypted data, because the underlying rust-crypto functions repeat key data up to the necessary key size for the cipher.\n\n```rust\nuse crypto::{\n aes, blockmodes, buffer,\n buffer::{BufferResult, ReadBuffer, WriteBuffer},\n symmetriccipher,\n};\n\nfn encrypt(\n key: &[u8],\n iv: &[u8],\n data: &str,\n) -> Result {\n let mut encryptor =\n aes::cbc_encryptor(aes::KeySize::KeySize256, key, iv, blockmodes::PkcsPadding);\n\n let mut encrypted_data = Vec::::new();\n let mut read_buffer = buffer::RefReadBuffer::new(data.as_bytes());\n let mut buffer = [0; 4096];\n let mut write_buffer = buffer::RefWriteBuffer::new(&mut buffer);\n\n loop {\n let result = encryptor.encrypt(&mut read_buffer, &mut write_buffer, true)?;\n\n encrypted_data.extend(\n write_buffer\n .take_read_buffer()\n .take_remaining()\n .iter()\n .copied(),\n );\n\n match result {\n BufferResult::BufferUnderflow => break,\n BufferResult::BufferOverflow => {}\n }\n }\n\n Ok(hex::encode(encrypted_data))\n}\n\nfn working() {\n let data = \"data\";\n let iv = [\n 0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE,\n 0xFF,\n ];\n let key = [\n 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E,\n 0x0F,\n ];\n // The copy here makes the code work.\n let key_copy = key;\n let key2: Vec = key_copy.iter().cycle().take(32).copied().collect();\n println!(\"key1:{} key2: {}\", hex::encode(&key), hex::encode(&key2));\n\n let x1 = encrypt(&key, &iv, data).unwrap();\n println!(\"X1: {}\", x1);\n\n let x2 = encrypt(&key2, &iv, data).unwrap();\n println!(\"X2: {}\", x2);\n\n assert_eq!(x1, x2);\n}\n\nfn broken() {\n let data = \"data\";\n let iv = [\n 0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE,\n 0xFF,\n ];\n let key = [\n 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E,\n 0x0F,\n ];\n // This operation shouldn't affect the contents of key at all.\n let key2: Vec = key.iter().cycle().take(32).copied().collect();\n println!(\"key1:{} key2: {}\", hex::encode(&key), hex::encode(&key2));\n\n let x1 = encrypt(&key, &iv, data).unwrap();\n println!(\"X1: {}\", x1);\n\n let x2 = encrypt(&key2, &iv, data).unwrap();\n println!(\"X2: {}\", x2);\n\n assert_eq!(x1, x2);\n}\n\nfn main() {\n working();\n broken();\n}\n```\n\nThe output from this program:\n\n```shell\n Running `target/host/debug/rust-crypto-test`\nkey1:000102030405060708090a0b0c0d0e0f key2: 000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f\nX1: 90462bbe32965c8e7ea0addbbed4cddb\nX2: 90462bbe32965c8e7ea0addbbed4cddb\nkey1:000102030405060708090a0b0c0d0e0f key2: 000102030405060708090a0b0c0d0e0f000102030405060708090a0b0c0d0e0f\nX1: 26e847e5e7df1947bf82a650548a7d5b\nX2: 90462bbe32965c8e7ea0addbbed4cddb\nthread 'main' panicked at 'assertion failed: `(left == right)`\n left: `\"26e847e5e7df1947bf82a650548a7d5b\"`,\n right: `\"90462bbe32965c8e7ea0addbbed4cddb\"`', src/main.rs:83:5\n```\n\nNotably, the X1 key in the `broken()` test changes every time after rerunning the program.\n\n", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { @@ -47,9 +43,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "CRITICAL", "github_reviewed": true, "github_reviewed_at": "2022-06-17T00:17:08Z", diff --git a/advisories/github-reviewed/2024/04/GHSA-7f4j-64p6-5h5v/GHSA-7f4j-64p6-5h5v.json b/advisories/github-reviewed/2024/04/GHSA-7f4j-64p6-5h5v/GHSA-7f4j-64p6-5h5v.json index 249072fef59..4b8d7d0f4e4 100644 --- a/advisories/github-reviewed/2024/04/GHSA-7f4j-64p6-5h5v/GHSA-7f4j-64p6-5h5v.json +++ b/advisories/github-reviewed/2024/04/GHSA-7f4j-64p6-5h5v/GHSA-7f4j-64p6-5h5v.json @@ -3,14 +3,10 @@ "id": "GHSA-7f4j-64p6-5h5v", "modified": "2024-04-15T18:14:51Z", "published": "2024-04-15T18:14:51Z", - "aliases": [ - - ], + "aliases": [], "summary": "Traefik affected by HTTP/2 CONTINUATION flood in net/http", "details": "There is a potential vulnerability in Traefik managing HTTP/2 connections.\n\nMore details in the [CVE-2023-45288](https://www.cve.org/CVERecord?id=CVE-2023-45288).\n\n## Patches\n\n- https://github.com/traefik/traefik/releases/tag/v2.11.2\n- https://github.com/traefik/traefik/releases/tag/v3.0.0-rc5\n\n## Workarounds\n\nNo workaround\n\n## For more information\n\nIf you have any questions or comments about this advisory, please [open an issue](https://github.com/traefik/traefik/issues).", - "severity": [ - - ], + "severity": [], "affected": [ { "package": { @@ -70,9 +66,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": true, "github_reviewed_at": "2024-04-15T18:14:51Z", diff --git a/advisories/unreviewed/2021/07/GHSA-x3cj-3539-rcpx/GHSA-x3cj-3539-rcpx.json b/advisories/unreviewed/2021/07/GHSA-x3cj-3539-rcpx/GHSA-x3cj-3539-rcpx.json index 0ccb4809513..e9448469a63 100644 --- a/advisories/unreviewed/2021/07/GHSA-x3cj-3539-rcpx/GHSA-x3cj-3539-rcpx.json +++ b/advisories/unreviewed/2021/07/GHSA-x3cj-3539-rcpx/GHSA-x3cj-3539-rcpx.json @@ -14,9 +14,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2021/11/GHSA-v748-hjwp-h5jj/GHSA-v748-hjwp-h5jj.json b/advisories/unreviewed/2021/11/GHSA-v748-hjwp-h5jj/GHSA-v748-hjwp-h5jj.json index 52e6dfc0a26..53b1b2d7b01 100644 --- a/advisories/unreviewed/2021/11/GHSA-v748-hjwp-h5jj/GHSA-v748-hjwp-h5jj.json +++ b/advisories/unreviewed/2021/11/GHSA-v748-hjwp-h5jj/GHSA-v748-hjwp-h5jj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2021/12/GHSA-4jr3-2x33-xqgg/GHSA-4jr3-2x33-xqgg.json b/advisories/unreviewed/2021/12/GHSA-4jr3-2x33-xqgg/GHSA-4jr3-2x33-xqgg.json index 7e554fba6c5..cd221eb2e98 100644 --- a/advisories/unreviewed/2021/12/GHSA-4jr3-2x33-xqgg/GHSA-4jr3-2x33-xqgg.json +++ b/advisories/unreviewed/2021/12/GHSA-4jr3-2x33-xqgg/GHSA-4jr3-2x33-xqgg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2021/12/GHSA-m6qc-gq4x-8cq4/GHSA-m6qc-gq4x-8cq4.json b/advisories/unreviewed/2021/12/GHSA-m6qc-gq4x-8cq4/GHSA-m6qc-gq4x-8cq4.json index f32523934b5..31ad76f7a4b 100644 --- a/advisories/unreviewed/2021/12/GHSA-m6qc-gq4x-8cq4/GHSA-m6qc-gq4x-8cq4.json +++ b/advisories/unreviewed/2021/12/GHSA-m6qc-gq4x-8cq4/GHSA-m6qc-gq4x-8cq4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2021/12/GHSA-r79c-6hf5-2jjx/GHSA-r79c-6hf5-2jjx.json b/advisories/unreviewed/2021/12/GHSA-r79c-6hf5-2jjx/GHSA-r79c-6hf5-2jjx.json index 4e6bb078d24..4eef12b0113 100644 --- a/advisories/unreviewed/2021/12/GHSA-r79c-6hf5-2jjx/GHSA-r79c-6hf5-2jjx.json +++ b/advisories/unreviewed/2021/12/GHSA-r79c-6hf5-2jjx/GHSA-r79c-6hf5-2jjx.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/01/GHSA-pg7r-g97x-9qxx/GHSA-pg7r-g97x-9qxx.json b/advisories/unreviewed/2022/01/GHSA-pg7r-g97x-9qxx/GHSA-pg7r-g97x-9qxx.json index 1c0cad67d29..0c12cc97cd3 100644 --- a/advisories/unreviewed/2022/01/GHSA-pg7r-g97x-9qxx/GHSA-pg7r-g97x-9qxx.json +++ b/advisories/unreviewed/2022/01/GHSA-pg7r-g97x-9qxx/GHSA-pg7r-g97x-9qxx.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/01/GHSA-wfxq-p22p-779j/GHSA-wfxq-p22p-779j.json b/advisories/unreviewed/2022/01/GHSA-wfxq-p22p-779j/GHSA-wfxq-p22p-779j.json index e27eb211a90..85d73290827 100644 --- a/advisories/unreviewed/2022/01/GHSA-wfxq-p22p-779j/GHSA-wfxq-p22p-779j.json +++ b/advisories/unreviewed/2022/01/GHSA-wfxq-p22p-779j/GHSA-wfxq-p22p-779j.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/05/GHSA-22h9-63c7-9wcc/GHSA-22h9-63c7-9wcc.json b/advisories/unreviewed/2022/05/GHSA-22h9-63c7-9wcc/GHSA-22h9-63c7-9wcc.json index 7c21f6c4298..88e012a8d63 100644 --- a/advisories/unreviewed/2022/05/GHSA-22h9-63c7-9wcc/GHSA-22h9-63c7-9wcc.json +++ b/advisories/unreviewed/2022/05/GHSA-22h9-63c7-9wcc/GHSA-22h9-63c7-9wcc.json @@ -7,12 +7,8 @@ "CVE-2010-4013" ], "details": "Format string vulnerability in PackageKit in Apple Mac OS X 10.6.x before 10.6.6 allows man-in-the-middle attackers to execute arbitrary code or cause a denial of service (application crash) via vectors related to interaction between Software Update and distribution scripts.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-23jq-44mr-vjqc/GHSA-23jq-44mr-vjqc.json b/advisories/unreviewed/2022/05/GHSA-23jq-44mr-vjqc/GHSA-23jq-44mr-vjqc.json index 3c604d04e09..f956c1d521b 100644 --- a/advisories/unreviewed/2022/05/GHSA-23jq-44mr-vjqc/GHSA-23jq-44mr-vjqc.json +++ b/advisories/unreviewed/2022/05/GHSA-23jq-44mr-vjqc/GHSA-23jq-44mr-vjqc.json @@ -7,12 +7,8 @@ "CVE-2010-4746" ], "details": "Multiple memory leaks in the normalization functionality in 389 Directory Server before 1.2.7.5 allow remote attackers to cause a denial of service (memory consumption) via \"badly behaved applications,\" related to (1) Slapi_Attr mishandling in the DN normalization code and (2) pointer mishandling in the syntax normalization code, a different issue than CVE-2011-0019.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-23mc-xgfq-qhjf/GHSA-23mc-xgfq-qhjf.json b/advisories/unreviewed/2022/05/GHSA-23mc-xgfq-qhjf/GHSA-23mc-xgfq-qhjf.json index f221564e8d6..4ee31e7b937 100644 --- a/advisories/unreviewed/2022/05/GHSA-23mc-xgfq-qhjf/GHSA-23mc-xgfq-qhjf.json +++ b/advisories/unreviewed/2022/05/GHSA-23mc-xgfq-qhjf/GHSA-23mc-xgfq-qhjf.json @@ -7,12 +7,8 @@ "CVE-2010-4761" ], "details": "The customer-interface ticket-print dialog in Open Ticket Request System (OTRS) before 3.0.0-beta3 does not properly restrict customer-visible data, which allows remote authenticated users to obtain potentially sensitive information from the (1) responsible, (2) owner, (3) accounted time, (4) pending until, and (5) lock fields by reading this dialog.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-25fm-gvgp-hcrp/GHSA-25fm-gvgp-hcrp.json b/advisories/unreviewed/2022/05/GHSA-25fm-gvgp-hcrp/GHSA-25fm-gvgp-hcrp.json index 1480b1e01ba..39983f8e9d8 100644 --- a/advisories/unreviewed/2022/05/GHSA-25fm-gvgp-hcrp/GHSA-25fm-gvgp-hcrp.json +++ b/advisories/unreviewed/2022/05/GHSA-25fm-gvgp-hcrp/GHSA-25fm-gvgp-hcrp.json @@ -7,12 +7,8 @@ "CVE-2008-7286" ], "details": "IBM Lotus Quickr 8.1 before 8.1.0.2 services for Lotus Domino does not properly handle URLs that request images, which allows remote authenticated users to cause a denial of service (daemon crash) via a request to resources.nsf, aka SPR XFXF7JDBCX.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-25j8-p372-9f6w/GHSA-25j8-p372-9f6w.json b/advisories/unreviewed/2022/05/GHSA-25j8-p372-9f6w/GHSA-25j8-p372-9f6w.json index ad6de6728c6..866fed20023 100644 --- a/advisories/unreviewed/2022/05/GHSA-25j8-p372-9f6w/GHSA-25j8-p372-9f6w.json +++ b/advisories/unreviewed/2022/05/GHSA-25j8-p372-9f6w/GHSA-25j8-p372-9f6w.json @@ -7,12 +7,8 @@ "CVE-2010-4262" ], "details": "Stack-based buffer overflow in Xfig 3.2.4 and 3.2.5 allows remote attackers to cause a denial of service (crash) and possibly execute arbitrary code via a FIG image with a crafted color definition.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-25w3-g886-5v8g/GHSA-25w3-g886-5v8g.json b/advisories/unreviewed/2022/05/GHSA-25w3-g886-5v8g/GHSA-25w3-g886-5v8g.json index 49a6cca0d91..ed903eb4bc8 100644 --- a/advisories/unreviewed/2022/05/GHSA-25w3-g886-5v8g/GHSA-25w3-g886-5v8g.json +++ b/advisories/unreviewed/2022/05/GHSA-25w3-g886-5v8g/GHSA-25w3-g886-5v8g.json @@ -7,12 +7,8 @@ "CVE-2010-4518" ], "details": "Cross-site scripting (XSS) vulnerability in wp-safe-search/wp-safe-search-jx.php in the Safe Search plugin 0.7 for WordPress allows remote attackers to inject arbitrary web script or HTML via the v1 parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-26p6-8m4j-3q9m/GHSA-26p6-8m4j-3q9m.json b/advisories/unreviewed/2022/05/GHSA-26p6-8m4j-3q9m/GHSA-26p6-8m4j-3q9m.json index 5da86b278df..ef992745954 100644 --- a/advisories/unreviewed/2022/05/GHSA-26p6-8m4j-3q9m/GHSA-26p6-8m4j-3q9m.json +++ b/advisories/unreviewed/2022/05/GHSA-26p6-8m4j-3q9m/GHSA-26p6-8m4j-3q9m.json @@ -7,12 +7,8 @@ "CVE-2011-2474" ], "details": "Directory traversal vulnerability in the HTTP Server in Sybase EAServer 6.3.1 Developer Edition allows remote attackers to read arbitrary files via a /.\\../\\../\\ sequence in a path.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-26xj-xw26-4hf7/GHSA-26xj-xw26-4hf7.json b/advisories/unreviewed/2022/05/GHSA-26xj-xw26-4hf7/GHSA-26xj-xw26-4hf7.json index bbba2ed1a95..5c69196e551 100644 --- a/advisories/unreviewed/2022/05/GHSA-26xj-xw26-4hf7/GHSA-26xj-xw26-4hf7.json +++ b/advisories/unreviewed/2022/05/GHSA-26xj-xw26-4hf7/GHSA-26xj-xw26-4hf7.json @@ -7,12 +7,8 @@ "CVE-2010-4521" ], "details": "Cross-site scripting (XSS) vulnerability in the Views module 6.x before 6.x-2.12 for Drupal allows remote attackers to inject arbitrary web script or HTML via a page path.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-272c-7cjj-8qc6/GHSA-272c-7cjj-8qc6.json b/advisories/unreviewed/2022/05/GHSA-272c-7cjj-8qc6/GHSA-272c-7cjj-8qc6.json index 2b0ee8b6029..507fe209faf 100644 --- a/advisories/unreviewed/2022/05/GHSA-272c-7cjj-8qc6/GHSA-272c-7cjj-8qc6.json +++ b/advisories/unreviewed/2022/05/GHSA-272c-7cjj-8qc6/GHSA-272c-7cjj-8qc6.json @@ -7,12 +7,8 @@ "CVE-2010-4377" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.5, Mac RealPlayer 11.0 through 12.0.0.1444, and Linux RealPlayer 11.0.2.1744 allows remote attackers to execute arbitrary code by specifying many subbands in cook audio codec information in a Real Audio file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-27v3-j68w-q6ph/GHSA-27v3-j68w-q6ph.json b/advisories/unreviewed/2022/05/GHSA-27v3-j68w-q6ph/GHSA-27v3-j68w-q6ph.json index 449db895daa..3f345411de8 100644 --- a/advisories/unreviewed/2022/05/GHSA-27v3-j68w-q6ph/GHSA-27v3-j68w-q6ph.json +++ b/advisories/unreviewed/2022/05/GHSA-27v3-j68w-q6ph/GHSA-27v3-j68w-q6ph.json @@ -7,12 +7,8 @@ "CVE-2008-4656" ], "details": "SQL injection vulnerability in the Frontend Users View (feusersview) 0.1.6 and earlier extension for TYPO3 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-27xg-jff9-57pq/GHSA-27xg-jff9-57pq.json b/advisories/unreviewed/2022/05/GHSA-27xg-jff9-57pq/GHSA-27xg-jff9-57pq.json index 9a3910483a0..b76917f5ee7 100644 --- a/advisories/unreviewed/2022/05/GHSA-27xg-jff9-57pq/GHSA-27xg-jff9-57pq.json +++ b/advisories/unreviewed/2022/05/GHSA-27xg-jff9-57pq/GHSA-27xg-jff9-57pq.json @@ -7,12 +7,8 @@ "CVE-2011-2092" ], "details": "Adobe LiveCycle Data Services 3.1 and earlier, LiveCycle 9.0.0.2 and earlier, and BlazeDS 4.0.1 and earlier do not properly restrict creation of classes during deserialization of (1) AMF and (2) AMFX data, which allows attackers to have an unspecified impact via unknown vectors, related to a \"deserialization vulnerability.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2859-fc3x-94xw/GHSA-2859-fc3x-94xw.json b/advisories/unreviewed/2022/05/GHSA-2859-fc3x-94xw/GHSA-2859-fc3x-94xw.json index b93cf982509..53893ae16ce 100644 --- a/advisories/unreviewed/2022/05/GHSA-2859-fc3x-94xw/GHSA-2859-fc3x-94xw.json +++ b/advisories/unreviewed/2022/05/GHSA-2859-fc3x-94xw/GHSA-2859-fc3x-94xw.json @@ -7,12 +7,8 @@ "CVE-2011-1542" ], "details": "Cross-site scripting (XSS) vulnerability in HP Systems Insight Manager (SIM) before 6.3 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-294c-c6r2-489h/GHSA-294c-c6r2-489h.json b/advisories/unreviewed/2022/05/GHSA-294c-c6r2-489h/GHSA-294c-c6r2-489h.json index d8a1d0b8827..44db61a6ac2 100644 --- a/advisories/unreviewed/2022/05/GHSA-294c-c6r2-489h/GHSA-294c-c6r2-489h.json +++ b/advisories/unreviewed/2022/05/GHSA-294c-c6r2-489h/GHSA-294c-c6r2-489h.json @@ -7,12 +7,8 @@ "CVE-2010-4547" ], "details": "IBM Lotus Notes Traveler before 8.5.1.3, when a multidomain environment is used, does not properly apply policy documents to mobile users from a different Domino domain than the Traveler server, which allows remote authenticated users to bypass intended access restrictions by using credentials from a different domain.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2c36-4mp6-4c2f/GHSA-2c36-4mp6-4c2f.json b/advisories/unreviewed/2022/05/GHSA-2c36-4mp6-4c2f/GHSA-2c36-4mp6-4c2f.json index 03ba7d177be..53cd61931ed 100644 --- a/advisories/unreviewed/2022/05/GHSA-2c36-4mp6-4c2f/GHSA-2c36-4mp6-4c2f.json +++ b/advisories/unreviewed/2022/05/GHSA-2c36-4mp6-4c2f/GHSA-2c36-4mp6-4c2f.json @@ -7,12 +7,8 @@ "CVE-2010-4601" ], "details": "Multiple unspecified vulnerabilities in IBM Rational ClearQuest 7.0.x before 7.0.1.11, 7.1.1.x before 7.1.1.4, and 7.1.2.x before 7.1.2.1 allow attackers to have an unknown impact via vectors related to third-party .ocx files.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2c5c-cr43-hgwm/GHSA-2c5c-cr43-hgwm.json b/advisories/unreviewed/2022/05/GHSA-2c5c-cr43-hgwm/GHSA-2c5c-cr43-hgwm.json index 391fab7fa85..75d6c0db701 100644 --- a/advisories/unreviewed/2022/05/GHSA-2c5c-cr43-hgwm/GHSA-2c5c-cr43-hgwm.json +++ b/advisories/unreviewed/2022/05/GHSA-2c5c-cr43-hgwm/GHSA-2c5c-cr43-hgwm.json @@ -7,12 +7,8 @@ "CVE-2011-1555" ], "details": "SQL injection vulnerability in saa.php in Andy's PHP Knowledgebase (Aphpkb) 0.95.3 and earlier allows remote attackers to execute arbitrary SQL commands via the aid parameter, a different vulnerability than CVE-2011-1546. 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-2f74-hjc3-cgqp/GHSA-2f74-hjc3-cgqp.json b/advisories/unreviewed/2022/05/GHSA-2f74-hjc3-cgqp/GHSA-2f74-hjc3-cgqp.json index a6dc84a67e5..6700a36cc8e 100644 --- a/advisories/unreviewed/2022/05/GHSA-2f74-hjc3-cgqp/GHSA-2f74-hjc3-cgqp.json +++ b/advisories/unreviewed/2022/05/GHSA-2f74-hjc3-cgqp/GHSA-2f74-hjc3-cgqp.json @@ -7,12 +7,8 @@ "CVE-2010-4385" ], "details": "Integer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.4, RealPlayer Enterprise 2.1.2, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allows remote attackers to have an unspecified impact via crafted frame dimensions in an SIPR stream.", - "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-2fp4-xh7g-85v8/GHSA-2fp4-xh7g-85v8.json b/advisories/unreviewed/2022/05/GHSA-2fp4-xh7g-85v8/GHSA-2fp4-xh7g-85v8.json index 38bdd9e08bc..a2d4f082648 100644 --- a/advisories/unreviewed/2022/05/GHSA-2fp4-xh7g-85v8/GHSA-2fp4-xh7g-85v8.json +++ b/advisories/unreviewed/2022/05/GHSA-2fp4-xh7g-85v8/GHSA-2fp4-xh7g-85v8.json @@ -7,12 +7,8 @@ "CVE-2010-4738" ], "details": "Multiple SQL injection vulnerabilities in Rae Media INC Real Estate Single and Multi Agent System 3.0 allow remote attackers to execute arbitrary SQL commands via the probe parameter to (1) multi/city.asp in the Multi Agent System and (2) resulttype.asp in the Single Agent System.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2fww-mhh6-5mxr/GHSA-2fww-mhh6-5mxr.json b/advisories/unreviewed/2022/05/GHSA-2fww-mhh6-5mxr/GHSA-2fww-mhh6-5mxr.json index 605606b4253..e2b59ed88ff 100644 --- a/advisories/unreviewed/2022/05/GHSA-2fww-mhh6-5mxr/GHSA-2fww-mhh6-5mxr.json +++ b/advisories/unreviewed/2022/05/GHSA-2fww-mhh6-5mxr/GHSA-2fww-mhh6-5mxr.json @@ -7,12 +7,8 @@ "CVE-2010-4071" ], "details": "Cross-site scripting (XSS) vulnerability in AgentTicketZoom in OTRS 2.4.x before 2.4.9, when RichText is enabled, allows remote attackers to inject arbitrary web script or HTML via JavaScript in an HTML e-mail.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2fxv-5465-p76g/GHSA-2fxv-5465-p76g.json b/advisories/unreviewed/2022/05/GHSA-2fxv-5465-p76g/GHSA-2fxv-5465-p76g.json index 49199f0f47e..81275291da1 100644 --- a/advisories/unreviewed/2022/05/GHSA-2fxv-5465-p76g/GHSA-2fxv-5465-p76g.json +++ b/advisories/unreviewed/2022/05/GHSA-2fxv-5465-p76g/GHSA-2fxv-5465-p76g.json @@ -7,12 +7,8 @@ "CVE-2010-4254" ], "details": "Mono, when Moonlight before 2.3.0.1 or 2.99.x before 2.99.0.10 is used, does not properly validate arguments to generic methods, which allows remote attackers to bypass generic constraints, and possibly execute arbitrary code, via a crafted method call.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2gc9-pwg3-hg5r/GHSA-2gc9-pwg3-hg5r.json b/advisories/unreviewed/2022/05/GHSA-2gc9-pwg3-hg5r/GHSA-2gc9-pwg3-hg5r.json index 2cf3f29d37a..426bd89add9 100644 --- a/advisories/unreviewed/2022/05/GHSA-2gc9-pwg3-hg5r/GHSA-2gc9-pwg3-hg5r.json +++ b/advisories/unreviewed/2022/05/GHSA-2gc9-pwg3-hg5r/GHSA-2gc9-pwg3-hg5r.json @@ -7,12 +7,8 @@ "CVE-2011-0431" ], "details": "The afs_linux_lock function in afs/LINUX/osi_vnodeops.c in the kernel module in OpenAFS 1.4.14, 1.4.12, 1.4.7, and possibly other versions does not properly handle errors, which allows attackers to cause a denial of service via unknown vectors. 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-2gwv-c7j5-2654/GHSA-2gwv-c7j5-2654.json b/advisories/unreviewed/2022/05/GHSA-2gwv-c7j5-2654/GHSA-2gwv-c7j5-2654.json index 3eb4c85a4b1..21e249f6cb2 100644 --- a/advisories/unreviewed/2022/05/GHSA-2gwv-c7j5-2654/GHSA-2gwv-c7j5-2654.json +++ b/advisories/unreviewed/2022/05/GHSA-2gwv-c7j5-2654/GHSA-2gwv-c7j5-2654.json @@ -7,12 +7,8 @@ "CVE-2011-2602" ], "details": "The NVIDIA Geforce 310 driver 6.14.12.7061 on Windows XP SP3 allows remote attackers to cause a denial of service (system crash) via a crafted web page that is visited with Google Chrome or Mozilla Firefox, as demonstrated by the lots-of-polys-example.html test page in the Khronos WebGL SDK.", - "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-2h2m-7hfv-6h4g/GHSA-2h2m-7hfv-6h4g.json b/advisories/unreviewed/2022/05/GHSA-2h2m-7hfv-6h4g/GHSA-2h2m-7hfv-6h4g.json index 443c583c1ff..ffef9622324 100644 --- a/advisories/unreviewed/2022/05/GHSA-2h2m-7hfv-6h4g/GHSA-2h2m-7hfv-6h4g.json +++ b/advisories/unreviewed/2022/05/GHSA-2h2m-7hfv-6h4g/GHSA-2h2m-7hfv-6h4g.json @@ -7,12 +7,8 @@ "CVE-2010-2779" ], "details": "Cross-site scripting (XSS) vulnerability in WebAccess in Novell GroupWise 8.x before 8.0 SP2 allows remote attackers to inject arbitrary web script or HTML via a crafted message, related to \"replies.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2hr6-998x-mj94/GHSA-2hr6-998x-mj94.json b/advisories/unreviewed/2022/05/GHSA-2hr6-998x-mj94/GHSA-2hr6-998x-mj94.json index 899637418c8..affb78cdbfb 100644 --- a/advisories/unreviewed/2022/05/GHSA-2hr6-998x-mj94/GHSA-2hr6-998x-mj94.json +++ b/advisories/unreviewed/2022/05/GHSA-2hr6-998x-mj94/GHSA-2hr6-998x-mj94.json @@ -7,12 +7,8 @@ "CVE-2010-4597" ], "details": "Stack-based buffer overflow in the save method in the IntegraXor.Project ActiveX control in igcomm.dll in Ecava IntegraXor Human-Machine Interface (HMI) before 3.5.3900.10 allows remote attackers to execute arbitrary code via a long string in the second argument.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2j4h-p58q-g7mp/GHSA-2j4h-p58q-g7mp.json b/advisories/unreviewed/2022/05/GHSA-2j4h-p58q-g7mp/GHSA-2j4h-p58q-g7mp.json index 302212dcfa7..605a500ec9b 100644 --- a/advisories/unreviewed/2022/05/GHSA-2j4h-p58q-g7mp/GHSA-2j4h-p58q-g7mp.json +++ b/advisories/unreviewed/2022/05/GHSA-2j4h-p58q-g7mp/GHSA-2j4h-p58q-g7mp.json @@ -7,12 +7,8 @@ "CVE-2011-0949" ], "details": "Cisco IOS XR 3.6.x, 3.8.x before 3.8.3, and 3.9.x before 3.9.1 does not properly remove sshd_lock files from /tmp/, which allows remote attackers to cause a denial of service (disk consumption) by making many SSHv1 connections, aka Bug ID CSCtd64417.", - "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-2jjp-9wg8-3jxx/GHSA-2jjp-9wg8-3jxx.json b/advisories/unreviewed/2022/05/GHSA-2jjp-9wg8-3jxx/GHSA-2jjp-9wg8-3jxx.json index c826b8c20ab..f4b29309e4e 100644 --- a/advisories/unreviewed/2022/05/GHSA-2jjp-9wg8-3jxx/GHSA-2jjp-9wg8-3jxx.json +++ b/advisories/unreviewed/2022/05/GHSA-2jjp-9wg8-3jxx/GHSA-2jjp-9wg8-3jxx.json @@ -7,12 +7,8 @@ "CVE-2010-3991" ], "details": "Cross-site scripting (XSS) vulnerability in HP Insight Control Server Migration before 6.2 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2mjm-r2vj-c5c6/GHSA-2mjm-r2vj-c5c6.json b/advisories/unreviewed/2022/05/GHSA-2mjm-r2vj-c5c6/GHSA-2mjm-r2vj-c5c6.json index 05fe4698909..12625059746 100644 --- a/advisories/unreviewed/2022/05/GHSA-2mjm-r2vj-c5c6/GHSA-2mjm-r2vj-c5c6.json +++ b/advisories/unreviewed/2022/05/GHSA-2mjm-r2vj-c5c6/GHSA-2mjm-r2vj-c5c6.json @@ -7,12 +7,8 @@ "CVE-2010-4027" ], "details": "Unspecified vulnerability in the camera application in HP Palm webOS 1.4.1 allows local users to overwrite arbitrary files via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2p8j-grjc-cgvh/GHSA-2p8j-grjc-cgvh.json b/advisories/unreviewed/2022/05/GHSA-2p8j-grjc-cgvh/GHSA-2p8j-grjc-cgvh.json index 1c514b98095..eaca43bdb40 100644 --- a/advisories/unreviewed/2022/05/GHSA-2p8j-grjc-cgvh/GHSA-2p8j-grjc-cgvh.json +++ b/advisories/unreviewed/2022/05/GHSA-2p8j-grjc-cgvh/GHSA-2p8j-grjc-cgvh.json @@ -7,12 +7,8 @@ "CVE-2010-4638" ], "details": "SQL injection vulnerability in the submitSurvey function in controller.php in JQuarks4s (com_jquarks4s) component 1.0.0 for Joomla!, when magic_quotes_gpc is disabled, allows remote attackers to execute arbitrary SQL commands via the q parameter in a submitSurvey action to index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2pmv-p43r-3vvm/GHSA-2pmv-p43r-3vvm.json b/advisories/unreviewed/2022/05/GHSA-2pmv-p43r-3vvm/GHSA-2pmv-p43r-3vvm.json index c7fb2027aef..30a5bdb36ac 100644 --- a/advisories/unreviewed/2022/05/GHSA-2pmv-p43r-3vvm/GHSA-2pmv-p43r-3vvm.json +++ b/advisories/unreviewed/2022/05/GHSA-2pmv-p43r-3vvm/GHSA-2pmv-p43r-3vvm.json @@ -7,12 +7,8 @@ "CVE-2010-4362" ], "details": "Multiple SQL injection vulnerabilities in MicroNetsoft RV Dealer Website allow remote attackers to execute arbitrary SQL commands via the (1) selStock parameter to search.asp and the (2) orderBy parameter to showAlllistings.asp.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2prm-pv23-652f/GHSA-2prm-pv23-652f.json b/advisories/unreviewed/2022/05/GHSA-2prm-pv23-652f/GHSA-2prm-pv23-652f.json index 1af229450c6..b5ccbaf1108 100644 --- a/advisories/unreviewed/2022/05/GHSA-2prm-pv23-652f/GHSA-2prm-pv23-652f.json +++ b/advisories/unreviewed/2022/05/GHSA-2prm-pv23-652f/GHSA-2prm-pv23-652f.json @@ -7,12 +7,8 @@ "CVE-2011-2041" ], "details": "The Start Before Logon (SBL) functionality in Cisco AnyConnect Secure Mobility Client (formerly AnyConnect VPN Client) before 2.3.254 on Windows, and on Windows Mobile, allows local users to gain privileges via unspecified user-interface interaction, aka Bug ID CSCta40556.", - "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-2q3j-j52p-fq9p/GHSA-2q3j-j52p-fq9p.json b/advisories/unreviewed/2022/05/GHSA-2q3j-j52p-fq9p/GHSA-2q3j-j52p-fq9p.json index 91f03de7950..1147e6effe4 100644 --- a/advisories/unreviewed/2022/05/GHSA-2q3j-j52p-fq9p/GHSA-2q3j-j52p-fq9p.json +++ b/advisories/unreviewed/2022/05/GHSA-2q3j-j52p-fq9p/GHSA-2q3j-j52p-fq9p.json @@ -7,12 +7,8 @@ "CVE-2010-3516" ], "details": "Unspecified vulnerability in Oracle Solaris 10 and OpenSolaris allows local users to affect availability via unknown vectors related to InfiniBand.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2r66-g66j-95vv/GHSA-2r66-g66j-95vv.json b/advisories/unreviewed/2022/05/GHSA-2r66-g66j-95vv/GHSA-2r66-g66j-95vv.json index c678c6a4823..9be2efdf8e0 100644 --- a/advisories/unreviewed/2022/05/GHSA-2r66-g66j-95vv/GHSA-2r66-g66j-95vv.json +++ b/advisories/unreviewed/2022/05/GHSA-2r66-g66j-95vv/GHSA-2r66-g66j-95vv.json @@ -7,12 +7,8 @@ "CVE-2010-3074" ], "details": "SSL_Cipher.cpp in EncFS before 1.7.0 uses an improper combination of an AES cipher and a CBC cipher mode for encrypted filesystems, which allows local users to obtain sensitive information via a watermark attack.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -80,9 +76,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-2rcj-9v96-9vwg/GHSA-2rcj-9v96-9vwg.json b/advisories/unreviewed/2022/05/GHSA-2rcj-9v96-9vwg/GHSA-2rcj-9v96-9vwg.json index fcbe4fd1037..8d1de707e7f 100644 --- a/advisories/unreviewed/2022/05/GHSA-2rcj-9v96-9vwg/GHSA-2rcj-9v96-9vwg.json +++ b/advisories/unreviewed/2022/05/GHSA-2rcj-9v96-9vwg/GHSA-2rcj-9v96-9vwg.json @@ -7,12 +7,8 @@ "CVE-2011-1323" ], "details": "Yamaha RTX, RT, SRT, RTV, RTW, and RTA series routers with firmware 6.x through 10.x, and NEC IP38X series routers with firmware 6.x through 10.x, do not properly handle IP header options, which allows remote attackers to cause a denial of service (device reboot) via a crafted option that triggers access to an invalid memory location.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2w8h-mqc4-qvfp/GHSA-2w8h-mqc4-qvfp.json b/advisories/unreviewed/2022/05/GHSA-2w8h-mqc4-qvfp/GHSA-2w8h-mqc4-qvfp.json index 5437f80fc0f..cfffc20755c 100644 --- a/advisories/unreviewed/2022/05/GHSA-2w8h-mqc4-qvfp/GHSA-2w8h-mqc4-qvfp.json +++ b/advisories/unreviewed/2022/05/GHSA-2w8h-mqc4-qvfp/GHSA-2w8h-mqc4-qvfp.json @@ -7,12 +7,8 @@ "CVE-2010-4589" ], "details": "Cross-site scripting (XSS) vulnerability in IBM ENOVIA 6 allows remote attackers to inject arbitrary web script or HTML via vectors related to the emxFramework.FilterParameterPattern property.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-2wmf-hxhx-8jq7/GHSA-2wmf-hxhx-8jq7.json b/advisories/unreviewed/2022/05/GHSA-2wmf-hxhx-8jq7/GHSA-2wmf-hxhx-8jq7.json index 620ae088a3b..ceb7098c6e7 100644 --- a/advisories/unreviewed/2022/05/GHSA-2wmf-hxhx-8jq7/GHSA-2wmf-hxhx-8jq7.json +++ b/advisories/unreviewed/2022/05/GHSA-2wmf-hxhx-8jq7/GHSA-2wmf-hxhx-8jq7.json @@ -7,12 +7,8 @@ "CVE-2010-4696" ], "details": "Multiple SQL injection vulnerabilities in Joomla! 1.5.x before 1.5.22 allow remote attackers to execute arbitrary SQL commands via the (1) filter_order or (2) filter_order_Dir parameter in a com_contact action to index.php, a different vulnerability than CVE-2010-4166. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-322c-5q8f-8999/GHSA-322c-5q8f-8999.json b/advisories/unreviewed/2022/05/GHSA-322c-5q8f-8999/GHSA-322c-5q8f-8999.json index 808f201ab86..807b54e19b5 100644 --- a/advisories/unreviewed/2022/05/GHSA-322c-5q8f-8999/GHSA-322c-5q8f-8999.json +++ b/advisories/unreviewed/2022/05/GHSA-322c-5q8f-8999/GHSA-322c-5q8f-8999.json @@ -7,12 +7,8 @@ "CVE-2011-2604" ], "details": "The Intel G41 driver 6.14.10.5355 on Windows XP SP3 allows remote attackers to cause a denial of service (system crash) via a crafted web page that is visited with Google Chrome or Mozilla Firefox, as demonstrated by the lots-of-polys-example.html test page in the Khronos WebGL SDK.", - "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-33gx-2jcq-hq54/GHSA-33gx-2jcq-hq54.json b/advisories/unreviewed/2022/05/GHSA-33gx-2jcq-hq54/GHSA-33gx-2jcq-hq54.json index 124c72250dd..a483dfa31fe 100644 --- a/advisories/unreviewed/2022/05/GHSA-33gx-2jcq-hq54/GHSA-33gx-2jcq-hq54.json +++ b/advisories/unreviewed/2022/05/GHSA-33gx-2jcq-hq54/GHSA-33gx-2jcq-hq54.json @@ -7,12 +7,8 @@ "CVE-2010-4558" ], "details": "phpMyFAQ 2.6.11 and 2.6.12, as distributed between December 4th and December 15th 2010, contains an externally introduced modification (Trojan Horse) in the getTopTen method in inc/Faq.php, which allows remote attackers to execute arbitrary PHP code.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-33j6-92fw-qjc4/GHSA-33j6-92fw-qjc4.json b/advisories/unreviewed/2022/05/GHSA-33j6-92fw-qjc4/GHSA-33j6-92fw-qjc4.json index 623bf359f75..e317b9b94d3 100644 --- a/advisories/unreviewed/2022/05/GHSA-33j6-92fw-qjc4/GHSA-33j6-92fw-qjc4.json +++ b/advisories/unreviewed/2022/05/GHSA-33j6-92fw-qjc4/GHSA-33j6-92fw-qjc4.json @@ -7,12 +7,8 @@ "CVE-2010-4598" ], "details": "Directory traversal vulnerability in Ecava IntegraXor 3.6.4000.0 and earlier allows remote attackers to read arbitrary files via a .. (dot dot) in the file_name parameter in an open request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-346m-4mc4-jr67/GHSA-346m-4mc4-jr67.json b/advisories/unreviewed/2022/05/GHSA-346m-4mc4-jr67/GHSA-346m-4mc4-jr67.json index 45154511228..a14e497ee34 100644 --- a/advisories/unreviewed/2022/05/GHSA-346m-4mc4-jr67/GHSA-346m-4mc4-jr67.json +++ b/advisories/unreviewed/2022/05/GHSA-346m-4mc4-jr67/GHSA-346m-4mc4-jr67.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-347j-w4jp-qjm3/GHSA-347j-w4jp-qjm3.json b/advisories/unreviewed/2022/05/GHSA-347j-w4jp-qjm3/GHSA-347j-w4jp-qjm3.json index 60e2b952e98..27276c4a1d7 100644 --- a/advisories/unreviewed/2022/05/GHSA-347j-w4jp-qjm3/GHSA-347j-w4jp-qjm3.json +++ b/advisories/unreviewed/2022/05/GHSA-347j-w4jp-qjm3/GHSA-347j-w4jp-qjm3.json @@ -7,12 +7,8 @@ "CVE-2010-4581" ], "details": "Unspecified vulnerability in Opera before 11.00 has unknown impact and attack vectors, related to \"a high severity issue.\"", - "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-348p-57x3-vxc3/GHSA-348p-57x3-vxc3.json b/advisories/unreviewed/2022/05/GHSA-348p-57x3-vxc3/GHSA-348p-57x3-vxc3.json index db30afb5920..7573d45c9e2 100644 --- a/advisories/unreviewed/2022/05/GHSA-348p-57x3-vxc3/GHSA-348p-57x3-vxc3.json +++ b/advisories/unreviewed/2022/05/GHSA-348p-57x3-vxc3/GHSA-348p-57x3-vxc3.json @@ -7,12 +7,8 @@ "CVE-2011-2201" ], "details": "The Data::FormValidator module 4.66 and earlier for Perl, when untaint_all_constraints is enabled, does not properly preserve the taint attribute of data, which might allow remote attackers to bypass the taint protection mechanism via form input.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -52,9 +48,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-34hq-5g67-gh24/GHSA-34hq-5g67-gh24.json b/advisories/unreviewed/2022/05/GHSA-34hq-5g67-gh24/GHSA-34hq-5g67-gh24.json index 91bd761fdc4..4777002d4be 100644 --- a/advisories/unreviewed/2022/05/GHSA-34hq-5g67-gh24/GHSA-34hq-5g67-gh24.json +++ b/advisories/unreviewed/2022/05/GHSA-34hq-5g67-gh24/GHSA-34hq-5g67-gh24.json @@ -7,12 +7,8 @@ "CVE-2010-3919" ], "details": "Fenrir Grani 4.5 and earlier does not prevent interaction between web script and the clipboard, which allows remote attackers to read or modify the clipboard contents via a crafted web site.", - "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-363m-v2j8-gf6w/GHSA-363m-v2j8-gf6w.json b/advisories/unreviewed/2022/05/GHSA-363m-v2j8-gf6w/GHSA-363m-v2j8-gf6w.json index c9fe446f1a7..a5f9eda0e0e 100644 --- a/advisories/unreviewed/2022/05/GHSA-363m-v2j8-gf6w/GHSA-363m-v2j8-gf6w.json +++ b/advisories/unreviewed/2022/05/GHSA-363m-v2j8-gf6w/GHSA-363m-v2j8-gf6w.json @@ -7,12 +7,8 @@ "CVE-2011-2162" ], "details": "Multiple unspecified vulnerabilities in FFmpeg 0.4.x through 0.6.x, as used in MPlayer 1.0 and other products, in Mandriva Linux 2009.0, 2010.0, and 2010.1; Corporate Server 4.0 (aka CS4.0); and Mandriva Enterprise Server 5 (aka MES5) have unknown impact and attack vectors, related to issues \"originally discovered by Google Chrome developers.\"", - "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-37j3-8x65-gx72/GHSA-37j3-8x65-gx72.json b/advisories/unreviewed/2022/05/GHSA-37j3-8x65-gx72/GHSA-37j3-8x65-gx72.json index e1ffbf645d6..1838011ee31 100644 --- a/advisories/unreviewed/2022/05/GHSA-37j3-8x65-gx72/GHSA-37j3-8x65-gx72.json +++ b/advisories/unreviewed/2022/05/GHSA-37j3-8x65-gx72/GHSA-37j3-8x65-gx72.json @@ -7,12 +7,8 @@ "CVE-2011-0913" ], "details": "Stack-based buffer overflow in ndiiop.exe in the DIIOP implementation in the server in IBM Lotus Domino before 8.5.3 allows remote attackers to execute arbitrary code via a GIOP getEnvironmentString request, related to the local variable cache.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-37mj-2pf9-8q24/GHSA-37mj-2pf9-8q24.json b/advisories/unreviewed/2022/05/GHSA-37mj-2pf9-8q24/GHSA-37mj-2pf9-8q24.json index 0ee9aa6dc0c..a2dd4bb073d 100644 --- a/advisories/unreviewed/2022/05/GHSA-37mj-2pf9-8q24/GHSA-37mj-2pf9-8q24.json +++ b/advisories/unreviewed/2022/05/GHSA-37mj-2pf9-8q24/GHSA-37mj-2pf9-8q24.json @@ -7,12 +7,8 @@ "CVE-2011-1822" ], "details": "The LDAP_ADD implementation in IBM Tivoli Directory Server (TDS) 5.2 before 5.2.0.5-TIV-ITDS-IF0009 stores a cleartext SHA password in the change log, which might allow local users to obtain sensitive information by reading this log.", - "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-39x8-9c9m-275r/GHSA-39x8-9c9m-275r.json b/advisories/unreviewed/2022/05/GHSA-39x8-9c9m-275r/GHSA-39x8-9c9m-275r.json index f4f2ec98d75..7ed8bffb66e 100644 --- a/advisories/unreviewed/2022/05/GHSA-39x8-9c9m-275r/GHSA-39x8-9c9m-275r.json +++ b/advisories/unreviewed/2022/05/GHSA-39x8-9c9m-275r/GHSA-39x8-9c9m-275r.json @@ -7,12 +7,8 @@ "CVE-2010-3523" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise PeopleTools component in Oracle PeopleSoft and JDEdwards Suite 8.49.28 and 8.50.12 allows remote attackers to affect integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3f3h-gc4r-7vvp/GHSA-3f3h-gc4r-7vvp.json b/advisories/unreviewed/2022/05/GHSA-3f3h-gc4r-7vvp/GHSA-3f3h-gc4r-7vvp.json index c88f9edd47e..3cefd5307d3 100644 --- a/advisories/unreviewed/2022/05/GHSA-3f3h-gc4r-7vvp/GHSA-3f3h-gc4r-7vvp.json +++ b/advisories/unreviewed/2022/05/GHSA-3f3h-gc4r-7vvp/GHSA-3f3h-gc4r-7vvp.json @@ -7,12 +7,8 @@ "CVE-2010-3862" ], "details": "The org.jboss.remoting.transport.bisocket.BisocketServerInvoker$SecondaryServerSocketThread.run method in JBoss Remoting 2.2.x before 2.2.3.SP4 and 2.5.x before 2.5.3.SP2 in Red Hat JBoss Enterprise Application Platform (aka JBoss EAP or JBEAP) 4.3 through 4.3.0.CP09, and 5.1.0; and JBoss Enterprise Web Platform (aka JBEWP) 5.1.0; allows remote attackers to cause a denial of service (daemon outage) by establishing a bisocket control connection TCP session, and then not sending any application data.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3frj-7j4q-xc89/GHSA-3frj-7j4q-xc89.json b/advisories/unreviewed/2022/05/GHSA-3frj-7j4q-xc89/GHSA-3frj-7j4q-xc89.json index 7eb6875df69..aaee5d56880 100644 --- a/advisories/unreviewed/2022/05/GHSA-3frj-7j4q-xc89/GHSA-3frj-7j4q-xc89.json +++ b/advisories/unreviewed/2022/05/GHSA-3frj-7j4q-xc89/GHSA-3frj-7j4q-xc89.json @@ -7,12 +7,8 @@ "CVE-2008-7277" ], "details": "Open Ticket Request System (OTRS) before 2.3.0-beta4 checks for the rw permission, instead of the configured merge permission, during authorization of merge operations, which might allow remote authenticated users to bypass intended access restrictions by merging two tickets.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3fw2-c83v-qv48/GHSA-3fw2-c83v-qv48.json b/advisories/unreviewed/2022/05/GHSA-3fw2-c83v-qv48/GHSA-3fw2-c83v-qv48.json index b19d67feee4..31d42e3896b 100644 --- a/advisories/unreviewed/2022/05/GHSA-3fw2-c83v-qv48/GHSA-3fw2-c83v-qv48.json +++ b/advisories/unreviewed/2022/05/GHSA-3fw2-c83v-qv48/GHSA-3fw2-c83v-qv48.json @@ -7,12 +7,8 @@ "CVE-2011-0213" ], "details": "Buffer overflow in QuickTime in Apple Mac OS X before 10.6.8 allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted JPEG file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3g74-q43f-wx5m/GHSA-3g74-q43f-wx5m.json b/advisories/unreviewed/2022/05/GHSA-3g74-q43f-wx5m/GHSA-3g74-q43f-wx5m.json index dbb91ec84fa..e2f2e4d07f4 100644 --- a/advisories/unreviewed/2022/05/GHSA-3g74-q43f-wx5m/GHSA-3g74-q43f-wx5m.json +++ b/advisories/unreviewed/2022/05/GHSA-3g74-q43f-wx5m/GHSA-3g74-q43f-wx5m.json @@ -7,12 +7,8 @@ "CVE-2011-0193" ], "details": "Multiple buffer overflows in Image RAW in Apple Mac OS X before 10.6.7 allow remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted Canon RAW image.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3gf4-rwmr-gpjh/GHSA-3gf4-rwmr-gpjh.json b/advisories/unreviewed/2022/05/GHSA-3gf4-rwmr-gpjh/GHSA-3gf4-rwmr-gpjh.json index 7e75849289d..9d38851182b 100644 --- a/advisories/unreviewed/2022/05/GHSA-3gf4-rwmr-gpjh/GHSA-3gf4-rwmr-gpjh.json +++ b/advisories/unreviewed/2022/05/GHSA-3gf4-rwmr-gpjh/GHSA-3gf4-rwmr-gpjh.json @@ -7,12 +7,8 @@ "CVE-2011-1900" ], "details": "Directory traversal vulnerability in NTWebServer in InduSoft Web Studio 6.1 and 7.x before 7.0+Patch 1 allows remote attackers to execute arbitrary code via an invalid request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3gvq-pw63-qpm9/GHSA-3gvq-pw63-qpm9.json b/advisories/unreviewed/2022/05/GHSA-3gvq-pw63-qpm9/GHSA-3gvq-pw63-qpm9.json index 36dbc1abff2..1f3ee694ee4 100644 --- a/advisories/unreviewed/2022/05/GHSA-3gvq-pw63-qpm9/GHSA-3gvq-pw63-qpm9.json +++ b/advisories/unreviewed/2022/05/GHSA-3gvq-pw63-qpm9/GHSA-3gvq-pw63-qpm9.json @@ -7,12 +7,8 @@ "CVE-2008-4655" ], "details": "SQL injection vulnerability in the Simple survey (simplesurvey) 1.7.0 and earlier extension for TYPO3 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3j88-7hxg-wjh6/GHSA-3j88-7hxg-wjh6.json b/advisories/unreviewed/2022/05/GHSA-3j88-7hxg-wjh6/GHSA-3j88-7hxg-wjh6.json index a183c0f117c..ea9cd1265cc 100644 --- a/advisories/unreviewed/2022/05/GHSA-3j88-7hxg-wjh6/GHSA-3j88-7hxg-wjh6.json +++ b/advisories/unreviewed/2022/05/GHSA-3j88-7hxg-wjh6/GHSA-3j88-7hxg-wjh6.json @@ -7,12 +7,8 @@ "CVE-2010-3791" ], "details": "Buffer overflow in QuickTime in Apple Mac OS X 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted MPEG movie file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3jmm-4394-47pc/GHSA-3jmm-4394-47pc.json b/advisories/unreviewed/2022/05/GHSA-3jmm-4394-47pc/GHSA-3jmm-4394-47pc.json index b1b9a84acd5..9498845eeee 100644 --- a/advisories/unreviewed/2022/05/GHSA-3jmm-4394-47pc/GHSA-3jmm-4394-47pc.json +++ b/advisories/unreviewed/2022/05/GHSA-3jmm-4394-47pc/GHSA-3jmm-4394-47pc.json @@ -7,12 +7,8 @@ "CVE-2010-3533" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise SCM OM and CRM Order Capture component in Oracle PeopleSoft and JDEdwards Suite 8.9, 9.0, and 9.1 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3mwc-76p7-h288/GHSA-3mwc-76p7-h288.json b/advisories/unreviewed/2022/05/GHSA-3mwc-76p7-h288/GHSA-3mwc-76p7-h288.json index 9ecd03bcb7c..ba6a59092f9 100644 --- a/advisories/unreviewed/2022/05/GHSA-3mwc-76p7-h288/GHSA-3mwc-76p7-h288.json +++ b/advisories/unreviewed/2022/05/GHSA-3mwc-76p7-h288/GHSA-3mwc-76p7-h288.json @@ -7,12 +7,8 @@ "CVE-2011-0513" ], "details": "DCR.sys driver in SecurStar DriveCrypt 5.4, 5.3, and earlier allows local users to execute arbitrary code via a crafted argument to the 0x00073800 IOCTL.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3p58-8w88-7f88/GHSA-3p58-8w88-7f88.json b/advisories/unreviewed/2022/05/GHSA-3p58-8w88-7f88/GHSA-3p58-8w88-7f88.json index d5f96868904..bf9e2aa44b6 100644 --- a/advisories/unreviewed/2022/05/GHSA-3p58-8w88-7f88/GHSA-3p58-8w88-7f88.json +++ b/advisories/unreviewed/2022/05/GHSA-3p58-8w88-7f88/GHSA-3p58-8w88-7f88.json @@ -7,12 +7,8 @@ "CVE-2010-3867" ], "details": "Multiple directory traversal vulnerabilities in the mod_site_misc module in ProFTPD before 1.3.3c allow remote authenticated users to create directories, delete directories, create symlinks, and modify file timestamps via directory traversal sequences in a (1) SITE MKDIR, (2) SITE RMDIR, (3) SITE SYMLINK, or (4) SITE UTIME command.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3pm4-p625-gqmh/GHSA-3pm4-p625-gqmh.json b/advisories/unreviewed/2022/05/GHSA-3pm4-p625-gqmh/GHSA-3pm4-p625-gqmh.json index 555d02dc7db..b953f473a26 100644 --- a/advisories/unreviewed/2022/05/GHSA-3pm4-p625-gqmh/GHSA-3pm4-p625-gqmh.json +++ b/advisories/unreviewed/2022/05/GHSA-3pm4-p625-gqmh/GHSA-3pm4-p625-gqmh.json @@ -7,12 +7,8 @@ "CVE-2010-4276" ], "details": "Cross-site scripting (XSS) vulnerability in the lz_tracking_set_sessid function in templates/jscript/jstrack.tpl in LiveZilla 3.2.0.2 allows remote attackers to inject arbitrary web script or HTML via the livezilla parameter in a track action to server.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3q8r-jx8c-38w3/GHSA-3q8r-jx8c-38w3.json b/advisories/unreviewed/2022/05/GHSA-3q8r-jx8c-38w3/GHSA-3q8r-jx8c-38w3.json index 2fd187099d4..f7a20481527 100644 --- a/advisories/unreviewed/2022/05/GHSA-3q8r-jx8c-38w3/GHSA-3q8r-jx8c-38w3.json +++ b/advisories/unreviewed/2022/05/GHSA-3q8r-jx8c-38w3/GHSA-3q8r-jx8c-38w3.json @@ -7,12 +7,8 @@ "CVE-2010-3789" ], "details": "QuickTime in Apple Mac OS X 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via a crafted AVI file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3qwf-x658-h32m/GHSA-3qwf-x658-h32m.json b/advisories/unreviewed/2022/05/GHSA-3qwf-x658-h32m/GHSA-3qwf-x658-h32m.json index 3cdc9bfa6d8..e47a1278c0f 100644 --- a/advisories/unreviewed/2022/05/GHSA-3qwf-x658-h32m/GHSA-3qwf-x658-h32m.json +++ b/advisories/unreviewed/2022/05/GHSA-3qwf-x658-h32m/GHSA-3qwf-x658-h32m.json @@ -7,12 +7,8 @@ "CVE-2010-3526" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise SCM - PO component in Oracle PeopleSoft and JDEdwards Suite 8.9 Bundle #38, 9.0 Bundle #31, and 9.1 Bundle #6 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3qx7-92qm-xvhr/GHSA-3qx7-92qm-xvhr.json b/advisories/unreviewed/2022/05/GHSA-3qx7-92qm-xvhr/GHSA-3qx7-92qm-xvhr.json index bdd930b02f6..114503691a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-3qx7-92qm-xvhr/GHSA-3qx7-92qm-xvhr.json +++ b/advisories/unreviewed/2022/05/GHSA-3qx7-92qm-xvhr/GHSA-3qx7-92qm-xvhr.json @@ -7,12 +7,8 @@ "CVE-2011-1789" ], "details": "The self-extracting installer in the vSphere Client Installer package in VMware vCenter 4.0 before Update 3 and 4.1 before Update 1, VMware ESXi 4.x before 4.1 Update 1, and VMware ESX 4.x before 4.1 Update 1 does not have a digital signature, which might make it easier for remote attackers to spoof the software distribution via a Trojan horse installer.", - "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-3r86-xc8x-m6c4/GHSA-3r86-xc8x-m6c4.json b/advisories/unreviewed/2022/05/GHSA-3r86-xc8x-m6c4/GHSA-3r86-xc8x-m6c4.json index 250f8d5bfe0..756403f2f89 100644 --- a/advisories/unreviewed/2022/05/GHSA-3r86-xc8x-m6c4/GHSA-3r86-xc8x-m6c4.json +++ b/advisories/unreviewed/2022/05/GHSA-3r86-xc8x-m6c4/GHSA-3r86-xc8x-m6c4.json @@ -7,12 +7,8 @@ "CVE-2011-1325" ], "details": "Cross-site request forgery (CSRF) vulnerability in EC-CUBE before 2.11.0 allows remote attackers to hijack the authentication of unspecified victims via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3vvx-pv53-gmrh/GHSA-3vvx-pv53-gmrh.json b/advisories/unreviewed/2022/05/GHSA-3vvx-pv53-gmrh/GHSA-3vvx-pv53-gmrh.json index 3141b24e1b7..aca42f23ec1 100644 --- a/advisories/unreviewed/2022/05/GHSA-3vvx-pv53-gmrh/GHSA-3vvx-pv53-gmrh.json +++ b/advisories/unreviewed/2022/05/GHSA-3vvx-pv53-gmrh/GHSA-3vvx-pv53-gmrh.json @@ -7,12 +7,8 @@ "CVE-2008-5313" ], "details": "mailscanner 4.68.8 and other versions before 4.74.16-1 might allow local users to overwrite arbitrary files via a symlink attack on certain temporary files used by the (1) f-prot-autoupdate, (2) clamav-autoupdate, (3) avast-autoupdate, and (4) f-prot-6-autoupdate scripts in /etc/MailScanner/autoupdate/; the (5) bitdefender-wrapper, (6) kaspersky-wrapper, (7) clamav-wrapper, and (8) rav-wrapper scripts in /etc/MailScanner/wrapper/; the (9) Quarantine.pm, (10) TNEF.pm, (11) MessageBatch.pm, (12) WorkArea.pm, and (13) SA.pm scripts in /usr/share/MailScanner/MailScanner/; (14) /usr/sbin/MailScanner; and (15) scripts that load the /etc/MailScanner/mailscanner.conf.with.mcp configuration file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-3vwh-824w-m2mm/GHSA-3vwh-824w-m2mm.json b/advisories/unreviewed/2022/05/GHSA-3vwh-824w-m2mm/GHSA-3vwh-824w-m2mm.json index f2a96cd916a..03efbe980f5 100644 --- a/advisories/unreviewed/2022/05/GHSA-3vwh-824w-m2mm/GHSA-3vwh-824w-m2mm.json +++ b/advisories/unreviewed/2022/05/GHSA-3vwh-824w-m2mm/GHSA-3vwh-824w-m2mm.json @@ -7,12 +7,8 @@ "CVE-2010-4212" ], "details": "The USAA application 3.0 for Android stores a mirror image of each visited web page, which might allow physically proximate attackers to obtain sensitive banking information by reading application data.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-3w28-7ffm-4xcg/GHSA-3w28-7ffm-4xcg.json b/advisories/unreviewed/2022/05/GHSA-3w28-7ffm-4xcg/GHSA-3w28-7ffm-4xcg.json index c33732552e3..6ad7a5872d8 100644 --- a/advisories/unreviewed/2022/05/GHSA-3w28-7ffm-4xcg/GHSA-3w28-7ffm-4xcg.json +++ b/advisories/unreviewed/2022/05/GHSA-3w28-7ffm-4xcg/GHSA-3w28-7ffm-4xcg.json @@ -7,12 +7,8 @@ "CVE-2011-3382" ], "details": "Cross-site scripting (XSS) vulnerability in Phorum before 5.2.16 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4344-rjcf-rjfg/GHSA-4344-rjcf-rjfg.json b/advisories/unreviewed/2022/05/GHSA-4344-rjcf-rjfg/GHSA-4344-rjcf-rjfg.json index 7944bde6af6..fbc780117e4 100644 --- a/advisories/unreviewed/2022/05/GHSA-4344-rjcf-rjfg/GHSA-4344-rjcf-rjfg.json +++ b/advisories/unreviewed/2022/05/GHSA-4344-rjcf-rjfg/GHSA-4344-rjcf-rjfg.json @@ -7,12 +7,8 @@ "CVE-2011-1342" ], "details": "SQL injection vulnerability in Aimluck Aipo before 5.1.1, and Aipo for ASP before 5.1.1, allows remote authenticated users to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-44c2-fp89-q7rq/GHSA-44c2-fp89-q7rq.json b/advisories/unreviewed/2022/05/GHSA-44c2-fp89-q7rq/GHSA-44c2-fp89-q7rq.json index eac06652e5b..69059227293 100644 --- a/advisories/unreviewed/2022/05/GHSA-44c2-fp89-q7rq/GHSA-44c2-fp89-q7rq.json +++ b/advisories/unreviewed/2022/05/GHSA-44c2-fp89-q7rq/GHSA-44c2-fp89-q7rq.json @@ -7,12 +7,8 @@ "CVE-2010-1760" ], "details": "loader/DocumentThreadableLoader.cpp in the XMLHttpRequest implementation in WebCore in WebKit before r58409 does not properly handle credentials during a cross-origin synchronous request, which has unspecified impact and remote attack vectors, aka rdar problem 7905150.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -68,9 +64,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-45gq-qw8p-g83q/GHSA-45gq-qw8p-g83q.json b/advisories/unreviewed/2022/05/GHSA-45gq-qw8p-g83q/GHSA-45gq-qw8p-g83q.json index ee004f91420..db3ebfb7145 100644 --- a/advisories/unreviewed/2022/05/GHSA-45gq-qw8p-g83q/GHSA-45gq-qw8p-g83q.json +++ b/advisories/unreviewed/2022/05/GHSA-45gq-qw8p-g83q/GHSA-45gq-qw8p-g83q.json @@ -7,12 +7,8 @@ "CVE-2011-1647" ], "details": "The web management interface on the Cisco RVS4000 Gigabit Security Router with software 1.x before 1.3.3.4 and 2.x before 2.0.2.7, and the WRVS4400N Gigabit Security Router with software before 2.0.2.1, allows remote attackers to read the private key for the admin SSL certificate via unspecified vectors, aka Bug ID CSCtn23871.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-45v6-m9r2-hc3m/GHSA-45v6-m9r2-hc3m.json b/advisories/unreviewed/2022/05/GHSA-45v6-m9r2-hc3m/GHSA-45v6-m9r2-hc3m.json index 29e72ae2e08..394ac1538ea 100644 --- a/advisories/unreviewed/2022/05/GHSA-45v6-m9r2-hc3m/GHSA-45v6-m9r2-hc3m.json +++ b/advisories/unreviewed/2022/05/GHSA-45v6-m9r2-hc3m/GHSA-45v6-m9r2-hc3m.json @@ -7,12 +7,8 @@ "CVE-2011-0374" ], "details": "The CGI implementation on Cisco TelePresence endpoint devices with software 1.2.x through 1.5.x allows remote authenticated users to execute arbitrary commands via a malformed request, related to \"command injection vulnerabilities,\" aka Bug ID CSCtb31659.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4663-xvr2-gqpr/GHSA-4663-xvr2-gqpr.json b/advisories/unreviewed/2022/05/GHSA-4663-xvr2-gqpr/GHSA-4663-xvr2-gqpr.json index cff34e8c8c6..88fc41c751c 100644 --- a/advisories/unreviewed/2022/05/GHSA-4663-xvr2-gqpr/GHSA-4663-xvr2-gqpr.json +++ b/advisories/unreviewed/2022/05/GHSA-4663-xvr2-gqpr/GHSA-4663-xvr2-gqpr.json @@ -7,12 +7,8 @@ "CVE-2011-1428" ], "details": "Wee Enhanced Environment for Chat (aka WeeChat) 0.3.4 and earlier does not properly verify that the server hostname matches the domain name of the subject of an X.509 certificate, which allows man-in-the-middle attackers to spoof an SSL chat server via an arbitrary certificate, related to incorrect use of the GnuTLS API.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4664-rq32-g9pp/GHSA-4664-rq32-g9pp.json b/advisories/unreviewed/2022/05/GHSA-4664-rq32-g9pp/GHSA-4664-rq32-g9pp.json index 4ed459c7246..2bb3d9e8d11 100644 --- a/advisories/unreviewed/2022/05/GHSA-4664-rq32-g9pp/GHSA-4664-rq32-g9pp.json +++ b/advisories/unreviewed/2022/05/GHSA-4664-rq32-g9pp/GHSA-4664-rq32-g9pp.json @@ -7,12 +7,8 @@ "CVE-2010-3582" ], "details": "Unspecified vulnerability in the OracleVM component in Oracle VM 2.2.1 allows remote authenticated users to affect confidentiality, integrity, and availability via unknown vectors related to ovs-agent.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-46q9-wmx8-j59x/GHSA-46q9-wmx8-j59x.json b/advisories/unreviewed/2022/05/GHSA-46q9-wmx8-j59x/GHSA-46q9-wmx8-j59x.json index c43a89f8b5d..357d21a7102 100644 --- a/advisories/unreviewed/2022/05/GHSA-46q9-wmx8-j59x/GHSA-46q9-wmx8-j59x.json +++ b/advisories/unreviewed/2022/05/GHSA-46q9-wmx8-j59x/GHSA-46q9-wmx8-j59x.json @@ -7,12 +7,8 @@ "CVE-2011-1310" ], "details": "The Administrative Scripting Tools component in IBM WebSphere Application Server (WAS) 6.1.0.x before 6.1.0.35 and 7.x before 7.0.0.15, when tracing is enabled, places wsadmin command parameters into the (1) wsadmin.traceout and (2) trace.log files, which allows local users to obtain potentially sensitive information by reading these files.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-479m-pjp8-vhq4/GHSA-479m-pjp8-vhq4.json b/advisories/unreviewed/2022/05/GHSA-479m-pjp8-vhq4/GHSA-479m-pjp8-vhq4.json index 3e602ee244b..f2efeba68bb 100644 --- a/advisories/unreviewed/2022/05/GHSA-479m-pjp8-vhq4/GHSA-479m-pjp8-vhq4.json +++ b/advisories/unreviewed/2022/05/GHSA-479m-pjp8-vhq4/GHSA-479m-pjp8-vhq4.json @@ -7,12 +7,8 @@ "CVE-2011-2617" ], "details": "Unspecified vulnerability in Opera before 11.50 allows remote attackers to cause a denial of service (application crash) via vectors related to selecting a text node, and closed pop-up windows, removed pop-up windows, and IFRAME elements.", - "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-47gf-m7m2-wr32/GHSA-47gf-m7m2-wr32.json b/advisories/unreviewed/2022/05/GHSA-47gf-m7m2-wr32/GHSA-47gf-m7m2-wr32.json index 51238c7609f..2758a6f6d6e 100644 --- a/advisories/unreviewed/2022/05/GHSA-47gf-m7m2-wr32/GHSA-47gf-m7m2-wr32.json +++ b/advisories/unreviewed/2022/05/GHSA-47gf-m7m2-wr32/GHSA-47gf-m7m2-wr32.json @@ -7,12 +7,8 @@ "CVE-2008-6145" ], "details": "Multiple SQL injection vulnerabilities in the WEC Discussion Forum (wec_discussion) extension 1.7.0 and earlier for TYPO3 allow remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-48cp-9vmv-3948/GHSA-48cp-9vmv-3948.json b/advisories/unreviewed/2022/05/GHSA-48cp-9vmv-3948/GHSA-48cp-9vmv-3948.json index 3338b04352f..e15f73ec96b 100644 --- a/advisories/unreviewed/2022/05/GHSA-48cp-9vmv-3948/GHSA-48cp-9vmv-3948.json +++ b/advisories/unreviewed/2022/05/GHSA-48cp-9vmv-3948/GHSA-48cp-9vmv-3948.json @@ -7,12 +7,8 @@ "CVE-2010-4270" ], "details": "Directory traversal vulnerability in the nBill (com_netinvoice) component before 2.0.9 standard edition, 2.0.10 lite edition, and 1.2_10 for Joomla! allows remote attackers to read arbitrary files via directory traversal sequences in unspecified vectors related to (1) administrator/components/com_nbill/admin.nbill.php, (2) components/com_nbill/nbill.php, (3) administrator/components/com_netinvoice/admin.netinvoice.php, or (4) components/com_netinvoice/netinvoice.php, as exploited in the wild in November 2010.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-48wm-3cv2-f2j7/GHSA-48wm-3cv2-f2j7.json b/advisories/unreviewed/2022/05/GHSA-48wm-3cv2-f2j7/GHSA-48wm-3cv2-f2j7.json index fbf9f4840cc..ebb4ebb80ef 100644 --- a/advisories/unreviewed/2022/05/GHSA-48wm-3cv2-f2j7/GHSA-48wm-3cv2-f2j7.json +++ b/advisories/unreviewed/2022/05/GHSA-48wm-3cv2-f2j7/GHSA-48wm-3cv2-f2j7.json @@ -7,12 +7,8 @@ "CVE-2011-0893" ], "details": "Cross-site scripting (XSS) vulnerability in HP Operations 9.10 on UNIX platforms allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4c3q-2m57-7pxg/GHSA-4c3q-2m57-7pxg.json b/advisories/unreviewed/2022/05/GHSA-4c3q-2m57-7pxg/GHSA-4c3q-2m57-7pxg.json index 918744c4316..25018fdbb4f 100644 --- a/advisories/unreviewed/2022/05/GHSA-4c3q-2m57-7pxg/GHSA-4c3q-2m57-7pxg.json +++ b/advisories/unreviewed/2022/05/GHSA-4c3q-2m57-7pxg/GHSA-4c3q-2m57-7pxg.json @@ -7,12 +7,8 @@ "CVE-2011-1717" ], "details": "Skype for Android stores sensitive user data without encryption in sqlite3 databases that have weak permissions, which allows local applications to read user IDs, contacts, phone numbers, date of birth, instant message logs, and other private information.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4c6h-6j8p-jf37/GHSA-4c6h-6j8p-jf37.json b/advisories/unreviewed/2022/05/GHSA-4c6h-6j8p-jf37/GHSA-4c6h-6j8p-jf37.json index 21d26c3b633..d4dab431d4e 100644 --- a/advisories/unreviewed/2022/05/GHSA-4c6h-6j8p-jf37/GHSA-4c6h-6j8p-jf37.json +++ b/advisories/unreviewed/2022/05/GHSA-4c6h-6j8p-jf37/GHSA-4c6h-6j8p-jf37.json @@ -7,12 +7,8 @@ "CVE-2010-2787" ], "details": "api.php in MediaWiki before 1.15.5 does not prevent use of public caching headers for private data, which allows remote attackers to bypass intended access restrictions and obtain sensitive information by retrieving documents from an HTTP proxy cache that has been used by a victim.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4cqh-vr3j-xc4q/GHSA-4cqh-vr3j-xc4q.json b/advisories/unreviewed/2022/05/GHSA-4cqh-vr3j-xc4q/GHSA-4cqh-vr3j-xc4q.json index ee12fb95680..3bf0529e354 100644 --- a/advisories/unreviewed/2022/05/GHSA-4cqh-vr3j-xc4q/GHSA-4cqh-vr3j-xc4q.json +++ b/advisories/unreviewed/2022/05/GHSA-4cqh-vr3j-xc4q/GHSA-4cqh-vr3j-xc4q.json @@ -7,12 +7,8 @@ "CVE-2010-3796" ], "details": "Safari RSS in Apple Mac OS X 10.5.8 and 10.6.x before 10.6.5 does not block Java applets in an RSS feed, which allows remote attackers to obtain sensitive information via a feed: URL containing an applet that performs DOM modifications.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4f9r-wjj2-h7rm/GHSA-4f9r-wjj2-h7rm.json b/advisories/unreviewed/2022/05/GHSA-4f9r-wjj2-h7rm/GHSA-4f9r-wjj2-h7rm.json index f6497bd80d0..5ce95fb489f 100644 --- a/advisories/unreviewed/2022/05/GHSA-4f9r-wjj2-h7rm/GHSA-4f9r-wjj2-h7rm.json +++ b/advisories/unreviewed/2022/05/GHSA-4f9r-wjj2-h7rm/GHSA-4f9r-wjj2-h7rm.json @@ -7,12 +7,8 @@ "CVE-2010-4754" ], "details": "The glob implementation in libc in FreeBSD 7.3 and 8.1, NetBSD 5.0.2, and OpenBSD 4.7, and Libsystem in Apple Mac OS X before 10.6.8, allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -56,9 +52,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4frq-44vw-qmw2/GHSA-4frq-44vw-qmw2.json b/advisories/unreviewed/2022/05/GHSA-4frq-44vw-qmw2/GHSA-4frq-44vw-qmw2.json index 85ef1a725e9..823b9fa0454 100644 --- a/advisories/unreviewed/2022/05/GHSA-4frq-44vw-qmw2/GHSA-4frq-44vw-qmw2.json +++ b/advisories/unreviewed/2022/05/GHSA-4frq-44vw-qmw2/GHSA-4frq-44vw-qmw2.json @@ -7,12 +7,8 @@ "CVE-2010-4522" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in MyBB (aka MyBulletinBoard) 1.4.14, and 1.6.x before 1.6.1, allow remote attackers to inject arbitrary web script or HTML via vectors related to (1) editpost.php, (2) member.php, and (3) newreply.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4gcr-hjqr-hp5g/GHSA-4gcr-hjqr-hp5g.json b/advisories/unreviewed/2022/05/GHSA-4gcr-hjqr-hp5g/GHSA-4gcr-hjqr-hp5g.json index 9aae2df359e..ae0c344fc41 100644 --- a/advisories/unreviewed/2022/05/GHSA-4gcr-hjqr-hp5g/GHSA-4gcr-hjqr-hp5g.json +++ b/advisories/unreviewed/2022/05/GHSA-4gcr-hjqr-hp5g/GHSA-4gcr-hjqr-hp5g.json @@ -7,12 +7,8 @@ "CVE-2010-4593" ], "details": "The Connection Manager in IBM Lotus Mobile Connect before 6.1.4 does not properly maintain a certain reference count, which allows remote authenticated users to cause a denial of service (IP address exhaustion) by making invalid attempts to establish sessions with the same VPN ID from multiple devices.", - "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-4h38-2xpx-7c3h/GHSA-4h38-2xpx-7c3h.json b/advisories/unreviewed/2022/05/GHSA-4h38-2xpx-7c3h/GHSA-4h38-2xpx-7c3h.json index e1db85a641b..521fdd77668 100644 --- a/advisories/unreviewed/2022/05/GHSA-4h38-2xpx-7c3h/GHSA-4h38-2xpx-7c3h.json +++ b/advisories/unreviewed/2022/05/GHSA-4h38-2xpx-7c3h/GHSA-4h38-2xpx-7c3h.json @@ -7,12 +7,8 @@ "CVE-2011-0805" ], "details": "Unspecified vulnerability in the UIX component in Oracle Database Server 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1 allows remote attackers to affect integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4h39-mpm2-2r6p/GHSA-4h39-mpm2-2r6p.json b/advisories/unreviewed/2022/05/GHSA-4h39-mpm2-2r6p/GHSA-4h39-mpm2-2r6p.json index 2ff9ced7925..5bd455229fc 100644 --- a/advisories/unreviewed/2022/05/GHSA-4h39-mpm2-2r6p/GHSA-4h39-mpm2-2r6p.json +++ b/advisories/unreviewed/2022/05/GHSA-4h39-mpm2-2r6p/GHSA-4h39-mpm2-2r6p.json @@ -7,12 +7,8 @@ "CVE-2010-4595" ], "details": "The Connection Manager in IBM Lotus Mobile Connect before 6.1.4 disables the http.device.stanza blacklisting functionality for HTTP Access Services (HTTP-AS), which allows remote attackers to bypass intended access restrictions via an HTTP request that contains a disallowed User-Agent header.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4jfp-3h6m-rw6c/GHSA-4jfp-3h6m-rw6c.json b/advisories/unreviewed/2022/05/GHSA-4jfp-3h6m-rw6c/GHSA-4jfp-3h6m-rw6c.json index f5779de0175..c3e27aef098 100644 --- a/advisories/unreviewed/2022/05/GHSA-4jfp-3h6m-rw6c/GHSA-4jfp-3h6m-rw6c.json +++ b/advisories/unreviewed/2022/05/GHSA-4jfp-3h6m-rw6c/GHSA-4jfp-3h6m-rw6c.json @@ -7,12 +7,8 @@ "CVE-2011-0793" ], "details": "Unspecified vulnerability in the Database Vault component in Oracle Database Server 10.2.0.3, 10.2.0.4, 10.2.0.5, 11.1.0.7, and 11.2.0.1 allows remote authenticated users to affect integrity and availability, related to SYSDBA.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4m2p-3mq4-6fxc/GHSA-4m2p-3mq4-6fxc.json b/advisories/unreviewed/2022/05/GHSA-4m2p-3mq4-6fxc/GHSA-4m2p-3mq4-6fxc.json index 608a8e2d91d..92e7fbc87ab 100644 --- a/advisories/unreviewed/2022/05/GHSA-4m2p-3mq4-6fxc/GHSA-4m2p-3mq4-6fxc.json +++ b/advisories/unreviewed/2022/05/GHSA-4m2p-3mq4-6fxc/GHSA-4m2p-3mq4-6fxc.json @@ -7,12 +7,8 @@ "CVE-2010-4750" ], "details": "Cross-site request forgery (CSRF) vulnerability in admin/libs/ADMIN.php in BLOG:CMS 4.2.1.e, and possibly earlier, allows remote attackers to hijack the authentication of administrators.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4mg2-5h8v-xq4j/GHSA-4mg2-5h8v-xq4j.json b/advisories/unreviewed/2022/05/GHSA-4mg2-5h8v-xq4j/GHSA-4mg2-5h8v-xq4j.json index 01386b95a03..7440a5dbfbd 100644 --- a/advisories/unreviewed/2022/05/GHSA-4mg2-5h8v-xq4j/GHSA-4mg2-5h8v-xq4j.json +++ b/advisories/unreviewed/2022/05/GHSA-4mg2-5h8v-xq4j/GHSA-4mg2-5h8v-xq4j.json @@ -7,12 +7,8 @@ "CVE-2010-3920" ], "details": "The Seiko Epson printer driver installers for LP-S9000 before 4.1.11 and LP-S7100 before 4.1.7, or as downloaded from the vendor between May 2010 and 20101125, set weak permissions for the \"C:\\Program Files\" folder, which might allow local users to bypass intended access restrictions and create or modify arbitrary files and directories.", - "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-4mw4-jp5f-4h89/GHSA-4mw4-jp5f-4h89.json b/advisories/unreviewed/2022/05/GHSA-4mw4-jp5f-4h89/GHSA-4mw4-jp5f-4h89.json index fe98a0e0ce3..e055f8929f9 100644 --- a/advisories/unreviewed/2022/05/GHSA-4mw4-jp5f-4h89/GHSA-4mw4-jp5f-4h89.json +++ b/advisories/unreviewed/2022/05/GHSA-4mw4-jp5f-4h89/GHSA-4mw4-jp5f-4h89.json @@ -7,12 +7,8 @@ "CVE-2010-2997" ], "details": "Use-after-free vulnerability in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.0.1, Mac RealPlayer 11.0 through 11.1, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allows remote attackers to execute arbitrary code or cause a denial of service (heap memory corruption) via a crafted StreamTitle tag in an ICY SHOUTcast stream, related to the SMIL file format.", - "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-4p35-7jx5-47jq/GHSA-4p35-7jx5-47jq.json b/advisories/unreviewed/2022/05/GHSA-4p35-7jx5-47jq/GHSA-4p35-7jx5-47jq.json index 7462caeba02..cc9bb9f7047 100644 --- a/advisories/unreviewed/2022/05/GHSA-4p35-7jx5-47jq/GHSA-4p35-7jx5-47jq.json +++ b/advisories/unreviewed/2022/05/GHSA-4p35-7jx5-47jq/GHSA-4p35-7jx5-47jq.json @@ -7,12 +7,8 @@ "CVE-2011-1757" ], "details": "DJabberd 0.84 and earlier does not properly detect recursion during entity expansion, which allows remote attackers to cause a denial of service (memory and CPU consumption) via a crafted XML document containing a large number of nested entity references, a similar issue to CVE-2003-1564.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4p8v-crr9-c3h6/GHSA-4p8v-crr9-c3h6.json b/advisories/unreviewed/2022/05/GHSA-4p8v-crr9-c3h6/GHSA-4p8v-crr9-c3h6.json index ccf13d84cd9..9d910e86c83 100644 --- a/advisories/unreviewed/2022/05/GHSA-4p8v-crr9-c3h6/GHSA-4p8v-crr9-c3h6.json +++ b/advisories/unreviewed/2022/05/GHSA-4p8v-crr9-c3h6/GHSA-4p8v-crr9-c3h6.json @@ -7,12 +7,8 @@ "CVE-2011-1324" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in the management screen on Buffalo WHR, WZR2, WZR, WER, and BBR series routers with firmware 1.x; BHR-4RV and FS-G54 routers with firmware 2.x; and AS-100 routers allow remote attackers to hijack the authentication of administrators for requests that modify settings, as demonstrated by changing the login password.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4q9r-c3w8-rm5f/GHSA-4q9r-c3w8-rm5f.json b/advisories/unreviewed/2022/05/GHSA-4q9r-c3w8-rm5f/GHSA-4q9r-c3w8-rm5f.json index 6a1c4a8b634..0aec20c0492 100644 --- a/advisories/unreviewed/2022/05/GHSA-4q9r-c3w8-rm5f/GHSA-4q9r-c3w8-rm5f.json +++ b/advisories/unreviewed/2022/05/GHSA-4q9r-c3w8-rm5f/GHSA-4q9r-c3w8-rm5f.json @@ -7,12 +7,8 @@ "CVE-2010-4803" ], "details": "Mojolicious before 0.999927 does not properly implement HMAC-MD5 checksums, which has unspecified impact and remote attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4qc2-w83m-rm23/GHSA-4qc2-w83m-rm23.json b/advisories/unreviewed/2022/05/GHSA-4qc2-w83m-rm23/GHSA-4qc2-w83m-rm23.json index 235e2fcefc7..ce68658ad9b 100644 --- a/advisories/unreviewed/2022/05/GHSA-4qc2-w83m-rm23/GHSA-4qc2-w83m-rm23.json +++ b/advisories/unreviewed/2022/05/GHSA-4qc2-w83m-rm23/GHSA-4qc2-w83m-rm23.json @@ -7,12 +7,8 @@ "CVE-2011-1583" ], "details": "Multiple integer overflows in tools/libxc/xc_dom_bzimageloader.c in Xen 3.2, 3.3, 4.0, and 4.1 allow local users to cause a denial of service and possibly execute arbitrary code via a crafted paravirtualised guest kernel image that triggers (1) a buffer overflow during a decompression loop or (2) an out-of-bounds read in the loader involving unspecified length fields.", - "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-4rm7-pgj2-mjwp/GHSA-4rm7-pgj2-mjwp.json b/advisories/unreviewed/2022/05/GHSA-4rm7-pgj2-mjwp/GHSA-4rm7-pgj2-mjwp.json index 79841c9fde4..bff99b3a7c1 100644 --- a/advisories/unreviewed/2022/05/GHSA-4rm7-pgj2-mjwp/GHSA-4rm7-pgj2-mjwp.json +++ b/advisories/unreviewed/2022/05/GHSA-4rm7-pgj2-mjwp/GHSA-4rm7-pgj2-mjwp.json @@ -7,12 +7,8 @@ "CVE-2011-2956" ], "details": "AzeoTech DAQFactory before 5.85 (Build 1842) does not perform authentication for certain signals, which allows remote attackers to cause a denial of service (system reboot or shutdown) via a signal.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4v93-238v-585f/GHSA-4v93-238v-585f.json b/advisories/unreviewed/2022/05/GHSA-4v93-238v-585f/GHSA-4v93-238v-585f.json index 9caafb2462b..f120d373c41 100644 --- a/advisories/unreviewed/2022/05/GHSA-4v93-238v-585f/GHSA-4v93-238v-585f.json +++ b/advisories/unreviewed/2022/05/GHSA-4v93-238v-585f/GHSA-4v93-238v-585f.json @@ -7,12 +7,8 @@ "CVE-2008-7282" ], "details": "Kernel/Output/HTML/CustomerNewTicketQueueSelectionGeneric.pm in Open Ticket Request System (OTRS) before 2.2.6, when the CustomerPanelOwnSelection and CustomerGroupSupport options are enabled, allows remote authenticated users to bypass intended access restrictions, and perform certain (1) list and (2) write operations on queues, via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-4wvg-r3cj-2gc3/GHSA-4wvg-r3cj-2gc3.json b/advisories/unreviewed/2022/05/GHSA-4wvg-r3cj-2gc3/GHSA-4wvg-r3cj-2gc3.json index bb9c6638678..4be39f33d1f 100644 --- a/advisories/unreviewed/2022/05/GHSA-4wvg-r3cj-2gc3/GHSA-4wvg-r3cj-2gc3.json +++ b/advisories/unreviewed/2022/05/GHSA-4wvg-r3cj-2gc3/GHSA-4wvg-r3cj-2gc3.json @@ -7,12 +7,8 @@ "CVE-2010-3986" ], "details": "Unspecified vulnerability in HP Virtual Connect Enterprise Manager (VCEM) 6.0 and 6.1 allows remote attackers to read arbitrary files via unknown vectors.", - "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-4x2p-6cr9-jx6r/GHSA-4x2p-6cr9-jx6r.json b/advisories/unreviewed/2022/05/GHSA-4x2p-6cr9-jx6r/GHSA-4x2p-6cr9-jx6r.json index e4ab362f608..36b607fd364 100644 --- a/advisories/unreviewed/2022/05/GHSA-4x2p-6cr9-jx6r/GHSA-4x2p-6cr9-jx6r.json +++ b/advisories/unreviewed/2022/05/GHSA-4x2p-6cr9-jx6r/GHSA-4x2p-6cr9-jx6r.json @@ -7,12 +7,8 @@ "CVE-2011-0535" ], "details": "Cross-site request forgery (CSRF) vulnerability in the Users module in Zikula before 1.2.5 allows remote attackers to hijack the authentication of administrators for requests that change account privileges via an edit access_permissions action to index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4x42-fq2v-8m88/GHSA-4x42-fq2v-8m88.json b/advisories/unreviewed/2022/05/GHSA-4x42-fq2v-8m88/GHSA-4x42-fq2v-8m88.json index 8d421810a10..f06cb92a798 100644 --- a/advisories/unreviewed/2022/05/GHSA-4x42-fq2v-8m88/GHSA-4x42-fq2v-8m88.json +++ b/advisories/unreviewed/2022/05/GHSA-4x42-fq2v-8m88/GHSA-4x42-fq2v-8m88.json @@ -7,12 +7,8 @@ "CVE-2011-0175" ], "details": "Multiple buffer overflows in Apple Type Services (ATS) in Apple Mac OS X before 10.6.7 allow remote attackers to execute arbitrary code via a document that contains a crafted embedded TrueType font.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-4x7x-9f67-fwrw/GHSA-4x7x-9f67-fwrw.json b/advisories/unreviewed/2022/05/GHSA-4x7x-9f67-fwrw/GHSA-4x7x-9f67-fwrw.json index e0502515a61..0e24d2598b0 100644 --- a/advisories/unreviewed/2022/05/GHSA-4x7x-9f67-fwrw/GHSA-4x7x-9f67-fwrw.json +++ b/advisories/unreviewed/2022/05/GHSA-4x7x-9f67-fwrw/GHSA-4x7x-9f67-fwrw.json @@ -7,12 +7,8 @@ "CVE-2010-2778" ], "details": "Cross-site scripting (XSS) vulnerability in WebAccess in Novell GroupWise 7.x before 7.0 post-SP4 FTF and 8.x before 8.0 SP2 allows remote attackers to inject arbitrary web script or HTML via a crafted message, related to a \"Javascript XSS exploit.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-53vv-56ch-r56h/GHSA-53vv-56ch-r56h.json b/advisories/unreviewed/2022/05/GHSA-53vv-56ch-r56h/GHSA-53vv-56ch-r56h.json index f90494ad36c..5462c3f7429 100644 --- a/advisories/unreviewed/2022/05/GHSA-53vv-56ch-r56h/GHSA-53vv-56ch-r56h.json +++ b/advisories/unreviewed/2022/05/GHSA-53vv-56ch-r56h/GHSA-53vv-56ch-r56h.json @@ -7,12 +7,8 @@ "CVE-2008-7279" ], "details": "The CustomerInterface component in Open Ticket Request System (OTRS) before 2.2.8 allows remote authenticated users to bypass intended access restrictions and access tickets of arbitrary customers via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-543w-q592-87ph/GHSA-543w-q592-87ph.json b/advisories/unreviewed/2022/05/GHSA-543w-q592-87ph/GHSA-543w-q592-87ph.json index e3c79ffce0b..e7b262e05ad 100644 --- a/advisories/unreviewed/2022/05/GHSA-543w-q592-87ph/GHSA-543w-q592-87ph.json +++ b/advisories/unreviewed/2022/05/GHSA-543w-q592-87ph/GHSA-543w-q592-87ph.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-549g-4ppq-j4x4/GHSA-549g-4ppq-j4x4.json b/advisories/unreviewed/2022/05/GHSA-549g-4ppq-j4x4/GHSA-549g-4ppq-j4x4.json index 33d953c4d6f..e74bf655c62 100644 --- a/advisories/unreviewed/2022/05/GHSA-549g-4ppq-j4x4/GHSA-549g-4ppq-j4x4.json +++ b/advisories/unreviewed/2022/05/GHSA-549g-4ppq-j4x4/GHSA-549g-4ppq-j4x4.json @@ -7,12 +7,8 @@ "CVE-2011-1327" ], "details": "The Keystroke Encryption feature in Trend Micro Internet Security 2009 (aka Virus Buster 2009 and PC-cillin 2009) does not completely encrypt passwords, which allows local users to obtain sensitive information by leveraging a keylogger.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-54h7-8928-76p5/GHSA-54h7-8928-76p5.json b/advisories/unreviewed/2022/05/GHSA-54h7-8928-76p5/GHSA-54h7-8928-76p5.json index dd950c63b2c..e529d85fb2a 100644 --- a/advisories/unreviewed/2022/05/GHSA-54h7-8928-76p5/GHSA-54h7-8928-76p5.json +++ b/advisories/unreviewed/2022/05/GHSA-54h7-8928-76p5/GHSA-54h7-8928-76p5.json @@ -7,12 +7,8 @@ "CVE-2010-4591" ], "details": "The Connection Manager in IBM Lotus Mobile Connect (LMC) before 6.1.4, when HTTP Access Services (HTTP-AS) is enabled, does not delete LTPA tokens in response to use of the iNotes Logoff button, which might allow physically proximate attackers to obtain access via an unattended client, related to a cookie domain mismatch.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-557v-4rgm-gh3h/GHSA-557v-4rgm-gh3h.json b/advisories/unreviewed/2022/05/GHSA-557v-4rgm-gh3h/GHSA-557v-4rgm-gh3h.json index 0a3ea03926f..7f6fdd0a21c 100644 --- a/advisories/unreviewed/2022/05/GHSA-557v-4rgm-gh3h/GHSA-557v-4rgm-gh3h.json +++ b/advisories/unreviewed/2022/05/GHSA-557v-4rgm-gh3h/GHSA-557v-4rgm-gh3h.json @@ -7,12 +7,8 @@ "CVE-2011-2600" ], "details": "The GPU support functionality in Windows XP does not properly restrict rendering time, which allows remote attackers to cause a denial of service (system crash) via vectors involving WebGL and (1) shader programs or (2) complex 3D geometry, as demonstrated by using Mozilla Firefox or Google Chrome to visit the lots-of-polys-example.html test page in the Khronos WebGL SDK.", - "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-55fj-g6xw-c867/GHSA-55fj-g6xw-c867.json b/advisories/unreviewed/2022/05/GHSA-55fj-g6xw-c867/GHSA-55fj-g6xw-c867.json index af11750b722..cd6e65eaa15 100644 --- a/advisories/unreviewed/2022/05/GHSA-55fj-g6xw-c867/GHSA-55fj-g6xw-c867.json +++ b/advisories/unreviewed/2022/05/GHSA-55fj-g6xw-c867/GHSA-55fj-g6xw-c867.json @@ -7,12 +7,8 @@ "CVE-2010-4548" ], "details": "IBM Lotus Notes Traveler before 8.5.1.2 allows remote authenticated users to cause a denial of service (daemon crash) by accepting a meeting invitation with an iNotes client and then accepting this meeting invitation with an iPhone client.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-55h4-rfqw-7wvm/GHSA-55h4-rfqw-7wvm.json b/advisories/unreviewed/2022/05/GHSA-55h4-rfqw-7wvm/GHSA-55h4-rfqw-7wvm.json index 3d69bf31d08..23f085b6daa 100644 --- a/advisories/unreviewed/2022/05/GHSA-55h4-rfqw-7wvm/GHSA-55h4-rfqw-7wvm.json +++ b/advisories/unreviewed/2022/05/GHSA-55h4-rfqw-7wvm/GHSA-55h4-rfqw-7wvm.json @@ -7,12 +7,8 @@ "CVE-2011-1844" ], "details": "Memory leak in Microsoft Silverlight 4 before 4.0.60310.0 allows remote attackers to cause a denial of service (memory consumption) via an application involving a popup control and a custom DependencyProperty property, related to lack of garbage collection.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-56f7-96cg-x9vh/GHSA-56f7-96cg-x9vh.json b/advisories/unreviewed/2022/05/GHSA-56f7-96cg-x9vh/GHSA-56f7-96cg-x9vh.json index 55c9d1727ee..7f4e0bb031a 100644 --- a/advisories/unreviewed/2022/05/GHSA-56f7-96cg-x9vh/GHSA-56f7-96cg-x9vh.json +++ b/advisories/unreviewed/2022/05/GHSA-56f7-96cg-x9vh/GHSA-56f7-96cg-x9vh.json @@ -7,12 +7,8 @@ "CVE-2010-3798" ], "details": "Heap-based buffer overflow in xar in Apple Mac OS X 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted xar archive.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-56rv-9pq3-r7qh/GHSA-56rv-9pq3-r7qh.json b/advisories/unreviewed/2022/05/GHSA-56rv-9pq3-r7qh/GHSA-56rv-9pq3-r7qh.json index 391c7fe87fb..41168aac01b 100644 --- a/advisories/unreviewed/2022/05/GHSA-56rv-9pq3-r7qh/GHSA-56rv-9pq3-r7qh.json +++ b/advisories/unreviewed/2022/05/GHSA-56rv-9pq3-r7qh/GHSA-56rv-9pq3-r7qh.json @@ -7,12 +7,8 @@ "CVE-2011-0196" ], "details": "AirPort in Apple Mac OS X 10.5.8 allows remote attackers to cause a denial of service (out-of-bounds read and reboot) via Wi-Fi frames on the local wireless network.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-57x4-75jh-76wq/GHSA-57x4-75jh-76wq.json b/advisories/unreviewed/2022/05/GHSA-57x4-75jh-76wq/GHSA-57x4-75jh-76wq.json index 1299827fdaf..6a82af16d23 100644 --- a/advisories/unreviewed/2022/05/GHSA-57x4-75jh-76wq/GHSA-57x4-75jh-76wq.json +++ b/advisories/unreviewed/2022/05/GHSA-57x4-75jh-76wq/GHSA-57x4-75jh-76wq.json @@ -7,12 +7,8 @@ "CVE-2010-3531" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise FMS ESA - RM component in Oracle PeopleSoft and JDEdwards Suite 8.9 Bundle #38, 9.0 Bundle #31, and 9.1 Bundle #6 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-57xq-cfp9-365f/GHSA-57xq-cfp9-365f.json b/advisories/unreviewed/2022/05/GHSA-57xq-cfp9-365f/GHSA-57xq-cfp9-365f.json index ae5ed968863..d9f41744f42 100644 --- a/advisories/unreviewed/2022/05/GHSA-57xq-cfp9-365f/GHSA-57xq-cfp9-365f.json +++ b/advisories/unreviewed/2022/05/GHSA-57xq-cfp9-365f/GHSA-57xq-cfp9-365f.json @@ -7,12 +7,8 @@ "CVE-2011-1154" ], "details": "The shred_file function in logrotate.c in logrotate 3.7.9 and earlier might allow context-dependent attackers to execute arbitrary commands via shell metacharacters in a log filename, as demonstrated by a filename that is automatically constructed on the basis of a hostname or virtual machine name.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-58hm-mcrj-h6xh/GHSA-58hm-mcrj-h6xh.json b/advisories/unreviewed/2022/05/GHSA-58hm-mcrj-h6xh/GHSA-58hm-mcrj-h6xh.json index d52632a7b9d..4f319694a56 100644 --- a/advisories/unreviewed/2022/05/GHSA-58hm-mcrj-h6xh/GHSA-58hm-mcrj-h6xh.json +++ b/advisories/unreviewed/2022/05/GHSA-58hm-mcrj-h6xh/GHSA-58hm-mcrj-h6xh.json @@ -7,12 +7,8 @@ "CVE-2010-4765" ], "details": "Race condition in the Kernel::System::Main::FileWrite method in Open Ticket Request System (OTRS) before 2.4.8 allows remote authenticated users to corrupt the TicketCounter.log data in opportunistic circumstances by creating tickets.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5f5v-67j5-fvcf/GHSA-5f5v-67j5-fvcf.json b/advisories/unreviewed/2022/05/GHSA-5f5v-67j5-fvcf/GHSA-5f5v-67j5-fvcf.json index 6ff92152c64..e5ef3b367f2 100644 --- a/advisories/unreviewed/2022/05/GHSA-5f5v-67j5-fvcf/GHSA-5f5v-67j5-fvcf.json +++ b/advisories/unreviewed/2022/05/GHSA-5f5v-67j5-fvcf/GHSA-5f5v-67j5-fvcf.json @@ -7,12 +7,8 @@ "CVE-2010-4194" ], "details": "The dirapi.dll module in Adobe Shockwave Player before 11.5.9.620 does not properly validate unspecified input data, which allows attackers to execute arbitrary code via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5f76-pxq9-77h5/GHSA-5f76-pxq9-77h5.json b/advisories/unreviewed/2022/05/GHSA-5f76-pxq9-77h5/GHSA-5f76-pxq9-77h5.json index ca60c93560c..98a5a393136 100644 --- a/advisories/unreviewed/2022/05/GHSA-5f76-pxq9-77h5/GHSA-5f76-pxq9-77h5.json +++ b/advisories/unreviewed/2022/05/GHSA-5f76-pxq9-77h5/GHSA-5f76-pxq9-77h5.json @@ -7,12 +7,8 @@ "CVE-2011-2614" ], "details": "The SVG implementation in Opera before 11.50 allows remote attackers to cause a denial of service (application crash) via vectors involving a path on which many characters are drawn.", - "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-5fr6-v2fq-5jcc/GHSA-5fr6-v2fq-5jcc.json b/advisories/unreviewed/2022/05/GHSA-5fr6-v2fq-5jcc/GHSA-5fr6-v2fq-5jcc.json index 73a2d2f2091..25143b565d3 100644 --- a/advisories/unreviewed/2022/05/GHSA-5fr6-v2fq-5jcc/GHSA-5fr6-v2fq-5jcc.json +++ b/advisories/unreviewed/2022/05/GHSA-5fr6-v2fq-5jcc/GHSA-5fr6-v2fq-5jcc.json @@ -7,12 +7,8 @@ "CVE-2011-0173" ], "details": "Multiple format string vulnerabilities in AppleScript in Apple Mac OS X before 10.6.7 allow context-dependent attackers to execute arbitrary code or cause a denial of service (application crash) via format string specifiers in a (1) display dialog or (2) display alert command in a dialog in an AppleScript Studio application.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5g26-3q47-628q/GHSA-5g26-3q47-628q.json b/advisories/unreviewed/2022/05/GHSA-5g26-3q47-628q/GHSA-5g26-3q47-628q.json index 48a01f05563..0c527ca5a48 100644 --- a/advisories/unreviewed/2022/05/GHSA-5g26-3q47-628q/GHSA-5g26-3q47-628q.json +++ b/advisories/unreviewed/2022/05/GHSA-5g26-3q47-628q/GHSA-5g26-3q47-628q.json @@ -7,12 +7,8 @@ "CVE-2010-4259" ], "details": "Stack-based buffer overflow in FontForge 20100501 allows remote attackers to cause a denial of service (application crash) or possibly execute arbitrary code via a long CHARSET_REGISTRY header in a BDF font file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5hqx-mr4x-fwj7/GHSA-5hqx-mr4x-fwj7.json b/advisories/unreviewed/2022/05/GHSA-5hqx-mr4x-fwj7/GHSA-5hqx-mr4x-fwj7.json index 7d1f7dec171..4247bb66a94 100644 --- a/advisories/unreviewed/2022/05/GHSA-5hqx-mr4x-fwj7/GHSA-5hqx-mr4x-fwj7.json +++ b/advisories/unreviewed/2022/05/GHSA-5hqx-mr4x-fwj7/GHSA-5hqx-mr4x-fwj7.json @@ -7,12 +7,8 @@ "CVE-2010-4742" ], "details": "Stack-based buffer overflow in a certain ActiveX control in MediaDBPlayback.DLL 2.2.0.5 in the Moxa ActiveX SDK allows remote attackers to execute arbitrary code via a long PlayFileName property value.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5j5x-964m-mjxj/GHSA-5j5x-964m-mjxj.json b/advisories/unreviewed/2022/05/GHSA-5j5x-964m-mjxj/GHSA-5j5x-964m-mjxj.json index 457d0710bd1..ff5b8a2db67 100644 --- a/advisories/unreviewed/2022/05/GHSA-5j5x-964m-mjxj/GHSA-5j5x-964m-mjxj.json +++ b/advisories/unreviewed/2022/05/GHSA-5j5x-964m-mjxj/GHSA-5j5x-964m-mjxj.json @@ -7,12 +7,8 @@ "CVE-2010-4720" ], "details": "SQL injection vulnerability in the JExtensions JE Auto (com_jeauto) component before 1.1 for Joomla! allows remote attackers to execute arbitrary SQL commands via unspecified vectors related to the view item page.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5jhf-gv52-jc4h/GHSA-5jhf-gv52-jc4h.json b/advisories/unreviewed/2022/05/GHSA-5jhf-gv52-jc4h/GHSA-5jhf-gv52-jc4h.json index 223b06f4fae..0ab48f41d57 100644 --- a/advisories/unreviewed/2022/05/GHSA-5jhf-gv52-jc4h/GHSA-5jhf-gv52-jc4h.json +++ b/advisories/unreviewed/2022/05/GHSA-5jhf-gv52-jc4h/GHSA-5jhf-gv52-jc4h.json @@ -7,12 +7,8 @@ "CVE-2008-7284" ], "details": "IBM Lotus Quickr 8.1 before 8100.003 services for Lotus Domino allows remote authenticated users to cause a denial of service (daemon crash) by clicking a download link, aka SPR QCAO7E6AM8.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5jqg-jcp2-p73f/GHSA-5jqg-jcp2-p73f.json b/advisories/unreviewed/2022/05/GHSA-5jqg-jcp2-p73f/GHSA-5jqg-jcp2-p73f.json index b3907a6db90..2866f0d1567 100644 --- a/advisories/unreviewed/2022/05/GHSA-5jqg-jcp2-p73f/GHSA-5jqg-jcp2-p73f.json +++ b/advisories/unreviewed/2022/05/GHSA-5jqg-jcp2-p73f/GHSA-5jqg-jcp2-p73f.json @@ -7,12 +7,8 @@ "CVE-2010-4551" ], "details": "IBM Lotus Notes Traveler before 8.5.1.2 allows remote authenticated users to cause a denial of service (NULL pointer dereference and daemon crash) by omitting the Internet ID field in the person document, and then using an Apple device to (1) accept or (2) decline an invitation.", - "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-5jv6-q4vv-4v8w/GHSA-5jv6-q4vv-4v8w.json b/advisories/unreviewed/2022/05/GHSA-5jv6-q4vv-4v8w/GHSA-5jv6-q4vv-4v8w.json index 48d177eb1c2..cc256937fcf 100644 --- a/advisories/unreviewed/2022/05/GHSA-5jv6-q4vv-4v8w/GHSA-5jv6-q4vv-4v8w.json +++ b/advisories/unreviewed/2022/05/GHSA-5jv6-q4vv-4v8w/GHSA-5jv6-q4vv-4v8w.json @@ -7,12 +7,8 @@ "CVE-2011-0810" ], "details": "Unspecified vulnerability Oracle JD Edwards EnterpriseOne Tools 8.9 GA through 8.98.4.1 and OneWorld Tools through 24.1.3 allows remote attackers to affect availability, related to Enterprise Infrastructure SEC.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5mpq-64rg-fj86/GHSA-5mpq-64rg-fj86.json b/advisories/unreviewed/2022/05/GHSA-5mpq-64rg-fj86/GHSA-5mpq-64rg-fj86.json index f0642dc3d87..4fb302afabd 100644 --- a/advisories/unreviewed/2022/05/GHSA-5mpq-64rg-fj86/GHSA-5mpq-64rg-fj86.json +++ b/advisories/unreviewed/2022/05/GHSA-5mpq-64rg-fj86/GHSA-5mpq-64rg-fj86.json @@ -7,12 +7,8 @@ "CVE-2010-4760" ], "details": "Open Ticket Request System (OTRS) before 3.0.0-beta6 adds email-notification-ext articles to tickets during processing of event-based notifications, which allows remote authenticated users to obtain potentially sensitive information by reading a ticket.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5p9m-hxc7-hpwp/GHSA-5p9m-hxc7-hpwp.json b/advisories/unreviewed/2022/05/GHSA-5p9m-hxc7-hpwp/GHSA-5p9m-hxc7-hpwp.json index 0207e9afe78..847299d1b04 100644 --- a/advisories/unreviewed/2022/05/GHSA-5p9m-hxc7-hpwp/GHSA-5p9m-hxc7-hpwp.json +++ b/advisories/unreviewed/2022/05/GHSA-5p9m-hxc7-hpwp/GHSA-5p9m-hxc7-hpwp.json @@ -7,12 +7,8 @@ "CVE-2010-4376" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.1, Mac RealPlayer 11.0 through 11.1, and Linux RealPlayer 11.0.2.1744 allows remote attackers to execute arbitrary code via a large Screen Width value in the Screen Descriptor header of a GIF87a file in an RTSP stream.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5prw-gxc9-p8gv/GHSA-5prw-gxc9-p8gv.json b/advisories/unreviewed/2022/05/GHSA-5prw-gxc9-p8gv/GHSA-5prw-gxc9-p8gv.json index f033f593ea9..dba7c72146f 100644 --- a/advisories/unreviewed/2022/05/GHSA-5prw-gxc9-p8gv/GHSA-5prw-gxc9-p8gv.json +++ b/advisories/unreviewed/2022/05/GHSA-5prw-gxc9-p8gv/GHSA-5prw-gxc9-p8gv.json @@ -7,12 +7,8 @@ "CVE-2010-4758" ], "details": "installer.pl in Open Ticket Request System (OTRS) before 3.0.3 has an Inbound Mail Password field that uses the text type, instead of the password type, for its INPUT element, which makes it easier for physically proximate attackers to obtain the password by reading the workstation screen.", - "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-5q34-6fff-9mh4/GHSA-5q34-6fff-9mh4.json b/advisories/unreviewed/2022/05/GHSA-5q34-6fff-9mh4/GHSA-5q34-6fff-9mh4.json index b158fe7a4e6..8fa95c9d738 100644 --- a/advisories/unreviewed/2022/05/GHSA-5q34-6fff-9mh4/GHSA-5q34-6fff-9mh4.json +++ b/advisories/unreviewed/2022/05/GHSA-5q34-6fff-9mh4/GHSA-5q34-6fff-9mh4.json @@ -7,12 +7,8 @@ "CVE-2010-4724" ], "details": "Multiple unspecified vulnerabilities in the parser implementation in Smarty before 3.0.0 RC3 have unknown impact and remote attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5q38-6cp8-q4p4/GHSA-5q38-6cp8-q4p4.json b/advisories/unreviewed/2022/05/GHSA-5q38-6cp8-q4p4/GHSA-5q38-6cp8-q4p4.json index ad0a0a9e8fd..060e9777af5 100644 --- a/advisories/unreviewed/2022/05/GHSA-5q38-6cp8-q4p4/GHSA-5q38-6cp8-q4p4.json +++ b/advisories/unreviewed/2022/05/GHSA-5q38-6cp8-q4p4/GHSA-5q38-6cp8-q4p4.json @@ -7,12 +7,8 @@ "CVE-2010-3993" ], "details": "Unspecified vulnerability in HP Insight Control Server Migration before 6.2 allows remote attackers to obtain sensitive information or modify data via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5qh8-wrvh-44x3/GHSA-5qh8-wrvh-44x3.json b/advisories/unreviewed/2022/05/GHSA-5qh8-wrvh-44x3/GHSA-5qh8-wrvh-44x3.json index 129346fd703..3a3a856c761 100644 --- a/advisories/unreviewed/2022/05/GHSA-5qh8-wrvh-44x3/GHSA-5qh8-wrvh-44x3.json +++ b/advisories/unreviewed/2022/05/GHSA-5qh8-wrvh-44x3/GHSA-5qh8-wrvh-44x3.json @@ -7,12 +7,8 @@ "CVE-2010-4339" ], "details": "Cross-site scripting (XSS) vulnerability in Hypermail 2.2.0 allows remote attackers to inject arbitrary web script or HTML via a crafted From address, which is not properly handled when indexing messages.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5qqx-pr52-8r8w/GHSA-5qqx-pr52-8r8w.json b/advisories/unreviewed/2022/05/GHSA-5qqx-pr52-8r8w/GHSA-5qqx-pr52-8r8w.json index 8cebb0f6ce0..d166b23edfc 100644 --- a/advisories/unreviewed/2022/05/GHSA-5qqx-pr52-8r8w/GHSA-5qqx-pr52-8r8w.json +++ b/advisories/unreviewed/2022/05/GHSA-5qqx-pr52-8r8w/GHSA-5qqx-pr52-8r8w.json @@ -7,12 +7,8 @@ "CVE-2011-0219" ], "details": "Apple Safari before 5.0.6 allows remote attackers to bypass the Same Origin Policy, and modify the rendering of text from arbitrary web sites, via a Java applet that loads fonts.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5r3j-4hrr-mv5v/GHSA-5r3j-4hrr-mv5v.json b/advisories/unreviewed/2022/05/GHSA-5r3j-4hrr-mv5v/GHSA-5r3j-4hrr-mv5v.json index fe59470e09a..fba8369acad 100644 --- a/advisories/unreviewed/2022/05/GHSA-5r3j-4hrr-mv5v/GHSA-5r3j-4hrr-mv5v.json +++ b/advisories/unreviewed/2022/05/GHSA-5r3j-4hrr-mv5v/GHSA-5r3j-4hrr-mv5v.json @@ -7,12 +7,8 @@ "CVE-2010-4613" ], "details": "Multiple directory traversal vulnerabilities in Hycus CMS 1.0.3 allow remote attackers to include and execute arbitrary local files via a .. (dot dot) in the site parameter to (1) index.php and (2) admin.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5r52-7jj3-2v73/GHSA-5r52-7jj3-2v73.json b/advisories/unreviewed/2022/05/GHSA-5r52-7jj3-2v73/GHSA-5r52-7jj3-2v73.json index cf4e8ba2f6e..3f233c5c4a2 100644 --- a/advisories/unreviewed/2022/05/GHSA-5r52-7jj3-2v73/GHSA-5r52-7jj3-2v73.json +++ b/advisories/unreviewed/2022/05/GHSA-5r52-7jj3-2v73/GHSA-5r52-7jj3-2v73.json @@ -7,12 +7,8 @@ "CVE-2010-4714" ], "details": "Multiple stack-based buffer overflows in Novell GroupWise before 8.02HP allow remote attackers to execute arbitrary code via a long HTTP Host header to (1) gwpoa.exe in the Post Office Agent, (2) gwmta.exe in the Message Transfer Agent, (3) gwia.exe in the Internet Agent, (4) the WebAccess Agent, or (5) the Monitor Agent.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-5rch-w95j-qgrv/GHSA-5rch-w95j-qgrv.json b/advisories/unreviewed/2022/05/GHSA-5rch-w95j-qgrv/GHSA-5rch-w95j-qgrv.json index 7fae8328247..f02857dc9e1 100644 --- a/advisories/unreviewed/2022/05/GHSA-5rch-w95j-qgrv/GHSA-5rch-w95j-qgrv.json +++ b/advisories/unreviewed/2022/05/GHSA-5rch-w95j-qgrv/GHSA-5rch-w95j-qgrv.json @@ -7,12 +7,8 @@ "CVE-2011-0132" ], "details": "Use-after-free vulnerability in the Runin box functionality in the Cascading Style Sheets (CSS) 2.1 Visual Formatting Model implementation in WebKit, as used in Apple iTunes before 10.2 on Windows and Apple Safari, allows man-in-the-middle attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via vectors related to iTunes Store browsing, a different vulnerability than other CVEs listed in APPLE-SA-2011-03-02-1.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -48,9 +44,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5vjx-p3qh-qqqc/GHSA-5vjx-p3qh-qqqc.json b/advisories/unreviewed/2022/05/GHSA-5vjx-p3qh-qqqc/GHSA-5vjx-p3qh-qqqc.json index 0f820c98300..0a6954dc132 100644 --- a/advisories/unreviewed/2022/05/GHSA-5vjx-p3qh-qqqc/GHSA-5vjx-p3qh-qqqc.json +++ b/advisories/unreviewed/2022/05/GHSA-5vjx-p3qh-qqqc/GHSA-5vjx-p3qh-qqqc.json @@ -7,12 +7,8 @@ "CVE-2010-4028" ], "details": "Unspecified vulnerability in LoadRunner Web Tours 9.10 in HP LoadRunner 9.1 and earlier allows remote attackers to cause a denial of service, and possibly obtain sensitive information or modify data, via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-5xq7-vchr-gq3r/GHSA-5xq7-vchr-gq3r.json b/advisories/unreviewed/2022/05/GHSA-5xq7-vchr-gq3r/GHSA-5xq7-vchr-gq3r.json index f3c69f228f4..d8284636546 100644 --- a/advisories/unreviewed/2022/05/GHSA-5xq7-vchr-gq3r/GHSA-5xq7-vchr-gq3r.json +++ b/advisories/unreviewed/2022/05/GHSA-5xq7-vchr-gq3r/GHSA-5xq7-vchr-gq3r.json @@ -7,12 +7,8 @@ "CVE-2011-0799" ], "details": "Unspecified vulnerability in the Oracle Warehouse Builder component in Oracle Database Server 10.2.0.5 (OWB), 11.1.0.7, and 11.2.0.1 allows remote authenticated users to affect confidentiality, integrity, and availability via unknown vectors related to Oracle Warehouse Builder User 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/05/GHSA-5xw6-pvjp-gp9g/GHSA-5xw6-pvjp-gp9g.json b/advisories/unreviewed/2022/05/GHSA-5xw6-pvjp-gp9g/GHSA-5xw6-pvjp-gp9g.json index a228221b6e5..2565ae9c358 100644 --- a/advisories/unreviewed/2022/05/GHSA-5xw6-pvjp-gp9g/GHSA-5xw6-pvjp-gp9g.json +++ b/advisories/unreviewed/2022/05/GHSA-5xw6-pvjp-gp9g/GHSA-5xw6-pvjp-gp9g.json @@ -7,12 +7,8 @@ "CVE-2011-0914" ], "details": "Integer signedness error in ndiiop.exe in the DIIOP implementation in the server in IBM Lotus Domino before 8.5.3 allows remote attackers to execute arbitrary code via a GIOP client request, leading to a heap-based buffer overflow.", - "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-62jr-gjr6-pf9v/GHSA-62jr-gjr6-pf9v.json b/advisories/unreviewed/2022/05/GHSA-62jr-gjr6-pf9v/GHSA-62jr-gjr6-pf9v.json index 525ed74d007..70bcb56a094 100644 --- a/advisories/unreviewed/2022/05/GHSA-62jr-gjr6-pf9v/GHSA-62jr-gjr6-pf9v.json +++ b/advisories/unreviewed/2022/05/GHSA-62jr-gjr6-pf9v/GHSA-62jr-gjr6-pf9v.json @@ -7,12 +7,8 @@ "CVE-2010-4725" ], "details": "Smarty before 3.0.0 RC3 does not properly handle an on value of the asp_tags option in the php.ini file, which has unspecified impact and remote attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-62x9-qh5g-9m34/GHSA-62x9-qh5g-9m34.json b/advisories/unreviewed/2022/05/GHSA-62x9-qh5g-9m34/GHSA-62x9-qh5g-9m34.json index c66f63a022f..617a9f5ebb4 100644 --- a/advisories/unreviewed/2022/05/GHSA-62x9-qh5g-9m34/GHSA-62x9-qh5g-9m34.json +++ b/advisories/unreviewed/2022/05/GHSA-62x9-qh5g-9m34/GHSA-62x9-qh5g-9m34.json @@ -7,12 +7,8 @@ "CVE-2010-4520" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the Views module 6.x before 6.x-2.11 for Drupal allow remote attackers to inject arbitrary web script or HTML via (1) a URL or (2) an aggregator feed title.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6442-8w69-mgwm/GHSA-6442-8w69-mgwm.json b/advisories/unreviewed/2022/05/GHSA-6442-8w69-mgwm/GHSA-6442-8w69-mgwm.json index 8c71a34645a..b29d0d3bc82 100644 --- a/advisories/unreviewed/2022/05/GHSA-6442-8w69-mgwm/GHSA-6442-8w69-mgwm.json +++ b/advisories/unreviewed/2022/05/GHSA-6442-8w69-mgwm/GHSA-6442-8w69-mgwm.json @@ -7,12 +7,8 @@ "CVE-2010-3055" ], "details": "The configuration setup script (aka scripts/setup.php) in phpMyAdmin 2.11.x before 2.11.10.1 does not properly restrict key names in its output file, which allows remote attackers to execute arbitrary PHP code via a crafted POST request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -60,9 +56,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-656r-h43h-7m58/GHSA-656r-h43h-7m58.json b/advisories/unreviewed/2022/05/GHSA-656r-h43h-7m58/GHSA-656r-h43h-7m58.json index bdad20d0011..ca0588b3e14 100644 --- a/advisories/unreviewed/2022/05/GHSA-656r-h43h-7m58/GHSA-656r-h43h-7m58.json +++ b/advisories/unreviewed/2022/05/GHSA-656r-h43h-7m58/GHSA-656r-h43h-7m58.json @@ -7,12 +7,8 @@ "CVE-2011-1737" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the Email application in HP Palm webOS 1.4.5 and 1.4.5.1 allow remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-65jp-vw6g-6vxm/GHSA-65jp-vw6g-6vxm.json b/advisories/unreviewed/2022/05/GHSA-65jp-vw6g-6vxm/GHSA-65jp-vw6g-6vxm.json index 2dbce637940..bb11529992d 100644 --- a/advisories/unreviewed/2022/05/GHSA-65jp-vw6g-6vxm/GHSA-65jp-vw6g-6vxm.json +++ b/advisories/unreviewed/2022/05/GHSA-65jp-vw6g-6vxm/GHSA-65jp-vw6g-6vxm.json @@ -7,12 +7,8 @@ "CVE-2010-4609" ], "details": "SQL injection vulnerability in index.php in Html-edit CMS 3.1.8 allows remote attackers to execute arbitrary SQL commands via the nuser parameter in a registrate action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6634-h7jm-9fm9/GHSA-6634-h7jm-9fm9.json b/advisories/unreviewed/2022/05/GHSA-6634-h7jm-9fm9/GHSA-6634-h7jm-9fm9.json index 35718ab21e5..a7da870ece2 100644 --- a/advisories/unreviewed/2022/05/GHSA-6634-h7jm-9fm9/GHSA-6634-h7jm-9fm9.json +++ b/advisories/unreviewed/2022/05/GHSA-6634-h7jm-9fm9/GHSA-6634-h7jm-9fm9.json @@ -7,12 +7,8 @@ "CVE-2008-4659" ], "details": "SQL injection vulnerability in the Mannschaftsliste (kiddog_playerlist) 1.0.3 and earlier extension for TYPO3 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-669f-5h8c-h58m/GHSA-669f-5h8c-h58m.json b/advisories/unreviewed/2022/05/GHSA-669f-5h8c-h58m/GHSA-669f-5h8c-h58m.json index 23cb3f52121..03ff1a1ffc4 100644 --- a/advisories/unreviewed/2022/05/GHSA-669f-5h8c-h58m/GHSA-669f-5h8c-h58m.json +++ b/advisories/unreviewed/2022/05/GHSA-669f-5h8c-h58m/GHSA-669f-5h8c-h58m.json @@ -7,12 +7,8 @@ "CVE-2011-1022" ], "details": "The cgre_receive_netlink_msg function in daemon/cgrulesengd.c in cgrulesengd in the Control Group Configuration Library (aka libcgroup or libcg) before 0.37.1 does not verify that netlink messages originated in the kernel, which allows local users to bypass intended resource restrictions via a crafted message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -112,9 +108,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-66g7-w76p-vj2q/GHSA-66g7-w76p-vj2q.json b/advisories/unreviewed/2022/05/GHSA-66g7-w76p-vj2q/GHSA-66g7-w76p-vj2q.json index d8656c3b018..946a1291f27 100644 --- a/advisories/unreviewed/2022/05/GHSA-66g7-w76p-vj2q/GHSA-66g7-w76p-vj2q.json +++ b/advisories/unreviewed/2022/05/GHSA-66g7-w76p-vj2q/GHSA-66g7-w76p-vj2q.json @@ -7,12 +7,8 @@ "CVE-2010-4730" ], "details": "Directory traversal vulnerability in cgi-bin/read.cgi in WebSCADA WS100 and WS200, Easy Connect EC150, Modbus RTU - TCP Gateway MB100, and Serial Ethernet Server SS100 on the IntelliCom NetBiter NB100 and NB200 platforms allows remote authenticated administrators to read arbitrary files via a .. (dot dot) in the page parameter, a different vulnerability than CVE-2009-4463.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-66g9-9293-33hc/GHSA-66g9-9293-33hc.json b/advisories/unreviewed/2022/05/GHSA-66g9-9293-33hc/GHSA-66g9-9293-33hc.json index ac7332af6dc..d8727786687 100644 --- a/advisories/unreviewed/2022/05/GHSA-66g9-9293-33hc/GHSA-66g9-9293-33hc.json +++ b/advisories/unreviewed/2022/05/GHSA-66g9-9293-33hc/GHSA-66g9-9293-33hc.json @@ -7,12 +7,8 @@ "CVE-2008-7281" ], "details": "Open Ticket Request System (OTRS) before 2.2.7 sends e-mail containing a Bcc header field that lists the Blind Carbon Copy recipients, which allows remote attackers to obtain potentially sensitive e-mail address information by reading this field.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-66vr-4f54-3w4r/GHSA-66vr-4f54-3w4r.json b/advisories/unreviewed/2022/05/GHSA-66vr-4f54-3w4r/GHSA-66vr-4f54-3w4r.json index 3ea242cca4d..7a8292cd894 100644 --- a/advisories/unreviewed/2022/05/GHSA-66vr-4f54-3w4r/GHSA-66vr-4f54-3w4r.json +++ b/advisories/unreviewed/2022/05/GHSA-66vr-4f54-3w4r/GHSA-66vr-4f54-3w4r.json @@ -7,12 +7,8 @@ "CVE-2010-4712" ], "details": "Multiple stack-based buffer overflows in gwia.exe in GroupWise Internet Agent (GWIA) in Novell GroupWise before 8.02HP allow remote attackers to execute arbitrary code via a Content-Type header containing (1) multiple items separated by ; (semicolon) characters or (2) crafted string data.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-67x5-44rc-5gvf/GHSA-67x5-44rc-5gvf.json b/advisories/unreviewed/2022/05/GHSA-67x5-44rc-5gvf/GHSA-67x5-44rc-5gvf.json index 145f196bd0a..b327fd574dd 100644 --- a/advisories/unreviewed/2022/05/GHSA-67x5-44rc-5gvf/GHSA-67x5-44rc-5gvf.json +++ b/advisories/unreviewed/2022/05/GHSA-67x5-44rc-5gvf/GHSA-67x5-44rc-5gvf.json @@ -7,12 +7,8 @@ "CVE-2011-1313" ], "details": "Double free vulnerability in IBM WebSphere Application Server (WAS) 6.1.0.x before 6.1.0.35 and 7.x before 7.0.0.15 allows remote backend IIOP servers to cause a denial of service (S0C4 ABEND and storage corruption) by rejecting IIOP requests at opportunistic time instants, as demonstrated by requests associated with an ORB_Request::getACRWorkElementPtr function call.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6867-mm47-7j8j/GHSA-6867-mm47-7j8j.json b/advisories/unreviewed/2022/05/GHSA-6867-mm47-7j8j/GHSA-6867-mm47-7j8j.json index c0ce0cf2e1c..2f12393aa82 100644 --- a/advisories/unreviewed/2022/05/GHSA-6867-mm47-7j8j/GHSA-6867-mm47-7j8j.json +++ b/advisories/unreviewed/2022/05/GHSA-6867-mm47-7j8j/GHSA-6867-mm47-7j8j.json @@ -7,12 +7,8 @@ "CVE-2011-1523" ], "details": "Cross-site scripting (XSS) vulnerability in statusmap.c in statusmap.cgi in Nagios 3.2.3 and earlier allows remote attackers to inject arbitrary web script or HTML via the layer parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-68xv-w725-c7q5/GHSA-68xv-w725-c7q5.json b/advisories/unreviewed/2022/05/GHSA-68xv-w725-c7q5/GHSA-68xv-w725-c7q5.json index c46b12083e6..9e30954d635 100644 --- a/advisories/unreviewed/2022/05/GHSA-68xv-w725-c7q5/GHSA-68xv-w725-c7q5.json +++ b/advisories/unreviewed/2022/05/GHSA-68xv-w725-c7q5/GHSA-68xv-w725-c7q5.json @@ -7,12 +7,8 @@ "CVE-2011-2531" ], "details": "Prosody 0.8.x before 0.8.1, when MySQL is used, assigns an incorrect data type to the value column in certain tables, which might allow remote attackers to cause a denial of service (data truncation) by sending a large amount of data.", - "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-69h2-hw9q-gmjj/GHSA-69h2-hw9q-gmjj.json b/advisories/unreviewed/2022/05/GHSA-69h2-hw9q-gmjj/GHSA-69h2-hw9q-gmjj.json index db2a0043cff..2930054d116 100644 --- a/advisories/unreviewed/2022/05/GHSA-69h2-hw9q-gmjj/GHSA-69h2-hw9q-gmjj.json +++ b/advisories/unreviewed/2022/05/GHSA-69h2-hw9q-gmjj/GHSA-69h2-hw9q-gmjj.json @@ -7,12 +7,8 @@ "CVE-2010-4788" ], "details": "IBM Tivoli Directory Server (TDS) 6.0 before 6.0.0.62 (aka 6.0.0.8-TIV-ITDS-IF0004) does not perform certain locking of linked-list access, which allows remote authenticated users to cause a denial of service (daemon crash) via a paged search.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-69rc-596w-6jr8/GHSA-69rc-596w-6jr8.json b/advisories/unreviewed/2022/05/GHSA-69rc-596w-6jr8/GHSA-69rc-596w-6jr8.json index 69200fa876b..e88c1eb1119 100644 --- a/advisories/unreviewed/2022/05/GHSA-69rc-596w-6jr8/GHSA-69rc-596w-6jr8.json +++ b/advisories/unreviewed/2022/05/GHSA-69rc-596w-6jr8/GHSA-69rc-596w-6jr8.json @@ -7,12 +7,8 @@ "CVE-2010-4717" ], "details": "Multiple stack-based buffer overflows in the IMAP server component in GroupWise Internet Agent (GWIA) in Novell GroupWise before 8.02HP allow remote attackers to execute arbitrary code via a long (1) LIST or (2) LSUB command.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6fwx-49rw-q8pv/GHSA-6fwx-49rw-q8pv.json b/advisories/unreviewed/2022/05/GHSA-6fwx-49rw-q8pv/GHSA-6fwx-49rw-q8pv.json index 320cfdf967c..6a6a72802dd 100644 --- a/advisories/unreviewed/2022/05/GHSA-6fwx-49rw-q8pv/GHSA-6fwx-49rw-q8pv.json +++ b/advisories/unreviewed/2022/05/GHSA-6fwx-49rw-q8pv/GHSA-6fwx-49rw-q8pv.json @@ -7,12 +7,8 @@ "CVE-2010-3918" ], "details": "Fenrir Sleipnir 2.9.6 and earlier does not prevent interaction between web script and the clipboard, which allows remote attackers to read or modify the clipboard contents via a crafted web site.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -44,9 +40,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6g2j-hjvm-jvwm/GHSA-6g2j-hjvm-jvwm.json b/advisories/unreviewed/2022/05/GHSA-6g2j-hjvm-jvwm/GHSA-6g2j-hjvm-jvwm.json index cfe288504d2..beb8e666297 100644 --- a/advisories/unreviewed/2022/05/GHSA-6g2j-hjvm-jvwm/GHSA-6g2j-hjvm-jvwm.json +++ b/advisories/unreviewed/2022/05/GHSA-6g2j-hjvm-jvwm/GHSA-6g2j-hjvm-jvwm.json @@ -7,12 +7,8 @@ "CVE-2010-3706" ], "details": "plugins/acl/acl-backend-vfile.c in Dovecot 1.2.x before 1.2.15 and 2.0.x before 2.0.5 interprets an ACL entry as a directive to add to the permissions granted by another ACL entry, instead of a directive to replace the permissions granted by another ACL entry, in certain circumstances involving the private namespace of a user, which allows remote authenticated users to bypass intended access restrictions via a request to read or modify a mailbox.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -68,9 +64,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6g3c-2hjf-jwvq/GHSA-6g3c-2hjf-jwvq.json b/advisories/unreviewed/2022/05/GHSA-6g3c-2hjf-jwvq/GHSA-6g3c-2hjf-jwvq.json index 7995f4b1d3b..d579eb55149 100644 --- a/advisories/unreviewed/2022/05/GHSA-6g3c-2hjf-jwvq/GHSA-6g3c-2hjf-jwvq.json +++ b/advisories/unreviewed/2022/05/GHSA-6g3c-2hjf-jwvq/GHSA-6g3c-2hjf-jwvq.json @@ -7,12 +7,8 @@ "CVE-2011-0803" ], "details": "Unspecified vulnerability in the JD Edwards EnterpriseOne Tools component in Oracle JD Edwards Products 8.9 GA through 8.98.4.1, and OneWorld Tools through 24.1.3, allows remote attackers to affect integrity and availability, related to Enterprise Infrastructure SEC.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6gp6-c9vr-6x4p/GHSA-6gp6-c9vr-6x4p.json b/advisories/unreviewed/2022/05/GHSA-6gp6-c9vr-6x4p/GHSA-6gp6-c9vr-6x4p.json index 75376c3f438..72258438e4c 100644 --- a/advisories/unreviewed/2022/05/GHSA-6gp6-c9vr-6x4p/GHSA-6gp6-c9vr-6x4p.json +++ b/advisories/unreviewed/2022/05/GHSA-6gp6-c9vr-6x4p/GHSA-6gp6-c9vr-6x4p.json @@ -7,12 +7,8 @@ "CVE-2010-3987" ], "details": "Cross-site scripting (XSS) vulnerability in HP Insight Control Virtual Machine Management before 6.2 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6gv9-qq2x-7jw6/GHSA-6gv9-qq2x-7jw6.json b/advisories/unreviewed/2022/05/GHSA-6gv9-qq2x-7jw6/GHSA-6gv9-qq2x-7jw6.json index 14476b0facc..c7c73f333da 100644 --- a/advisories/unreviewed/2022/05/GHSA-6gv9-qq2x-7jw6/GHSA-6gv9-qq2x-7jw6.json +++ b/advisories/unreviewed/2022/05/GHSA-6gv9-qq2x-7jw6/GHSA-6gv9-qq2x-7jw6.json @@ -7,12 +7,8 @@ "CVE-2010-4764" ], "details": "Open Ticket Request System (OTRS) before 2.4.10, and 3.x before 3.0.3, does not present warnings about incoming encrypted e-mail messages that were based on revoked PGP or GPG keys, which makes it easier for remote attackers to spoof e-mail communication by leveraging a key that has a revocation signature.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6j8v-j874-vfx8/GHSA-6j8v-j874-vfx8.json b/advisories/unreviewed/2022/05/GHSA-6j8v-j874-vfx8/GHSA-6j8v-j874-vfx8.json index e3f5b2fe3dd..901d6173c95 100644 --- a/advisories/unreviewed/2022/05/GHSA-6j8v-j874-vfx8/GHSA-6j8v-j874-vfx8.json +++ b/advisories/unreviewed/2022/05/GHSA-6j8v-j874-vfx8/GHSA-6j8v-j874-vfx8.json @@ -7,12 +7,8 @@ "CVE-2010-2579" ], "details": "The cook codec in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.4, RealPlayer Enterprise 2.1.2, Mac RealPlayer 11.0 through 11.1, and Linux RealPlayer 11.0.2.1744 does not properly initialize the number of channels, which allows attackers to obtain unspecified \"memory access\" via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-6mvx-8cgw-xwh9/GHSA-6mvx-8cgw-xwh9.json b/advisories/unreviewed/2022/05/GHSA-6mvx-8cgw-xwh9/GHSA-6mvx-8cgw-xwh9.json index c3b8fc17f0e..fcabd58e656 100644 --- a/advisories/unreviewed/2022/05/GHSA-6mvx-8cgw-xwh9/GHSA-6mvx-8cgw-xwh9.json +++ b/advisories/unreviewed/2022/05/GHSA-6mvx-8cgw-xwh9/GHSA-6mvx-8cgw-xwh9.json @@ -7,12 +7,8 @@ "CVE-2011-1401" ], "details": "ikiwiki before 3.20110328 does not ascertain whether the htmlscrubber plugin is enabled during processing of the \"meta stylesheet\" directive, which allows remote authenticated users to conduct cross-site scripting (XSS) attacks via crafted Cascading Style Sheets (CSS) token sequences in (1) the default stylesheet or (2) an alternate stylesheet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6p5r-m5h8-g9rj/GHSA-6p5r-m5h8-g9rj.json b/advisories/unreviewed/2022/05/GHSA-6p5r-m5h8-g9rj/GHSA-6p5r-m5h8-g9rj.json index db16da07b54..aef54fb49bc 100644 --- a/advisories/unreviewed/2022/05/GHSA-6p5r-m5h8-g9rj/GHSA-6p5r-m5h8-g9rj.json +++ b/advisories/unreviewed/2022/05/GHSA-6p5r-m5h8-g9rj/GHSA-6p5r-m5h8-g9rj.json @@ -7,12 +7,8 @@ "CVE-2010-3749" ], "details": "The browser-plugin implementation in RealNetworks RealPlayer 11.0 through 11.1 and RealPlayer SP 1.0 through 1.1 allows remote attackers to arguments to the RecordClip method, which allows remote attackers to download an arbitrary program onto a client machine, and execute this program, via a \" (double quote) in an argument to the RecordClip method, aka \"parameter injection.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6p5v-vjqr-p57h/GHSA-6p5v-vjqr-p57h.json b/advisories/unreviewed/2022/05/GHSA-6p5v-vjqr-p57h/GHSA-6p5v-vjqr-p57h.json index 42606a453ab..0054a1b3c09 100644 --- a/advisories/unreviewed/2022/05/GHSA-6p5v-vjqr-p57h/GHSA-6p5v-vjqr-p57h.json +++ b/advisories/unreviewed/2022/05/GHSA-6p5v-vjqr-p57h/GHSA-6p5v-vjqr-p57h.json @@ -7,12 +7,8 @@ "CVE-2010-4110" ], "details": "Unspecified vulnerability in HP OpenVMS 8.3, 8.3-1H1, and 8.4 on the Itanium platform on Integrity servers allows local users to gain privileges or cause a denial of service via unknown vectors.", - "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-6pxw-hxr7-cpfh/GHSA-6pxw-hxr7-cpfh.json b/advisories/unreviewed/2022/05/GHSA-6pxw-hxr7-cpfh/GHSA-6pxw-hxr7-cpfh.json index 26a89c18dec..f301406f806 100644 --- a/advisories/unreviewed/2022/05/GHSA-6pxw-hxr7-cpfh/GHSA-6pxw-hxr7-cpfh.json +++ b/advisories/unreviewed/2022/05/GHSA-6pxw-hxr7-cpfh/GHSA-6pxw-hxr7-cpfh.json @@ -7,12 +7,8 @@ "CVE-2011-1222" ], "details": "Buffer overflow in the Journal Based Backup (JBB) feature in the backup-archive client in IBM Tivoli Storage Manager (TSM) before 5.4.3.4, 5.5.x before 5.5.3, 6.x before 6.1.4, and 6.2.x before 6.2.2 on Windows and AIX allows local users to gain privileges via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6q9p-j68q-8j7x/GHSA-6q9p-j68q-8j7x.json b/advisories/unreviewed/2022/05/GHSA-6q9p-j68q-8j7x/GHSA-6q9p-j68q-8j7x.json index 49c9078604b..2d8738e14ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-6q9p-j68q-8j7x/GHSA-6q9p-j68q-8j7x.json +++ b/advisories/unreviewed/2022/05/GHSA-6q9p-j68q-8j7x/GHSA-6q9p-j68q-8j7x.json @@ -7,12 +7,8 @@ "CVE-2010-2824" ], "details": "Unspecified vulnerability on the Cisco Application Control Engine (ACE) Module with software A2(1.x) before A2(1.6), A2(2.x) before A2(2.3), and A2(3.x) before A2(3.1) for Catalyst 6500 series switches and 7600 series routers allows remote attackers to cause a denial of service (device reload) via a sequence of SSL packets, aka Bug ID CSCta20756.", - "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-6qpf-6fwg-q2xj/GHSA-6qpf-6fwg-q2xj.json b/advisories/unreviewed/2022/05/GHSA-6qpf-6fwg-q2xj/GHSA-6qpf-6fwg-q2xj.json index 03136473b17..7e0885d0a71 100644 --- a/advisories/unreviewed/2022/05/GHSA-6qpf-6fwg-q2xj/GHSA-6qpf-6fwg-q2xj.json +++ b/advisories/unreviewed/2022/05/GHSA-6qpf-6fwg-q2xj/GHSA-6qpf-6fwg-q2xj.json @@ -7,12 +7,8 @@ "CVE-2011-1537" ], "details": "Cross-site scripting (XSS) vulnerability in HP Proliant Support Pack (PSP) before 8.7 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-6x24-3qv3-pqhx/GHSA-6x24-3qv3-pqhx.json b/advisories/unreviewed/2022/05/GHSA-6x24-3qv3-pqhx/GHSA-6x24-3qv3-pqhx.json index 95766e1c241..ae4e7ebd5e0 100644 --- a/advisories/unreviewed/2022/05/GHSA-6x24-3qv3-pqhx/GHSA-6x24-3qv3-pqhx.json +++ b/advisories/unreviewed/2022/05/GHSA-6x24-3qv3-pqhx/GHSA-6x24-3qv3-pqhx.json @@ -7,12 +7,8 @@ "CVE-2010-3787" ], "details": "Heap-based buffer overflow in QuickTime in Apple Mac OS X 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted JP2 image.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-723c-85j6-84g2/GHSA-723c-85j6-84g2.json b/advisories/unreviewed/2022/05/GHSA-723c-85j6-84g2/GHSA-723c-85j6-84g2.json index c8cdfd8ec7c..6053d1b79bd 100644 --- a/advisories/unreviewed/2022/05/GHSA-723c-85j6-84g2/GHSA-723c-85j6-84g2.json +++ b/advisories/unreviewed/2022/05/GHSA-723c-85j6-84g2/GHSA-723c-85j6-84g2.json @@ -7,12 +7,8 @@ "CVE-2011-0382" ], "details": "The CGI subsystem on Cisco TelePresence Recording Server devices with software 1.6.x before 1.6.2 allows remote attackers to execute arbitrary commands via a request to TCP port 443, related to a \"command injection vulnerability,\" aka Bug ID CSCtf97221.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7359-hrf8-2wm8/GHSA-7359-hrf8-2wm8.json b/advisories/unreviewed/2022/05/GHSA-7359-hrf8-2wm8/GHSA-7359-hrf8-2wm8.json index 751ae5fa2b9..d950e141d89 100644 --- a/advisories/unreviewed/2022/05/GHSA-7359-hrf8-2wm8/GHSA-7359-hrf8-2wm8.json +++ b/advisories/unreviewed/2022/05/GHSA-7359-hrf8-2wm8/GHSA-7359-hrf8-2wm8.json @@ -7,12 +7,8 @@ "CVE-2011-1030" ], "details": "Cross-site scripting (XSS) vulnerability in the Wikis component in IBM Lotus Connections 3.0 allows remote attackers to inject arbitrary web script or HTML via vectors related to the \"Confirm New Page scene.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-744h-wcjj-gwrf/GHSA-744h-wcjj-gwrf.json b/advisories/unreviewed/2022/05/GHSA-744h-wcjj-gwrf/GHSA-744h-wcjj-gwrf.json index a8b0bed48ad..4708b1ae8fb 100644 --- a/advisories/unreviewed/2022/05/GHSA-744h-wcjj-gwrf/GHSA-744h-wcjj-gwrf.json +++ b/advisories/unreviewed/2022/05/GHSA-744h-wcjj-gwrf/GHSA-744h-wcjj-gwrf.json @@ -7,12 +7,8 @@ "CVE-2010-3072" ], "details": "The string-comparison functions in String.cci in Squid 3.x before 3.1.8 and 3.2.x before 3.2.0.2 allow remote attackers to cause a denial of service (NULL pointer dereference and daemon crash) via a crafted request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -80,9 +76,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-744r-gm28-v73g/GHSA-744r-gm28-v73g.json b/advisories/unreviewed/2022/05/GHSA-744r-gm28-v73g/GHSA-744r-gm28-v73g.json index 98a505b7ae4..b42822b50e5 100644 --- a/advisories/unreviewed/2022/05/GHSA-744r-gm28-v73g/GHSA-744r-gm28-v73g.json +++ b/advisories/unreviewed/2022/05/GHSA-744r-gm28-v73g/GHSA-744r-gm28-v73g.json @@ -7,12 +7,8 @@ "CVE-2011-1314" ], "details": "The Service Integration Bus (SIB) messaging engine in IBM WebSphere Application Server (WAS) before 7.0.0.15 allows remote attackers to cause a denial of service (daemon hang) by performing close operations via network connections to a queue manager.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-747x-cf7f-hf5f/GHSA-747x-cf7f-hf5f.json b/advisories/unreviewed/2022/05/GHSA-747x-cf7f-hf5f/GHSA-747x-cf7f-hf5f.json index 6f34cbdbff4..20d3d762ec6 100644 --- a/advisories/unreviewed/2022/05/GHSA-747x-cf7f-hf5f/GHSA-747x-cf7f-hf5f.json +++ b/advisories/unreviewed/2022/05/GHSA-747x-cf7f-hf5f/GHSA-747x-cf7f-hf5f.json @@ -7,12 +7,8 @@ "CVE-2011-1147" ], "details": "Multiple stack-based and heap-based buffer overflows in the (1) decode_open_type and (2) udptl_rx_packet functions in main/udptl.c in Asterisk Open Source 1.4.x before 1.4.39.2, 1.6.1.x before 1.6.1.22, 1.6.2.x before 1.6.2.16.2, and 1.8 before 1.8.2.4; Business Edition C.x.x before C.3.6.3; AsteriskNOW 1.5; and s800i (Asterisk Appliance), when T.38 support is enabled, allow remote attackers to cause a denial of service (crash) and possibly execute arbitrary code via a crafted UDPTL packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7537-qjq2-jjg9/GHSA-7537-qjq2-jjg9.json b/advisories/unreviewed/2022/05/GHSA-7537-qjq2-jjg9/GHSA-7537-qjq2-jjg9.json index 5f71097ce41..b5f39198a37 100644 --- a/advisories/unreviewed/2022/05/GHSA-7537-qjq2-jjg9/GHSA-7537-qjq2-jjg9.json +++ b/advisories/unreviewed/2022/05/GHSA-7537-qjq2-jjg9/GHSA-7537-qjq2-jjg9.json @@ -7,12 +7,8 @@ "CVE-2011-0329" ], "details": "Directory traversal vulnerability in the GetData method in the Dell DellSystemLite.Scanner ActiveX control in DellSystemLite.ocx 1.0.0.0 allows remote attackers to read arbitrary files via directory traversal sequences in the fileID parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-75v7-4jr4-8p3c/GHSA-75v7-4jr4-8p3c.json b/advisories/unreviewed/2022/05/GHSA-75v7-4jr4-8p3c/GHSA-75v7-4jr4-8p3c.json index 3a62ff6e3da..ff806d6b844 100644 --- a/advisories/unreviewed/2022/05/GHSA-75v7-4jr4-8p3c/GHSA-75v7-4jr4-8p3c.json +++ b/advisories/unreviewed/2022/05/GHSA-75v7-4jr4-8p3c/GHSA-75v7-4jr4-8p3c.json @@ -7,12 +7,8 @@ "CVE-2010-4759" ], "details": "Open Ticket Request System (OTRS) before 3.0.0-beta7 does not properly restrict the ticket ages that are within the scope of a search, which allows remote authenticated users to cause a denial of service (daemon hang) via a fulltext search.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-76w7-v877-3f6m/GHSA-76w7-v877-3f6m.json b/advisories/unreviewed/2022/05/GHSA-76w7-v877-3f6m/GHSA-76w7-v877-3f6m.json index b99edb569d6..d84ca6f9015 100644 --- a/advisories/unreviewed/2022/05/GHSA-76w7-v877-3f6m/GHSA-76w7-v877-3f6m.json +++ b/advisories/unreviewed/2022/05/GHSA-76w7-v877-3f6m/GHSA-76w7-v877-3f6m.json @@ -7,12 +7,8 @@ "CVE-2010-4579" ], "details": "Opera before 11.00 does not properly constrain dialogs to appear on top of rendered documents, which makes it easier for remote attackers to trick users into interacting with a crafted web site that spoofs the (1) security information dialog or (2) download dialog.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -44,9 +40,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-793h-w8mx-wf86/GHSA-793h-w8mx-wf86.json b/advisories/unreviewed/2022/05/GHSA-793h-w8mx-wf86/GHSA-793h-w8mx-wf86.json index c18a18c5435..eb129f2a758 100644 --- a/advisories/unreviewed/2022/05/GHSA-793h-w8mx-wf86/GHSA-793h-w8mx-wf86.json +++ b/advisories/unreviewed/2022/05/GHSA-793h-w8mx-wf86/GHSA-793h-w8mx-wf86.json @@ -7,12 +7,8 @@ "CVE-2008-5187" ], "details": "The load function in the XPM loader for imlib2 1.4.2, and possibly other versions, allows attackers to cause a denial of service (crash) and possibly execute arbitrary code via a crafted XPM file that triggers a \"pointer arithmetic error\" and a heap-based buffer overflow, a different vulnerability than CVE-2008-2426.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7cc9-j5qh-9gcq/GHSA-7cc9-j5qh-9gcq.json b/advisories/unreviewed/2022/05/GHSA-7cc9-j5qh-9gcq/GHSA-7cc9-j5qh-9gcq.json index a01cfc42f0a..c2349e0bb86 100644 --- a/advisories/unreviewed/2022/05/GHSA-7cc9-j5qh-9gcq/GHSA-7cc9-j5qh-9gcq.json +++ b/advisories/unreviewed/2022/05/GHSA-7cc9-j5qh-9gcq/GHSA-7cc9-j5qh-9gcq.json @@ -7,12 +7,8 @@ "CVE-2010-4787" ], "details": "IBM Tivoli Directory Server (TDS) 6.0 before 6.0.0.63 (aka 6.0.0.8-TIV-ITDS-IF0005) allows remote authenticated users to cause a denial of service (daemon hang) via a paged search that triggers improper mutex processing.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-7h48-2p4j-p3w3/GHSA-7h48-2p4j-p3w3.json b/advisories/unreviewed/2022/05/GHSA-7h48-2p4j-p3w3/GHSA-7h48-2p4j-p3w3.json index 6e15aaafef6..6ed9c26d890 100644 --- a/advisories/unreviewed/2022/05/GHSA-7h48-2p4j-p3w3/GHSA-7h48-2p4j-p3w3.json +++ b/advisories/unreviewed/2022/05/GHSA-7h48-2p4j-p3w3/GHSA-7h48-2p4j-p3w3.json @@ -7,12 +7,8 @@ "CVE-2010-3795" ], "details": "QuickTime in Apple Mac OS X 10.6.x before 10.6.5 accesses uninitialized memory locations during processing of GIF image data, which allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted GIF file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7h8g-7wrh-4jfh/GHSA-7h8g-7wrh-4jfh.json b/advisories/unreviewed/2022/05/GHSA-7h8g-7wrh-4jfh/GHSA-7h8g-7wrh-4jfh.json index b80a98d7fc9..9f967a840a1 100644 --- a/advisories/unreviewed/2022/05/GHSA-7h8g-7wrh-4jfh/GHSA-7h8g-7wrh-4jfh.json +++ b/advisories/unreviewed/2022/05/GHSA-7h8g-7wrh-4jfh/GHSA-7h8g-7wrh-4jfh.json @@ -7,12 +7,8 @@ "CVE-2010-3260" ], "details": "oxf/xml/xerces/XercesSAXParserFactoryImpl.java in the xforms-server component in the XForms service in Orbeon Forms before 3.9 does not properly restrict DTDs in Ajax requests, which allows remote attackers to read arbitrary files or send HTTP requests to intranet servers via an entity declaration in conjunction with an entity reference, related to an \"XML injection\" issue.", - "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-7hxg-7x4c-333x/GHSA-7hxg-7x4c-333x.json b/advisories/unreviewed/2022/05/GHSA-7hxg-7x4c-333x/GHSA-7hxg-7x4c-333x.json index 18c47f7d922..6aa97bd4a17 100644 --- a/advisories/unreviewed/2022/05/GHSA-7hxg-7x4c-333x/GHSA-7hxg-7x4c-333x.json +++ b/advisories/unreviewed/2022/05/GHSA-7hxg-7x4c-333x/GHSA-7hxg-7x4c-333x.json @@ -7,12 +7,8 @@ "CVE-2011-0174" ], "details": "Heap-based buffer overflow in Apple Type Services (ATS) in Apple Mac OS X before 10.6.7 allows remote attackers to execute arbitrary code via a document that contains a crafted embedded OpenType font.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7jg7-4vvp-f8cv/GHSA-7jg7-4vvp-f8cv.json b/advisories/unreviewed/2022/05/GHSA-7jg7-4vvp-f8cv/GHSA-7jg7-4vvp-f8cv.json index 450fc89f0ad..d4a1ae73068 100644 --- a/advisories/unreviewed/2022/05/GHSA-7jg7-4vvp-f8cv/GHSA-7jg7-4vvp-f8cv.json +++ b/advisories/unreviewed/2022/05/GHSA-7jg7-4vvp-f8cv/GHSA-7jg7-4vvp-f8cv.json @@ -7,12 +7,8 @@ "CVE-2010-4396" ], "details": "Cross-zone scripting vulnerability in the HandleAction method in a certain ActiveX control in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.5, and RealPlayer Enterprise 2.1.2 allows remote attackers to inject arbitrary web script or HTML in the Local Zone by specifying a local file in a NavigateToURL action, as demonstrated by a local skin file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7mcp-rfrm-7r66/GHSA-7mcp-rfrm-7r66.json b/advisories/unreviewed/2022/05/GHSA-7mcp-rfrm-7r66/GHSA-7mcp-rfrm-7r66.json index a1113b5dc5a..113e999120d 100644 --- a/advisories/unreviewed/2022/05/GHSA-7mcp-rfrm-7r66/GHSA-7mcp-rfrm-7r66.json +++ b/advisories/unreviewed/2022/05/GHSA-7mcp-rfrm-7r66/GHSA-7mcp-rfrm-7r66.json @@ -7,12 +7,8 @@ "CVE-2010-4545" ], "details": "IBM Lotus Notes Traveler before 8.5.1.2 allows remote authenticated users to cause a denial of service (resource consumption and sync outage) by syncing a large volume of data.", - "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-7mf7-jpv7-pq9x/GHSA-7mf7-jpv7-pq9x.json b/advisories/unreviewed/2022/05/GHSA-7mf7-jpv7-pq9x/GHSA-7mf7-jpv7-pq9x.json index 14b6c5931cb..bcc7d609ccd 100644 --- a/advisories/unreviewed/2022/05/GHSA-7mf7-jpv7-pq9x/GHSA-7mf7-jpv7-pq9x.json +++ b/advisories/unreviewed/2022/05/GHSA-7mf7-jpv7-pq9x/GHSA-7mf7-jpv7-pq9x.json @@ -7,12 +7,8 @@ "CVE-2010-4011" ], "details": "Dovecot in Apple Mac OS X 10.6.5 10H574 does not properly manage memory for user names, which allows remote authenticated users to read the private e-mail of other persons in opportunistic circumstances via standard e-mail clients accessing a user's own mailbox, related to a \"memory aliasing issue.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7p53-h8rr-vx35/GHSA-7p53-h8rr-vx35.json b/advisories/unreviewed/2022/05/GHSA-7p53-h8rr-vx35/GHSA-7p53-h8rr-vx35.json index 7f1ee50fa47..605c88aeab4 100644 --- a/advisories/unreviewed/2022/05/GHSA-7p53-h8rr-vx35/GHSA-7p53-h8rr-vx35.json +++ b/advisories/unreviewed/2022/05/GHSA-7p53-h8rr-vx35/GHSA-7p53-h8rr-vx35.json @@ -7,12 +7,8 @@ "CVE-2011-2164" ], "details": "Multiple unspecified vulnerabilities in Adobe Photoshop before 12.0.4 have unknown impact and attack 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/05/GHSA-7qwq-mf49-623m/GHSA-7qwq-mf49-623m.json b/advisories/unreviewed/2022/05/GHSA-7qwq-mf49-623m/GHSA-7qwq-mf49-623m.json index 3cdde0cbe1b..e97ac94ecfb 100644 --- a/advisories/unreviewed/2022/05/GHSA-7qwq-mf49-623m/GHSA-7qwq-mf49-623m.json +++ b/advisories/unreviewed/2022/05/GHSA-7qwq-mf49-623m/GHSA-7qwq-mf49-623m.json @@ -7,12 +7,8 @@ "CVE-2010-4102" ], "details": "Unspecified vulnerability in HP Insight Recovery before 6.2 allows remote attackers to read arbitrary files via unknown vectors.", - "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-7v5r-vg3p-g6p5/GHSA-7v5r-vg3p-g6p5.json b/advisories/unreviewed/2022/05/GHSA-7v5r-vg3p-g6p5/GHSA-7v5r-vg3p-g6p5.json index 914a4b3f8c6..722c7f0481a 100644 --- a/advisories/unreviewed/2022/05/GHSA-7v5r-vg3p-g6p5/GHSA-7v5r-vg3p-g6p5.json +++ b/advisories/unreviewed/2022/05/GHSA-7v5r-vg3p-g6p5/GHSA-7v5r-vg3p-g6p5.json @@ -7,12 +7,8 @@ "CVE-2011-1646" ], "details": "The web management interface on the Cisco RVS4000 Gigabit Security Router with software 1.x before 1.3.3.4 and 2.x before 2.0.2.7, and the WRVS4400N Gigabit Security Router with software before 2.0.2.1, allows remote authenticated users to execute arbitrary commands via the (1) ping test parameter or (2) traceroute test parameter, aka Bug ID CSCtn23871.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7wf6-38w5-gjg5/GHSA-7wf6-38w5-gjg5.json b/advisories/unreviewed/2022/05/GHSA-7wf6-38w5-gjg5/GHSA-7wf6-38w5-gjg5.json index b749ced05d3..c21c2bfa672 100644 --- a/advisories/unreviewed/2022/05/GHSA-7wf6-38w5-gjg5/GHSA-7wf6-38w5-gjg5.json +++ b/advisories/unreviewed/2022/05/GHSA-7wf6-38w5-gjg5/GHSA-7wf6-38w5-gjg5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-7xp3-x8jx-64xq/GHSA-7xp3-x8jx-64xq.json b/advisories/unreviewed/2022/05/GHSA-7xp3-x8jx-64xq/GHSA-7xp3-x8jx-64xq.json index c13684f43cd..3c09a544ea6 100644 --- a/advisories/unreviewed/2022/05/GHSA-7xp3-x8jx-64xq/GHSA-7xp3-x8jx-64xq.json +++ b/advisories/unreviewed/2022/05/GHSA-7xp3-x8jx-64xq/GHSA-7xp3-x8jx-64xq.json @@ -7,12 +7,8 @@ "CVE-2010-4387" ], "details": "The RealAudio codec in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.4, Mac RealPlayer 11.0 through 12.0.0.1444, and Linux RealPlayer 11.0.2.1744 allows remote attackers to execute arbitrary code or cause a denial of service (heap memory corruption) via a crafted audio stream in a RealMedia file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-823r-m433-5jp9/GHSA-823r-m433-5jp9.json b/advisories/unreviewed/2022/05/GHSA-823r-m433-5jp9/GHSA-823r-m433-5jp9.json index 4aa3e11cd1e..b0c0fef5fc5 100644 --- a/advisories/unreviewed/2022/05/GHSA-823r-m433-5jp9/GHSA-823r-m433-5jp9.json +++ b/advisories/unreviewed/2022/05/GHSA-823r-m433-5jp9/GHSA-823r-m433-5jp9.json @@ -7,12 +7,8 @@ "CVE-2010-4378" ], "details": "The drv2.dll (aka RV20 decompression) module in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.5, RealPlayer Enterprise 2.1.2 and 2.1.3, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allows remote attackers to execute arbitrary code or cause a denial of service (heap memory corruption) via a crafted value of an unspecified length field in an RV20 video stream.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8267-gm3r-x6g6/GHSA-8267-gm3r-x6g6.json b/advisories/unreviewed/2022/05/GHSA-8267-gm3r-x6g6/GHSA-8267-gm3r-x6g6.json index 65f2b0727ac..1620a046a95 100644 --- a/advisories/unreviewed/2022/05/GHSA-8267-gm3r-x6g6/GHSA-8267-gm3r-x6g6.json +++ b/advisories/unreviewed/2022/05/GHSA-8267-gm3r-x6g6/GHSA-8267-gm3r-x6g6.json @@ -7,12 +7,8 @@ "CVE-2010-4379" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.4, RealPlayer Enterprise 2.1.2, Mac RealPlayer 11.0 through 11.1, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allows remote attackers to have an unspecified impact via a crafted SIPR file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8288-p82h-3wxr/GHSA-8288-p82h-3wxr.json b/advisories/unreviewed/2022/05/GHSA-8288-p82h-3wxr/GHSA-8288-p82h-3wxr.json index 82fac8c3627..3c3bdf07dcf 100644 --- a/advisories/unreviewed/2022/05/GHSA-8288-p82h-3wxr/GHSA-8288-p82h-3wxr.json +++ b/advisories/unreviewed/2022/05/GHSA-8288-p82h-3wxr/GHSA-8288-p82h-3wxr.json @@ -7,12 +7,8 @@ "CVE-2010-4397" ], "details": "Integer overflow in the pnen3260.dll module in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.1, Mac RealPlayer 11.0 through 11.1, and Linux RealPlayer 11.0.2.1744 allows remote attackers to execute arbitrary code via a crafted TIT2 atom in an AAC file.", - "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-8298-42fv-fjcr/GHSA-8298-42fv-fjcr.json b/advisories/unreviewed/2022/05/GHSA-8298-42fv-fjcr/GHSA-8298-42fv-fjcr.json index c101da49cfe..2b996b26e9a 100644 --- a/advisories/unreviewed/2022/05/GHSA-8298-42fv-fjcr/GHSA-8298-42fv-fjcr.json +++ b/advisories/unreviewed/2022/05/GHSA-8298-42fv-fjcr/GHSA-8298-42fv-fjcr.json @@ -7,12 +7,8 @@ "CVE-2011-1545" ], "details": "Cross-site request forgery (CSRF) vulnerability in HP Insight Control Performance Management before 6.3 allows remote attackers to hijack the authentication of unspecified victims via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-82f8-mpm9-wwp7/GHSA-82f8-mpm9-wwp7.json b/advisories/unreviewed/2022/05/GHSA-82f8-mpm9-wwp7/GHSA-82f8-mpm9-wwp7.json index 34ebc0db14e..60ca842d206 100644 --- a/advisories/unreviewed/2022/05/GHSA-82f8-mpm9-wwp7/GHSA-82f8-mpm9-wwp7.json +++ b/advisories/unreviewed/2022/05/GHSA-82f8-mpm9-wwp7/GHSA-82f8-mpm9-wwp7.json @@ -7,12 +7,8 @@ "CVE-2011-2610" ], "details": "Unspecified vulnerability in Opera before 11.50 has unknown impact and attack vectors, related to a \"moderately severe 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/05/GHSA-82rw-grrj-mm85/GHSA-82rw-grrj-mm85.json b/advisories/unreviewed/2022/05/GHSA-82rw-grrj-mm85/GHSA-82rw-grrj-mm85.json index a6e4ceaf27c..f679dedef4b 100644 --- a/advisories/unreviewed/2022/05/GHSA-82rw-grrj-mm85/GHSA-82rw-grrj-mm85.json +++ b/advisories/unreviewed/2022/05/GHSA-82rw-grrj-mm85/GHSA-82rw-grrj-mm85.json @@ -7,12 +7,8 @@ "CVE-2011-1309" ], "details": "The Plug-in component in IBM WebSphere Application Server (WAS) before 7.0.0.15 does not properly handle trace requests, which has unspecified impact and attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-83v9-j2gr-cch4/GHSA-83v9-j2gr-cch4.json b/advisories/unreviewed/2022/05/GHSA-83v9-j2gr-cch4/GHSA-83v9-j2gr-cch4.json index e7cbb56eecc..9a961afb683 100644 --- a/advisories/unreviewed/2022/05/GHSA-83v9-j2gr-cch4/GHSA-83v9-j2gr-cch4.json +++ b/advisories/unreviewed/2022/05/GHSA-83v9-j2gr-cch4/GHSA-83v9-j2gr-cch4.json @@ -7,12 +7,8 @@ "CVE-2010-3779" ], "details": "Dovecot 1.2.x before 1.2.15 and 2.0.x before 2.0.beta2 grants the admin permission to the owner of each mailbox in a non-public namespace, which might allow remote authenticated users to bypass intended access restrictions by changing the ACL of a mailbox, as demonstrated by a symlinked shared mailbox.", - "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/05/GHSA-86q6-qfxm-m665/GHSA-86q6-qfxm-m665.json b/advisories/unreviewed/2022/05/GHSA-86q6-qfxm-m665/GHSA-86q6-qfxm-m665.json index cff90004e91..04b61689306 100644 --- a/advisories/unreviewed/2022/05/GHSA-86q6-qfxm-m665/GHSA-86q6-qfxm-m665.json +++ b/advisories/unreviewed/2022/05/GHSA-86q6-qfxm-m665/GHSA-86q6-qfxm-m665.json @@ -7,12 +7,8 @@ "CVE-2010-4519" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in the Views UI implementation in the Views module 5.x before 5.x-1.8 and 6.x before 6.x-2.11 for Drupal allow remote attackers to hijack the authentication of administrators for requests that (1) enable all Views or (2) disable all Views.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8899-823h-hwr3/GHSA-8899-823h-hwr3.json b/advisories/unreviewed/2022/05/GHSA-8899-823h-hwr3/GHSA-8899-823h-hwr3.json index 291acf244be..94f59d91abe 100644 --- a/advisories/unreviewed/2022/05/GHSA-8899-823h-hwr3/GHSA-8899-823h-hwr3.json +++ b/advisories/unreviewed/2022/05/GHSA-8899-823h-hwr3/GHSA-8899-823h-hwr3.json @@ -7,12 +7,8 @@ "CVE-2011-0612" ], "details": "Adobe Flash Media Server (FMS) before 3.5.6, and 4.x before 4.0.2, allows remote attackers to cause a denial of service (XML data corruption) via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-88h8-rxqw-fxx3/GHSA-88h8-rxqw-fxx3.json b/advisories/unreviewed/2022/05/GHSA-88h8-rxqw-fxx3/GHSA-88h8-rxqw-fxx3.json index 47c114ba258..41aadb018d8 100644 --- a/advisories/unreviewed/2022/05/GHSA-88h8-rxqw-fxx3/GHSA-88h8-rxqw-fxx3.json +++ b/advisories/unreviewed/2022/05/GHSA-88h8-rxqw-fxx3/GHSA-88h8-rxqw-fxx3.json @@ -7,12 +7,8 @@ "CVE-2010-3576" ], "details": "Unspecified vulnerability in Oracle Solaris 8, 9, and 10, and OpenSolaris, allows local users to affect integrity and availability, related to the SCSI enclosure services device driver.", - "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-88m5-6h8p-57j2/GHSA-88m5-6h8p-57j2.json b/advisories/unreviewed/2022/05/GHSA-88m5-6h8p-57j2/GHSA-88m5-6h8p-57j2.json index 406756e9ce7..000afc6a064 100644 --- a/advisories/unreviewed/2022/05/GHSA-88m5-6h8p-57j2/GHSA-88m5-6h8p-57j2.json +++ b/advisories/unreviewed/2022/05/GHSA-88m5-6h8p-57j2/GHSA-88m5-6h8p-57j2.json @@ -7,12 +7,8 @@ "CVE-2011-0160" ], "details": "WebKit, as used in Apple Safari before 5.0.4 and iOS before 4.3, does not properly handle redirects in conjunction with HTTP Basic Authentication, which might allow remote web servers to capture credentials by logging the Authorization HTTP header.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-88q7-cxrf-7jjm/GHSA-88q7-cxrf-7jjm.json b/advisories/unreviewed/2022/05/GHSA-88q7-cxrf-7jjm/GHSA-88q7-cxrf-7jjm.json index aeb9c47ea2e..3c6da9ee16a 100644 --- a/advisories/unreviewed/2022/05/GHSA-88q7-cxrf-7jjm/GHSA-88q7-cxrf-7jjm.json +++ b/advisories/unreviewed/2022/05/GHSA-88q7-cxrf-7jjm/GHSA-88q7-cxrf-7jjm.json @@ -7,12 +7,8 @@ "CVE-2011-2665" ], "details": "reqresp_parser.c in the SIP channel driver in Asterisk Open Source 1.8.x before 1.8.4.3 allows remote attackers to cause a denial of service (NULL pointer dereference and daemon crash) via a SIP packet with a Contact header that lacks a < (less than) character.", - "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/05/GHSA-89cx-qwg6-wv7h/GHSA-89cx-qwg6-wv7h.json b/advisories/unreviewed/2022/05/GHSA-89cx-qwg6-wv7h/GHSA-89cx-qwg6-wv7h.json index 914aabb5f79..0fcfaaac7a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-89cx-qwg6-wv7h/GHSA-89cx-qwg6-wv7h.json +++ b/advisories/unreviewed/2022/05/GHSA-89cx-qwg6-wv7h/GHSA-89cx-qwg6-wv7h.json @@ -7,12 +7,8 @@ "CVE-2011-0379" ], "details": "Buffer overflow on Cisco Adaptive Security Appliances (ASA) 5500 series devices with software 1.6.x; Cisco TelePresence Multipoint Switch (CTMS) devices with software 1.0.x, 1.1.x, 1.5.x, and 1.6.x; Cisco TelePresence endpoint devices with software 1.2.x through 1.6.x; and Cisco TelePresence Manager 1.2.x, 1.3.x, 1.4.x, 1.5.x, and 1.6.2 allows remote attackers to execute arbitrary code via a crafted Cisco Discovery Protocol packet, aka Bug IDs CSCtd75769, CSCtd75766, CSCtd75754, and CSCtd75761.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8c46-jp8j-xg8q/GHSA-8c46-jp8j-xg8q.json b/advisories/unreviewed/2022/05/GHSA-8c46-jp8j-xg8q/GHSA-8c46-jp8j-xg8q.json index 7f682b0ee82..a983f69c9a4 100644 --- a/advisories/unreviewed/2022/05/GHSA-8c46-jp8j-xg8q/GHSA-8c46-jp8j-xg8q.json +++ b/advisories/unreviewed/2022/05/GHSA-8c46-jp8j-xg8q/GHSA-8c46-jp8j-xg8q.json @@ -7,12 +7,8 @@ "CVE-2008-7287" ], "details": "Multiple memory leaks in the (1) ldap_init and (2) ldap_url_search_direct API functions in IBM Tivoli Directory Server (TDS) 5.2 before 5.2.0.5-TIV-ITDS-LA0007 allow remote authenticated users to cause a denial of service (memory consumption) by making many function calls.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-8c65-gxhm-w49w/GHSA-8c65-gxhm-w49w.json b/advisories/unreviewed/2022/05/GHSA-8c65-gxhm-w49w/GHSA-8c65-gxhm-w49w.json index 9c3006dda35..6ee776a243c 100644 --- a/advisories/unreviewed/2022/05/GHSA-8c65-gxhm-w49w/GHSA-8c65-gxhm-w49w.json +++ b/advisories/unreviewed/2022/05/GHSA-8c65-gxhm-w49w/GHSA-8c65-gxhm-w49w.json @@ -7,12 +7,8 @@ "CVE-2010-1838" ], "details": "Directory Services in Apple Mac OS X 10.5.8 and 10.6.x before 10.6.5 does not properly handle errors associated with disabled mobile accounts, which allows remote attackers to bypass authentication by providing a valid account name.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8cr9-xc78-5c32/GHSA-8cr9-xc78-5c32.json b/advisories/unreviewed/2022/05/GHSA-8cr9-xc78-5c32/GHSA-8cr9-xc78-5c32.json index 7ddec15dcbd..15697ab0fdc 100644 --- a/advisories/unreviewed/2022/05/GHSA-8cr9-xc78-5c32/GHSA-8cr9-xc78-5c32.json +++ b/advisories/unreviewed/2022/05/GHSA-8cr9-xc78-5c32/GHSA-8cr9-xc78-5c32.json @@ -7,12 +7,8 @@ "CVE-2011-1332" ], "details": "Cross-site scripting (XSS) vulnerability in Cybozu Garoon 2.0.0 through 2.1.3 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors, a different vulnerability than CVE-2008-6570.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8fqw-m6jr-hqfj/GHSA-8fqw-m6jr-hqfj.json b/advisories/unreviewed/2022/05/GHSA-8fqw-m6jr-hqfj/GHSA-8fqw-m6jr-hqfj.json index 1a79930af1a..6893c9fa90d 100644 --- a/advisories/unreviewed/2022/05/GHSA-8fqw-m6jr-hqfj/GHSA-8fqw-m6jr-hqfj.json +++ b/advisories/unreviewed/2022/05/GHSA-8fqw-m6jr-hqfj/GHSA-8fqw-m6jr-hqfj.json @@ -7,12 +7,8 @@ "CVE-2008-4657" ], "details": "SQL injection vulnerability in the Econda Plugin (econda) 0.0.2 and earlier extension for TYPO3 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8g6r-mh86-98q2/GHSA-8g6r-mh86-98q2.json b/advisories/unreviewed/2022/05/GHSA-8g6r-mh86-98q2/GHSA-8g6r-mh86-98q2.json index e09695fa1d4..c6ec7f10f41 100644 --- a/advisories/unreviewed/2022/05/GHSA-8g6r-mh86-98q2/GHSA-8g6r-mh86-98q2.json +++ b/advisories/unreviewed/2022/05/GHSA-8g6r-mh86-98q2/GHSA-8g6r-mh86-98q2.json @@ -7,12 +7,8 @@ "CVE-2010-4196" ], "details": "The Shockwave 3d Asset module in Adobe Shockwave Player before 11.5.9.620 does not properly validate unspecified input data, which allows attackers to execute arbitrary code via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8gm9-f3hp-wq3x/GHSA-8gm9-f3hp-wq3x.json b/advisories/unreviewed/2022/05/GHSA-8gm9-f3hp-wq3x/GHSA-8gm9-f3hp-wq3x.json index 8a02ff0ea01..bdf4c887eae 100644 --- a/advisories/unreviewed/2022/05/GHSA-8gm9-f3hp-wq3x/GHSA-8gm9-f3hp-wq3x.json +++ b/advisories/unreviewed/2022/05/GHSA-8gm9-f3hp-wq3x/GHSA-8gm9-f3hp-wq3x.json @@ -7,12 +7,8 @@ "CVE-2010-3580" ], "details": "Unspecified vulnerability in Oracle OpenSolaris allows local users to affect availability via unknown vectors related to Kernel/File System.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-8h48-f2gc-mcw8/GHSA-8h48-f2gc-mcw8.json b/advisories/unreviewed/2022/05/GHSA-8h48-f2gc-mcw8/GHSA-8h48-f2gc-mcw8.json index 257e0a5886c..485fdea6e07 100644 --- a/advisories/unreviewed/2022/05/GHSA-8h48-f2gc-mcw8/GHSA-8h48-f2gc-mcw8.json +++ b/advisories/unreviewed/2022/05/GHSA-8h48-f2gc-mcw8/GHSA-8h48-f2gc-mcw8.json @@ -7,12 +7,8 @@ "CVE-2010-4716" ], "details": "Cross-site scripting (XSS) vulnerability in the WebPublisher component in Novell GroupWise before 8.02HP allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8hf4-h9w2-2g7p/GHSA-8hf4-h9w2-2g7p.json b/advisories/unreviewed/2022/05/GHSA-8hf4-h9w2-2g7p/GHSA-8hf4-h9w2-2g7p.json index 6a928bc3e3b..ca23114b5c6 100644 --- a/advisories/unreviewed/2022/05/GHSA-8hf4-h9w2-2g7p/GHSA-8hf4-h9w2-2g7p.json +++ b/advisories/unreviewed/2022/05/GHSA-8hf4-h9w2-2g7p/GHSA-8hf4-h9w2-2g7p.json @@ -7,12 +7,8 @@ "CVE-2010-4329" ], "details": "Cross-site scripting (XSS) vulnerability in the PMA_linkOrButton function in libraries/common.lib.php in the database (db) search script in phpMyAdmin 2.11.x before 2.11.11.1 and 3.x before 3.3.8.1 allows remote attackers to inject arbitrary web script or HTML via a crafted request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8j2c-qwhx-7qj4/GHSA-8j2c-qwhx-7qj4.json b/advisories/unreviewed/2022/05/GHSA-8j2c-qwhx-7qj4/GHSA-8j2c-qwhx-7qj4.json index 0cf11e617a9..1eead540dcd 100644 --- a/advisories/unreviewed/2022/05/GHSA-8j2c-qwhx-7qj4/GHSA-8j2c-qwhx-7qj4.json +++ b/advisories/unreviewed/2022/05/GHSA-8j2c-qwhx-7qj4/GHSA-8j2c-qwhx-7qj4.json @@ -7,12 +7,8 @@ "CVE-2010-4786" ], "details": "IBM Tivoli Directory Server (TDS) 6.0 before 6.0.0.63 (aka 6.0.0.8-TIV-ITDS-IF0005) allows remote authenticated users to cause a denial of service (daemon crash or hang) via a paged search, as demonstrated by a certain idsldapsearch command, related to an improper ibm-slapdIdleTimeOut configuration setting.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-8j3r-92hg-4567/GHSA-8j3r-92hg-4567.json b/advisories/unreviewed/2022/05/GHSA-8j3r-92hg-4567/GHSA-8j3r-92hg-4567.json index 77eede27b73..90c645e1d69 100644 --- a/advisories/unreviewed/2022/05/GHSA-8j3r-92hg-4567/GHSA-8j3r-92hg-4567.json +++ b/advisories/unreviewed/2022/05/GHSA-8j3r-92hg-4567/GHSA-8j3r-92hg-4567.json @@ -7,12 +7,8 @@ "CVE-2010-3304" ], "details": "The ACL plugin in Dovecot 1.2.x before 1.2.13 propagates INBOX ACLs to newly created mailboxes in certain configurations, which might allow remote attackers to read mailboxes that have unintended weak ACLs.", - "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/05/GHSA-8j4q-jx97-vfcm/GHSA-8j4q-jx97-vfcm.json b/advisories/unreviewed/2022/05/GHSA-8j4q-jx97-vfcm/GHSA-8j4q-jx97-vfcm.json index caa954be66e..864d8cdec8d 100644 --- a/advisories/unreviewed/2022/05/GHSA-8j4q-jx97-vfcm/GHSA-8j4q-jx97-vfcm.json +++ b/advisories/unreviewed/2022/05/GHSA-8j4q-jx97-vfcm/GHSA-8j4q-jx97-vfcm.json @@ -7,12 +7,8 @@ "CVE-2010-4608" ], "details": "Habari 0.6.5 allows remote attackers to obtain sensitive information via a direct request to (1) header.php and (2) comments_items.php in system/admin/, which reveals the installation path in an error message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8m47-2rpp-v9mw/GHSA-8m47-2rpp-v9mw.json b/advisories/unreviewed/2022/05/GHSA-8m47-2rpp-v9mw/GHSA-8m47-2rpp-v9mw.json index fd3ccc8116f..cd609538510 100644 --- a/advisories/unreviewed/2022/05/GHSA-8m47-2rpp-v9mw/GHSA-8m47-2rpp-v9mw.json +++ b/advisories/unreviewed/2022/05/GHSA-8m47-2rpp-v9mw/GHSA-8m47-2rpp-v9mw.json @@ -7,12 +7,8 @@ "CVE-2010-4766" ], "details": "The AgentTicketForward feature in Open Ticket Request System (OTRS) before 2.4.7 does not properly remove inline images from HTML e-mail messages, which allows remote attackers to obtain potentially sensitive image information in opportunistic circumstances by reading a forwarded message in a standard e-mail client.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8m7c-wwr2-5297/GHSA-8m7c-wwr2-5297.json b/advisories/unreviewed/2022/05/GHSA-8m7c-wwr2-5297/GHSA-8m7c-wwr2-5297.json index 9e88d8beddb..a0be452adb1 100644 --- a/advisories/unreviewed/2022/05/GHSA-8m7c-wwr2-5297/GHSA-8m7c-wwr2-5297.json +++ b/advisories/unreviewed/2022/05/GHSA-8m7c-wwr2-5297/GHSA-8m7c-wwr2-5297.json @@ -7,12 +7,8 @@ "CVE-2011-0217" ], "details": "Apple Safari before 5.0.6 provides AutoFill information to scripts that execute before HTML form submission, which allows remote attackers to obtain Address Book information via a crafted form, as demonstrated by a form that includes non-visible fields.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8mh3-6g9j-4mxq/GHSA-8mh3-6g9j-4mxq.json b/advisories/unreviewed/2022/05/GHSA-8mh3-6g9j-4mxq/GHSA-8mh3-6g9j-4mxq.json index 87746bd1ba7..4b5f65ee4d7 100644 --- a/advisories/unreviewed/2022/05/GHSA-8mh3-6g9j-4mxq/GHSA-8mh3-6g9j-4mxq.json +++ b/advisories/unreviewed/2022/05/GHSA-8mh3-6g9j-4mxq/GHSA-8mh3-6g9j-4mxq.json @@ -7,12 +7,8 @@ "CVE-2010-4667" ], "details": "Cross-site scripting (XSS) vulnerability in Coppermine Photo Gallery (CPG) before 1.4.27 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8p43-wpgc-4fh2/GHSA-8p43-wpgc-4fh2.json b/advisories/unreviewed/2022/05/GHSA-8p43-wpgc-4fh2/GHSA-8p43-wpgc-4fh2.json index bbd912d4138..a29e7f2b043 100644 --- a/advisories/unreviewed/2022/05/GHSA-8p43-wpgc-4fh2/GHSA-8p43-wpgc-4fh2.json +++ b/advisories/unreviewed/2022/05/GHSA-8p43-wpgc-4fh2/GHSA-8p43-wpgc-4fh2.json @@ -7,12 +7,8 @@ "CVE-2011-2490" ], "details": "opielogin.c in opielogin in OPIE 2.4.1-test1 and earlier does not check the return value of the setuid system call, which allows local users to gain privileges by arranging for an account to already be running its maximum number of processes.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8q39-w8qp-j6g5/GHSA-8q39-w8qp-j6g5.json b/advisories/unreviewed/2022/05/GHSA-8q39-w8qp-j6g5/GHSA-8q39-w8qp-j6g5.json index e0ca1dbfddb..1562b22e303 100644 --- a/advisories/unreviewed/2022/05/GHSA-8q39-w8qp-j6g5/GHSA-8q39-w8qp-j6g5.json +++ b/advisories/unreviewed/2022/05/GHSA-8q39-w8qp-j6g5/GHSA-8q39-w8qp-j6g5.json @@ -7,12 +7,8 @@ "CVE-2010-4711" ], "details": "Double free vulnerability in the IMAP server component in GroupWise Internet Agent (GWIA) in Novell GroupWise before 8.02HP allows remote attackers to execute arbitrary code via a large parameter in a LIST command.", - "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-8q7x-x6wm-6x5q/GHSA-8q7x-x6wm-6x5q.json b/advisories/unreviewed/2022/05/GHSA-8q7x-x6wm-6x5q/GHSA-8q7x-x6wm-6x5q.json index 5b4e18286ab..e004bdcbb3e 100644 --- a/advisories/unreviewed/2022/05/GHSA-8q7x-x6wm-6x5q/GHSA-8q7x-x6wm-6x5q.json +++ b/advisories/unreviewed/2022/05/GHSA-8q7x-x6wm-6x5q/GHSA-8q7x-x6wm-6x5q.json @@ -7,12 +7,8 @@ "CVE-2010-4523" ], "details": "Multiple stack-based buffer overflows in libopensc in OpenSC 0.11.13 and earlier allow physically proximate attackers to execute arbitrary code via a long serial-number field on a smart card, related to (1) card-acos5.c, (2) card-atrust-acos.c, and (3) card-starcos.c.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8rv8-h9fh-8g7j/GHSA-8rv8-h9fh-8g7j.json b/advisories/unreviewed/2022/05/GHSA-8rv8-h9fh-8g7j/GHSA-8rv8-h9fh-8g7j.json index ef435833c64..5ce4b5d8fbc 100644 --- a/advisories/unreviewed/2022/05/GHSA-8rv8-h9fh-8g7j/GHSA-8rv8-h9fh-8g7j.json +++ b/advisories/unreviewed/2022/05/GHSA-8rv8-h9fh-8g7j/GHSA-8rv8-h9fh-8g7j.json @@ -7,12 +7,8 @@ "CVE-2010-4748" ], "details": "Cross-site scripting (XSS) vulnerability in pmwiki.php in PmWiki 2.2.20 allows remote attackers to inject arbitrary web script or HTML via the from parameter to Main/WikiSandbox. 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-8v27-5q5v-p77q/GHSA-8v27-5q5v-p77q.json b/advisories/unreviewed/2022/05/GHSA-8v27-5q5v-p77q/GHSA-8v27-5q5v-p77q.json index b41f304726e..fd1a089aa55 100644 --- a/advisories/unreviewed/2022/05/GHSA-8v27-5q5v-p77q/GHSA-8v27-5q5v-p77q.json +++ b/advisories/unreviewed/2022/05/GHSA-8v27-5q5v-p77q/GHSA-8v27-5q5v-p77q.json @@ -7,12 +7,8 @@ "CVE-2011-0159" ], "details": "The Safari Settings feature in Safari in Apple iOS 4.x before 4.3 does not properly implement the clearing of cookies during execution of the Safari application, which might make it easier for remote web servers to track users by setting a cookie.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8vp7-gx52-wmvx/GHSA-8vp7-gx52-wmvx.json b/advisories/unreviewed/2022/05/GHSA-8vp7-gx52-wmvx/GHSA-8vp7-gx52-wmvx.json index 99402c2aa2e..b5ff32109f3 100644 --- a/advisories/unreviewed/2022/05/GHSA-8vp7-gx52-wmvx/GHSA-8vp7-gx52-wmvx.json +++ b/advisories/unreviewed/2022/05/GHSA-8vp7-gx52-wmvx/GHSA-8vp7-gx52-wmvx.json @@ -7,12 +7,8 @@ "CVE-2011-0640" ], "details": "The default configuration of udev on Linux does not warn the user before enabling additional Human Interface Device (HID) functionality over USB, which allows user-assisted attackers to execute arbitrary programs via crafted USB data, as demonstrated by keyboard and mouse data sent by malware on a smartphone that the user connected to the computer.", - "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-8vw9-c3gr-76x2/GHSA-8vw9-c3gr-76x2.json b/advisories/unreviewed/2022/05/GHSA-8vw9-c3gr-76x2/GHSA-8vw9-c3gr-76x2.json index e8dbd27c59c..680e8ed55e2 100644 --- a/advisories/unreviewed/2022/05/GHSA-8vw9-c3gr-76x2/GHSA-8vw9-c3gr-76x2.json +++ b/advisories/unreviewed/2022/05/GHSA-8vw9-c3gr-76x2/GHSA-8vw9-c3gr-76x2.json @@ -7,12 +7,8 @@ "CVE-2011-0537" ], "details": "Multiple directory traversal vulnerabilities in (1) languages/Language.php and (2) includes/StubObject.php in MediaWiki 1.8.0 and other versions before 1.16.2, when running on Windows and possibly Novell Netware, allow remote attackers to include and execute arbitrary local PHP files via vectors related to a crafted language file and the Language::factory function.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-8wrv-rwr6-8qj6/GHSA-8wrv-rwr6-8qj6.json b/advisories/unreviewed/2022/05/GHSA-8wrv-rwr6-8qj6/GHSA-8wrv-rwr6-8qj6.json index 9b67d5c86e1..3bf61e2609b 100644 --- a/advisories/unreviewed/2022/05/GHSA-8wrv-rwr6-8qj6/GHSA-8wrv-rwr6-8qj6.json +++ b/advisories/unreviewed/2022/05/GHSA-8wrv-rwr6-8qj6/GHSA-8wrv-rwr6-8qj6.json @@ -7,12 +7,8 @@ "CVE-2011-1550" ], "details": "The default configuration of logrotate on SUSE openSUSE Factory uses root privileges to process files in directories that permit non-root write access, which allows local users to conduct symlink and hard link attacks by leveraging logrotate's lack of support for untrusted directories, as demonstrated by directories for the (1) cobbler, (2) inn, (3) safte-monitor, and (4) uucp packages.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -156,9 +152,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9278-qp88-95w2/GHSA-9278-qp88-95w2.json b/advisories/unreviewed/2022/05/GHSA-9278-qp88-95w2/GHSA-9278-qp88-95w2.json index 5187f20e40a..8e35a0cf892 100644 --- a/advisories/unreviewed/2022/05/GHSA-9278-qp88-95w2/GHSA-9278-qp88-95w2.json +++ b/advisories/unreviewed/2022/05/GHSA-9278-qp88-95w2/GHSA-9278-qp88-95w2.json @@ -7,12 +7,8 @@ "CVE-2010-3921" ], "details": "Cross-site scripting (XSS) vulnerability in Movable Type 4.x before 4.35 and 5.x before 5.04 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-92j2-v26r-cr46/GHSA-92j2-v26r-cr46.json b/advisories/unreviewed/2022/05/GHSA-92j2-v26r-cr46/GHSA-92j2-v26r-cr46.json index 196748c0616..5e55cf67312 100644 --- a/advisories/unreviewed/2022/05/GHSA-92j2-v26r-cr46/GHSA-92j2-v26r-cr46.json +++ b/advisories/unreviewed/2022/05/GHSA-92j2-v26r-cr46/GHSA-92j2-v26r-cr46.json @@ -7,12 +7,8 @@ "CVE-2010-4769" ], "details": "Directory traversal vulnerability in the Jimtawl (com_jimtawl) component 1.0.2 Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impact via a .. (dot dot) in the task parameter to index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-939c-fxc3-rc2x/GHSA-939c-fxc3-rc2x.json b/advisories/unreviewed/2022/05/GHSA-939c-fxc3-rc2x/GHSA-939c-fxc3-rc2x.json index 42484c19773..72738502dc5 100644 --- a/advisories/unreviewed/2022/05/GHSA-939c-fxc3-rc2x/GHSA-939c-fxc3-rc2x.json +++ b/advisories/unreviewed/2022/05/GHSA-939c-fxc3-rc2x/GHSA-939c-fxc3-rc2x.json @@ -7,12 +7,8 @@ "CVE-2011-2536" ], "details": "chan_sip.c in the SIP channel driver in Asterisk Open Source 1.4.x before 1.4.41.2, 1.6.2.x before 1.6.2.18.2, and 1.8.x before 1.8.4.4, and Asterisk Business Edition C.3.x before C.3.7.3, disregards the alwaysauthreject option and generates different responses for invalid SIP requests depending on whether the user account exists, which allows remote attackers to enumerate account names via a series of requests.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-93j5-rc3x-wfvx/GHSA-93j5-rc3x-wfvx.json b/advisories/unreviewed/2022/05/GHSA-93j5-rc3x-wfvx/GHSA-93j5-rc3x-wfvx.json index 661cfaee758..35a775ac4b0 100644 --- a/advisories/unreviewed/2022/05/GHSA-93j5-rc3x-wfvx/GHSA-93j5-rc3x-wfvx.json +++ b/advisories/unreviewed/2022/05/GHSA-93j5-rc3x-wfvx/GHSA-93j5-rc3x-wfvx.json @@ -7,12 +7,8 @@ "CVE-2011-1645" ], "details": "The web management interface on the Cisco RVS4000 Gigabit Security Router with software 1.x before 1.3.3.4 and 2.x before 2.0.2.7, and the WRVS4400N Gigabit Security Router with software before 2.0.2.1, allows remote attackers to read the backup configuration file, and consequently execute arbitrary code, via unspecified vectors, aka Bug ID CSCtn23871.", - "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-93rq-vj87-fqr6/GHSA-93rq-vj87-fqr6.json b/advisories/unreviewed/2022/05/GHSA-93rq-vj87-fqr6/GHSA-93rq-vj87-fqr6.json index 46d9e3e1794..de9a4619f4b 100644 --- a/advisories/unreviewed/2022/05/GHSA-93rq-vj87-fqr6/GHSA-93rq-vj87-fqr6.json +++ b/advisories/unreviewed/2022/05/GHSA-93rq-vj87-fqr6/GHSA-93rq-vj87-fqr6.json @@ -7,12 +7,8 @@ "CVE-2010-4763" ], "details": "The ACL-customer-status Ticket Type setting in Open Ticket Request System (OTRS) before 3.0.0-beta1 does not restrict the ticket options after an AJAX reload, which allows remote authenticated users to bypass intended ACL restrictions on the (1) Status, (2) Service, and (3) Queue via selections.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-94hx-g976-jcgx/GHSA-94hx-g976-jcgx.json b/advisories/unreviewed/2022/05/GHSA-94hx-g976-jcgx/GHSA-94hx-g976-jcgx.json index cf876143604..e4723d79335 100644 --- a/advisories/unreviewed/2022/05/GHSA-94hx-g976-jcgx/GHSA-94hx-g976-jcgx.json +++ b/advisories/unreviewed/2022/05/GHSA-94hx-g976-jcgx/GHSA-94hx-g976-jcgx.json @@ -7,12 +7,8 @@ "CVE-2010-3922" ], "details": "SQL injection vulnerability in Movable Type 4.x before 4.35 and 5.x before 5.04 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9548-764x-cvqv/GHSA-9548-764x-cvqv.json b/advisories/unreviewed/2022/05/GHSA-9548-764x-cvqv/GHSA-9548-764x-cvqv.json index 3660c075722..bb469f26d85 100644 --- a/advisories/unreviewed/2022/05/GHSA-9548-764x-cvqv/GHSA-9548-764x-cvqv.json +++ b/advisories/unreviewed/2022/05/GHSA-9548-764x-cvqv/GHSA-9548-764x-cvqv.json @@ -7,12 +7,8 @@ "CVE-2010-4727" ], "details": "Smarty before 3.0.0 beta 7 does not properly handle the tags, which has unspecified impact and remote attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-95f3-2wqm-398g/GHSA-95f3-2wqm-398g.json b/advisories/unreviewed/2022/05/GHSA-95f3-2wqm-398g/GHSA-95f3-2wqm-398g.json index 4e9ee17142f..8a8dc4f923d 100644 --- a/advisories/unreviewed/2022/05/GHSA-95f3-2wqm-398g/GHSA-95f3-2wqm-398g.json +++ b/advisories/unreviewed/2022/05/GHSA-95f3-2wqm-398g/GHSA-95f3-2wqm-398g.json @@ -7,12 +7,8 @@ "CVE-2010-2950" ], "details": "Format string vulnerability in stream.c in the phar extension in PHP 5.3.x through 5.3.3 allows context-dependent attackers to obtain sensitive information (memory contents) and possibly execute arbitrary code via a crafted phar:// URI that is not properly handled by the phar_stream_flush function, leading to errors in the php_stream_wrapper_log_error function. NOTE: this vulnerability exists because of an incomplete fix for CVE-2010-2094.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-96fc-9934-w2h5/GHSA-96fc-9934-w2h5.json b/advisories/unreviewed/2022/05/GHSA-96fc-9934-w2h5/GHSA-96fc-9934-w2h5.json index 6552be16637..79db5c9bccb 100644 --- a/advisories/unreviewed/2022/05/GHSA-96fc-9934-w2h5/GHSA-96fc-9934-w2h5.json +++ b/advisories/unreviewed/2022/05/GHSA-96fc-9934-w2h5/GHSA-96fc-9934-w2h5.json @@ -7,12 +7,8 @@ "CVE-2011-1544" ], "details": "Unspecified vulnerability in HP Insight Control Performance Management before 6.3 allows remote authenticated users to gain privileges via unknown vectors.", - "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-96gg-2fqg-g6xm/GHSA-96gg-2fqg-g6xm.json b/advisories/unreviewed/2022/05/GHSA-96gg-2fqg-g6xm/GHSA-96gg-2fqg-g6xm.json index 595f320921f..f9245c08ca4 100644 --- a/advisories/unreviewed/2022/05/GHSA-96gg-2fqg-g6xm/GHSA-96gg-2fqg-g6xm.json +++ b/advisories/unreviewed/2022/05/GHSA-96gg-2fqg-g6xm/GHSA-96gg-2fqg-g6xm.json @@ -7,12 +7,8 @@ "CVE-2010-4394" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1 and RealPlayer SP 1.0 through 1.1.5 allows remote web servers to execute arbitrary code via a long Server header in a response to an HTTP request that occurs during parsing of a RealPix file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-973p-rh37-2g7m/GHSA-973p-rh37-2g7m.json b/advisories/unreviewed/2022/05/GHSA-973p-rh37-2g7m/GHSA-973p-rh37-2g7m.json index ac16a529f52..a8f619a8800 100644 --- a/advisories/unreviewed/2022/05/GHSA-973p-rh37-2g7m/GHSA-973p-rh37-2g7m.json +++ b/advisories/unreviewed/2022/05/GHSA-973p-rh37-2g7m/GHSA-973p-rh37-2g7m.json @@ -7,12 +7,8 @@ "CVE-2011-0785" ], "details": "Unspecified vulnerability in the Oracle Help component in Oracle Database Server 11.1.0.7, 11.2.0.1, 11.2.0.2, 10.1.0.5, 10.2.0.3, 10.2.0.4, 10.2.0.5, and 10.1.0.5; and Oracle Fusion Middleware 11.1.1.2.0, 11.1.1.3.0, and 11.1.1.4.0 allows remote attackers to affect integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-97h7-vfr6-636x/GHSA-97h7-vfr6-636x.json b/advisories/unreviewed/2022/05/GHSA-97h7-vfr6-636x/GHSA-97h7-vfr6-636x.json index e624088cc89..57057031fa9 100644 --- a/advisories/unreviewed/2022/05/GHSA-97h7-vfr6-636x/GHSA-97h7-vfr6-636x.json +++ b/advisories/unreviewed/2022/05/GHSA-97h7-vfr6-636x/GHSA-97h7-vfr6-636x.json @@ -7,12 +7,8 @@ "CVE-2010-3694" ], "details": "Cross-site request forgery (CSRF) vulnerability in the Horde Application Framework before 3.3.9 allows remote attackers to hijack the authentication of unspecified victims for requests to a preference form.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-97j2-qfcm-f8wh/GHSA-97j2-qfcm-f8wh.json b/advisories/unreviewed/2022/05/GHSA-97j2-qfcm-f8wh/GHSA-97j2-qfcm-f8wh.json index 123c68760be..ba3acd662ff 100644 --- a/advisories/unreviewed/2022/05/GHSA-97j2-qfcm-f8wh/GHSA-97j2-qfcm-f8wh.json +++ b/advisories/unreviewed/2022/05/GHSA-97j2-qfcm-f8wh/GHSA-97j2-qfcm-f8wh.json @@ -7,12 +7,8 @@ "CVE-2010-4384" ], "details": "Array index error in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer Enterprise 2.1.2, Mac RealPlayer 11.0 through 11.1, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allows remote attackers to execute arbitrary code via a malformed Media Properties Header (aka MDPR) in a RealMedia file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9865-q9qp-967m/GHSA-9865-q9qp-967m.json b/advisories/unreviewed/2022/05/GHSA-9865-q9qp-967m/GHSA-9865-q9qp-967m.json index 14e98529392..46e34f8c2f1 100644 --- a/advisories/unreviewed/2022/05/GHSA-9865-q9qp-967m/GHSA-9865-q9qp-967m.json +++ b/advisories/unreviewed/2022/05/GHSA-9865-q9qp-967m/GHSA-9865-q9qp-967m.json @@ -7,12 +7,8 @@ "CVE-2010-4737" ], "details": "SQL injection vulnerability in resorts.asp in HotWebScripts HotWeb Rentals allows remote attackers to execute arbitrary SQL commands via the PropResort parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-98qw-9p6r-g42v/GHSA-98qw-9p6r-g42v.json b/advisories/unreviewed/2022/05/GHSA-98qw-9p6r-g42v/GHSA-98qw-9p6r-g42v.json index 6d4056f2576..4e67dbebeb5 100644 --- a/advisories/unreviewed/2022/05/GHSA-98qw-9p6r-g42v/GHSA-98qw-9p6r-g42v.json +++ b/advisories/unreviewed/2022/05/GHSA-98qw-9p6r-g42v/GHSA-98qw-9p6r-g42v.json @@ -7,12 +7,8 @@ "CVE-2010-4735" ], "details": "SQL injection vulnerability in shoppingcart.asp in Ecommercemax Solutions Digital-goods seller (DGS) 1.5 allows remote attackers to execute arbitrary SQL commands via the d parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-98rm-47wr-6469/GHSA-98rm-47wr-6469.json b/advisories/unreviewed/2022/05/GHSA-98rm-47wr-6469/GHSA-98rm-47wr-6469.json index 8894107ea5b..6eacc18febe 100644 --- a/advisories/unreviewed/2022/05/GHSA-98rm-47wr-6469/GHSA-98rm-47wr-6469.json +++ b/advisories/unreviewed/2022/05/GHSA-98rm-47wr-6469/GHSA-98rm-47wr-6469.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -43,9 +41,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9ffm-v99v-pvcc/GHSA-9ffm-v99v-pvcc.json b/advisories/unreviewed/2022/05/GHSA-9ffm-v99v-pvcc/GHSA-9ffm-v99v-pvcc.json index 7c2f6433ed4..0cc24fad1ef 100644 --- a/advisories/unreviewed/2022/05/GHSA-9ffm-v99v-pvcc/GHSA-9ffm-v99v-pvcc.json +++ b/advisories/unreviewed/2022/05/GHSA-9ffm-v99v-pvcc/GHSA-9ffm-v99v-pvcc.json @@ -7,12 +7,8 @@ "CVE-2011-0789" ], "details": "Unspecified vulnerability in the Oracle HTTP Server component in Oracle Fusion Middleware 10.1.2.3 allows remote attackers to affect integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9g59-jghc-6m3c/GHSA-9g59-jghc-6m3c.json b/advisories/unreviewed/2022/05/GHSA-9g59-jghc-6m3c/GHSA-9g59-jghc-6m3c.json index 7928eeb7066..cdb2974a9dc 100644 --- a/advisories/unreviewed/2022/05/GHSA-9g59-jghc-6m3c/GHSA-9g59-jghc-6m3c.json +++ b/advisories/unreviewed/2022/05/GHSA-9g59-jghc-6m3c/GHSA-9g59-jghc-6m3c.json @@ -7,12 +7,8 @@ "CVE-2011-0800" ], "details": "Unspecified vulnerability in the Solaris component in Oracle Solaris 8, 9, 10, and 11 Express allows local users to affect confidentiality, integrity, and availability via unknown vectors related to Administration Utilities.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9gc4-fprr-x2x4/GHSA-9gc4-fprr-x2x4.json b/advisories/unreviewed/2022/05/GHSA-9gc4-fprr-x2x4/GHSA-9gc4-fprr-x2x4.json index 3315a6a32a4..0f3c5615b69 100644 --- a/advisories/unreviewed/2022/05/GHSA-9gc4-fprr-x2x4/GHSA-9gc4-fprr-x2x4.json +++ b/advisories/unreviewed/2022/05/GHSA-9gc4-fprr-x2x4/GHSA-9gc4-fprr-x2x4.json @@ -7,12 +7,8 @@ "CVE-2010-4111" ], "details": "Cross-site scripting (XSS) vulnerability in HP Insight Diagnostics Online Edition before 8.5.1.3712 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9m8c-72h9-p8w4/GHSA-9m8c-72h9-p8w4.json b/advisories/unreviewed/2022/05/GHSA-9m8c-72h9-p8w4/GHSA-9m8c-72h9-p8w4.json index de1b998b969..961ea95f433 100644 --- a/advisories/unreviewed/2022/05/GHSA-9m8c-72h9-p8w4/GHSA-9m8c-72h9-p8w4.json +++ b/advisories/unreviewed/2022/05/GHSA-9m8c-72h9-p8w4/GHSA-9m8c-72h9-p8w4.json @@ -7,12 +7,8 @@ "CVE-2010-4596" ], "details": "Stack-based buffer overflow in RealNetworks Helix Server 12.x, 13.x, and 14.x before 14.2, and Helix Mobile Server 12.x, 13.x, and 14.x before 14.2, allows remote attackers to execute arbitrary code via a long string in an RTSP request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9mf9-xc6f-xg65/GHSA-9mf9-xc6f-xg65.json b/advisories/unreviewed/2022/05/GHSA-9mf9-xc6f-xg65/GHSA-9mf9-xc6f-xg65.json index 2e134595406..f5c163114a0 100644 --- a/advisories/unreviewed/2022/05/GHSA-9mf9-xc6f-xg65/GHSA-9mf9-xc6f-xg65.json +++ b/advisories/unreviewed/2022/05/GHSA-9mf9-xc6f-xg65/GHSA-9mf9-xc6f-xg65.json @@ -7,12 +7,8 @@ "CVE-2010-4507" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities on the iSpot 2.0.0.0 R1679, and the ClearSpot 2.0.0.0 R1512 and R1786, with firmware 1.9.9.4 allow remote attackers to hijack the authentication of administrators for requests that (1) execute arbitrary commands via the cmd parameter in an act_cmd_result action to webmain.cgi, (2) enable remote management via an enable_remote_access act_network_set action to webmain.cgi, (3) enable the TELNET service via an ENABLE_TELNET act_set_wimax_etc_config action to webmain.cgi, (4) enable TELNET sessions via a certain act_network_set action to webmain.cgi, or (5) read arbitrary files via the FILE_PATH parameter in an act_file_download action to upgrademain.cgi.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9mph-5q5c-gvvf/GHSA-9mph-5q5c-gvvf.json b/advisories/unreviewed/2022/05/GHSA-9mph-5q5c-gvvf/GHSA-9mph-5q5c-gvvf.json index 3de1f580594..17a6fb48e98 100644 --- a/advisories/unreviewed/2022/05/GHSA-9mph-5q5c-gvvf/GHSA-9mph-5q5c-gvvf.json +++ b/advisories/unreviewed/2022/05/GHSA-9mph-5q5c-gvvf/GHSA-9mph-5q5c-gvvf.json @@ -7,12 +7,8 @@ "CVE-2011-2613" ], "details": "The Array.prototype.join method in Opera before 11.50 allows remote attackers to cause a denial of service (application crash) via a non-array object that contains initial holes.", - "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-9mqx-xjgw-xp5v/GHSA-9mqx-xjgw-xp5v.json b/advisories/unreviewed/2022/05/GHSA-9mqx-xjgw-xp5v/GHSA-9mqx-xjgw-xp5v.json index e18292deef0..58abf5945b1 100644 --- a/advisories/unreviewed/2022/05/GHSA-9mqx-xjgw-xp5v/GHSA-9mqx-xjgw-xp5v.json +++ b/advisories/unreviewed/2022/05/GHSA-9mqx-xjgw-xp5v/GHSA-9mqx-xjgw-xp5v.json @@ -7,12 +7,8 @@ "CVE-2010-4156" ], "details": "The mb_strcut function in Libmbfl 1.1.0, as used in PHP 5.3.x through 5.3.3, allows context-dependent attackers to obtain potentially sensitive information via a large value of the third parameter (aka the length parameter).", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9pcm-9rp6-v3m7/GHSA-9pcm-9rp6-v3m7.json b/advisories/unreviewed/2022/05/GHSA-9pcm-9rp6-v3m7/GHSA-9pcm-9rp6-v3m7.json index 39b3414ddfc..13849bb131d 100644 --- a/advisories/unreviewed/2022/05/GHSA-9pcm-9rp6-v3m7/GHSA-9pcm-9rp6-v3m7.json +++ b/advisories/unreviewed/2022/05/GHSA-9pcm-9rp6-v3m7/GHSA-9pcm-9rp6-v3m7.json @@ -7,12 +7,8 @@ "CVE-2011-1738" ], "details": "HP Palm webOS 1.4.5 and 1.4.5.1 does not properly restrict Plug-in Development Kit (PDK) applications, which allows local users to gain privileges by leveraging unintended filesystem write access.", - "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-9pj4-3hjv-frj6/GHSA-9pj4-3hjv-frj6.json b/advisories/unreviewed/2022/05/GHSA-9pj4-3hjv-frj6/GHSA-9pj4-3hjv-frj6.json index f379dcccfd3..2f76920c0d6 100644 --- a/advisories/unreviewed/2022/05/GHSA-9pj4-3hjv-frj6/GHSA-9pj4-3hjv-frj6.json +++ b/advisories/unreviewed/2022/05/GHSA-9pj4-3hjv-frj6/GHSA-9pj4-3hjv-frj6.json @@ -7,12 +7,8 @@ "CVE-2010-3529" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise FMS - Cash Management component in Oracle PeopleSoft and JDEdwards Suite 8.9 Bundle #38, 9.0 Bundle #31, and 9.1 Bundle #6 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9pw6-jmhq-8mwx/GHSA-9pw6-jmhq-8mwx.json b/advisories/unreviewed/2022/05/GHSA-9pw6-jmhq-8mwx/GHSA-9pw6-jmhq-8mwx.json index f3b87a65020..eeb61a15328 100644 --- a/advisories/unreviewed/2022/05/GHSA-9pw6-jmhq-8mwx/GHSA-9pw6-jmhq-8mwx.json +++ b/advisories/unreviewed/2022/05/GHSA-9pw6-jmhq-8mwx/GHSA-9pw6-jmhq-8mwx.json @@ -7,12 +7,8 @@ "CVE-2008-5280" ], "details": "The Local ZIM Server in Zilab Chat and Instant Messaging (ZIM) Server 2.0 and 2.1 allows remote attackers to cause a denial of service (NULL pointer dereference) via crafted requests without required parameters.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -44,9 +40,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-9q23-65gx-4jw8/GHSA-9q23-65gx-4jw8.json b/advisories/unreviewed/2022/05/GHSA-9q23-65gx-4jw8/GHSA-9q23-65gx-4jw8.json index f520d8cf13c..271083d708b 100644 --- a/advisories/unreviewed/2022/05/GHSA-9q23-65gx-4jw8/GHSA-9q23-65gx-4jw8.json +++ b/advisories/unreviewed/2022/05/GHSA-9q23-65gx-4jw8/GHSA-9q23-65gx-4jw8.json @@ -7,12 +7,8 @@ "CVE-2010-4592" ], "details": "The Mobile Network Connections functionality in the Connection Manager in IBM Lotus Mobile Connect before 6.1.4, when HTTP Access Services (HTTP-AS) is enabled, does not properly handle failed attempts at establishing HTTP-TCP sessions, which allows remote attackers to cause a denial of service (memory consumption and daemon crash) by making many TCP connection attempts.", - "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-9q86-3mhw-gx84/GHSA-9q86-3mhw-gx84.json b/advisories/unreviewed/2022/05/GHSA-9q86-3mhw-gx84/GHSA-9q86-3mhw-gx84.json index dd8310bf9f8..1012370973a 100644 --- a/advisories/unreviewed/2022/05/GHSA-9q86-3mhw-gx84/GHSA-9q86-3mhw-gx84.json +++ b/advisories/unreviewed/2022/05/GHSA-9q86-3mhw-gx84/GHSA-9q86-3mhw-gx84.json @@ -7,12 +7,8 @@ "CVE-2011-0498" ], "details": "Stack-based buffer overflow in Nokia Multimedia Player 1.00.55.5010, and possibly other versions, allows user-assisted remote attackers to cause a denial of service (crash) and possibly execute arbitrary code via a long entry in a playlist (.npl) file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9qj5-r3c5-c7r3/GHSA-9qj5-r3c5-c7r3.json b/advisories/unreviewed/2022/05/GHSA-9qj5-r3c5-c7r3/GHSA-9qj5-r3c5-c7r3.json index 0c6b4a88c58..ed83b4cb87a 100644 --- a/advisories/unreviewed/2022/05/GHSA-9qj5-r3c5-c7r3/GHSA-9qj5-r3c5-c7r3.json +++ b/advisories/unreviewed/2022/05/GHSA-9qj5-r3c5-c7r3/GHSA-9qj5-r3c5-c7r3.json @@ -7,12 +7,8 @@ "CVE-2010-4552" ], "details": "Memory leak in IBM Lotus Notes Traveler before 8.5.1.1 allows remote attackers to cause a denial of service (memory consumption and daemon outage) by sending many embedded objects in e-mail messages for iPhone clients.", - "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-9qmr-947p-jxhx/GHSA-9qmr-947p-jxhx.json b/advisories/unreviewed/2022/05/GHSA-9qmr-947p-jxhx/GHSA-9qmr-947p-jxhx.json index ce5841ba9cf..1facdd542f1 100644 --- a/advisories/unreviewed/2022/05/GHSA-9qmr-947p-jxhx/GHSA-9qmr-947p-jxhx.json +++ b/advisories/unreviewed/2022/05/GHSA-9qmr-947p-jxhx/GHSA-9qmr-947p-jxhx.json @@ -7,12 +7,8 @@ "CVE-2010-4618" ], "details": "Cross-site scripting (XSS) vulnerability in the Algis Info aiContactSafe component before 2.0.14 for Joomla! allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9qp8-qmr4-5hp8/GHSA-9qp8-qmr4-5hp8.json b/advisories/unreviewed/2022/05/GHSA-9qp8-qmr4-5hp8/GHSA-9qp8-qmr4-5hp8.json index 43d16169462..ccc6edc148d 100644 --- a/advisories/unreviewed/2022/05/GHSA-9qp8-qmr4-5hp8/GHSA-9qp8-qmr4-5hp8.json +++ b/advisories/unreviewed/2022/05/GHSA-9qp8-qmr4-5hp8/GHSA-9qp8-qmr4-5hp8.json @@ -7,12 +7,8 @@ "CVE-2011-1599" ], "details": "manager.c in the Manager Interface in Asterisk Open Source 1.4.x before 1.4.40.1, 1.6.1.x before 1.6.1.25, 1.6.2.x before 1.6.2.17.3, and 1.8.x before 1.8.3.3 and Asterisk Business Edition C.x.x before C.3.6.4 does not properly check for the system privilege, which allows remote authenticated users to execute arbitrary commands via an Originate action that has an Async header in conjunction with an Application header.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9v8c-75h5-qqr6/GHSA-9v8c-75h5-qqr6.json b/advisories/unreviewed/2022/05/GHSA-9v8c-75h5-qqr6/GHSA-9v8c-75h5-qqr6.json index 08ee32b04da..fe3cd2f4e72 100644 --- a/advisories/unreviewed/2022/05/GHSA-9v8c-75h5-qqr6/GHSA-9v8c-75h5-qqr6.json +++ b/advisories/unreviewed/2022/05/GHSA-9v8c-75h5-qqr6/GHSA-9v8c-75h5-qqr6.json @@ -7,12 +7,8 @@ "CVE-2011-1901" ], "details": "The mail-filter web interface in Proofpoint Messaging Security Gateway 6.2.0.263:6.2.0.237 and earlier in Proofpoint Protection Server 5.5.3, 5.5.4, 5.5.5, 6.0.2, 6.1.1, and 6.2.0 allows remote attackers to bypass authentication via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9wjp-w6p5-52xw/GHSA-9wjp-w6p5-52xw.json b/advisories/unreviewed/2022/05/GHSA-9wjp-w6p5-52xw/GHSA-9wjp-w6p5-52xw.json index 0479ab355ef..638e7998143 100644 --- a/advisories/unreviewed/2022/05/GHSA-9wjp-w6p5-52xw/GHSA-9wjp-w6p5-52xw.json +++ b/advisories/unreviewed/2022/05/GHSA-9wjp-w6p5-52xw/GHSA-9wjp-w6p5-52xw.json @@ -7,12 +7,8 @@ "CVE-2011-1006" ], "details": "Heap-based buffer overflow in the parse_cgroup_spec function in tools/tools-common.c in the Control Group Configuration Library (aka libcgroup or libcg) before 0.37.1 allows local users to gain privileges via a crafted controller list on the command line of an application. NOTE: it is not clear whether this issue crosses privilege boundaries.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-9wxp-xqhf-2m53/GHSA-9wxp-xqhf-2m53.json b/advisories/unreviewed/2022/05/GHSA-9wxp-xqhf-2m53/GHSA-9wxp-xqhf-2m53.json index acd0d985808..3015aae6cca 100644 --- a/advisories/unreviewed/2022/05/GHSA-9wxp-xqhf-2m53/GHSA-9wxp-xqhf-2m53.json +++ b/advisories/unreviewed/2022/05/GHSA-9wxp-xqhf-2m53/GHSA-9wxp-xqhf-2m53.json @@ -7,12 +7,8 @@ "CVE-2010-4802" ], "details": "Commands.pm in Mojolicious before 0.999928 does not properly perform CGI environment detection, which has unspecified impact and remote attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c2mj-3pv3-68j8/GHSA-c2mj-3pv3-68j8.json b/advisories/unreviewed/2022/05/GHSA-c2mj-3pv3-68j8/GHSA-c2mj-3pv3-68j8.json index ac0baee71c1..9841df2cda6 100644 --- a/advisories/unreviewed/2022/05/GHSA-c2mj-3pv3-68j8/GHSA-c2mj-3pv3-68j8.json +++ b/advisories/unreviewed/2022/05/GHSA-c2mj-3pv3-68j8/GHSA-c2mj-3pv3-68j8.json @@ -7,12 +7,8 @@ "CVE-2010-4029" ], "details": "Unspecified vulnerability in HP Storage Essentials before 6.3.0, when LDAP authentication is enabled, allows remote attackers to obtain sensitive information, modify data, or cause a denial of service via unknown vectors.", - "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-c3rf-95rj-96w3/GHSA-c3rf-95rj-96w3.json b/advisories/unreviewed/2022/05/GHSA-c3rf-95rj-96w3/GHSA-c3rf-95rj-96w3.json index 60d620d11ff..44295bc275f 100644 --- a/advisories/unreviewed/2022/05/GHSA-c3rf-95rj-96w3/GHSA-c3rf-95rj-96w3.json +++ b/advisories/unreviewed/2022/05/GHSA-c3rf-95rj-96w3/GHSA-c3rf-95rj-96w3.json @@ -7,12 +7,8 @@ "CVE-2011-0729" ], "details": "dbus_backend/ls-dbus-backend in the D-Bus backend in language-selector before 0.6.7 does not restrict access on the basis of a PolicyKit check result, which allows local users to modify the /etc/default/locale and /etc/environment files via a (1) SetSystemDefaultLangEnv or (2) SetSystemDefaultLanguageEnv call.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -48,9 +44,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-c44m-25x5-p7w3/GHSA-c44m-25x5-p7w3.json b/advisories/unreviewed/2022/05/GHSA-c44m-25x5-p7w3/GHSA-c44m-25x5-p7w3.json index 77db04747a6..b65e2f23c3d 100644 --- a/advisories/unreviewed/2022/05/GHSA-c44m-25x5-p7w3/GHSA-c44m-25x5-p7w3.json +++ b/advisories/unreviewed/2022/05/GHSA-c44m-25x5-p7w3/GHSA-c44m-25x5-p7w3.json @@ -7,12 +7,8 @@ "CVE-2011-2616" ], "details": "Unspecified vulnerability in Opera before 11.50 allows remote attackers to cause a denial of service (memory consumption) via unknown content on a web page, as demonstrated by test262.ecmascript.org.", - "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-c45f-5wv2-5jrf/GHSA-c45f-5wv2-5jrf.json b/advisories/unreviewed/2022/05/GHSA-c45f-5wv2-5jrf/GHSA-c45f-5wv2-5jrf.json index 0085e87bb78..99b716f1a62 100644 --- a/advisories/unreviewed/2022/05/GHSA-c45f-5wv2-5jrf/GHSA-c45f-5wv2-5jrf.json +++ b/advisories/unreviewed/2022/05/GHSA-c45f-5wv2-5jrf/GHSA-c45f-5wv2-5jrf.json @@ -7,12 +7,8 @@ "CVE-2011-0375" ], "details": "The CGI implementation on Cisco TelePresence endpoint devices with software 1.2.x through 1.6.x allows remote authenticated users to execute arbitrary commands via a malformed request, related to \"command injection vulnerabilities,\" aka Bug ID CSCth24671.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c4pp-r7mc-7fj9/GHSA-c4pp-r7mc-7fj9.json b/advisories/unreviewed/2022/05/GHSA-c4pp-r7mc-7fj9/GHSA-c4pp-r7mc-7fj9.json index e4f248fb69e..08d73d3e891 100644 --- a/advisories/unreviewed/2022/05/GHSA-c4pp-r7mc-7fj9/GHSA-c4pp-r7mc-7fj9.json +++ b/advisories/unreviewed/2022/05/GHSA-c4pp-r7mc-7fj9/GHSA-c4pp-r7mc-7fj9.json @@ -7,12 +7,8 @@ "CVE-2011-0426" ], "details": "Directory traversal vulnerability in vCenter Server in VMware vCenter 4.0 before Update 3 and 4.1 before Update 1, and VMware VirtualCenter 2.5 before Update 6a, allows remote attackers to read arbitrary files via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c64g-c9hj-gqhg/GHSA-c64g-c9hj-gqhg.json b/advisories/unreviewed/2022/05/GHSA-c64g-c9hj-gqhg/GHSA-c64g-c9hj-gqhg.json index a047fccb1a1..6dd5eab080e 100644 --- a/advisories/unreviewed/2022/05/GHSA-c64g-c9hj-gqhg/GHSA-c64g-c9hj-gqhg.json +++ b/advisories/unreviewed/2022/05/GHSA-c64g-c9hj-gqhg/GHSA-c64g-c9hj-gqhg.json @@ -7,12 +7,8 @@ "CVE-2011-0456" ], "details": "webscript.pl in Open Ticket Request System (OTRS) 2.3.4 and earlier allows remote attackers to execute arbitrary commands via unspecified vectors, related to a \"command injection vulnerability.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c685-rwgf-6fvh/GHSA-c685-rwgf-6fvh.json b/advisories/unreviewed/2022/05/GHSA-c685-rwgf-6fvh/GHSA-c685-rwgf-6fvh.json index 4e492502ccf..ea404a3dd66 100644 --- a/advisories/unreviewed/2022/05/GHSA-c685-rwgf-6fvh/GHSA-c685-rwgf-6fvh.json +++ b/advisories/unreviewed/2022/05/GHSA-c685-rwgf-6fvh/GHSA-c685-rwgf-6fvh.json @@ -7,12 +7,8 @@ "CVE-2011-1904" ], "details": "An unspecified function in the web interface in Proofpoint Messaging Security Gateway 6.2.0.263:6.2.0.237 and earlier in Proofpoint Protection Server 5.5.3, 5.5.4, 5.5.5, 6.0.2, 6.1.1, and 6.2.0 allows remote attackers to execute arbitrary commands via unknown vectors, related to a \"command injection\" issue.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c6f4-qxqh-qjw2/GHSA-c6f4-qxqh-qjw2.json b/advisories/unreviewed/2022/05/GHSA-c6f4-qxqh-qjw2/GHSA-c6f4-qxqh-qjw2.json index fc273557b03..9bd0455b862 100644 --- a/advisories/unreviewed/2022/05/GHSA-c6f4-qxqh-qjw2/GHSA-c6f4-qxqh-qjw2.json +++ b/advisories/unreviewed/2022/05/GHSA-c6f4-qxqh-qjw2/GHSA-c6f4-qxqh-qjw2.json @@ -7,12 +7,8 @@ "CVE-2011-0462" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the login page in the webui component in SUSE openSUSE Build Service (OBS) before 2.1.6 allow remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c7jj-cg79-r337/GHSA-c7jj-cg79-r337.json b/advisories/unreviewed/2022/05/GHSA-c7jj-cg79-r337/GHSA-c7jj-cg79-r337.json index fdb9f9a3157..a25e0e0db68 100644 --- a/advisories/unreviewed/2022/05/GHSA-c7jj-cg79-r337/GHSA-c7jj-cg79-r337.json +++ b/advisories/unreviewed/2022/05/GHSA-c7jj-cg79-r337/GHSA-c7jj-cg79-r337.json @@ -7,12 +7,8 @@ "CVE-2011-0500" ], "details": "Buffer overflow in VideoSpirit Pro 1.6.8.1, 1.68, and earlier; and VideoSpirit Lite 1.4.0.1 and possibly other versions; allows user-assisted remote attackers to execute arbitrary code via a VideoSpirit project (.visprj) file containing a valitem element with a long \"value\" attribute, as demonstrated using a valitem with the mp3 name.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-c959-gc22-qqrh/GHSA-c959-gc22-qqrh.json b/advisories/unreviewed/2022/05/GHSA-c959-gc22-qqrh/GHSA-c959-gc22-qqrh.json index c2a5055cfea..fadcc5c3864 100644 --- a/advisories/unreviewed/2022/05/GHSA-c959-gc22-qqrh/GHSA-c959-gc22-qqrh.json +++ b/advisories/unreviewed/2022/05/GHSA-c959-gc22-qqrh/GHSA-c959-gc22-qqrh.json @@ -7,12 +7,8 @@ "CVE-2011-2635" ], "details": "The Cascading Style Sheets (CSS) implementation in Opera before 11.10 allows remote attackers to cause a denial of service (application crash) via vectors involving use of the :hover pseudo-class, in conjunction with transforms, for a floated element.", - "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-cc69-pg9v-6fx9/GHSA-cc69-pg9v-6fx9.json b/advisories/unreviewed/2022/05/GHSA-cc69-pg9v-6fx9/GHSA-cc69-pg9v-6fx9.json index 72241aab0da..1e4b0f14bd1 100644 --- a/advisories/unreviewed/2022/05/GHSA-cc69-pg9v-6fx9/GHSA-cc69-pg9v-6fx9.json +++ b/advisories/unreviewed/2022/05/GHSA-cc69-pg9v-6fx9/GHSA-cc69-pg9v-6fx9.json @@ -7,12 +7,8 @@ "CVE-2010-3780" ], "details": "Dovecot 1.2.x before 1.2.15 allows remote authenticated users to cause a denial of service (master process outage) by simultaneously disconnecting many (1) IMAP or (2) POP3 sessions.", - "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/05/GHSA-ccgc-crp4-f2mf/GHSA-ccgc-crp4-f2mf.json b/advisories/unreviewed/2022/05/GHSA-ccgc-crp4-f2mf/GHSA-ccgc-crp4-f2mf.json index 33d35ec7d74..de10a36791f 100644 --- a/advisories/unreviewed/2022/05/GHSA-ccgc-crp4-f2mf/GHSA-ccgc-crp4-f2mf.json +++ b/advisories/unreviewed/2022/05/GHSA-ccgc-crp4-f2mf/GHSA-ccgc-crp4-f2mf.json @@ -7,12 +7,8 @@ "CVE-2011-1760" ], "details": "utils/opcontrol in OProfile 0.9.6 and earlier might allow local users to conduct eval injection attacks and gain privileges via shell metacharacters in the -e argument.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-ccv6-6h4g-hwwx/GHSA-ccv6-6h4g-hwwx.json b/advisories/unreviewed/2022/05/GHSA-ccv6-6h4g-hwwx/GHSA-ccv6-6h4g-hwwx.json index a57e2a76751..14fc944cc6c 100644 --- a/advisories/unreviewed/2022/05/GHSA-ccv6-6h4g-hwwx/GHSA-ccv6-6h4g-hwwx.json +++ b/advisories/unreviewed/2022/05/GHSA-ccv6-6h4g-hwwx/GHSA-ccv6-6h4g-hwwx.json @@ -7,12 +7,8 @@ "CVE-2010-4590" ], "details": "Cross-site scripting (XSS) vulnerability in HTTP Access Services (HTTP-AS) in the Connection Manager in IBM Lotus Mobile Connect (LMC) before 6.1.4 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cf9j-q6m7-7h5j/GHSA-cf9j-q6m7-7h5j.json b/advisories/unreviewed/2022/05/GHSA-cf9j-q6m7-7h5j/GHSA-cf9j-q6m7-7h5j.json index b0016f9b4cd..8821907c7bf 100644 --- a/advisories/unreviewed/2022/05/GHSA-cf9j-q6m7-7h5j/GHSA-cf9j-q6m7-7h5j.json +++ b/advisories/unreviewed/2022/05/GHSA-cf9j-q6m7-7h5j/GHSA-cf9j-q6m7-7h5j.json @@ -7,12 +7,8 @@ "CVE-2008-4831" ], "details": "Unspecified vulnerability in Adobe ColdFusion 8 and 8.0.1 and ColdFusion MX 7.0.2 allows local users to bypass sandbox restrictions, and obtain sensitive information or possibly gain privileges, via unknown vectors.", - "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-cfqq-pjcg-35hp/GHSA-cfqq-pjcg-35hp.json b/advisories/unreviewed/2022/05/GHSA-cfqq-pjcg-35hp/GHSA-cfqq-pjcg-35hp.json index 1b5d5904bbd..a6668c2c62a 100644 --- a/advisories/unreviewed/2022/05/GHSA-cfqq-pjcg-35hp/GHSA-cfqq-pjcg-35hp.json +++ b/advisories/unreviewed/2022/05/GHSA-cfqq-pjcg-35hp/GHSA-cfqq-pjcg-35hp.json @@ -7,12 +7,8 @@ "CVE-2010-4582" ], "details": "Opera before 11.00 does not properly handle security policies during updates to extensions, which might allow remote attackers to bypass intended access restrictions via unspecified vectors.", - "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-ch7m-4fh6-r3f2/GHSA-ch7m-4fh6-r3f2.json b/advisories/unreviewed/2022/05/GHSA-ch7m-4fh6-r3f2/GHSA-ch7m-4fh6-r3f2.json index 984074b319b..f0c6603c621 100644 --- a/advisories/unreviewed/2022/05/GHSA-ch7m-4fh6-r3f2/GHSA-ch7m-4fh6-r3f2.json +++ b/advisories/unreviewed/2022/05/GHSA-ch7m-4fh6-r3f2/GHSA-ch7m-4fh6-r3f2.json @@ -7,12 +7,8 @@ "CVE-2011-1906" ], "details": "Trustwave WebDefend Enterprise before 5.0 7.01.903-1.4 stores specific user-account credentials in a MySQL database, which makes it easier for remote attackers to read the event collection table via requests to the management port, a different vulnerability than CVE-2011-0756.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-chq8-qh5h-rj79/GHSA-chq8-qh5h-rj79.json b/advisories/unreviewed/2022/05/GHSA-chq8-qh5h-rj79/GHSA-chq8-qh5h-rj79.json index 538b19f7125..63aec96890e 100644 --- a/advisories/unreviewed/2022/05/GHSA-chq8-qh5h-rj79/GHSA-chq8-qh5h-rj79.json +++ b/advisories/unreviewed/2022/05/GHSA-chq8-qh5h-rj79/GHSA-chq8-qh5h-rj79.json @@ -7,12 +7,8 @@ "CVE-2011-2638" ], "details": "Unspecified vulnerability in Opera before 11.10 allows remote attackers to cause a denial of service (application crash) via unknown content on a web page, as demonstrated by games on zylom.com.", - "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-chrw-h7h9-vx3f/GHSA-chrw-h7h9-vx3f.json b/advisories/unreviewed/2022/05/GHSA-chrw-h7h9-vx3f/GHSA-chrw-h7h9-vx3f.json index db6f2d912b1..62800fe37b1 100644 --- a/advisories/unreviewed/2022/05/GHSA-chrw-h7h9-vx3f/GHSA-chrw-h7h9-vx3f.json +++ b/advisories/unreviewed/2022/05/GHSA-chrw-h7h9-vx3f/GHSA-chrw-h7h9-vx3f.json @@ -7,12 +7,8 @@ "CVE-2011-0614" ], "details": "Buffer overflow in Adobe Audition 3.0.1 and earlier allows remote attackers to cause a denial of service (memory corruption and application crash) or possibly execute arbitrary code via a crafted Audition Session (aka .ses) file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-chx5-fg8j-vxpv/GHSA-chx5-fg8j-vxpv.json b/advisories/unreviewed/2022/05/GHSA-chx5-fg8j-vxpv/GHSA-chx5-fg8j-vxpv.json index e017ff1e6f5..7eaf2255589 100644 --- a/advisories/unreviewed/2022/05/GHSA-chx5-fg8j-vxpv/GHSA-chx5-fg8j-vxpv.json +++ b/advisories/unreviewed/2022/05/GHSA-chx5-fg8j-vxpv/GHSA-chx5-fg8j-vxpv.json @@ -7,12 +7,8 @@ "CVE-2010-4193" ], "details": "Adobe Shockwave Player before 11.5.9.620 does not properly validate unspecified input data, which allows attackers to execute arbitrary code via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cj5p-j8v6-f438/GHSA-cj5p-j8v6-f438.json b/advisories/unreviewed/2022/05/GHSA-cj5p-j8v6-f438/GHSA-cj5p-j8v6-f438.json index 841e9d47658..68175203318 100644 --- a/advisories/unreviewed/2022/05/GHSA-cj5p-j8v6-f438/GHSA-cj5p-j8v6-f438.json +++ b/advisories/unreviewed/2022/05/GHSA-cj5p-j8v6-f438/GHSA-cj5p-j8v6-f438.json @@ -7,12 +7,8 @@ "CVE-2010-4389" ], "details": "Heap-based buffer overflow in the cook codec in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.5, and Linux RealPlayer 11.0.2.1744 allows remote attackers to execute arbitrary code via unspecified data in the initialization buffer.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cjh7-46ch-hp83/GHSA-cjh7-46ch-hp83.json b/advisories/unreviewed/2022/05/GHSA-cjh7-46ch-hp83/GHSA-cjh7-46ch-hp83.json index 5d044c82123..5a257d8422c 100644 --- a/advisories/unreviewed/2022/05/GHSA-cjh7-46ch-hp83/GHSA-cjh7-46ch-hp83.json +++ b/advisories/unreviewed/2022/05/GHSA-cjh7-46ch-hp83/GHSA-cjh7-46ch-hp83.json @@ -7,12 +7,8 @@ "CVE-2011-0211" ], "details": "Integer overflow in QuickTime in Apple Mac OS X before 10.6.8 allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted movie 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/05/GHSA-cjr4-fm4c-52m9/GHSA-cjr4-fm4c-52m9.json b/advisories/unreviewed/2022/05/GHSA-cjr4-fm4c-52m9/GHSA-cjr4-fm4c-52m9.json index 56494a1a432..9c498a96238 100644 --- a/advisories/unreviewed/2022/05/GHSA-cjr4-fm4c-52m9/GHSA-cjr4-fm4c-52m9.json +++ b/advisories/unreviewed/2022/05/GHSA-cjr4-fm4c-52m9/GHSA-cjr4-fm4c-52m9.json @@ -7,12 +7,8 @@ "CVE-2011-1821" ], "details": "IBM Tivoli Directory Server (TDS) 5.2 before 5.2.0.5-TIV-ITDS-IF0010 on Windows allows remote authenticated users to cause a denial of service (daemon hang) via a cn=changelog search.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-cq27-jh5r-c8pc/GHSA-cq27-jh5r-c8pc.json b/advisories/unreviewed/2022/05/GHSA-cq27-jh5r-c8pc/GHSA-cq27-jh5r-c8pc.json index 9f769258202..c7f09098fb3 100644 --- a/advisories/unreviewed/2022/05/GHSA-cq27-jh5r-c8pc/GHSA-cq27-jh5r-c8pc.json +++ b/advisories/unreviewed/2022/05/GHSA-cq27-jh5r-c8pc/GHSA-cq27-jh5r-c8pc.json @@ -7,12 +7,8 @@ "CVE-2010-2788" ], "details": "Cross-site scripting (XSS) vulnerability in profileinfo.php in MediaWiki before 1.15.5, when wgEnableProfileInfo is enabled, allows remote attackers to inject arbitrary web script or HTML via the filter parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cr78-h7qp-5hm4/GHSA-cr78-h7qp-5hm4.json b/advisories/unreviewed/2022/05/GHSA-cr78-h7qp-5hm4/GHSA-cr78-h7qp-5hm4.json index 183a03b044b..babbe0a3f50 100644 --- a/advisories/unreviewed/2022/05/GHSA-cr78-h7qp-5hm4/GHSA-cr78-h7qp-5hm4.json +++ b/advisories/unreviewed/2022/05/GHSA-cr78-h7qp-5hm4/GHSA-cr78-h7qp-5hm4.json @@ -7,12 +7,8 @@ "CVE-2011-1651" ], "details": "Cisco IOS XR 3.9.x and 4.0.x before 4.0.3 and 4.1.x before 4.1.1, when an SPA interface processor is installed, allows remote attackers to cause a denial of service (device reload) via a crafted IPv4 packet, aka Bug ID CSCto45095.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-crgf-qf5f-9xvv/GHSA-crgf-qf5f-9xvv.json b/advisories/unreviewed/2022/05/GHSA-crgf-qf5f-9xvv/GHSA-crgf-qf5f-9xvv.json index c2b02ccbb80..1273d5b48d1 100644 --- a/advisories/unreviewed/2022/05/GHSA-crgf-qf5f-9xvv/GHSA-crgf-qf5f-9xvv.json +++ b/advisories/unreviewed/2022/05/GHSA-crgf-qf5f-9xvv/GHSA-crgf-qf5f-9xvv.json @@ -7,12 +7,8 @@ "CVE-2010-4406" ], "details": "Directory traversal vulnerability in gallery.php in Brunetton LittlePhpGallery 1.0.2, when magic_quotes_gpc is disabled, allows remote attackers to list, include, and execute arbitrary local files via a ..// (dot dot slash slash) in the repertoire parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cwj6-r3ph-3rpm/GHSA-cwj6-r3ph-3rpm.json b/advisories/unreviewed/2022/05/GHSA-cwj6-r3ph-3rpm/GHSA-cwj6-r3ph-3rpm.json index 7e85745aa77..3f311c11013 100644 --- a/advisories/unreviewed/2022/05/GHSA-cwj6-r3ph-3rpm/GHSA-cwj6-r3ph-3rpm.json +++ b/advisories/unreviewed/2022/05/GHSA-cwj6-r3ph-3rpm/GHSA-cwj6-r3ph-3rpm.json @@ -7,12 +7,8 @@ "CVE-2008-5413" ], "details": "PerfServlet in the PMI/Performance Tools component in IBM WebSphere Application Server (WAS) 7 before 7.0.0.1 allows attackers to obtain sensitive information by reading the (1) systemout.log and (2) ffdc files. NOTE: this is probably a duplicate of CVE-2009-0434.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-cx32-89m2-9pg8/GHSA-cx32-89m2-9pg8.json b/advisories/unreviewed/2022/05/GHSA-cx32-89m2-9pg8/GHSA-cx32-89m2-9pg8.json index a767afd77b5..76cc113f148 100644 --- a/advisories/unreviewed/2022/05/GHSA-cx32-89m2-9pg8/GHSA-cx32-89m2-9pg8.json +++ b/advisories/unreviewed/2022/05/GHSA-cx32-89m2-9pg8/GHSA-cx32-89m2-9pg8.json @@ -7,12 +7,8 @@ "CVE-2011-1048" ], "details": "SQL injection vulnerability in product.php in MihanTools 1.33 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-cxc8-98jf-gx9h/GHSA-cxc8-98jf-gx9h.json b/advisories/unreviewed/2022/05/GHSA-cxc8-98jf-gx9h/GHSA-cxc8-98jf-gx9h.json index eb4c51550cb..c499abf6947 100644 --- a/advisories/unreviewed/2022/05/GHSA-cxc8-98jf-gx9h/GHSA-cxc8-98jf-gx9h.json +++ b/advisories/unreviewed/2022/05/GHSA-cxc8-98jf-gx9h/GHSA-cxc8-98jf-gx9h.json @@ -7,12 +7,8 @@ "CVE-2010-2523" ], "details": "Multiple buffer overflows in ha.c in the mipv6 daemon in UMIP 0.4 allow remote attackers to have an unspecified impact via a crafted (1) ND_OPT_PREFIX_INFORMATION or (2) ND_OPT_HOME_AGENT_INFO packet.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f3pm-2c82-x85g/GHSA-f3pm-2c82-x85g.json b/advisories/unreviewed/2022/05/GHSA-f3pm-2c82-x85g/GHSA-f3pm-2c82-x85g.json index 0ec634cc8db..0dad01bae5f 100644 --- a/advisories/unreviewed/2022/05/GHSA-f3pm-2c82-x85g/GHSA-f3pm-2c82-x85g.json +++ b/advisories/unreviewed/2022/05/GHSA-f3pm-2c82-x85g/GHSA-f3pm-2c82-x85g.json @@ -7,12 +7,8 @@ "CVE-2011-1924" ], "details": "Buffer overflow in the policy_summarize function in or/policies.c in Tor before 0.2.1.30 allows remote attackers to cause a denial of service (directory authority crash) via a crafted policy that triggers creation of a long port list.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f3xv-mhh7-vg2v/GHSA-f3xv-mhh7-vg2v.json b/advisories/unreviewed/2022/05/GHSA-f3xv-mhh7-vg2v/GHSA-f3xv-mhh7-vg2v.json index a5b41d81a18..2b8b2e68f7e 100644 --- a/advisories/unreviewed/2022/05/GHSA-f3xv-mhh7-vg2v/GHSA-f3xv-mhh7-vg2v.json +++ b/advisories/unreviewed/2022/05/GHSA-f3xv-mhh7-vg2v/GHSA-f3xv-mhh7-vg2v.json @@ -7,12 +7,8 @@ "CVE-2011-3381" ], "details": "Cross-site request forgery (CSRF) vulnerability in Phorum before 5.2.16 allows remote attackers to hijack the authentication of unspecified victims via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f57x-89fq-rhwp/GHSA-f57x-89fq-rhwp.json b/advisories/unreviewed/2022/05/GHSA-f57x-89fq-rhwp/GHSA-f57x-89fq-rhwp.json index bc0ea6821b4..c792a713ddf 100644 --- a/advisories/unreviewed/2022/05/GHSA-f57x-89fq-rhwp/GHSA-f57x-89fq-rhwp.json +++ b/advisories/unreviewed/2022/05/GHSA-f57x-89fq-rhwp/GHSA-f57x-89fq-rhwp.json @@ -7,12 +7,8 @@ "CVE-2011-1856" ], "details": "Cross-site scripting (XSS) vulnerability in HP Business Availability Center (BAC) 8.06 and earlier allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f58w-7g2m-rjqc/GHSA-f58w-7g2m-rjqc.json b/advisories/unreviewed/2022/05/GHSA-f58w-7g2m-rjqc/GHSA-f58w-7g2m-rjqc.json index 63743e981ac..5fe057f0f22 100644 --- a/advisories/unreviewed/2022/05/GHSA-f58w-7g2m-rjqc/GHSA-f58w-7g2m-rjqc.json +++ b/advisories/unreviewed/2022/05/GHSA-f58w-7g2m-rjqc/GHSA-f58w-7g2m-rjqc.json @@ -7,12 +7,8 @@ "CVE-2010-4731" ], "details": "Absolute path traversal vulnerability in cgi-bin/read.cgi in WebSCADA WS100 and WS200, Easy Connect EC150, Modbus RTU - TCP Gateway MB100, and Serial Ethernet Server SS100 on the IntelliCom NetBiter NB100 and NB200 platforms allows remote authenticated administrators to read arbitrary files via a full pathname in the file parameter, a different vulnerability than CVE-2009-4463.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f6fc-pffh-c6vq/GHSA-f6fc-pffh-c6vq.json b/advisories/unreviewed/2022/05/GHSA-f6fc-pffh-c6vq/GHSA-f6fc-pffh-c6vq.json index 0afea4608b7..9975bb48dc8 100644 --- a/advisories/unreviewed/2022/05/GHSA-f6fc-pffh-c6vq/GHSA-f6fc-pffh-c6vq.json +++ b/advisories/unreviewed/2022/05/GHSA-f6fc-pffh-c6vq/GHSA-f6fc-pffh-c6vq.json @@ -7,12 +7,8 @@ "CVE-2010-4390" ], "details": "Multiple heap-based buffer overflows in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.5, and Linux RealPlayer 11.0.2.1744 allow remote attackers to have an unspecified impact via a crafted header in an IVR file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f6wx-7298-mhrh/GHSA-f6wx-7298-mhrh.json b/advisories/unreviewed/2022/05/GHSA-f6wx-7298-mhrh/GHSA-f6wx-7298-mhrh.json index 9aac4992420..0e1afafaafd 100644 --- a/advisories/unreviewed/2022/05/GHSA-f6wx-7298-mhrh/GHSA-f6wx-7298-mhrh.json +++ b/advisories/unreviewed/2022/05/GHSA-f6wx-7298-mhrh/GHSA-f6wx-7298-mhrh.json @@ -7,12 +7,8 @@ "CVE-2010-1804" ], "details": "Unspecified vulnerability in the network bridge functionality on the Apple Time Capsule, AirPort Extreme Base Station, and AirPort Express Base Station with firmware before 7.5.2 allows remote attackers to cause a denial of service (networking outage) via a crafted DHCP reply.", - "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-f7rp-3ppx-hhqw/GHSA-f7rp-3ppx-hhqw.json b/advisories/unreviewed/2022/05/GHSA-f7rp-3ppx-hhqw/GHSA-f7rp-3ppx-hhqw.json index b2daae24197..932458bd7cb 100644 --- a/advisories/unreviewed/2022/05/GHSA-f7rp-3ppx-hhqw/GHSA-f7rp-3ppx-hhqw.json +++ b/advisories/unreviewed/2022/05/GHSA-f7rp-3ppx-hhqw/GHSA-f7rp-3ppx-hhqw.json @@ -7,12 +7,8 @@ "CVE-2010-2522" ], "details": "The mipv6 daemon in UMIP 0.4 does not verify that netlink messages originated in the kernel, which allows local users to spoof netlink socket communication via a crafted unicast message.", - "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/05/GHSA-f86c-6r6m-cg5v/GHSA-f86c-6r6m-cg5v.json b/advisories/unreviewed/2022/05/GHSA-f86c-6r6m-cg5v/GHSA-f86c-6r6m-cg5v.json index 64d6c717ce2..57182ce3170 100644 --- a/advisories/unreviewed/2022/05/GHSA-f86c-6r6m-cg5v/GHSA-f86c-6r6m-cg5v.json +++ b/advisories/unreviewed/2022/05/GHSA-f86c-6r6m-cg5v/GHSA-f86c-6r6m-cg5v.json @@ -7,12 +7,8 @@ "CVE-2011-2612" ], "details": "Unspecified vulnerability in Opera before 11.50 allows remote attackers to cause a denial of service (application crash) via unknown content on a web page, as demonstrated by progorod.ru.", - "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-f988-7h8q-c8xr/GHSA-f988-7h8q-c8xr.json b/advisories/unreviewed/2022/05/GHSA-f988-7h8q-c8xr/GHSA-f988-7h8q-c8xr.json index 872dbe5618f..046cfa966c2 100644 --- a/advisories/unreviewed/2022/05/GHSA-f988-7h8q-c8xr/GHSA-f988-7h8q-c8xr.json +++ b/advisories/unreviewed/2022/05/GHSA-f988-7h8q-c8xr/GHSA-f988-7h8q-c8xr.json @@ -7,12 +7,8 @@ "CVE-2010-4741" ], "details": "Stack-based buffer overflow in MDMUtil.dll in MDMTool.exe in MDM Tool before 2.3 in Moxa Device Manager allows remote MDM Gateways to execute arbitrary code via crafted data in a session on TCP port 54321.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-f9qx-m7vq-q7ph/GHSA-f9qx-m7vq-q7ph.json b/advisories/unreviewed/2022/05/GHSA-f9qx-m7vq-q7ph/GHSA-f9qx-m7vq-q7ph.json index 9e130cb08ba..eafe1b9b8b1 100644 --- a/advisories/unreviewed/2022/05/GHSA-f9qx-m7vq-q7ph/GHSA-f9qx-m7vq-q7ph.json +++ b/advisories/unreviewed/2022/05/GHSA-f9qx-m7vq-q7ph/GHSA-f9qx-m7vq-q7ph.json @@ -7,12 +7,8 @@ "CVE-2008-4646" ], "details": "The Websense Reporter Module in Websense Enterprise 6.3.2 stores the SQL database system administrator password in plaintext in CreateDbInstall.log, which allows local users to gain privileges to the database.", - "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/05/GHSA-fccx-q959-f7g9/GHSA-fccx-q959-f7g9.json b/advisories/unreviewed/2022/05/GHSA-fccx-q959-f7g9/GHSA-fccx-q959-f7g9.json index 874b0d4a13f..82f655aab20 100644 --- a/advisories/unreviewed/2022/05/GHSA-fccx-q959-f7g9/GHSA-fccx-q959-f7g9.json +++ b/advisories/unreviewed/2022/05/GHSA-fccx-q959-f7g9/GHSA-fccx-q959-f7g9.json @@ -7,12 +7,8 @@ "CVE-2011-0278" ], "details": "Unspecified vulnerability in HP Web Jetadmin 10.2 Service Release 3 and 4 allows local users to bypass intended access restrictions via unknown vectors.", - "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-fcm8-m55c-7v4r/GHSA-fcm8-m55c-7v4r.json b/advisories/unreviewed/2022/05/GHSA-fcm8-m55c-7v4r/GHSA-fcm8-m55c-7v4r.json index 173c33bdee0..36b4a9c3990 100644 --- a/advisories/unreviewed/2022/05/GHSA-fcm8-m55c-7v4r/GHSA-fcm8-m55c-7v4r.json +++ b/advisories/unreviewed/2022/05/GHSA-fcm8-m55c-7v4r/GHSA-fcm8-m55c-7v4r.json @@ -7,12 +7,8 @@ "CVE-2011-1155" ], "details": "The writeState function in logrotate.c in logrotate 3.7.9 and earlier might allow context-dependent attackers to cause a denial of service (rotation outage) via a (1) \\n (newline) or (2) \\ (backslash) character in a log filename, as demonstrated by a filename that is automatically constructed on the basis of a hostname or virtual machine name.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -192,9 +188,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-ffv3-68jw-q8m7/GHSA-ffv3-68jw-q8m7.json b/advisories/unreviewed/2022/05/GHSA-ffv3-68jw-q8m7/GHSA-ffv3-68jw-q8m7.json index cd06778ecf7..efcf66ba8fe 100644 --- a/advisories/unreviewed/2022/05/GHSA-ffv3-68jw-q8m7/GHSA-ffv3-68jw-q8m7.json +++ b/advisories/unreviewed/2022/05/GHSA-ffv3-68jw-q8m7/GHSA-ffv3-68jw-q8m7.json @@ -7,12 +7,8 @@ "CVE-2011-0180" ], "details": "Integer overflow in HFS in Apple Mac OS X before 10.6.7 allows local users to read arbitrary (1) HFS, (2) HFS+, or (3) HFS+J files via a crafted F_READBOOTSTRAP ioctl call.", - "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-ffvc-g9gh-g33r/GHSA-ffvc-g9gh-g33r.json b/advisories/unreviewed/2022/05/GHSA-ffvc-g9gh-g33r/GHSA-ffvc-g9gh-g33r.json index da041dd2c20..828c36d4687 100644 --- a/advisories/unreviewed/2022/05/GHSA-ffvc-g9gh-g33r/GHSA-ffvc-g9gh-g33r.json +++ b/advisories/unreviewed/2022/05/GHSA-ffvc-g9gh-g33r/GHSA-ffvc-g9gh-g33r.json @@ -7,12 +7,8 @@ "CVE-2011-0943" ], "details": "Cisco IOS XR 3.8.3, 3.8.4, and 3.9.1 allows remote attackers to cause a denial of service (NetIO process restart or device reload) via a crafted IPv4 packet, aka Bug ID CSCth44147.", - "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-ffxw-f5f8-xhhf/GHSA-ffxw-f5f8-xhhf.json b/advisories/unreviewed/2022/05/GHSA-ffxw-f5f8-xhhf/GHSA-ffxw-f5f8-xhhf.json index 48577f91477..d698cdffe5a 100644 --- a/advisories/unreviewed/2022/05/GHSA-ffxw-f5f8-xhhf/GHSA-ffxw-f5f8-xhhf.json +++ b/advisories/unreviewed/2022/05/GHSA-ffxw-f5f8-xhhf/GHSA-ffxw-f5f8-xhhf.json @@ -7,12 +7,8 @@ "CVE-2010-4588" ], "details": "The WBEMSingleView.ocx ActiveX control 1.50.1131.0 in Microsoft WMI Administrative Tools 1.1 and earlier allows remote attackers to execute arbitrary code via a crafted argument to the ReleaseContext method, a different vector than CVE-2010-3973, possibly an untrusted pointer dereference.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fggx-77cq-hgm9/GHSA-fggx-77cq-hgm9.json b/advisories/unreviewed/2022/05/GHSA-fggx-77cq-hgm9/GHSA-fggx-77cq-hgm9.json index da77f272d1d..12f51bcd6d2 100644 --- a/advisories/unreviewed/2022/05/GHSA-fggx-77cq-hgm9/GHSA-fggx-77cq-hgm9.json +++ b/advisories/unreviewed/2022/05/GHSA-fggx-77cq-hgm9/GHSA-fggx-77cq-hgm9.json @@ -7,12 +7,8 @@ "CVE-2008-5001" ], "details": "Multiple stack-based buffer overflows in multiple functions in vncviewer/FileTransfer.cpp in vncviewer for UltraVNC 1.0.2 and 1.0.4 before 01252008, when in LISTENING mode or when using the DSM plugin, allow remote attackers to cause a denial of service (crash) and possibly execute arbitrary code via unspecified parameters, a different issue than CVE-2008-0610.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fhp4-j3q7-wj4j/GHSA-fhp4-j3q7-wj4j.json b/advisories/unreviewed/2022/05/GHSA-fhp4-j3q7-wj4j/GHSA-fhp4-j3q7-wj4j.json index f91b20dbe94..03b62feb0cf 100644 --- a/advisories/unreviewed/2022/05/GHSA-fhp4-j3q7-wj4j/GHSA-fhp4-j3q7-wj4j.json +++ b/advisories/unreviewed/2022/05/GHSA-fhp4-j3q7-wj4j/GHSA-fhp4-j3q7-wj4j.json @@ -7,12 +7,8 @@ "CVE-2010-4549" ], "details": "IBM Lotus Notes Traveler before 8.5.1.3 on the Nokia s60 device successfully performs a Replace Data operation for a prohibited application, which allows remote authenticated users to bypass intended access restrictions via this operation.", - "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-fhxx-pw5c-g2gc/GHSA-fhxx-pw5c-g2gc.json b/advisories/unreviewed/2022/05/GHSA-fhxx-pw5c-g2gc/GHSA-fhxx-pw5c-g2gc.json index f6750c1a002..e40cb59a92a 100644 --- a/advisories/unreviewed/2022/05/GHSA-fhxx-pw5c-g2gc/GHSA-fhxx-pw5c-g2gc.json +++ b/advisories/unreviewed/2022/05/GHSA-fhxx-pw5c-g2gc/GHSA-fhxx-pw5c-g2gc.json @@ -7,12 +7,8 @@ "CVE-2010-1729" ], "details": "WebKit.dll in WebKit, as used in Safari.exe 4.531.9.1 in Apple Safari, allows remote attackers to cause a denial of service (application crash) via JavaScript that writes sequences in an infinite loop.", - "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-fj3j-c3hf-8gqj/GHSA-fj3j-c3hf-8gqj.json b/advisories/unreviewed/2022/05/GHSA-fj3j-c3hf-8gqj/GHSA-fj3j-c3hf-8gqj.json index 46c4c6f4bc9..ae6eda09706 100644 --- a/advisories/unreviewed/2022/05/GHSA-fj3j-c3hf-8gqj/GHSA-fj3j-c3hf-8gqj.json +++ b/advisories/unreviewed/2022/05/GHSA-fj3j-c3hf-8gqj/GHSA-fj3j-c3hf-8gqj.json @@ -7,12 +7,8 @@ "CVE-2010-4632" ], "details": "Multiple SQL injection vulnerabilities in ASPilot Pilot Cart 7.3 allow remote attackers to execute arbitrary SQL commands via the (1) article parameter to kb.asp, (2) specific parameter to cart.asp, (3) countrycode parameter to contact.asp, and the (4) srch parameter to search.asp. NOTE: the article parameter to pilot.asp is already covered by CVE-2008-2688.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fj5m-5qc8-rw48/GHSA-fj5m-5qc8-rw48.json b/advisories/unreviewed/2022/05/GHSA-fj5m-5qc8-rw48/GHSA-fj5m-5qc8-rw48.json index 16a269f52a9..0ca1103eb5c 100644 --- a/advisories/unreviewed/2022/05/GHSA-fj5m-5qc8-rw48/GHSA-fj5m-5qc8-rw48.json +++ b/advisories/unreviewed/2022/05/GHSA-fj5m-5qc8-rw48/GHSA-fj5m-5qc8-rw48.json @@ -7,12 +7,8 @@ "CVE-2010-4546" ], "details": "IBM Lotus Notes Traveler before 8.5.1.2 does not reject an attachment download request for an e-mail message with a Prevent Copy attribute, which allows remote authenticated users to bypass intended access restrictions via this 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/05/GHSA-fj6x-7jw5-xx6q/GHSA-fj6x-7jw5-xx6q.json b/advisories/unreviewed/2022/05/GHSA-fj6x-7jw5-xx6q/GHSA-fj6x-7jw5-xx6q.json index 1780a98ad2b..7f9ff2cf37f 100644 --- a/advisories/unreviewed/2022/05/GHSA-fj6x-7jw5-xx6q/GHSA-fj6x-7jw5-xx6q.json +++ b/advisories/unreviewed/2022/05/GHSA-fj6x-7jw5-xx6q/GHSA-fj6x-7jw5-xx6q.json @@ -7,12 +7,8 @@ "CVE-2011-0918" ], "details": "Stack-based buffer overflow in the NRouter (aka Router) service in IBM Lotus Domino allows remote attackers to execute arbitrary code via long filenames associated with Content-ID and ATTACH:CID headers in attachments in malformed calendar-request e-mail messages, aka SPR KLYH87LKRE.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fmv9-88mw-756m/GHSA-fmv9-88mw-756m.json b/advisories/unreviewed/2022/05/GHSA-fmv9-88mw-756m/GHSA-fmv9-88mw-756m.json index e9cb3a18e10..61cc4ae8dbc 100644 --- a/advisories/unreviewed/2022/05/GHSA-fmv9-88mw-756m/GHSA-fmv9-88mw-756m.json +++ b/advisories/unreviewed/2022/05/GHSA-fmv9-88mw-756m/GHSA-fmv9-88mw-756m.json @@ -7,12 +7,8 @@ "CVE-2010-2777" ], "details": "Stack-based buffer overflow in the IMAP server component in GroupWise Internet Agent (GWIA) in Novell GroupWise 7.x before 7.0 post-SP4 FTF and 8.x before 8.0 SP2 allows remote attackers to execute arbitrary code via a long mailbox name in a CREATE command.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fph7-34w3-xv6w/GHSA-fph7-34w3-xv6w.json b/advisories/unreviewed/2022/05/GHSA-fph7-34w3-xv6w/GHSA-fph7-34w3-xv6w.json index f82c0d1af6f..76bb37c8829 100644 --- a/advisories/unreviewed/2022/05/GHSA-fph7-34w3-xv6w/GHSA-fph7-34w3-xv6w.json +++ b/advisories/unreviewed/2022/05/GHSA-fph7-34w3-xv6w/GHSA-fph7-34w3-xv6w.json @@ -7,12 +7,8 @@ "CVE-2011-0787" ], "details": "Unspecified vulnerability in the Application Service Level Management component in Oracle Database Server 11.1.0.7 and Enterprise Manager Grid Control allows remote authenticated users to affect confidentiality and integrity via unknown vectors related to Service Level Agreements.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fpmh-3m9h-g5j3/GHSA-fpmh-3m9h-g5j3.json b/advisories/unreviewed/2022/05/GHSA-fpmh-3m9h-g5j3/GHSA-fpmh-3m9h-g5j3.json index ae19155762a..c2a7f4ca627 100644 --- a/advisories/unreviewed/2022/05/GHSA-fpmh-3m9h-g5j3/GHSA-fpmh-3m9h-g5j3.json +++ b/advisories/unreviewed/2022/05/GHSA-fpmh-3m9h-g5j3/GHSA-fpmh-3m9h-g5j3.json @@ -7,12 +7,8 @@ "CVE-2010-3793" ], "details": "QuickTime in Apple Mac OS X 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via a crafted Sorenson movie file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fpx6-72jp-cwh4/GHSA-fpx6-72jp-cwh4.json b/advisories/unreviewed/2022/05/GHSA-fpx6-72jp-cwh4/GHSA-fpx6-72jp-cwh4.json index f787e57e67b..d24b938a7f9 100644 --- a/advisories/unreviewed/2022/05/GHSA-fpx6-72jp-cwh4/GHSA-fpx6-72jp-cwh4.json +++ b/advisories/unreviewed/2022/05/GHSA-fpx6-72jp-cwh4/GHSA-fpx6-72jp-cwh4.json @@ -7,12 +7,8 @@ "CVE-2010-4515" ], "details": "Cross-site scripting (XSS) vulnerability in Citrix Web Interface 5.0, 5.1, and 5.3 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors, a different vulnerability than CVE-2007-6477 and CVE-2009-2454.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fqv9-gc72-4c32/GHSA-fqv9-gc72-4c32.json b/advisories/unreviewed/2022/05/GHSA-fqv9-gc72-4c32/GHSA-fqv9-gc72-4c32.json index cca0a544c8c..8d396d7598b 100644 --- a/advisories/unreviewed/2022/05/GHSA-fqv9-gc72-4c32/GHSA-fqv9-gc72-4c32.json +++ b/advisories/unreviewed/2022/05/GHSA-fqv9-gc72-4c32/GHSA-fqv9-gc72-4c32.json @@ -7,12 +7,8 @@ "CVE-2011-2074" ], "details": "Unspecified vulnerability in the client in Skype 5.x before 5.1.0.922 on Mac OS X allows remote authenticated users to execute arbitrary code or cause a denial of service (application crash) via a crafted message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -48,9 +44,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-fvgj-33fj-2cpg/GHSA-fvgj-33fj-2cpg.json b/advisories/unreviewed/2022/05/GHSA-fvgj-33fj-2cpg/GHSA-fvgj-33fj-2cpg.json index 3be3f075325..8580d8b3c29 100644 --- a/advisories/unreviewed/2022/05/GHSA-fvgj-33fj-2cpg/GHSA-fvgj-33fj-2cpg.json +++ b/advisories/unreviewed/2022/05/GHSA-fvgj-33fj-2cpg/GHSA-fvgj-33fj-2cpg.json @@ -7,12 +7,8 @@ "CVE-2010-4101" ], "details": "Cross-site scripting (XSS) vulnerability in HP Insight Recovery before 6.2 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fwwr-mh49-42xf/GHSA-fwwr-mh49-42xf.json b/advisories/unreviewed/2022/05/GHSA-fwwr-mh49-42xf/GHSA-fwwr-mh49-42xf.json index 6138b6da37c..5b46fa73cfe 100644 --- a/advisories/unreviewed/2022/05/GHSA-fwwr-mh49-42xf/GHSA-fwwr-mh49-42xf.json +++ b/advisories/unreviewed/2022/05/GHSA-fwwr-mh49-42xf/GHSA-fwwr-mh49-42xf.json @@ -7,12 +7,8 @@ "CVE-2010-4392" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.5, RealPlayer Enterprise 2.1.2 and 2.1.3, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allows remote attackers to execute arbitrary code via crafted ImageMap data in a RealMedia file, related to certain improper integer calculations.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fx3c-2ghc-cxfq/GHSA-fx3c-2ghc-cxfq.json b/advisories/unreviewed/2022/05/GHSA-fx3c-2ghc-cxfq/GHSA-fx3c-2ghc-cxfq.json index efd718a0385..426582b52bf 100644 --- a/advisories/unreviewed/2022/05/GHSA-fx3c-2ghc-cxfq/GHSA-fx3c-2ghc-cxfq.json +++ b/advisories/unreviewed/2022/05/GHSA-fx3c-2ghc-cxfq/GHSA-fx3c-2ghc-cxfq.json @@ -7,12 +7,8 @@ "CVE-2011-0178" ], "details": "The FSFindFolder API in CarbonCore in Apple Mac OS X before 10.6.7 provides a world-readable directory in response to a call with the kTemporaryFolderType flag, which allows local users to obtain potentially sensitive information by accessing this directory.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fx3r-2hqp-qj22/GHSA-fx3r-2hqp-qj22.json b/advisories/unreviewed/2022/05/GHSA-fx3r-2hqp-qj22/GHSA-fx3r-2hqp-qj22.json index f09f6dbd35a..5f24d2929fe 100644 --- a/advisories/unreviewed/2022/05/GHSA-fx3r-2hqp-qj22/GHSA-fx3r-2hqp-qj22.json +++ b/advisories/unreviewed/2022/05/GHSA-fx3r-2hqp-qj22/GHSA-fx3r-2hqp-qj22.json @@ -7,12 +7,8 @@ "CVE-2010-4736" ], "details": "SQL injection vulnerability in ECO.asp in GateSoft DocuSafe 4.1.0 and 4.1.2 allows remote attackers to execute arbitrary SQL commands via the ECO_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-fx5j-q77q-679r/GHSA-fx5j-q77q-679r.json b/advisories/unreviewed/2022/05/GHSA-fx5j-q77q-679r/GHSA-fx5j-q77q-679r.json index d97417c3060..d57f3f1e14e 100644 --- a/advisories/unreviewed/2022/05/GHSA-fx5j-q77q-679r/GHSA-fx5j-q77q-679r.json +++ b/advisories/unreviewed/2022/05/GHSA-fx5j-q77q-679r/GHSA-fx5j-q77q-679r.json @@ -7,12 +7,8 @@ "CVE-2011-1129" ], "details": "Cross-site scripting (XSS) vulnerability in the EditNews function in ManageNews.php in Simple Machines Forum (SMF) before 1.1.13, and 2.x before 2.0 RC5, might allow remote authenticated users to inject arbitrary web script or HTML via a save_items action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-fx78-2g59-7rrf/GHSA-fx78-2g59-7rrf.json b/advisories/unreviewed/2022/05/GHSA-fx78-2g59-7rrf/GHSA-fx78-2g59-7rrf.json index f93be12b022..1d6085c35b3 100644 --- a/advisories/unreviewed/2022/05/GHSA-fx78-2g59-7rrf/GHSA-fx78-2g59-7rrf.json +++ b/advisories/unreviewed/2022/05/GHSA-fx78-2g59-7rrf/GHSA-fx78-2g59-7rrf.json @@ -7,12 +7,8 @@ "CVE-2008-4639" ], "details": "jhead.c in Matthias Wandel jhead 2.84 and earlier allows local users to overwrite arbitrary files via a symlink attack on a temporary file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g25c-vj5x-qjvw/GHSA-g25c-vj5x-qjvw.json b/advisories/unreviewed/2022/05/GHSA-g25c-vj5x-qjvw/GHSA-g25c-vj5x-qjvw.json index 11a917a6dfd..6b1aa7cb076 100644 --- a/advisories/unreviewed/2022/05/GHSA-g25c-vj5x-qjvw/GHSA-g25c-vj5x-qjvw.json +++ b/advisories/unreviewed/2022/05/GHSA-g25c-vj5x-qjvw/GHSA-g25c-vj5x-qjvw.json @@ -7,12 +7,8 @@ "CVE-2008-6096" ], "details": "Cross-site scripting (XSS) vulnerability in Juniper NetScreen ScreenOS before 5.4r10, 6.0r6, and 6.1r2 allows remote attackers to inject arbitrary web script or HTML via the user name parameter to the (1) web interface login page or the (2) telnet login page.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g323-87f6-pv6c/GHSA-g323-87f6-pv6c.json b/advisories/unreviewed/2022/05/GHSA-g323-87f6-pv6c/GHSA-g323-87f6-pv6c.json index b60d2efa8a1..a87d7327435 100644 --- a/advisories/unreviewed/2022/05/GHSA-g323-87f6-pv6c/GHSA-g323-87f6-pv6c.json +++ b/advisories/unreviewed/2022/05/GHSA-g323-87f6-pv6c/GHSA-g323-87f6-pv6c.json @@ -7,12 +7,8 @@ "CVE-2011-1931" ], "details": "sp5xdec.c in the Sunplus SP5X JPEG decoder in libavcodec in FFmpeg before 0.6.3 and libav through 0.6.2, as used in VideoLAN VLC media player 1.1.9 and earlier and other products, performs a write operation outside the bounds of an unspecified array, which allows remote attackers to cause a denial of service (memory corruption) or possibly execute arbitrary code via a malformed AMV file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g37h-2hrg-383j/GHSA-g37h-2hrg-383j.json b/advisories/unreviewed/2022/05/GHSA-g37h-2hrg-383j/GHSA-g37h-2hrg-383j.json index 7593a24475d..12e9375b63b 100644 --- a/advisories/unreviewed/2022/05/GHSA-g37h-2hrg-383j/GHSA-g37h-2hrg-383j.json +++ b/advisories/unreviewed/2022/05/GHSA-g37h-2hrg-383j/GHSA-g37h-2hrg-383j.json @@ -7,12 +7,8 @@ "CVE-2010-1842" ], "details": "Buffer overflow in AppKit in Apple Mac OS X 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a bidirectional text string with ellipsis truncation.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g3g4-pfj5-6r3x/GHSA-g3g4-pfj5-6r3x.json b/advisories/unreviewed/2022/05/GHSA-g3g4-pfj5-6r3x/GHSA-g3g4-pfj5-6r3x.json index 89e96986249..925f8074b02 100644 --- a/advisories/unreviewed/2022/05/GHSA-g3g4-pfj5-6r3x/GHSA-g3g4-pfj5-6r3x.json +++ b/advisories/unreviewed/2022/05/GHSA-g3g4-pfj5-6r3x/GHSA-g3g4-pfj5-6r3x.json @@ -7,12 +7,8 @@ "CVE-2011-0798" ], "details": "Unspecified vulnerability in the Portal component in Oracle Fusion Middleware 10.1.2.3 and 11.1.1.2.0 allows remote attackers to affect integrity via unknown vectors related to Midtier Infrastructure.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-g3ph-crp3-36hm/GHSA-g3ph-crp3-36hm.json b/advisories/unreviewed/2022/05/GHSA-g3ph-crp3-36hm/GHSA-g3ph-crp3-36hm.json index b0cf4098d01..3e832045acf 100644 --- a/advisories/unreviewed/2022/05/GHSA-g3ph-crp3-36hm/GHSA-g3ph-crp3-36hm.json +++ b/advisories/unreviewed/2022/05/GHSA-g3ph-crp3-36hm/GHSA-g3ph-crp3-36hm.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-g3v3-6vjp-67qj/GHSA-g3v3-6vjp-67qj.json b/advisories/unreviewed/2022/05/GHSA-g3v3-6vjp-67qj/GHSA-g3v3-6vjp-67qj.json index dab89897fd3..404c1cf189a 100644 --- a/advisories/unreviewed/2022/05/GHSA-g3v3-6vjp-67qj/GHSA-g3v3-6vjp-67qj.json +++ b/advisories/unreviewed/2022/05/GHSA-g3v3-6vjp-67qj/GHSA-g3v3-6vjp-67qj.json @@ -7,12 +7,8 @@ "CVE-2010-3530" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise HCM - HR component in Oracle PeopleSoft and JDEdwards Suite 9.0 Bundle #13 and 9.1 Bundle #3 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-g3wr-qrq6-8x99/GHSA-g3wr-qrq6-8x99.json b/advisories/unreviewed/2022/05/GHSA-g3wr-qrq6-8x99/GHSA-g3wr-qrq6-8x99.json index 6304386e3c6..e11285b9b77 100644 --- a/advisories/unreviewed/2022/05/GHSA-g3wr-qrq6-8x99/GHSA-g3wr-qrq6-8x99.json +++ b/advisories/unreviewed/2022/05/GHSA-g3wr-qrq6-8x99/GHSA-g3wr-qrq6-8x99.json @@ -7,12 +7,8 @@ "CVE-2010-4023" ], "details": "Cross-site scripting (XSS) vulnerability in HP Insight Control Power Management before 6.2 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g5h2-j3qr-h5g8/GHSA-g5h2-j3qr-h5g8.json b/advisories/unreviewed/2022/05/GHSA-g5h2-j3qr-h5g8/GHSA-g5h2-j3qr-h5g8.json index 3e301c3d61b..978349ff4be 100644 --- a/advisories/unreviewed/2022/05/GHSA-g5h2-j3qr-h5g8/GHSA-g5h2-j3qr-h5g8.json +++ b/advisories/unreviewed/2022/05/GHSA-g5h2-j3qr-h5g8/GHSA-g5h2-j3qr-h5g8.json @@ -7,12 +7,8 @@ "CVE-2011-0795" ], "details": "Unspecified vulnerability in the Single Sign On component in Oracle Fusion Middleware 10.1.2.3 allows remote authenticated users to affect integrity via unknown vectors related to Administration and Monitoring.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-g5jp-8pcq-gg3c/GHSA-g5jp-8pcq-gg3c.json b/advisories/unreviewed/2022/05/GHSA-g5jp-8pcq-gg3c/GHSA-g5jp-8pcq-gg3c.json index 4848b961239..73f2c2b0de2 100644 --- a/advisories/unreviewed/2022/05/GHSA-g5jp-8pcq-gg3c/GHSA-g5jp-8pcq-gg3c.json +++ b/advisories/unreviewed/2022/05/GHSA-g5jp-8pcq-gg3c/GHSA-g5jp-8pcq-gg3c.json @@ -7,12 +7,8 @@ "CVE-2008-5312" ], "details": "mailscanner 4.55.10 and other versions before 4.74.16-1 might allow local users to overwrite arbitrary files via a symlink attack on certain temporary files used by the (1) f-prot-autoupdate, (2) clamav-autoupdate, (3) panda-autoupdate.new, (4) trend-autoupdate.new, and (5) rav-autoupdate.new scripts in /etc/MailScanner/autoupdate/, a different vulnerability than CVE-2008-5140.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g62r-fg2h-rgg7/GHSA-g62r-fg2h-rgg7.json b/advisories/unreviewed/2022/05/GHSA-g62r-fg2h-rgg7/GHSA-g62r-fg2h-rgg7.json index 6e5fe019692..55bd313e783 100644 --- a/advisories/unreviewed/2022/05/GHSA-g62r-fg2h-rgg7/GHSA-g62r-fg2h-rgg7.json +++ b/advisories/unreviewed/2022/05/GHSA-g62r-fg2h-rgg7/GHSA-g62r-fg2h-rgg7.json @@ -7,12 +7,8 @@ "CVE-2010-2264" ], "details": "The Cascading Style Sheets (CSS) implementation in WebKit in Apple Safari before 5.0 on Mac OS X 10.5 through 10.6 and Windows, and before 4.1 on Mac OS X 10.4, does not properly handle the :visited pseudo-class, which allows remote attackers to obtain sensitive information about visited web pages via a crafted HTML document.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g6gf-cc36-x6jr/GHSA-g6gf-cc36-x6jr.json b/advisories/unreviewed/2022/05/GHSA-g6gf-cc36-x6jr/GHSA-g6gf-cc36-x6jr.json index 57b9051824f..e826239fb84 100644 --- a/advisories/unreviewed/2022/05/GHSA-g6gf-cc36-x6jr/GHSA-g6gf-cc36-x6jr.json +++ b/advisories/unreviewed/2022/05/GHSA-g6gf-cc36-x6jr/GHSA-g6gf-cc36-x6jr.json @@ -7,12 +7,8 @@ "CVE-2011-2591" ], "details": "Multiple buffer overflows in the Provideo ActiveX controls allow remote attackers to execute arbitrary code via crafted input fields, as demonstrated by (1) a long strIp argument to the voice method in 2way.dll in the alarm 1.0.3.1 ActiveX control, (2) a network response to AXPlayer.ocx in the GMAXPlayer 2.0.8.2 ActiveX control, the (3) UserName or (4) Password parameter to AXPlayer.ocx in the GMAXPlayer 2.0.8.2 ActiveX control, (5) a long Id parameter to the GetString method in PAxPlayer.ocx in the PAxPlayer 3.0.0.9 ActiveX control, or (6) a long strAdr parameter to the ConnectIPCam method in PAxPlayer.ocx in the PAxPlayer 3.0.0.9 ActiveX control.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g752-v9rv-66cg/GHSA-g752-v9rv-66cg.json b/advisories/unreviewed/2022/05/GHSA-g752-v9rv-66cg/GHSA-g752-v9rv-66cg.json index fd4c32dd3fa..715208cf45a 100644 --- a/advisories/unreviewed/2022/05/GHSA-g752-v9rv-66cg/GHSA-g752-v9rv-66cg.json +++ b/advisories/unreviewed/2022/05/GHSA-g752-v9rv-66cg/GHSA-g752-v9rv-66cg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g7mg-5jw3-r33h/GHSA-g7mg-5jw3-r33h.json b/advisories/unreviewed/2022/05/GHSA-g7mg-5jw3-r33h/GHSA-g7mg-5jw3-r33h.json index 8a8cb53cc1a..4e28ca248f8 100644 --- a/advisories/unreviewed/2022/05/GHSA-g7mg-5jw3-r33h/GHSA-g7mg-5jw3-r33h.json +++ b/advisories/unreviewed/2022/05/GHSA-g7mg-5jw3-r33h/GHSA-g7mg-5jw3-r33h.json @@ -7,12 +7,8 @@ "CVE-2010-4839" ], "details": "SQL injection vulnerability in the Event Registration plugin 5.32 and earlier for WordPress allows remote attackers to execute arbitrary SQL commands via the event_id parameter in a register action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g7q5-46vx-g2q5/GHSA-g7q5-46vx-g2q5.json b/advisories/unreviewed/2022/05/GHSA-g7q5-46vx-g2q5/GHSA-g7q5-46vx-g2q5.json index 70b2704c0e0..3b413bdf01b 100644 --- a/advisories/unreviewed/2022/05/GHSA-g7q5-46vx-g2q5/GHSA-g7q5-46vx-g2q5.json +++ b/advisories/unreviewed/2022/05/GHSA-g7q5-46vx-g2q5/GHSA-g7q5-46vx-g2q5.json @@ -7,12 +7,8 @@ "CVE-2011-0194" ], "details": "Integer overflow in ImageIO in Apple Mac OS X 10.6 before 10.6.7 allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted TIFF image with JPEG encoding.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-g7wv-3422-j9xv/GHSA-g7wv-3422-j9xv.json b/advisories/unreviewed/2022/05/GHSA-g7wv-3422-j9xv/GHSA-g7wv-3422-j9xv.json index 87557b4838e..e4564736ac9 100644 --- a/advisories/unreviewed/2022/05/GHSA-g7wv-3422-j9xv/GHSA-g7wv-3422-j9xv.json +++ b/advisories/unreviewed/2022/05/GHSA-g7wv-3422-j9xv/GHSA-g7wv-3422-j9xv.json @@ -7,12 +7,8 @@ "CVE-2010-4321" ], "details": "Stack-based buffer overflow in an ActiveX control in ienipp.ocx in Novell iPrint Client 5.52 allows remote attackers to execute arbitrary code via a long argument to (1) the GetDriverSettings2 method, as reachable by (2) the GetDriverSettings method.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g8f8-5m52-5p35/GHSA-g8f8-5m52-5p35.json b/advisories/unreviewed/2022/05/GHSA-g8f8-5m52-5p35/GHSA-g8f8-5m52-5p35.json index b1c1f1b8191..cf5f3c87d5c 100644 --- a/advisories/unreviewed/2022/05/GHSA-g8f8-5m52-5p35/GHSA-g8f8-5m52-5p35.json +++ b/advisories/unreviewed/2022/05/GHSA-g8f8-5m52-5p35/GHSA-g8f8-5m52-5p35.json @@ -7,12 +7,8 @@ "CVE-2011-1775" ], "details": "The CSecurityTLS::processMsg function in common/rfb/CSecurityTLS.cxx in the vncviewer component in TigerVNC 1.1beta1 does not properly verify the server's X.509 certificate, which allows man-in-the-middle attackers to spoof a TLS VNC server via an arbitrary certificate.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g8vx-p8mm-wv7r/GHSA-g8vx-p8mm-wv7r.json b/advisories/unreviewed/2022/05/GHSA-g8vx-p8mm-wv7r/GHSA-g8vx-p8mm-wv7r.json index 9f2480ff485..f349d4081ee 100644 --- a/advisories/unreviewed/2022/05/GHSA-g8vx-p8mm-wv7r/GHSA-g8vx-p8mm-wv7r.json +++ b/advisories/unreviewed/2022/05/GHSA-g8vx-p8mm-wv7r/GHSA-g8vx-p8mm-wv7r.json @@ -7,12 +7,8 @@ "CVE-2010-3542" ], "details": "Unspecified vulnerability in Oracle Solaris 8, 9, and 10, and OpenSolaris, allows local users to affect confidentiality, related to USB.", - "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-g8xj-qw29-546h/GHSA-g8xj-qw29-546h.json b/advisories/unreviewed/2022/05/GHSA-g8xj-qw29-546h/GHSA-g8xj-qw29-546h.json index 2823ff6f6ef..2c01f89ca11 100644 --- a/advisories/unreviewed/2022/05/GHSA-g8xj-qw29-546h/GHSA-g8xj-qw29-546h.json +++ b/advisories/unreviewed/2022/05/GHSA-g8xj-qw29-546h/GHSA-g8xj-qw29-546h.json @@ -7,12 +7,8 @@ "CVE-2010-2802" ], "details": "Cross-site scripting (XSS) vulnerability in MantisBT before 1.2.2 allows remote authenticated users to inject arbitrary web script or HTML via an HTML document with a .gif filename extension, related to inline attachments.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g96h-vq4g-43r2/GHSA-g96h-vq4g-43r2.json b/advisories/unreviewed/2022/05/GHSA-g96h-vq4g-43r2/GHSA-g96h-vq4g-43r2.json index 0df78167e70..cca45badf1b 100644 --- a/advisories/unreviewed/2022/05/GHSA-g96h-vq4g-43r2/GHSA-g96h-vq4g-43r2.json +++ b/advisories/unreviewed/2022/05/GHSA-g96h-vq4g-43r2/GHSA-g96h-vq4g-43r2.json @@ -7,12 +7,8 @@ "CVE-2010-4235" ], "details": "Format string vulnerability in RealNetworks Helix Server 12.x, 13.x, and 14.x before 14.2, and Helix Mobile Server 12.x, 13.x, and 14.x before 14.2, allows remote attackers to execute arbitrary code via vectors related to the x-wap-profile HTTP header.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g9h5-7rff-phrm/GHSA-g9h5-7rff-phrm.json b/advisories/unreviewed/2022/05/GHSA-g9h5-7rff-phrm/GHSA-g9h5-7rff-phrm.json index a3a869bba42..d1d2b7868a4 100644 --- a/advisories/unreviewed/2022/05/GHSA-g9h5-7rff-phrm/GHSA-g9h5-7rff-phrm.json +++ b/advisories/unreviewed/2022/05/GHSA-g9h5-7rff-phrm/GHSA-g9h5-7rff-phrm.json @@ -7,12 +7,8 @@ "CVE-2011-0372" ], "details": "The CGI implementation on Cisco TelePresence endpoint devices with software 1.2.x through 1.5.x allows remote attackers to execute arbitrary commands via a malformed request, related to \"command injection vulnerabilities,\" aka Bug ID CSCtb31640.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-g9m6-g25v-q5rm/GHSA-g9m6-g25v-q5rm.json b/advisories/unreviewed/2022/05/GHSA-g9m6-g25v-q5rm/GHSA-g9m6-g25v-q5rm.json index 980e3f6b86a..57aac392dbc 100644 --- a/advisories/unreviewed/2022/05/GHSA-g9m6-g25v-q5rm/GHSA-g9m6-g25v-q5rm.json +++ b/advisories/unreviewed/2022/05/GHSA-g9m6-g25v-q5rm/GHSA-g9m6-g25v-q5rm.json @@ -7,12 +7,8 @@ "CVE-2010-3989" ], "details": "Cross-site request forgery (CSRF) vulnerability in HP Insight Control Virtual Machine Management before 6.2 allows remote attackers to hijack the authentication of unspecified victims via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gf2w-q84f-pmmw/GHSA-gf2w-q84f-pmmw.json b/advisories/unreviewed/2022/05/GHSA-gf2w-q84f-pmmw/GHSA-gf2w-q84f-pmmw.json index 3689184dde2..0296b580561 100644 --- a/advisories/unreviewed/2022/05/GHSA-gf2w-q84f-pmmw/GHSA-gf2w-q84f-pmmw.json +++ b/advisories/unreviewed/2022/05/GHSA-gf2w-q84f-pmmw/GHSA-gf2w-q84f-pmmw.json @@ -7,12 +7,8 @@ "CVE-2010-4221" ], "details": "Multiple stack-based buffer overflows in the pr_netio_telnet_gets function in netio.c in ProFTPD before 1.3.3c allow remote attackers to execute arbitrary code via vectors involving a TELNET IAC escape character to a (1) FTP or (2) FTPS server.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gfhg-4w55-8q3g/GHSA-gfhg-4w55-8q3g.json b/advisories/unreviewed/2022/05/GHSA-gfhg-4w55-8q3g/GHSA-gfhg-4w55-8q3g.json index 74733621aad..10dd8738b5a 100644 --- a/advisories/unreviewed/2022/05/GHSA-gfhg-4w55-8q3g/GHSA-gfhg-4w55-8q3g.json +++ b/advisories/unreviewed/2022/05/GHSA-gfhg-4w55-8q3g/GHSA-gfhg-4w55-8q3g.json @@ -7,12 +7,8 @@ "CVE-2008-5911" ], "details": "Multiple buffer overflows in RealNetworks Helix Server and Helix Mobile Server 11.x before 11.1.8 and 12.x before 12.0.1 allow remote attackers to (1) cause a denial of service via three crafted RTSP SETUP commands, or execute arbitrary code via (2) an NTLM authentication request with malformed base64-encoded data, (3) an RTSP DESCRIBE command, or (4) a DataConvertBuffer request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gfvm-x7mf-cgqp/GHSA-gfvm-x7mf-cgqp.json b/advisories/unreviewed/2022/05/GHSA-gfvm-x7mf-cgqp/GHSA-gfvm-x7mf-cgqp.json index ee053140c2d..e9dabd46e11 100644 --- a/advisories/unreviewed/2022/05/GHSA-gfvm-x7mf-cgqp/GHSA-gfvm-x7mf-cgqp.json +++ b/advisories/unreviewed/2022/05/GHSA-gfvm-x7mf-cgqp/GHSA-gfvm-x7mf-cgqp.json @@ -7,12 +7,8 @@ "CVE-2011-0774" ], "details": "PivotX before 2.2.2 allows remote attackers to obtain sensitive information via a direct request to (1) includes/ping.php and (2) includes/spamping.php, which reveals the installation path in an error message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gg3h-wphc-m4pf/GHSA-gg3h-wphc-m4pf.json b/advisories/unreviewed/2022/05/GHSA-gg3h-wphc-m4pf/GHSA-gg3h-wphc-m4pf.json index b5b0dcab494..08a9fcd036c 100644 --- a/advisories/unreviewed/2022/05/GHSA-gg3h-wphc-m4pf/GHSA-gg3h-wphc-m4pf.json +++ b/advisories/unreviewed/2022/05/GHSA-gg3h-wphc-m4pf/GHSA-gg3h-wphc-m4pf.json @@ -7,12 +7,8 @@ "CVE-2011-0892" ], "details": "Cross-site scripting (XSS) vulnerability in HP Diagnostics 7.5x and 8.0x before 8.05.54.225 allows remote attackers to inject arbitrary web script or HTML via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gh7q-c68r-vp9c/GHSA-gh7q-c68r-vp9c.json b/advisories/unreviewed/2022/05/GHSA-gh7q-c68r-vp9c/GHSA-gh7q-c68r-vp9c.json index a5e6481bf77..ded5ef656ea 100644 --- a/advisories/unreviewed/2022/05/GHSA-gh7q-c68r-vp9c/GHSA-gh7q-c68r-vp9c.json +++ b/advisories/unreviewed/2022/05/GHSA-gh7q-c68r-vp9c/GHSA-gh7q-c68r-vp9c.json @@ -7,12 +7,8 @@ "CVE-2010-4768" ], "details": "Open Ticket Request System (OTRS) before 2.3.5 does not properly disable hidden permissions, which allows remote authenticated users to bypass intended queue access restrictions in opportunistic circumstances by visiting a ticket, related to a certain ordering of permission-set and permission-remove operations involving both hidden permissions and other permissions.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-ghjq-vpxg-6x88/GHSA-ghjq-vpxg-6x88.json b/advisories/unreviewed/2022/05/GHSA-ghjq-vpxg-6x88/GHSA-ghjq-vpxg-6x88.json index b80dad971a9..9083d0e648d 100644 --- a/advisories/unreviewed/2022/05/GHSA-ghjq-vpxg-6x88/GHSA-ghjq-vpxg-6x88.json +++ b/advisories/unreviewed/2022/05/GHSA-ghjq-vpxg-6x88/GHSA-ghjq-vpxg-6x88.json @@ -7,12 +7,8 @@ "CVE-2010-3351" ], "details": "startBristol in Bristol 0.60.5 places a zero-length directory name in the LD_LIBRARY_PATH, which allows local users to gain privileges via a Trojan horse shared library in the current working directory.", - "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/05/GHSA-gj3r-w588-cxh9/GHSA-gj3r-w588-cxh9.json b/advisories/unreviewed/2022/05/GHSA-gj3r-w588-cxh9/GHSA-gj3r-w588-cxh9.json index fd01da04915..1294f71a38e 100644 --- a/advisories/unreviewed/2022/05/GHSA-gj3r-w588-cxh9/GHSA-gj3r-w588-cxh9.json +++ b/advisories/unreviewed/2022/05/GHSA-gj3r-w588-cxh9/GHSA-gj3r-w588-cxh9.json @@ -7,12 +7,8 @@ "CVE-2011-1559" ], "details": "Unspecified vulnerability in the IBM Web Interface for Content Management (aka WEBi) 1.0.4 before FP3 has unknown impact and attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gj8h-45rw-mjw2/GHSA-gj8h-45rw-mjw2.json b/advisories/unreviewed/2022/05/GHSA-gj8h-45rw-mjw2/GHSA-gj8h-45rw-mjw2.json index cf4dc58435e..ca9760fc408 100644 --- a/advisories/unreviewed/2022/05/GHSA-gj8h-45rw-mjw2/GHSA-gj8h-45rw-mjw2.json +++ b/advisories/unreviewed/2022/05/GHSA-gj8h-45rw-mjw2/GHSA-gj8h-45rw-mjw2.json @@ -7,12 +7,8 @@ "CVE-2011-1319" ], "details": "The Security component in IBM WebSphere Application Server (WAS) 6.1.0.x before 6.1.0.35 and 7.x before 7.0.0.15 allows remote authenticated users to cause a denial of service (memory consumption) by using a Lightweight Third-Party Authentication (LTPA) token for authentication.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gm4v-77j4-2h42/GHSA-gm4v-77j4-2h42.json b/advisories/unreviewed/2022/05/GHSA-gm4v-77j4-2h42/GHSA-gm4v-77j4-2h42.json index cabeedfc0bb..67ee0c0c46a 100644 --- a/advisories/unreviewed/2022/05/GHSA-gm4v-77j4-2h42/GHSA-gm4v-77j4-2h42.json +++ b/advisories/unreviewed/2022/05/GHSA-gm4v-77j4-2h42/GHSA-gm4v-77j4-2h42.json @@ -7,12 +7,8 @@ "CVE-2011-1547" ], "details": "Multiple stack consumption vulnerabilities in the kernel in NetBSD 4.0, 5.0 before 5.0.3, and 5.1 before 5.1.1, when IPsec is enabled, allow remote attackers to cause a denial of service (memory corruption and panic) or possibly have unspecified other impact via a crafted (1) IPv4 or (2) IPv6 packet with nested IPComp headers.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gm5p-r38w-vvm6/GHSA-gm5p-r38w-vvm6.json b/advisories/unreviewed/2022/05/GHSA-gm5p-r38w-vvm6/GHSA-gm5p-r38w-vvm6.json index 3b68e28f6ed..42344e92957 100644 --- a/advisories/unreviewed/2022/05/GHSA-gm5p-r38w-vvm6/GHSA-gm5p-r38w-vvm6.json +++ b/advisories/unreviewed/2022/05/GHSA-gm5p-r38w-vvm6/GHSA-gm5p-r38w-vvm6.json @@ -7,12 +7,8 @@ "CVE-2011-1334" ], "details": "Cross-site scripting (XSS) vulnerability in Cybozu Office 6, Cybozu Garoon 2.0.0 through 2.1.3, Cybozu Dezie before 6.1, Cybozu MailWise before 3.1, and Cybozu Collaborex before 1.5 allows remote attackers to inject arbitrary web script or HTML via vectors related to \"downloading graphic files from the mail system.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gm8g-8hpq-cm8m/GHSA-gm8g-8hpq-cm8m.json b/advisories/unreviewed/2022/05/GHSA-gm8g-8hpq-cm8m/GHSA-gm8g-8hpq-cm8m.json index 61393bee228..f49617ac567 100644 --- a/advisories/unreviewed/2022/05/GHSA-gm8g-8hpq-cm8m/GHSA-gm8g-8hpq-cm8m.json +++ b/advisories/unreviewed/2022/05/GHSA-gm8g-8hpq-cm8m/GHSA-gm8g-8hpq-cm8m.json @@ -7,12 +7,8 @@ "CVE-2011-0388" ], "details": "Cisco TelePresence Recording Server devices with software 1.6.x and Cisco TelePresence Multipoint Switch (CTMS) devices with software 1.0.x, 1.1.x, 1.5.x, and 1.6.x do not properly restrict remote access to the Java servlet RMI interface, which allows remote attackers to cause a denial of service (memory consumption and web outage) via multiple crafted requests, aka Bug IDs CSCtg35830 and CSCtg35825.", - "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-gmc7-jvv7-w245/GHSA-gmc7-jvv7-w245.json b/advisories/unreviewed/2022/05/GHSA-gmc7-jvv7-w245/GHSA-gmc7-jvv7-w245.json index 5506904ab71..af18b0e270f 100644 --- a/advisories/unreviewed/2022/05/GHSA-gmc7-jvv7-w245/GHSA-gmc7-jvv7-w245.json +++ b/advisories/unreviewed/2022/05/GHSA-gmc7-jvv7-w245/GHSA-gmc7-jvv7-w245.json @@ -7,12 +7,8 @@ "CVE-2010-4481" ], "details": "phpMyAdmin before 3.4.0-beta1 allows remote attackers to bypass authentication and obtain sensitive information via a direct request to phpinfo.php, which calls the phpinfo function.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gmcg-gm76-mg42/GHSA-gmcg-gm76-mg42.json b/advisories/unreviewed/2022/05/GHSA-gmcg-gm76-mg42/GHSA-gmcg-gm76-mg42.json index 3ae6a92c7df..c38c8d3c9a2 100644 --- a/advisories/unreviewed/2022/05/GHSA-gmcg-gm76-mg42/GHSA-gmcg-gm76-mg42.json +++ b/advisories/unreviewed/2022/05/GHSA-gmcg-gm76-mg42/GHSA-gmcg-gm76-mg42.json @@ -7,12 +7,8 @@ "CVE-2011-0466" ], "details": "The API in SUSE openSUSE Build Service (OBS) 2.0.x before 2.0.8 and 2.1.x before 2.1.6 allows attackers to bypass intended write-access restrictions and modify a (1) package or (2) project via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gmgq-q6xf-56fc/GHSA-gmgq-q6xf-56fc.json b/advisories/unreviewed/2022/05/GHSA-gmgq-q6xf-56fc/GHSA-gmgq-q6xf-56fc.json index c674f9308c7..b0761f7792e 100644 --- a/advisories/unreviewed/2022/05/GHSA-gmgq-q6xf-56fc/GHSA-gmgq-q6xf-56fc.json +++ b/advisories/unreviewed/2022/05/GHSA-gmgq-q6xf-56fc/GHSA-gmgq-q6xf-56fc.json @@ -7,12 +7,8 @@ "CVE-2011-0801" ], "details": "Unspecified vulnerability in Oracle Solaris 10 and 11 Express allows local users to affect confidentiality and integrity via unknown vectors related to cp.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gp96-xc8v-v2r9/GHSA-gp96-xc8v-v2r9.json b/advisories/unreviewed/2022/05/GHSA-gp96-xc8v-v2r9/GHSA-gp96-xc8v-v2r9.json index 1950b6ca3af..1fa634bb100 100644 --- a/advisories/unreviewed/2022/05/GHSA-gp96-xc8v-v2r9/GHSA-gp96-xc8v-v2r9.json +++ b/advisories/unreviewed/2022/05/GHSA-gp96-xc8v-v2r9/GHSA-gp96-xc8v-v2r9.json @@ -7,12 +7,8 @@ "CVE-2010-4026" ], "details": "Unspecified vulnerability in the service API in HP Palm webOS 1.4.1 allows local users to gain privileges by leveraging the ability to perform certain service calls.", - "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-gpph-v39p-r2xx/GHSA-gpph-v39p-r2xx.json b/advisories/unreviewed/2022/05/GHSA-gpph-v39p-r2xx/GHSA-gpph-v39p-r2xx.json index d4e8ff93a1d..e79e9893179 100644 --- a/advisories/unreviewed/2022/05/GHSA-gpph-v39p-r2xx/GHSA-gpph-v39p-r2xx.json +++ b/advisories/unreviewed/2022/05/GHSA-gpph-v39p-r2xx/GHSA-gpph-v39p-r2xx.json @@ -7,12 +7,8 @@ "CVE-2011-1312" ], "details": "The Administrative Console component in IBM WebSphere Application Server (WAS) 6.1.0.x before 6.1.0.31 and 7.x before 7.0.0.15 does not prevent modifications of the primary admin id, which allows remote authenticated administrators to bypass intended access restrictions by mapping a (1) user or (2) group to an administrator role.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gpqc-gm4j-fpmh/GHSA-gpqc-gm4j-fpmh.json b/advisories/unreviewed/2022/05/GHSA-gpqc-gm4j-fpmh/GHSA-gpqc-gm4j-fpmh.json index 5b9f5bd5a56..716453176e7 100644 --- a/advisories/unreviewed/2022/05/GHSA-gpqc-gm4j-fpmh/GHSA-gpqc-gm4j-fpmh.json +++ b/advisories/unreviewed/2022/05/GHSA-gpqc-gm4j-fpmh/GHSA-gpqc-gm4j-fpmh.json @@ -7,12 +7,8 @@ "CVE-2011-0613" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in RoboHelp 7 and 8, and RoboHelp Server 7 and 8, allow remote attackers to inject arbitrary web script or HTML via unspecified vectors, related to (1) wf_status.htm and (2) wf_topicfs.htm in RoboHTML/WildFireExt/TemplateStock/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gq57-9rcj-ww96/GHSA-gq57-9rcj-ww96.json b/advisories/unreviewed/2022/05/GHSA-gq57-9rcj-ww96/GHSA-gq57-9rcj-ww96.json index f0ebba99484..72bf299dae7 100644 --- a/advisories/unreviewed/2022/05/GHSA-gq57-9rcj-ww96/GHSA-gq57-9rcj-ww96.json +++ b/advisories/unreviewed/2022/05/GHSA-gq57-9rcj-ww96/GHSA-gq57-9rcj-ww96.json @@ -7,12 +7,8 @@ "CVE-2010-4025" ], "details": "Unspecified vulnerability in Doc Viewer in HP Palm webOS 1.4.1 allows remote attackers to execute arbitrary code via a crafted document, as demonstrated by a Word document.", - "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-gr5x-6f83-c4g4/GHSA-gr5x-6f83-c4g4.json b/advisories/unreviewed/2022/05/GHSA-gr5x-6f83-c4g4/GHSA-gr5x-6f83-c4g4.json index f748ce7b7e6..8a21f1793d5 100644 --- a/advisories/unreviewed/2022/05/GHSA-gr5x-6f83-c4g4/GHSA-gr5x-6f83-c4g4.json +++ b/advisories/unreviewed/2022/05/GHSA-gr5x-6f83-c4g4/GHSA-gr5x-6f83-c4g4.json @@ -7,12 +7,8 @@ "CVE-2010-3073" ], "details": "SSL_Cipher.cpp in EncFS before 1.7.0 does not properly handle integer data sizes when constructing headers intended for randomization of initialization vectors, which makes it easier for local users to obtain sensitive information by defeating cryptographic protection mechanisms.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -72,9 +68,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gr97-95pg-54gj/GHSA-gr97-95pg-54gj.json b/advisories/unreviewed/2022/05/GHSA-gr97-95pg-54gj/GHSA-gr97-95pg-54gj.json index 82d7a3a5d11..cfcabbf3041 100644 --- a/advisories/unreviewed/2022/05/GHSA-gr97-95pg-54gj/GHSA-gr97-95pg-54gj.json +++ b/advisories/unreviewed/2022/05/GHSA-gr97-95pg-54gj/GHSA-gr97-95pg-54gj.json @@ -7,12 +7,8 @@ "CVE-2010-4774" ], "details": "SQL injection vulnerability in pdf.php in AuraCMS 1.62 allows remote attackers to execute arbitrary SQL commands via the id parameter, a different vector than CVE-2007-4804 and CVE-2007-4171.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-grpr-f38p-j58f/GHSA-grpr-f38p-j58f.json b/advisories/unreviewed/2022/05/GHSA-grpr-f38p-j58f/GHSA-grpr-f38p-j58f.json index 6a575ad05b5..ce20298dfb6 100644 --- a/advisories/unreviewed/2022/05/GHSA-grpr-f38p-j58f/GHSA-grpr-f38p-j58f.json +++ b/advisories/unreviewed/2022/05/GHSA-grpr-f38p-j58f/GHSA-grpr-f38p-j58f.json @@ -7,12 +7,8 @@ "CVE-2010-1938" ], "details": "Off-by-one error in the __opiereadrec function in readrec.c in libopie in OPIE 2.4.1-test1 and earlier, as used on FreeBSD 6.4 through 8.1-PRERELEASE and other platforms, allows remote attackers to cause a denial of service (daemon crash) or possibly execute arbitrary code via a long username, as demonstrated by a long USER command to the FreeBSD 8.0 ftpd.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -76,9 +72,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-grxg-fv5c-9v7f/GHSA-grxg-fv5c-9v7f.json b/advisories/unreviewed/2022/05/GHSA-grxg-fv5c-9v7f/GHSA-grxg-fv5c-9v7f.json index d8dc95e24ec..cdfed7fec1f 100644 --- a/advisories/unreviewed/2022/05/GHSA-grxg-fv5c-9v7f/GHSA-grxg-fv5c-9v7f.json +++ b/advisories/unreviewed/2022/05/GHSA-grxg-fv5c-9v7f/GHSA-grxg-fv5c-9v7f.json @@ -7,12 +7,8 @@ "CVE-2011-2181" ], "details": "Multiple SQL injection vulnerabilities in A Really Simple Chat (ARSC) 3.3-rc2 allow remote attackers to execute arbitrary SQL commands via the (1) arsc_user parameter to base/admin/edit_user.php, (2) arsc_layout_id parameter in base/admin/edit_layout.php, or (3) arsc_room parameter to base/admin/edit_room.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-gv4m-989j-rw5p/GHSA-gv4m-989j-rw5p.json b/advisories/unreviewed/2022/05/GHSA-gv4m-989j-rw5p/GHSA-gv4m-989j-rw5p.json index be129b82cce..531aeb5e156 100644 --- a/advisories/unreviewed/2022/05/GHSA-gv4m-989j-rw5p/GHSA-gv4m-989j-rw5p.json +++ b/advisories/unreviewed/2022/05/GHSA-gv4m-989j-rw5p/GHSA-gv4m-989j-rw5p.json @@ -7,12 +7,8 @@ "CVE-2010-4733" ], "details": "WebSCADA WS100 and WS200, Easy Connect EC150, Modbus RTU - TCP Gateway MB100, and Serial Ethernet Server SS100 on the IntelliCom NetBiter NB100 and NB200 platforms have a default username and password, which makes it easier for remote attackers to obtain superadmin access via the web interface, a different vulnerability than CVE-2009-4463.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gw9p-924j-qxp9/GHSA-gw9p-924j-qxp9.json b/advisories/unreviewed/2022/05/GHSA-gw9p-924j-qxp9/GHSA-gw9p-924j-qxp9.json index a3cf33bc829..acdc0fcd479 100644 --- a/advisories/unreviewed/2022/05/GHSA-gw9p-924j-qxp9/GHSA-gw9p-924j-qxp9.json +++ b/advisories/unreviewed/2022/05/GHSA-gw9p-924j-qxp9/GHSA-gw9p-924j-qxp9.json @@ -7,12 +7,8 @@ "CVE-2011-1128" ], "details": "The loadUserSettings function in Load.php in Simple Machines Forum (SMF) before 1.1.13, and 2.x before 2.0 RC5, does not properly handle invalid login attempts, which might make it easier for remote attackers to obtain access or cause a denial of service via a brute-force attack.", - "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-gwgf-gp64-2m7v/GHSA-gwgf-gp64-2m7v.json b/advisories/unreviewed/2022/05/GHSA-gwgf-gp64-2m7v/GHSA-gwgf-gp64-2m7v.json index d553a2b9042..6275c860360 100644 --- a/advisories/unreviewed/2022/05/GHSA-gwgf-gp64-2m7v/GHSA-gwgf-gp64-2m7v.json +++ b/advisories/unreviewed/2022/05/GHSA-gwgf-gp64-2m7v/GHSA-gwgf-gp64-2m7v.json @@ -7,12 +7,8 @@ "CVE-2011-1322" ], "details": "The SOAP with Attachments API for Java (SAAJ) implementation in the Web Services component in IBM WebSphere Application Server (WAS) 6.1.0.x before 6.1.0.37 and 7.x before 7.0.0.15 allows remote attackers to cause a denial of service (memory consumption) via encrypted SOAP messages.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-gxhq-965f-5wv4/GHSA-gxhq-965f-5wv4.json b/advisories/unreviewed/2022/05/GHSA-gxhq-965f-5wv4/GHSA-gxhq-965f-5wv4.json index 605c0ceb058..d861bfc4f76 100644 --- a/advisories/unreviewed/2022/05/GHSA-gxhq-965f-5wv4/GHSA-gxhq-965f-5wv4.json +++ b/advisories/unreviewed/2022/05/GHSA-gxhq-965f-5wv4/GHSA-gxhq-965f-5wv4.json @@ -7,12 +7,8 @@ "CVE-2011-2637" ], "details": "Unspecified vulnerability in Opera before 11.10 allows remote attackers to cause a denial of service (application crash) via unknown content on a web page, as demonstrated by futura-sciences.com, seoptimise.com, and mitosyfraudes.org.", - "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-gxpr-c334-33x7/GHSA-gxpr-c334-33x7.json b/advisories/unreviewed/2022/05/GHSA-gxpr-c334-33x7/GHSA-gxpr-c334-33x7.json index fcbd97b9dfb..b8a5012df05 100644 --- a/advisories/unreviewed/2022/05/GHSA-gxpr-c334-33x7/GHSA-gxpr-c334-33x7.json +++ b/advisories/unreviewed/2022/05/GHSA-gxpr-c334-33x7/GHSA-gxpr-c334-33x7.json @@ -7,12 +7,8 @@ "CVE-2010-4580" ], "details": "Opera before 11.00 does not clear WAP WML form fields after manual navigation to a new web site, which allows remote attackers to obtain sensitive information via an input field that has the same name as an input field on a previously visited web site.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h289-v8rh-2wvj/GHSA-h289-v8rh-2wvj.json b/advisories/unreviewed/2022/05/GHSA-h289-v8rh-2wvj/GHSA-h289-v8rh-2wvj.json index 4bfacad9f89..1c2a5a3400b 100644 --- a/advisories/unreviewed/2022/05/GHSA-h289-v8rh-2wvj/GHSA-h289-v8rh-2wvj.json +++ b/advisories/unreviewed/2022/05/GHSA-h289-v8rh-2wvj/GHSA-h289-v8rh-2wvj.json @@ -7,12 +7,8 @@ "CVE-2010-4208" ], "details": "Cross-site scripting (XSS) vulnerability in the Flash component infrastructure in YUI 2.5.0 through 2.8.1, as used in Bugzilla, Moodle, and other products, allows remote attackers to inject arbitrary web script or HTML via vectors related to uploader/assets/uploader.swf.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h3fj-j9x4-j55p/GHSA-h3fj-j9x4-j55p.json b/advisories/unreviewed/2022/05/GHSA-h3fj-j9x4-j55p/GHSA-h3fj-j9x4-j55p.json index dd803f5d9fd..4e0cbba648a 100644 --- a/advisories/unreviewed/2022/05/GHSA-h3fj-j9x4-j55p/GHSA-h3fj-j9x4-j55p.json +++ b/advisories/unreviewed/2022/05/GHSA-h3fj-j9x4-j55p/GHSA-h3fj-j9x4-j55p.json @@ -7,12 +7,8 @@ "CVE-2010-3923" ], "details": "Untrusted search path vulnerability in AttacheCase before 2.70 allows local users to gain privileges via a Trojan horse executable file in the current working 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/05/GHSA-h4xj-q89f-3gcp/GHSA-h4xj-q89f-3gcp.json b/advisories/unreviewed/2022/05/GHSA-h4xj-q89f-3gcp/GHSA-h4xj-q89f-3gcp.json index fa7b00d2802..38896034c0c 100644 --- a/advisories/unreviewed/2022/05/GHSA-h4xj-q89f-3gcp/GHSA-h4xj-q89f-3gcp.json +++ b/advisories/unreviewed/2022/05/GHSA-h4xj-q89f-3gcp/GHSA-h4xj-q89f-3gcp.json @@ -7,12 +7,8 @@ "CVE-2011-0809" ], "details": "Unspecified vulnerability in the Web ADI component in Oracle E-Business Suite 11.5.10.2, 12.0.6, 12.1.1, 12.1.2, and 12.1.3 allows remote attackers to affect integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-h5x3-vpw2-q4g5/GHSA-h5x3-vpw2-q4g5.json b/advisories/unreviewed/2022/05/GHSA-h5x3-vpw2-q4g5/GHSA-h5x3-vpw2-q4g5.json index 974569c2151..3833546e3cd 100644 --- a/advisories/unreviewed/2022/05/GHSA-h5x3-vpw2-q4g5/GHSA-h5x3-vpw2-q4g5.json +++ b/advisories/unreviewed/2022/05/GHSA-h5x3-vpw2-q4g5/GHSA-h5x3-vpw2-q4g5.json @@ -7,12 +7,8 @@ "CVE-2010-4096" ], "details": "share/ma/keys_for_user in Monkeysphere 0.31 and 0.32 allows local users to execute arbitrary code via unknown manipulations related to the \"monkeysphere-authentication keys-for-user\" command.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h6x5-x352-96r3/GHSA-h6x5-x352-96r3.json b/advisories/unreviewed/2022/05/GHSA-h6x5-x352-96r3/GHSA-h6x5-x352-96r3.json index 3f4ae8a9797..f7c8841d678 100644 --- a/advisories/unreviewed/2022/05/GHSA-h6x5-x352-96r3/GHSA-h6x5-x352-96r3.json +++ b/advisories/unreviewed/2022/05/GHSA-h6x5-x352-96r3/GHSA-h6x5-x352-96r3.json @@ -7,12 +7,8 @@ "CVE-2011-2601" ], "details": "The GPU support functionality in Mac OS X does not properly restrict rendering time, which allows remote attackers to cause a denial of service (desktop hang) via vectors involving WebGL and (1) shader programs or (2) complex 3D geometry, as demonstrated by using Mozilla Firefox or Google Chrome to visit the lots-of-polys-example.html test page in the Khronos WebGL SDK.", - "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-h78c-5wx6-pc6r/GHSA-h78c-5wx6-pc6r.json b/advisories/unreviewed/2022/05/GHSA-h78c-5wx6-pc6r/GHSA-h78c-5wx6-pc6r.json index bd9babe4f34..5c3b395c167 100644 --- a/advisories/unreviewed/2022/05/GHSA-h78c-5wx6-pc6r/GHSA-h78c-5wx6-pc6r.json +++ b/advisories/unreviewed/2022/05/GHSA-h78c-5wx6-pc6r/GHSA-h78c-5wx6-pc6r.json @@ -7,12 +7,8 @@ "CVE-2010-4722" ], "details": "Unspecified vulnerability in the fetch plugin in Smarty before 3.0.2 has unknown impact and remote attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-h7jh-3h8w-h94f/GHSA-h7jh-3h8w-h94f.json b/advisories/unreviewed/2022/05/GHSA-h7jh-3h8w-h94f/GHSA-h7jh-3h8w-h94f.json index 459213ae862..89cdefcd6e3 100644 --- a/advisories/unreviewed/2022/05/GHSA-h7jh-3h8w-h94f/GHSA-h7jh-3h8w-h94f.json +++ b/advisories/unreviewed/2022/05/GHSA-h7jh-3h8w-h94f/GHSA-h7jh-3h8w-h94f.json @@ -7,12 +7,8 @@ "CVE-2010-3999" ], "details": "gnc-test-env in GnuCash 2.3.15 and earlier places a zero-length directory name in the LD_LIBRARY_PATH, which allows local users to gain privileges via a Trojan horse shared library in the current working directory.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -64,9 +60,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-h7q6-v9rj-35qf/GHSA-h7q6-v9rj-35qf.json b/advisories/unreviewed/2022/05/GHSA-h7q6-v9rj-35qf/GHSA-h7q6-v9rj-35qf.json index 9bb36130806..eabded4b56b 100644 --- a/advisories/unreviewed/2022/05/GHSA-h7q6-v9rj-35qf/GHSA-h7q6-v9rj-35qf.json +++ b/advisories/unreviewed/2022/05/GHSA-h7q6-v9rj-35qf/GHSA-h7q6-v9rj-35qf.json @@ -7,12 +7,8 @@ "CVE-2011-1522" ], "details": "Multiple SQL injection vulnerabilities in the Doctrine\\DBAL\\Platforms\\AbstractPlatform::modifyLimitQuery function in Doctrine 1.x before 1.2.4 and 2.x before 2.0.3 allow remote attackers to execute arbitrary SQL commands via the (1) limit or (2) offset field.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h824-9rvv-q77q/GHSA-h824-9rvv-q77q.json b/advisories/unreviewed/2022/05/GHSA-h824-9rvv-q77q/GHSA-h824-9rvv-q77q.json index 34ed3b0be49..29b72d70806 100644 --- a/advisories/unreviewed/2022/05/GHSA-h824-9rvv-q77q/GHSA-h824-9rvv-q77q.json +++ b/advisories/unreviewed/2022/05/GHSA-h824-9rvv-q77q/GHSA-h824-9rvv-q77q.json @@ -7,12 +7,8 @@ "CVE-2011-0514" ], "details": "The RDS service (rds.exe) in HP Data Protector Manager 6.11 allows remote attackers to cause a denial of service (crash) via a packet with a large data size to TCP port 1530.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-h854-753r-9xfr/GHSA-h854-753r-9xfr.json b/advisories/unreviewed/2022/05/GHSA-h854-753r-9xfr/GHSA-h854-753r-9xfr.json index d5137ee547b..691ba9e45fe 100644 --- a/advisories/unreviewed/2022/05/GHSA-h854-753r-9xfr/GHSA-h854-753r-9xfr.json +++ b/advisories/unreviewed/2022/05/GHSA-h854-753r-9xfr/GHSA-h854-753r-9xfr.json @@ -7,12 +7,8 @@ "CVE-2010-4380" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.4, and RealPlayer Enterprise 2.1.2 allows remote attackers to have an unspecified impact via a crafted SOUND file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hc3w-v383-9gm8/GHSA-hc3w-v383-9gm8.json b/advisories/unreviewed/2022/05/GHSA-hc3w-v383-9gm8/GHSA-hc3w-v383-9gm8.json index 7416f504030..ac58977ff1a 100644 --- a/advisories/unreviewed/2022/05/GHSA-hc3w-v383-9gm8/GHSA-hc3w-v383-9gm8.json +++ b/advisories/unreviewed/2022/05/GHSA-hc3w-v383-9gm8/GHSA-hc3w-v383-9gm8.json @@ -7,12 +7,8 @@ "CVE-2010-4830" ], "details": "SQL injection vulnerability in Resumes/TD_RESUME_Indlist.asp in Techno Dreams (T-Dreams) Job Career Package 3.0 allows remote attackers to execute arbitrary SQL commands via the z_Residency parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hcch-2f58-ph8c/GHSA-hcch-2f58-ph8c.json b/advisories/unreviewed/2022/05/GHSA-hcch-2f58-ph8c/GHSA-hcch-2f58-ph8c.json index 13ea01da612..78835f0c6dc 100644 --- a/advisories/unreviewed/2022/05/GHSA-hcch-2f58-ph8c/GHSA-hcch-2f58-ph8c.json +++ b/advisories/unreviewed/2022/05/GHSA-hcch-2f58-ph8c/GHSA-hcch-2f58-ph8c.json @@ -7,12 +7,8 @@ "CVE-2011-0457" ], "details": "Cross-site scripting (XSS) vulnerability in e107 0.7.22 and earlier allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hccp-3jmw-j79m/GHSA-hccp-3jmw-j79m.json b/advisories/unreviewed/2022/05/GHSA-hccp-3jmw-j79m/GHSA-hccp-3jmw-j79m.json index 61c842cdfdf..59c10856486 100644 --- a/advisories/unreviewed/2022/05/GHSA-hccp-3jmw-j79m/GHSA-hccp-3jmw-j79m.json +++ b/advisories/unreviewed/2022/05/GHSA-hccp-3jmw-j79m/GHSA-hccp-3jmw-j79m.json @@ -7,12 +7,8 @@ "CVE-2008-7280" ], "details": "Kernel/System/EmailParser.pm in PostmasterPOP3.pl in Open Ticket Request System (OTRS) before 2.2.7 does not properly handle e-mail messages containing malformed UTF-8 characters, which allows remote attackers to cause a denial of service (e-mail retrieval outage) via a crafted message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hcr5-gw7v-256c/GHSA-hcr5-gw7v-256c.json b/advisories/unreviewed/2022/05/GHSA-hcr5-gw7v-256c/GHSA-hcr5-gw7v-256c.json index 8a94ea6ad19..06f222c7b60 100644 --- a/advisories/unreviewed/2022/05/GHSA-hcr5-gw7v-256c/GHSA-hcr5-gw7v-256c.json +++ b/advisories/unreviewed/2022/05/GHSA-hcr5-gw7v-256c/GHSA-hcr5-gw7v-256c.json @@ -7,12 +7,8 @@ "CVE-2011-0791" ], "details": "Unspecified vulnerability in the Application Object Library component in Oracle E-Business Suite 11.5.10.2, 12.0.6, 12.1.1, 12.1.2, and 12.1.3 allows remote attackers to affect confidentiality via unknown vectors related to Data Export.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-hf78-8m34-fwxp/GHSA-hf78-8m34-fwxp.json b/advisories/unreviewed/2022/05/GHSA-hf78-8m34-fwxp/GHSA-hf78-8m34-fwxp.json index 0f5ac8e3990..f6690eddc5c 100644 --- a/advisories/unreviewed/2022/05/GHSA-hf78-8m34-fwxp/GHSA-hf78-8m34-fwxp.json +++ b/advisories/unreviewed/2022/05/GHSA-hf78-8m34-fwxp/GHSA-hf78-8m34-fwxp.json @@ -7,12 +7,8 @@ "CVE-2011-0920" ], "details": "The Remote Console in IBM Lotus Domino, when a certain unsupported configuration involving UNC share pathnames is used, allows remote attackers to bypass authentication and execute arbitrary code via unspecified vectors, aka SPR PRAD89WGRS.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hfhh-jfhv-rw66/GHSA-hfhh-jfhv-rw66.json b/advisories/unreviewed/2022/05/GHSA-hfhh-jfhv-rw66/GHSA-hfhh-jfhv-rw66.json index 0fd318f3122..3332abc789b 100644 --- a/advisories/unreviewed/2022/05/GHSA-hfhh-jfhv-rw66/GHSA-hfhh-jfhv-rw66.json +++ b/advisories/unreviewed/2022/05/GHSA-hfhh-jfhv-rw66/GHSA-hfhh-jfhv-rw66.json @@ -7,12 +7,8 @@ "CVE-2011-1561" ], "details": "The LDAP login feature in bos.rte.security 6.1.6.4 in IBM AIX 6.1, when ldap_auth is enabled in ldap.cfg, allows remote attackers to bypass authentication via a login attempt with an arbitrary password.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hg35-p8x7-fw5f/GHSA-hg35-p8x7-fw5f.json b/advisories/unreviewed/2022/05/GHSA-hg35-p8x7-fw5f/GHSA-hg35-p8x7-fw5f.json index 28a918edf3c..5669e0e5bd0 100644 --- a/advisories/unreviewed/2022/05/GHSA-hg35-p8x7-fw5f/GHSA-hg35-p8x7-fw5f.json +++ b/advisories/unreviewed/2022/05/GHSA-hg35-p8x7-fw5f/GHSA-hg35-p8x7-fw5f.json @@ -7,12 +7,8 @@ "CVE-2010-3868" ], "details": "Red Hat Certificate System (RHCS) 7.3 and 8 and Dogtag Certificate System do not require authentication for requests to decrypt SCEP one-time PINs, which allows remote attackers to obtain PINs by sniffing the network for SCEP requests and then sending decryption requests to the Certificate Authority component.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hh8r-mv36-fgxg/GHSA-hh8r-mv36-fgxg.json b/advisories/unreviewed/2022/05/GHSA-hh8r-mv36-fgxg/GHSA-hh8r-mv36-fgxg.json index 27a29b6ecc9..3ffbadd4652 100644 --- a/advisories/unreviewed/2022/05/GHSA-hh8r-mv36-fgxg/GHSA-hh8r-mv36-fgxg.json +++ b/advisories/unreviewed/2022/05/GHSA-hh8r-mv36-fgxg/GHSA-hh8r-mv36-fgxg.json @@ -7,12 +7,8 @@ "CVE-2010-4271" ], "details": "SQL injection vulnerability in ImpressCMS before 1.2.3 RC2 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hhjj-cf2j-fg6q/GHSA-hhjj-cf2j-fg6q.json b/advisories/unreviewed/2022/05/GHSA-hhjj-cf2j-fg6q/GHSA-hhjj-cf2j-fg6q.json index c69756a9cff..32296ca1ca4 100644 --- a/advisories/unreviewed/2022/05/GHSA-hhjj-cf2j-fg6q/GHSA-hhjj-cf2j-fg6q.json +++ b/advisories/unreviewed/2022/05/GHSA-hhjj-cf2j-fg6q/GHSA-hhjj-cf2j-fg6q.json @@ -7,12 +7,8 @@ "CVE-2011-0177" ], "details": "Multiple buffer overflows in Apple Type Services (ATS) in Apple Mac OS X before 10.6.7 allow remote attackers to execute arbitrary code via a document that contains a crafted SFNT table in an embedded font.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hm6j-294p-cf8w/GHSA-hm6j-294p-cf8w.json b/advisories/unreviewed/2022/05/GHSA-hm6j-294p-cf8w/GHSA-hm6j-294p-cf8w.json index 44d13d4248e..97f71855bd0 100644 --- a/advisories/unreviewed/2022/05/GHSA-hm6j-294p-cf8w/GHSA-hm6j-294p-cf8w.json +++ b/advisories/unreviewed/2022/05/GHSA-hm6j-294p-cf8w/GHSA-hm6j-294p-cf8w.json @@ -7,12 +7,8 @@ "CVE-2008-5609" ], "details": "SQL injection vulnerability in the Commerce extension 0.9.6 and earlier for TYPO3 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hmr9-q2p7-7wpm/GHSA-hmr9-q2p7-7wpm.json b/advisories/unreviewed/2022/05/GHSA-hmr9-q2p7-7wpm/GHSA-hmr9-q2p7-7wpm.json index aea0915df36..55232c02bd5 100644 --- a/advisories/unreviewed/2022/05/GHSA-hmr9-q2p7-7wpm/GHSA-hmr9-q2p7-7wpm.json +++ b/advisories/unreviewed/2022/05/GHSA-hmr9-q2p7-7wpm/GHSA-hmr9-q2p7-7wpm.json @@ -7,12 +7,8 @@ "CVE-2010-4721" ], "details": "SQL injection vulnerability in news.php in Immo Makler 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-hmvf-7pvx-wrhr/GHSA-hmvf-7pvx-wrhr.json b/advisories/unreviewed/2022/05/GHSA-hmvf-7pvx-wrhr/GHSA-hmvf-7pvx-wrhr.json index 20b3a98ee25..5083c2acec2 100644 --- a/advisories/unreviewed/2022/05/GHSA-hmvf-7pvx-wrhr/GHSA-hmvf-7pvx-wrhr.json +++ b/advisories/unreviewed/2022/05/GHSA-hmvf-7pvx-wrhr/GHSA-hmvf-7pvx-wrhr.json @@ -7,12 +7,8 @@ "CVE-2010-4772" ], "details": "Cross-site scripting (XSS) vulnerability in blocks/lang.php in S-CMS 2.5 allows remote attackers to inject arbitrary web script or HTML via the id parameter to viewforum.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hp4x-r8hj-mqj6/GHSA-hp4x-r8hj-mqj6.json b/advisories/unreviewed/2022/05/GHSA-hp4x-r8hj-mqj6/GHSA-hp4x-r8hj-mqj6.json index 0f8e8241b58..41fc327914c 100644 --- a/advisories/unreviewed/2022/05/GHSA-hp4x-r8hj-mqj6/GHSA-hp4x-r8hj-mqj6.json +++ b/advisories/unreviewed/2022/05/GHSA-hp4x-r8hj-mqj6/GHSA-hp4x-r8hj-mqj6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/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/05/GHSA-hpp7-cgr7-qg33/GHSA-hpp7-cgr7-qg33.json b/advisories/unreviewed/2022/05/GHSA-hpp7-cgr7-qg33/GHSA-hpp7-cgr7-qg33.json index 87666825810..980a2591632 100644 --- a/advisories/unreviewed/2022/05/GHSA-hpp7-cgr7-qg33/GHSA-hpp7-cgr7-qg33.json +++ b/advisories/unreviewed/2022/05/GHSA-hpp7-cgr7-qg33/GHSA-hpp7-cgr7-qg33.json @@ -7,12 +7,8 @@ "CVE-2011-1549" ], "details": "The default configuration of logrotate on Gentoo Linux uses root privileges to process files in directories that permit non-root write access, which allows local users to conduct symlink and hard link attacks by leveraging logrotate's lack of support for untrusted directories, as demonstrated by directories under /var/log/ for packages.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -160,9 +156,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-hq49-jp92-xfgx/GHSA-hq49-jp92-xfgx.json b/advisories/unreviewed/2022/05/GHSA-hq49-jp92-xfgx/GHSA-hq49-jp92-xfgx.json index e15319fe496..be5de20a7ed 100644 --- a/advisories/unreviewed/2022/05/GHSA-hq49-jp92-xfgx/GHSA-hq49-jp92-xfgx.json +++ b/advisories/unreviewed/2022/05/GHSA-hq49-jp92-xfgx/GHSA-hq49-jp92-xfgx.json @@ -7,12 +7,8 @@ "CVE-2008-5279" ], "details": "The Local ZIM Server (zcs.exe) in Zilab Chat and Instant Messaging (ZIM) Server 2.1 and earlier allow remote attackers to execute arbitrary code via (1) heap-based buffer overflows involving multiple vectors including a long room name and a long source account, and (2) a stack-based buffer overflow with a long username in an information request. 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-hv55-4hhf-gp33/GHSA-hv55-4hhf-gp33.json b/advisories/unreviewed/2022/05/GHSA-hv55-4hhf-gp33/GHSA-hv55-4hhf-gp33.json index 58392ef9e4c..9490f1b5083 100644 --- a/advisories/unreviewed/2022/05/GHSA-hv55-4hhf-gp33/GHSA-hv55-4hhf-gp33.json +++ b/advisories/unreviewed/2022/05/GHSA-hv55-4hhf-gp33/GHSA-hv55-4hhf-gp33.json @@ -7,12 +7,8 @@ "CVE-2010-4537" ], "details": "Unspecified vulnerability in CrawlTrack before 3.2.7, when a public stats page is provided, allows remote attackers to execute arbitrary PHP code via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-hvw5-crqv-jhw4/GHSA-hvw5-crqv-jhw4.json b/advisories/unreviewed/2022/05/GHSA-hvw5-crqv-jhw4/GHSA-hvw5-crqv-jhw4.json index 179aeac72f2..e25ed503a55 100644 --- a/advisories/unreviewed/2022/05/GHSA-hvw5-crqv-jhw4/GHSA-hvw5-crqv-jhw4.json +++ b/advisories/unreviewed/2022/05/GHSA-hvw5-crqv-jhw4/GHSA-hvw5-crqv-jhw4.json @@ -7,12 +7,8 @@ "CVE-2010-4583" ], "details": "Opera before 11.00, when Opera Turbo is enabled, does not display a page's security indication, which makes it easier for remote attackers to spoof trusted content via a crafted web site.", - "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/05/GHSA-hw6g-cw69-8qj2/GHSA-hw6g-cw69-8qj2.json b/advisories/unreviewed/2022/05/GHSA-hw6g-cw69-8qj2/GHSA-hw6g-cw69-8qj2.json index 3d60b31a22a..2a793ef5010 100644 --- a/advisories/unreviewed/2022/05/GHSA-hw6g-cw69-8qj2/GHSA-hw6g-cw69-8qj2.json +++ b/advisories/unreviewed/2022/05/GHSA-hw6g-cw69-8qj2/GHSA-hw6g-cw69-8qj2.json @@ -7,12 +7,8 @@ "CVE-2011-0378" ], "details": "The XML-RPC implementation on Cisco TelePresence endpoint devices with software 1.2.x through 1.5.x allows remote attackers to execute arbitrary commands via a TCP request, related to a \"command injection vulnerability,\" aka Bug ID CSCtb52587.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hxqr-ggv8-vccx/GHSA-hxqr-ggv8-vccx.json b/advisories/unreviewed/2022/05/GHSA-hxqr-ggv8-vccx/GHSA-hxqr-ggv8-vccx.json index 872610664b9..076afa7da03 100644 --- a/advisories/unreviewed/2022/05/GHSA-hxqr-ggv8-vccx/GHSA-hxqr-ggv8-vccx.json +++ b/advisories/unreviewed/2022/05/GHSA-hxqr-ggv8-vccx/GHSA-hxqr-ggv8-vccx.json @@ -7,12 +7,8 @@ "CVE-2010-3520" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise HCM - GP France component in Oracle PeopleSoft and JDEdwards Suite 8.81 SP1 Bundle #12, 8.9 GP Update 2010-E, 9.0 GP Update 2010-E, and 9.1 GP Update 2010-E allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-hxr3-6573-5rrw/GHSA-hxr3-6573-5rrw.json b/advisories/unreviewed/2022/05/GHSA-hxr3-6573-5rrw/GHSA-hxr3-6573-5rrw.json index f8fe0ff931d..376a1970597 100644 --- a/advisories/unreviewed/2022/05/GHSA-hxr3-6573-5rrw/GHSA-hxr3-6573-5rrw.json +++ b/advisories/unreviewed/2022/05/GHSA-hxr3-6573-5rrw/GHSA-hxr3-6573-5rrw.json @@ -7,12 +7,8 @@ "CVE-2010-4191" ], "details": "Adobe Shockwave Player before 11.5.9.620 allows attackers to execute arbitrary code or cause a denial of service (memory corruption) via unspecified vectors, a different vulnerability than CVE-2011-0555, CVE-2010-4093, CVE-2010-4187, CVE-2010-4190, CVE-2010-4192, and CVE-2010-4306.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-hxrx-qm99-564r/GHSA-hxrx-qm99-564r.json b/advisories/unreviewed/2022/05/GHSA-hxrx-qm99-564r/GHSA-hxrx-qm99-564r.json index ed77ee7c93a..8a75acf9d09 100644 --- a/advisories/unreviewed/2022/05/GHSA-hxrx-qm99-564r/GHSA-hxrx-qm99-564r.json +++ b/advisories/unreviewed/2022/05/GHSA-hxrx-qm99-564r/GHSA-hxrx-qm99-564r.json @@ -7,12 +7,8 @@ "CVE-2011-0797" ], "details": "Unspecified vulnerability in the Applications Install component in Oracle E-Business Suite 11.5.10.2, 12.0.6, 12.1.1, 12.1.2, and 12.1.3 allows remote authenticated users to affect confidentiality via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-j2mg-c55m-5q6x/GHSA-j2mg-c55m-5q6x.json b/advisories/unreviewed/2022/05/GHSA-j2mg-c55m-5q6x/GHSA-j2mg-c55m-5q6x.json index 1c87e6bda57..d7f9be7bcfc 100644 --- a/advisories/unreviewed/2022/05/GHSA-j2mg-c55m-5q6x/GHSA-j2mg-c55m-5q6x.json +++ b/advisories/unreviewed/2022/05/GHSA-j2mg-c55m-5q6x/GHSA-j2mg-c55m-5q6x.json @@ -7,12 +7,8 @@ "CVE-2010-3065" ], "details": "The default session serializer in PHP 5.2 through 5.2.13 and 5.3 through 5.3.2 does not properly handle the PS_UNDEF_MARKER marker, which allows context-dependent attackers to modify arbitrary session variables via a crafted session variable name.", - "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/05/GHSA-j2mp-wmc4-gg67/GHSA-j2mp-wmc4-gg67.json b/advisories/unreviewed/2022/05/GHSA-j2mp-wmc4-gg67/GHSA-j2mp-wmc4-gg67.json index 72392171606..d127af2c417 100644 --- a/advisories/unreviewed/2022/05/GHSA-j2mp-wmc4-gg67/GHSA-j2mp-wmc4-gg67.json +++ b/advisories/unreviewed/2022/05/GHSA-j2mp-wmc4-gg67/GHSA-j2mp-wmc4-gg67.json @@ -7,12 +7,8 @@ "CVE-2010-4553" ], "details": "An unspecified Domino API in IBM Lotus Notes Traveler before 8.5.1.1 does not properly handle MIME types, which allows remote attackers to cause a denial of service (daemon crash) via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j3gx-3957-cc35/GHSA-j3gx-3957-cc35.json b/advisories/unreviewed/2022/05/GHSA-j3gx-3957-cc35/GHSA-j3gx-3957-cc35.json index b8f6ba49966..c96ce043834 100644 --- a/advisories/unreviewed/2022/05/GHSA-j3gx-3957-cc35/GHSA-j3gx-3957-cc35.json +++ b/advisories/unreviewed/2022/05/GHSA-j3gx-3957-cc35/GHSA-j3gx-3957-cc35.json @@ -7,12 +7,8 @@ "CVE-2010-4703" ], "details": "SQL injection vulnerability in default.asp in HotWebScripts HotWeb Rentals allows remote attackers to execute arbitrary SQL commands via the PageId parameter. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j3jq-w2w5-fv7j/GHSA-j3jq-w2w5-fv7j.json b/advisories/unreviewed/2022/05/GHSA-j3jq-w2w5-fv7j/GHSA-j3jq-w2w5-fv7j.json index 316ff07a60a..c60912a36f4 100644 --- a/advisories/unreviewed/2022/05/GHSA-j3jq-w2w5-fv7j/GHSA-j3jq-w2w5-fv7j.json +++ b/advisories/unreviewed/2022/05/GHSA-j3jq-w2w5-fv7j/GHSA-j3jq-w2w5-fv7j.json @@ -7,12 +7,8 @@ "CVE-2011-2754" ], "details": "Cross-site scripting (XSS) vulnerability in the PageBuilder2 (aka Page Builder) theme in IBM WebSphere Portal 7.x before 7.0.0.1 CF006, as used in IBM Web Content Manager (WCM) and other products, allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j4jq-jwjr-wj8f/GHSA-j4jq-jwjr-wj8f.json b/advisories/unreviewed/2022/05/GHSA-j4jq-jwjr-wj8f/GHSA-j4jq-jwjr-wj8f.json index 880ee23f481..3f0575126ca 100644 --- a/advisories/unreviewed/2022/05/GHSA-j4jq-jwjr-wj8f/GHSA-j4jq-jwjr-wj8f.json +++ b/advisories/unreviewed/2022/05/GHSA-j4jq-jwjr-wj8f/GHSA-j4jq-jwjr-wj8f.json @@ -7,12 +7,8 @@ "CVE-2010-4729" ], "details": "Zikula before 1.2.3 does not use the authid protection mechanism for (1) the lostpassword form and (2) mailpasswd processing, which makes it easier for remote attackers to generate a flood of password requests and possibly conduct cross-site request forgery (CSRF) attacks via multiple form submissions.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j59f-3rx3-r2v6/GHSA-j59f-3rx3-r2v6.json b/advisories/unreviewed/2022/05/GHSA-j59f-3rx3-r2v6/GHSA-j59f-3rx3-r2v6.json index aa64203d734..fcc04ec855a 100644 --- a/advisories/unreviewed/2022/05/GHSA-j59f-3rx3-r2v6/GHSA-j59f-3rx3-r2v6.json +++ b/advisories/unreviewed/2022/05/GHSA-j59f-3rx3-r2v6/GHSA-j59f-3rx3-r2v6.json @@ -7,12 +7,8 @@ "CVE-2010-3540" ], "details": "Unspecified vulnerability in Oracle Solaris 10 and OpenSolaris allows local users to affect availability, related to ZFS.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-j622-gh32-g6wm/GHSA-j622-gh32-g6wm.json b/advisories/unreviewed/2022/05/GHSA-j622-gh32-g6wm/GHSA-j622-gh32-g6wm.json index 49fd1deae05..043f11928f4 100644 --- a/advisories/unreviewed/2022/05/GHSA-j622-gh32-g6wm/GHSA-j622-gh32-g6wm.json +++ b/advisories/unreviewed/2022/05/GHSA-j622-gh32-g6wm/GHSA-j622-gh32-g6wm.json @@ -7,12 +7,8 @@ "CVE-2011-1049" ], "details": "Buffer overflow in the Mach-O input file loader in Hex-Rays IDA Pro 5.7 and 6.0 allows user-assisted remote attackers to cause a denial of service (crash) and possibly execute arbitrary code via a crafted Macho-O file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j73j-w68p-35p7/GHSA-j73j-w68p-35p7.json b/advisories/unreviewed/2022/05/GHSA-j73j-w68p-35p7/GHSA-j73j-w68p-35p7.json index 759e55047f3..40f1155fced 100644 --- a/advisories/unreviewed/2022/05/GHSA-j73j-w68p-35p7/GHSA-j73j-w68p-35p7.json +++ b/advisories/unreviewed/2022/05/GHSA-j73j-w68p-35p7/GHSA-j73j-w68p-35p7.json @@ -7,12 +7,8 @@ "CVE-2011-1104" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in Mutare EVM allow remote attackers to hijack the authentication of arbitrary users for requests that (1) change a PIN, (2) delete messages, (3) add a delivery address, or (4) change a delivery address.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-j7m7-m8xx-ph22/GHSA-j7m7-m8xx-ph22.json b/advisories/unreviewed/2022/05/GHSA-j7m7-m8xx-ph22/GHSA-j7m7-m8xx-ph22.json index 8e05ba51ee5..d36c1630de7 100644 --- a/advisories/unreviewed/2022/05/GHSA-j7m7-m8xx-ph22/GHSA-j7m7-m8xx-ph22.json +++ b/advisories/unreviewed/2022/05/GHSA-j7m7-m8xx-ph22/GHSA-j7m7-m8xx-ph22.json @@ -7,12 +7,8 @@ "CVE-2011-1318" ], "details": "Memory leak in org.apache.jasper.runtime.JspWriterImpl.response in the JavaServer Pages (JSP) component in IBM WebSphere Application Server (WAS) before 7.0.0.15 allows remote attackers to cause a denial of service (memory consumption) by accessing a JSP page of an application that is repeatedly stopped and restarted.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-j96j-j86v-vcrr/GHSA-j96j-j86v-vcrr.json b/advisories/unreviewed/2022/05/GHSA-j96j-j86v-vcrr/GHSA-j96j-j86v-vcrr.json index ab8a84e6ede..d9852c595bc 100644 --- a/advisories/unreviewed/2022/05/GHSA-j96j-j86v-vcrr/GHSA-j96j-j86v-vcrr.json +++ b/advisories/unreviewed/2022/05/GHSA-j96j-j86v-vcrr/GHSA-j96j-j86v-vcrr.json @@ -7,12 +7,8 @@ "CVE-2010-3525" ], "details": "Unspecified vulnerability in the (1) PeopleSoft Enterprise FMS, (2) SCM, (3) EPM, (4) CRM, and (5) Campus Solutions components in Oracle PeopleSoft and JDEdwards Suite 8.9, 9.0, and 9.1 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-j9jp-c6vx-966v/GHSA-j9jp-c6vx-966v.json b/advisories/unreviewed/2022/05/GHSA-j9jp-c6vx-966v/GHSA-j9jp-c6vx-966v.json index e57d4103f6a..cba04ac2495 100644 --- a/advisories/unreviewed/2022/05/GHSA-j9jp-c6vx-966v/GHSA-j9jp-c6vx-966v.json +++ b/advisories/unreviewed/2022/05/GHSA-j9jp-c6vx-966v/GHSA-j9jp-c6vx-966v.json @@ -7,12 +7,8 @@ "CVE-2010-2825" ], "details": "Unspecified vulnerability in the SIP inspection feature on the Cisco Application Control Engine (ACE) Module with software A2(1.x) before A2(1.6), A2(2.x) before A2(2.3), and A2(3.x) before A2(3.1) for Catalyst 6500 series switches and 7600 series routers, and the Cisco Application Control Engine (ACE) 4710 appliance with software before A3(2.4), allows remote attackers to cause a denial of service (device reload) via crafted SIP packets over (1) TCP or (2) UDP, aka Bug IDs CSCta65603 and CSCta71569.", - "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-j9pv-457m-mpv3/GHSA-j9pv-457m-mpv3.json b/advisories/unreviewed/2022/05/GHSA-j9pv-457m-mpv3/GHSA-j9pv-457m-mpv3.json index 6fb8d79cc8b..4c027b4af64 100644 --- a/advisories/unreviewed/2022/05/GHSA-j9pv-457m-mpv3/GHSA-j9pv-457m-mpv3.json +++ b/advisories/unreviewed/2022/05/GHSA-j9pv-457m-mpv3/GHSA-j9pv-457m-mpv3.json @@ -7,12 +7,8 @@ "CVE-2010-4771" ], "details": "SQL injection vulnerability to viewforum.php in S-CMS 2.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-jfc7-325m-46x5/GHSA-jfc7-325m-46x5.json b/advisories/unreviewed/2022/05/GHSA-jfc7-325m-46x5/GHSA-jfc7-325m-46x5.json index d9a0cd8fe41..5df5071d31e 100644 --- a/advisories/unreviewed/2022/05/GHSA-jfc7-325m-46x5/GHSA-jfc7-325m-46x5.json +++ b/advisories/unreviewed/2022/05/GHSA-jfc7-325m-46x5/GHSA-jfc7-325m-46x5.json @@ -7,12 +7,8 @@ "CVE-2010-4381" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.4, RealPlayer Enterprise 2.1.2, and Mac RealPlayer 11.0 through 12.0.0.1444 allows remote attackers to have an unspecified impact via a crafted AAC file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jfv6-c5mj-2xvj/GHSA-jfv6-c5mj-2xvj.json b/advisories/unreviewed/2022/05/GHSA-jfv6-c5mj-2xvj/GHSA-jfv6-c5mj-2xvj.json index 2695eedb6cd..fe7126c6e6a 100644 --- a/advisories/unreviewed/2022/05/GHSA-jfv6-c5mj-2xvj/GHSA-jfv6-c5mj-2xvj.json +++ b/advisories/unreviewed/2022/05/GHSA-jfv6-c5mj-2xvj/GHSA-jfv6-c5mj-2xvj.json @@ -7,12 +7,8 @@ "CVE-2011-2475" ], "details": "Format string vulnerability in ECTrace.dll in the iMailGateway service in the Internet Mail Gateway in OneBridge Server and DMZ Proxy in Sybase OneBridge Mobile Data Suite 5.5 and 5.6 allows remote attackers to execute arbitrary code via format string specifiers in unspecified string fields, related to authentication logging.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jfw9-x47c-g7w4/GHSA-jfw9-x47c-g7w4.json b/advisories/unreviewed/2022/05/GHSA-jfw9-x47c-g7w4/GHSA-jfw9-x47c-g7w4.json index d54a102db0b..6a2996b350a 100644 --- a/advisories/unreviewed/2022/05/GHSA-jfw9-x47c-g7w4/GHSA-jfw9-x47c-g7w4.json +++ b/advisories/unreviewed/2022/05/GHSA-jfw9-x47c-g7w4/GHSA-jfw9-x47c-g7w4.json @@ -7,12 +7,8 @@ "CVE-2010-4762" ], "details": "Cross-site scripting (XSS) vulnerability in the rich-text-editor component in Open Ticket Request System (OTRS) before 3.0.0-beta2 allows remote authenticated users to inject arbitrary web script or HTML by using the \"source code\" feature in the customer interface.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jg6w-g8mj-cg8m/GHSA-jg6w-g8mj-cg8m.json b/advisories/unreviewed/2022/05/GHSA-jg6w-g8mj-cg8m/GHSA-jg6w-g8mj-cg8m.json index e56cb69390e..c652caf88aa 100644 --- a/advisories/unreviewed/2022/05/GHSA-jg6w-g8mj-cg8m/GHSA-jg6w-g8mj-cg8m.json +++ b/advisories/unreviewed/2022/05/GHSA-jg6w-g8mj-cg8m/GHSA-jg6w-g8mj-cg8m.json @@ -7,12 +7,8 @@ "CVE-2010-3076" ], "details": "The filter function in php/src/include.php in Simple Management for BIND (aka smbind) before 0.4.8 does not anchor a certain regular expression, which allows remote attackers to conduct SQL injection attacks and execute arbitrary SQL commands via the username parameter to the admin login page.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jg9r-pgjc-jx37/GHSA-jg9r-pgjc-jx37.json b/advisories/unreviewed/2022/05/GHSA-jg9r-pgjc-jx37/GHSA-jg9r-pgjc-jx37.json index b71473b6c12..1241f95cde0 100644 --- a/advisories/unreviewed/2022/05/GHSA-jg9r-pgjc-jx37/GHSA-jg9r-pgjc-jx37.json +++ b/advisories/unreviewed/2022/05/GHSA-jg9r-pgjc-jx37/GHSA-jg9r-pgjc-jx37.json @@ -7,12 +7,8 @@ "CVE-2010-4586" ], "details": "The default configuration of Opera before 11.00 enables WebSockets functionality, which has unspecified impact and remote attack vectors, possibly a related issue to CVE-2010-4508.", - "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-jh8p-g678-fj3r/GHSA-jh8p-g678-fj3r.json b/advisories/unreviewed/2022/05/GHSA-jh8p-g678-fj3r/GHSA-jh8p-g678-fj3r.json index f743801f91a..e8423be4584 100644 --- a/advisories/unreviewed/2022/05/GHSA-jh8p-g678-fj3r/GHSA-jh8p-g678-fj3r.json +++ b/advisories/unreviewed/2022/05/GHSA-jh8p-g678-fj3r/GHSA-jh8p-g678-fj3r.json @@ -7,12 +7,8 @@ "CVE-2011-0195" ], "details": "The generate-id XPath function in libxslt in Apple iOS 4.3.x before 4.3.2 allows remote attackers to obtain potentially sensitive information about heap memory addresses via a crafted web site. NOTE: this may overlap CVE-2011-1202.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jj4v-3jp4-pvcr/GHSA-jj4v-3jp4-pvcr.json b/advisories/unreviewed/2022/05/GHSA-jj4v-3jp4-pvcr/GHSA-jj4v-3jp4-pvcr.json index fe743cb168e..00a20ac7870 100644 --- a/advisories/unreviewed/2022/05/GHSA-jj4v-3jp4-pvcr/GHSA-jj4v-3jp4-pvcr.json +++ b/advisories/unreviewed/2022/05/GHSA-jj4v-3jp4-pvcr/GHSA-jj4v-3jp4-pvcr.json @@ -7,12 +7,8 @@ "CVE-2010-2792" ], "details": "Race condition in the SPICE (aka spice-xpi) plug-in 2.2 for Firefox allows local users to obtain sensitive information, and conduct man-in-the-middle attacks, by providing a UNIX socket for communication between this plug-in and the client (aka qspice-client) in qspice 0.3.0, and then accessing this socket.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jj9m-8rr8-965g/GHSA-jj9m-8rr8-965g.json b/advisories/unreviewed/2022/05/GHSA-jj9m-8rr8-965g/GHSA-jj9m-8rr8-965g.json index 36e58e6b31a..184e8bc5ffb 100644 --- a/advisories/unreviewed/2022/05/GHSA-jj9m-8rr8-965g/GHSA-jj9m-8rr8-965g.json +++ b/advisories/unreviewed/2022/05/GHSA-jj9m-8rr8-965g/GHSA-jj9m-8rr8-965g.json @@ -7,12 +7,8 @@ "CVE-2011-0376" ], "details": "The TFTP implementation on Cisco TelePresence endpoint devices with software 1.2.x through 1.5.x, 1.6.0, and 1.6.1 allows remote attackers to obtain sensitive information via a GET request, aka Bug ID CSCte43876.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jjg3-cx5h-88wm/GHSA-jjg3-cx5h-88wm.json b/advisories/unreviewed/2022/05/GHSA-jjg3-cx5h-88wm/GHSA-jjg3-cx5h-88wm.json index 97352ab56f9..3e6ecf455d7 100644 --- a/advisories/unreviewed/2022/05/GHSA-jjg3-cx5h-88wm/GHSA-jjg3-cx5h-88wm.json +++ b/advisories/unreviewed/2022/05/GHSA-jjg3-cx5h-88wm/GHSA-jjg3-cx5h-88wm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jjwm-4fp3-g588/GHSA-jjwm-4fp3-g588.json b/advisories/unreviewed/2022/05/GHSA-jjwm-4fp3-g588/GHSA-jjwm-4fp3-g588.json index aa9267a8bf4..8e52cabf666 100644 --- a/advisories/unreviewed/2022/05/GHSA-jjwm-4fp3-g588/GHSA-jjwm-4fp3-g588.json +++ b/advisories/unreviewed/2022/05/GHSA-jjwm-4fp3-g588/GHSA-jjwm-4fp3-g588.json @@ -7,12 +7,8 @@ "CVE-2010-4531" ], "details": "Stack-based buffer overflow in the ATRDecodeAtr function in the Answer-to-Reset (ATR) Handler (atrhandler.c) for pcscd in PCSC-Lite 1.5.3, and possibly other 1.5.x and 1.6.x versions, allows physically proximate attackers to cause a denial of service (crash) and possibly execute arbitrary code via a smart card with an ATR message containing a long attribute value.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jjwr-77m8-7gpv/GHSA-jjwr-77m8-7gpv.json b/advisories/unreviewed/2022/05/GHSA-jjwr-77m8-7gpv/GHSA-jjwr-77m8-7gpv.json index 5b4bcd62cba..f2a39532c19 100644 --- a/advisories/unreviewed/2022/05/GHSA-jjwr-77m8-7gpv/GHSA-jjwr-77m8-7gpv.json +++ b/advisories/unreviewed/2022/05/GHSA-jjwr-77m8-7gpv/GHSA-jjwr-77m8-7gpv.json @@ -7,12 +7,8 @@ "CVE-2011-0373" ], "details": "The CGI implementation on Cisco TelePresence endpoint devices with software 1.2.x through 1.5.x allows remote authenticated users to execute arbitrary commands via a malformed request, related to \"command injection vulnerabilities,\" aka Bug ID CSCtb31685.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jmgq-4v25-c6xw/GHSA-jmgq-4v25-c6xw.json b/advisories/unreviewed/2022/05/GHSA-jmgq-4v25-c6xw/GHSA-jmgq-4v25-c6xw.json index 91c25cc302f..f78bdc0ee21 100644 --- a/advisories/unreviewed/2022/05/GHSA-jmgq-4v25-c6xw/GHSA-jmgq-4v25-c6xw.json +++ b/advisories/unreviewed/2022/05/GHSA-jmgq-4v25-c6xw/GHSA-jmgq-4v25-c6xw.json @@ -7,12 +7,8 @@ "CVE-2011-1149" ], "details": "Android before 2.3 does not properly restrict access to the system property space, which allows local applications to bypass the application sandbox and gain privileges, as demonstrated by psneuter and KillingInTheNameOf, related to the use of Android shared memory (ashmem) and ASHMEM_SET_PROT_MASK.", - "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-jp8w-xw86-mwcx/GHSA-jp8w-xw86-mwcx.json b/advisories/unreviewed/2022/05/GHSA-jp8w-xw86-mwcx/GHSA-jp8w-xw86-mwcx.json index d1984d41bed..abfc7739db8 100644 --- a/advisories/unreviewed/2022/05/GHSA-jp8w-xw86-mwcx/GHSA-jp8w-xw86-mwcx.json +++ b/advisories/unreviewed/2022/05/GHSA-jp8w-xw86-mwcx/GHSA-jp8w-xw86-mwcx.json @@ -7,12 +7,8 @@ "CVE-2011-3500" ], "details": "Directory traversal vulnerability in the web server in Cogent DataHub 7.1.1.63 and earlier allows remote attackers to read arbitrary files via a ..\\ (dot dot backslash) in an HTTP request.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jrr4-r2gg-43mw/GHSA-jrr4-r2gg-43mw.json b/advisories/unreviewed/2022/05/GHSA-jrr4-r2gg-43mw/GHSA-jrr4-r2gg-43mw.json index c9e006d507e..a4a0fef6c9f 100644 --- a/advisories/unreviewed/2022/05/GHSA-jrr4-r2gg-43mw/GHSA-jrr4-r2gg-43mw.json +++ b/advisories/unreviewed/2022/05/GHSA-jrr4-r2gg-43mw/GHSA-jrr4-r2gg-43mw.json @@ -7,12 +7,8 @@ "CVE-2008-4661" ], "details": "Cross-site scripting (XSS) vulnerability in the Page Improvements (sm_pageimprovements) 1.1.0 and earlier extension for TYPO3 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jrv7-ph2c-gw4v/GHSA-jrv7-ph2c-gw4v.json b/advisories/unreviewed/2022/05/GHSA-jrv7-ph2c-gw4v/GHSA-jrv7-ph2c-gw4v.json index 5b1c5bc2fe6..ce2948155fe 100644 --- a/advisories/unreviewed/2022/05/GHSA-jrv7-ph2c-gw4v/GHSA-jrv7-ph2c-gw4v.json +++ b/advisories/unreviewed/2022/05/GHSA-jrv7-ph2c-gw4v/GHSA-jrv7-ph2c-gw4v.json @@ -7,12 +7,8 @@ "CVE-2011-0190" ], "details": "Install Helper in Installer in Apple Mac OS X before 10.6.7 does not properly process an unspecified URL, which might allow remote attackers to track user logins by logging network traffic from an agent that was intended to send network traffic to an Apple server.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-jx33-24r3-whvp/GHSA-jx33-24r3-whvp.json b/advisories/unreviewed/2022/05/GHSA-jx33-24r3-whvp/GHSA-jx33-24r3-whvp.json index d1939b94f15..89d21e3e365 100644 --- a/advisories/unreviewed/2022/05/GHSA-jx33-24r3-whvp/GHSA-jx33-24r3-whvp.json +++ b/advisories/unreviewed/2022/05/GHSA-jx33-24r3-whvp/GHSA-jx33-24r3-whvp.json @@ -7,12 +7,8 @@ "CVE-2011-2751" ], "details": "SQL injection vulnerability in Parodia before 6.809 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m272-44hf-pgf9/GHSA-m272-44hf-pgf9.json b/advisories/unreviewed/2022/05/GHSA-m272-44hf-pgf9/GHSA-m272-44hf-pgf9.json index 6f233bc9232..a0f1900b931 100644 --- a/advisories/unreviewed/2022/05/GHSA-m272-44hf-pgf9/GHSA-m272-44hf-pgf9.json +++ b/advisories/unreviewed/2022/05/GHSA-m272-44hf-pgf9/GHSA-m272-44hf-pgf9.json @@ -7,12 +7,8 @@ "CVE-2011-1565" ], "details": "Directory traversal vulnerability in IGSSdataServer.exe 9.00.00.11063 and earlier in 7-Technologies Interactive Graphical SCADA System (IGSS) allows remote attackers to (1) read (opcode 0x3) or (2) create or write (opcode 0x2) arbitrary files via ..\\ (dot dot backslash) sequences to TCP port 12401.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m282-r3hp-qhhf/GHSA-m282-r3hp-qhhf.json b/advisories/unreviewed/2022/05/GHSA-m282-r3hp-qhhf/GHSA-m282-r3hp-qhhf.json index 356971c83ad..5c59622c8ee 100644 --- a/advisories/unreviewed/2022/05/GHSA-m282-r3hp-qhhf/GHSA-m282-r3hp-qhhf.json +++ b/advisories/unreviewed/2022/05/GHSA-m282-r3hp-qhhf/GHSA-m282-r3hp-qhhf.json @@ -7,12 +7,8 @@ "CVE-2010-2999" ], "details": "Integer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.0.1, Mac RealPlayer 11.0 through 11.1, and Linux RealPlayer 11.0.2.1744 allows remote attackers to execute arbitrary code or cause a denial of service (heap memory corruption) via a malformed MLLT atom in an AAC file.", - "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-m39p-fh29-4mvg/GHSA-m39p-fh29-4mvg.json b/advisories/unreviewed/2022/05/GHSA-m39p-fh29-4mvg/GHSA-m39p-fh29-4mvg.json index 62346db3af2..437cbf2d111 100644 --- a/advisories/unreviewed/2022/05/GHSA-m39p-fh29-4mvg/GHSA-m39p-fh29-4mvg.json +++ b/advisories/unreviewed/2022/05/GHSA-m39p-fh29-4mvg/GHSA-m39p-fh29-4mvg.json @@ -7,12 +7,8 @@ "CVE-2010-3536" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise SCM component in Oracle PeopleSoft and JDEdwards Suite 8.9 Bundle #38, 9.0 Bundle #31, and 9.1 Bundle #6 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m4jp-p3qr-rqv9/GHSA-m4jp-p3qr-rqv9.json b/advisories/unreviewed/2022/05/GHSA-m4jp-p3qr-rqv9/GHSA-m4jp-p3qr-rqv9.json index 7bde597d095..77f7e944bb7 100644 --- a/advisories/unreviewed/2022/05/GHSA-m4jp-p3qr-rqv9/GHSA-m4jp-p3qr-rqv9.json +++ b/advisories/unreviewed/2022/05/GHSA-m4jp-p3qr-rqv9/GHSA-m4jp-p3qr-rqv9.json @@ -7,12 +7,8 @@ "CVE-2010-3521" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise HCM ePay component in Oracle PeopleSoft and JDEdwards Suite 9.0 to Payroll Update 10-C and 9.1 to Payroll Update 10-C allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m5xw-93mc-j2jf/GHSA-m5xw-93mc-j2jf.json b/advisories/unreviewed/2022/05/GHSA-m5xw-93mc-j2jf/GHSA-m5xw-93mc-j2jf.json index ffa260c72f5..8c3e2ae39f5 100644 --- a/advisories/unreviewed/2022/05/GHSA-m5xw-93mc-j2jf/GHSA-m5xw-93mc-j2jf.json +++ b/advisories/unreviewed/2022/05/GHSA-m5xw-93mc-j2jf/GHSA-m5xw-93mc-j2jf.json @@ -7,12 +7,8 @@ "CVE-2010-4584" ], "details": "Opera before 11.00, when Opera Turbo is used, does not properly present information about problematic X.509 certificates on https web sites, which might make it easier for remote attackers to spoof trusted content via a crafted web site.", - "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/05/GHSA-m657-gpqc-w53p/GHSA-m657-gpqc-w53p.json b/advisories/unreviewed/2022/05/GHSA-m657-gpqc-w53p/GHSA-m657-gpqc-w53p.json index 6171f0adc6b..85acb3c69b1 100644 --- a/advisories/unreviewed/2022/05/GHSA-m657-gpqc-w53p/GHSA-m657-gpqc-w53p.json +++ b/advisories/unreviewed/2022/05/GHSA-m657-gpqc-w53p/GHSA-m657-gpqc-w53p.json @@ -7,12 +7,8 @@ "CVE-2010-4405" ], "details": "Cross-site scripting (XSS) vulnerability in the Yannick Gaultier sh404SEF component before 2.1.8.777 for Joomla! allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m66v-2jff-2hpr/GHSA-m66v-2jff-2hpr.json b/advisories/unreviewed/2022/05/GHSA-m66v-2jff-2hpr/GHSA-m66v-2jff-2hpr.json index 0ddbfd3cde7..2ea421c73b6 100644 --- a/advisories/unreviewed/2022/05/GHSA-m66v-2jff-2hpr/GHSA-m66v-2jff-2hpr.json +++ b/advisories/unreviewed/2022/05/GHSA-m66v-2jff-2hpr/GHSA-m66v-2jff-2hpr.json @@ -7,12 +7,8 @@ "CVE-2011-0330" ], "details": "The Dell DellSystemLite.Scanner ActiveX control in DellSystemLite.ocx 1.0.0.0 does not properly restrict the values of the WMIAttributesOfInterest property, which allows remote attackers to execute arbitrary WMI Query Language (WQL) statements via a crafted value, as demonstrated by a value that triggers disclosure of information about installed software.", - "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-m675-q294-hrf4/GHSA-m675-q294-hrf4.json b/advisories/unreviewed/2022/05/GHSA-m675-q294-hrf4/GHSA-m675-q294-hrf4.json index 0ab7bdf238d..a42a18deeb6 100644 --- a/advisories/unreviewed/2022/05/GHSA-m675-q294-hrf4/GHSA-m675-q294-hrf4.json +++ b/advisories/unreviewed/2022/05/GHSA-m675-q294-hrf4/GHSA-m675-q294-hrf4.json @@ -7,12 +7,8 @@ "CVE-2008-7288" ], "details": "IBM Tivoli Directory Server (TDS) 5.2 before 5.2.0.5-TIV-ITDS-LA0007 on AIX allows remote attackers to cause a denial of service (server destabilization) via an anonymous DIGEST-MD5 LDAP Bind operation.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m6q4-vqv8-2p6c/GHSA-m6q4-vqv8-2p6c.json b/advisories/unreviewed/2022/05/GHSA-m6q4-vqv8-2p6c/GHSA-m6q4-vqv8-2p6c.json index 77d909d7157..f28d744627c 100644 --- a/advisories/unreviewed/2022/05/GHSA-m6q4-vqv8-2p6c/GHSA-m6q4-vqv8-2p6c.json +++ b/advisories/unreviewed/2022/05/GHSA-m6q4-vqv8-2p6c/GHSA-m6q4-vqv8-2p6c.json @@ -7,12 +7,8 @@ "CVE-2010-3527" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise FMS - AM component in Oracle PeopleSoft and JDEdwards Suite 8.9 Bundle #38, 9.0 Bundle #31, and 9.1 Bundle #6 allows remote authenticated users to affect integrity and availability via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m6wf-6p3r-72g3/GHSA-m6wf-6p3r-72g3.json b/advisories/unreviewed/2022/05/GHSA-m6wf-6p3r-72g3/GHSA-m6wf-6p3r-72g3.json index f6af894ff9c..fa4c1d1cf93 100644 --- a/advisories/unreviewed/2022/05/GHSA-m6wf-6p3r-72g3/GHSA-m6wf-6p3r-72g3.json +++ b/advisories/unreviewed/2022/05/GHSA-m6wf-6p3r-72g3/GHSA-m6wf-6p3r-72g3.json @@ -7,12 +7,8 @@ "CVE-2011-0181" ], "details": "Integer overflow in ImageIO in Apple Mac OS X before 10.6.7 allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted XBM image.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m7wr-xc9c-g7x3/GHSA-m7wr-xc9c-g7x3.json b/advisories/unreviewed/2022/05/GHSA-m7wr-xc9c-g7x3/GHSA-m7wr-xc9c-g7x3.json index bac355c8062..b37411936c9 100644 --- a/advisories/unreviewed/2022/05/GHSA-m7wr-xc9c-g7x3/GHSA-m7wr-xc9c-g7x3.json +++ b/advisories/unreviewed/2022/05/GHSA-m7wr-xc9c-g7x3/GHSA-m7wr-xc9c-g7x3.json @@ -7,12 +7,8 @@ "CVE-2010-4652" ], "details": "Heap-based buffer overflow in the sql_prepare_where function (contrib/mod_sql.c) in ProFTPD before 1.3.3d, when mod_sql is enabled, allows remote attackers to cause a denial of service (crash) and possibly execute arbitrary code via a crafted username containing substitution tags, which are not properly handled during construction of an SQL query.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m85q-5qpg-g6vh/GHSA-m85q-5qpg-g6vh.json b/advisories/unreviewed/2022/05/GHSA-m85q-5qpg-g6vh/GHSA-m85q-5qpg-g6vh.json index 0d1e4d7d44d..221d73e3244 100644 --- a/advisories/unreviewed/2022/05/GHSA-m85q-5qpg-g6vh/GHSA-m85q-5qpg-g6vh.json +++ b/advisories/unreviewed/2022/05/GHSA-m85q-5qpg-g6vh/GHSA-m85q-5qpg-g6vh.json @@ -7,12 +7,8 @@ "CVE-2011-0286" ], "details": "Cross-site scripting (XSS) vulnerability in webdesktop/app in the BlackBerry Web Desktop Manager component in Research In Motion (RIM) BlackBerry Enterprise Server (BES) software before 5.0.2 MR5 and 5.0.3 before MR1, and BlackBerry Enterprise Server Express software 5.0.1 and 5.0.2, allows remote attackers to inject arbitrary web script or HTML via the displayErrorMessage parameter in a ManageDevices action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m8qj-xwm5-fq5v/GHSA-m8qj-xwm5-fq5v.json b/advisories/unreviewed/2022/05/GHSA-m8qj-xwm5-fq5v/GHSA-m8qj-xwm5-fq5v.json index ce43b1d614f..7f8311e8649 100644 --- a/advisories/unreviewed/2022/05/GHSA-m8qj-xwm5-fq5v/GHSA-m8qj-xwm5-fq5v.json +++ b/advisories/unreviewed/2022/05/GHSA-m8qj-xwm5-fq5v/GHSA-m8qj-xwm5-fq5v.json @@ -7,12 +7,8 @@ "CVE-2011-1709" ], "details": "GNOME Display Manager (gdm) before 2.32.2, when glib 2.28 is used, enables execution of a web browser with the uid of the gdm account, which allows local users to gain privileges via vectors involving the x-scheme-handler/http MIME type.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -56,9 +52,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-m953-88vc-vwxj/GHSA-m953-88vc-vwxj.json b/advisories/unreviewed/2022/05/GHSA-m953-88vc-vwxj/GHSA-m953-88vc-vwxj.json index d24ed613d47..bd2eef0bc59 100644 --- a/advisories/unreviewed/2022/05/GHSA-m953-88vc-vwxj/GHSA-m953-88vc-vwxj.json +++ b/advisories/unreviewed/2022/05/GHSA-m953-88vc-vwxj/GHSA-m953-88vc-vwxj.json @@ -7,12 +7,8 @@ "CVE-2011-2755" ], "details": "Directory traversal vulnerability in FileDownload.jsp in ManageEngine ServiceDesk Plus 8.0 before Build 8012 allows remote attackers to read arbitrary files via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m98f-7rvg-34wv/GHSA-m98f-7rvg-34wv.json b/advisories/unreviewed/2022/05/GHSA-m98f-7rvg-34wv/GHSA-m98f-7rvg-34wv.json index 9b1de3a853a..861b3c9494c 100644 --- a/advisories/unreviewed/2022/05/GHSA-m98f-7rvg-34wv/GHSA-m98f-7rvg-34wv.json +++ b/advisories/unreviewed/2022/05/GHSA-m98f-7rvg-34wv/GHSA-m98f-7rvg-34wv.json @@ -7,12 +7,8 @@ "CVE-2010-3788" ], "details": "QuickTime in Apple Mac OS X 10.6.x before 10.6.5 accesses uninitialized memory locations during processing of JP2 image data, which allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted JP2 file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m98g-p242-2jrr/GHSA-m98g-p242-2jrr.json b/advisories/unreviewed/2022/05/GHSA-m98g-p242-2jrr/GHSA-m98g-p242-2jrr.json index ece0e0a4feb..fd70d5ee542 100644 --- a/advisories/unreviewed/2022/05/GHSA-m98g-p242-2jrr/GHSA-m98g-p242-2jrr.json +++ b/advisories/unreviewed/2022/05/GHSA-m98g-p242-2jrr/GHSA-m98g-p242-2jrr.json @@ -7,12 +7,8 @@ "CVE-2010-3878" ], "details": "Cross-site request forgery (CSRF) vulnerability in the JMX Console in Red Hat JBoss Enterprise Application Platform (aka JBoss EAP or JBEAP) 4.3 before 4.3.0.CP09 allows remote attackers to hijack the authentication of administrators for requests that deploy WAR files.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m9hp-7333-625v/GHSA-m9hp-7333-625v.json b/advisories/unreviewed/2022/05/GHSA-m9hp-7333-625v/GHSA-m9hp-7333-625v.json index 0342772dd5b..6ca1c4c0653 100644 --- a/advisories/unreviewed/2022/05/GHSA-m9hp-7333-625v/GHSA-m9hp-7333-625v.json +++ b/advisories/unreviewed/2022/05/GHSA-m9hp-7333-625v/GHSA-m9hp-7333-625v.json @@ -7,12 +7,8 @@ "CVE-2011-1766" ], "details": "includes/User.php in MediaWiki before 1.16.5, when wgBlockDisablesLogin is enabled, does not clear certain cached data after verification of an auth token fails, which allows remote attackers to bypass authentication by creating crafted wikiUserID and wikiUserName cookies, or by leveraging an unattended workstation.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-m9jh-vhvg-rw99/GHSA-m9jh-vhvg-rw99.json b/advisories/unreviewed/2022/05/GHSA-m9jh-vhvg-rw99/GHSA-m9jh-vhvg-rw99.json index ec9ed274841..837261b6944 100644 --- a/advisories/unreviewed/2022/05/GHSA-m9jh-vhvg-rw99/GHSA-m9jh-vhvg-rw99.json +++ b/advisories/unreviewed/2022/05/GHSA-m9jh-vhvg-rw99/GHSA-m9jh-vhvg-rw99.json @@ -7,12 +7,8 @@ "CVE-2011-0756" ], "details": "The application server in Trustwave WebDefend Enterprise before 5.0 uses hardcoded console credentials, which makes it easier for remote attackers to read security-event data by using the remote console GUI to connect to the management port.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mccv-jqp5-6vx4/GHSA-mccv-jqp5-6vx4.json b/advisories/unreviewed/2022/05/GHSA-mccv-jqp5-6vx4/GHSA-mccv-jqp5-6vx4.json index 4caaac83ddb..b4ccaf44baf 100644 --- a/advisories/unreviewed/2022/05/GHSA-mccv-jqp5-6vx4/GHSA-mccv-jqp5-6vx4.json +++ b/advisories/unreviewed/2022/05/GHSA-mccv-jqp5-6vx4/GHSA-mccv-jqp5-6vx4.json @@ -7,12 +7,8 @@ "CVE-2010-4382" ], "details": "Multiple heap-based buffer overflows in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.4, RealPlayer Enterprise 2.1.2, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allow remote attackers to have an unspecified impact via a crafted RealMedia file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mf5x-rq5f-mc66/GHSA-mf5x-rq5f-mc66.json b/advisories/unreviewed/2022/05/GHSA-mf5x-rq5f-mc66/GHSA-mf5x-rq5f-mc66.json index ee61ddfd3c9..dc8824f3747 100644 --- a/advisories/unreviewed/2022/05/GHSA-mf5x-rq5f-mc66/GHSA-mf5x-rq5f-mc66.json +++ b/advisories/unreviewed/2022/05/GHSA-mf5x-rq5f-mc66/GHSA-mf5x-rq5f-mc66.json @@ -7,12 +7,8 @@ "CVE-2008-5686" ], "details": "IBM Tivoli Provisioning Manager (TPM) before 5.1.1.1 IF0006, when its LDAP service is shared with other applications, does not require that an LDAP user be listed in the TPM user records, which allows remote authenticated users to execute SOAP commands that access arbitrary TPM functionality, as demonstrated by running provisioning workflows.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mff3-87fp-5r9j/GHSA-mff3-87fp-5r9j.json b/advisories/unreviewed/2022/05/GHSA-mff3-87fp-5r9j/GHSA-mff3-87fp-5r9j.json index 28f985dcff3..32720134a02 100644 --- a/advisories/unreviewed/2022/05/GHSA-mff3-87fp-5r9j/GHSA-mff3-87fp-5r9j.json +++ b/advisories/unreviewed/2022/05/GHSA-mff3-87fp-5r9j/GHSA-mff3-87fp-5r9j.json @@ -7,12 +7,8 @@ "CVE-2011-0818" ], "details": "Unspecified vulnerability in Oracle JD Edwards EnterpriseOne Tools 8.9 GA through 8.98.4.1 and OneWorld Tools through 24.1.3 allows remote attackers to affect availability, related to Enterprise Infrastructure SEC.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mjv2-wx26-f7qx/GHSA-mjv2-wx26-f7qx.json b/advisories/unreviewed/2022/05/GHSA-mjv2-wx26-f7qx/GHSA-mjv2-wx26-f7qx.json index 65b7d4f0ecf..c89269a4305 100644 --- a/advisories/unreviewed/2022/05/GHSA-mjv2-wx26-f7qx/GHSA-mjv2-wx26-f7qx.json +++ b/advisories/unreviewed/2022/05/GHSA-mjv2-wx26-f7qx/GHSA-mjv2-wx26-f7qx.json @@ -7,12 +7,8 @@ "CVE-2010-4024" ], "details": "Cross-site request forgery (CSRF) vulnerability in HP Insight Control Power Management before 6.2 allows remote attackers to hijack the authentication of unspecified victims via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mm94-327g-jmg4/GHSA-mm94-327g-jmg4.json b/advisories/unreviewed/2022/05/GHSA-mm94-327g-jmg4/GHSA-mm94-327g-jmg4.json index ebff98d8f1e..b51f6d0254f 100644 --- a/advisories/unreviewed/2022/05/GHSA-mm94-327g-jmg4/GHSA-mm94-327g-jmg4.json +++ b/advisories/unreviewed/2022/05/GHSA-mm94-327g-jmg4/GHSA-mm94-327g-jmg4.json @@ -7,12 +7,8 @@ "CVE-2011-0176" ], "details": "Multiple buffer overflows in Apple Type Services (ATS) in Apple Mac OS X before 10.6.7 allow remote attackers to execute arbitrary code via a document that contains a crafted embedded Type 1 font.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mp3h-wxw3-74mx/GHSA-mp3h-wxw3-74mx.json b/advisories/unreviewed/2022/05/GHSA-mp3h-wxw3-74mx/GHSA-mp3h-wxw3-74mx.json index f0aa009b0cf..205889e7374 100644 --- a/advisories/unreviewed/2022/05/GHSA-mp3h-wxw3-74mx/GHSA-mp3h-wxw3-74mx.json +++ b/advisories/unreviewed/2022/05/GHSA-mp3h-wxw3-74mx/GHSA-mp3h-wxw3-74mx.json @@ -7,12 +7,8 @@ "CVE-2008-5235" ], "details": "Heap-based buffer overflow in the demux_real_send_chunk function in src/demuxers/demux_real.c in xine-lib before 1.1.15 allows remote attackers to execute arbitrary code via a crafted Real Media file. 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-mp62-5cgm-77x7/GHSA-mp62-5cgm-77x7.json b/advisories/unreviewed/2022/05/GHSA-mp62-5cgm-77x7/GHSA-mp62-5cgm-77x7.json index a1d2b0823d0..6d8b155a9c9 100644 --- a/advisories/unreviewed/2022/05/GHSA-mp62-5cgm-77x7/GHSA-mp62-5cgm-77x7.json +++ b/advisories/unreviewed/2022/05/GHSA-mp62-5cgm-77x7/GHSA-mp62-5cgm-77x7.json @@ -7,12 +7,8 @@ "CVE-2008-6144" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the WEC Discussion Forum (wec_discussion) extension 1.7.0 and earlier for TYPO3 allow remote attackers to inject arbitrary web script or HTML via unspecified vectors, a different issue than CVE-2008-3029.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mq64-hjh5-23vv/GHSA-mq64-hjh5-23vv.json b/advisories/unreviewed/2022/05/GHSA-mq64-hjh5-23vv/GHSA-mq64-hjh5-23vv.json index aeb01d4cec1..22ab5c874fb 100644 --- a/advisories/unreviewed/2022/05/GHSA-mq64-hjh5-23vv/GHSA-mq64-hjh5-23vv.json +++ b/advisories/unreviewed/2022/05/GHSA-mq64-hjh5-23vv/GHSA-mq64-hjh5-23vv.json @@ -7,12 +7,8 @@ "CVE-2011-0796" ], "details": "Unspecified vulnerability in the Applications Install component in Oracle E-Business Suite 11.5.10.2, 12.0.6, 12.1.1, 12.1.2, and 12.1.3 allows local users to affect confidentiality via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mq6f-3mw5-jg7g/GHSA-mq6f-3mw5-jg7g.json b/advisories/unreviewed/2022/05/GHSA-mq6f-3mw5-jg7g/GHSA-mq6f-3mw5-jg7g.json index 302c0cf928b..bc2a901e8d3 100644 --- a/advisories/unreviewed/2022/05/GHSA-mq6f-3mw5-jg7g/GHSA-mq6f-3mw5-jg7g.json +++ b/advisories/unreviewed/2022/05/GHSA-mq6f-3mw5-jg7g/GHSA-mq6f-3mw5-jg7g.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mq6h-jh39-cjg8/GHSA-mq6h-jh39-cjg8.json b/advisories/unreviewed/2022/05/GHSA-mq6h-jh39-cjg8/GHSA-mq6h-jh39-cjg8.json index d374b96a2f2..af5c4701d2a 100644 --- a/advisories/unreviewed/2022/05/GHSA-mq6h-jh39-cjg8/GHSA-mq6h-jh39-cjg8.json +++ b/advisories/unreviewed/2022/05/GHSA-mq6h-jh39-cjg8/GHSA-mq6h-jh39-cjg8.json @@ -7,12 +7,8 @@ "CVE-2011-2532" ], "details": "The json.decode function in util/json.lua in Prosody 0.8.x before 0.8.1 might allow remote attackers to cause a denial of service (infinite loop) via invalid JSON data, as demonstrated by truncated data.", - "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-mr8f-c664-gjmw/GHSA-mr8f-c664-gjmw.json b/advisories/unreviewed/2022/05/GHSA-mr8f-c664-gjmw/GHSA-mr8f-c664-gjmw.json index 0f1f1eae665..ab3eac05912 100644 --- a/advisories/unreviewed/2022/05/GHSA-mr8f-c664-gjmw/GHSA-mr8f-c664-gjmw.json +++ b/advisories/unreviewed/2022/05/GHSA-mr8f-c664-gjmw/GHSA-mr8f-c664-gjmw.json @@ -7,12 +7,8 @@ "CVE-2010-2603" ], "details": "RIM BlackBerry Desktop Software 4.7 through 6.0 for PC, and 1.0 for Mac, uses a weak password to encrypt a database backup file, which makes it easier for local users to decrypt the file via a brute force attack.", - "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/05/GHSA-mv2c-xpfp-7pmh/GHSA-mv2c-xpfp-7pmh.json b/advisories/unreviewed/2022/05/GHSA-mv2c-xpfp-7pmh/GHSA-mv2c-xpfp-7pmh.json index cab20039bab..374fd2bfa29 100644 --- a/advisories/unreviewed/2022/05/GHSA-mv2c-xpfp-7pmh/GHSA-mv2c-xpfp-7pmh.json +++ b/advisories/unreviewed/2022/05/GHSA-mv2c-xpfp-7pmh/GHSA-mv2c-xpfp-7pmh.json @@ -7,12 +7,8 @@ "CVE-2010-4550" ], "details": "IBM Lotus Notes Traveler before 8.5.1.3 allows remote attackers to cause a denial of service (sync failure) via a malformed document.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mvf9-3cvj-mh78/GHSA-mvf9-3cvj-mh78.json b/advisories/unreviewed/2022/05/GHSA-mvf9-3cvj-mh78/GHSA-mvf9-3cvj-mh78.json index b165b044a27..e6a906df864 100644 --- a/advisories/unreviewed/2022/05/GHSA-mvf9-3cvj-mh78/GHSA-mvf9-3cvj-mh78.json +++ b/advisories/unreviewed/2022/05/GHSA-mvf9-3cvj-mh78/GHSA-mvf9-3cvj-mh78.json @@ -7,12 +7,8 @@ "CVE-2010-4723" ], "details": "Smarty before 3.0.0, when security is enabled, does not prevent access to the (1) dynamic and (2) private object members of an assigned object, which has unspecified impact and remote attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mvfc-c4vf-7wwr/GHSA-mvfc-c4vf-7wwr.json b/advisories/unreviewed/2022/05/GHSA-mvfc-c4vf-7wwr/GHSA-mvfc-c4vf-7wwr.json index 528381df7ef..8fae8524364 100644 --- a/advisories/unreviewed/2022/05/GHSA-mvfc-c4vf-7wwr/GHSA-mvfc-c4vf-7wwr.json +++ b/advisories/unreviewed/2022/05/GHSA-mvfc-c4vf-7wwr/GHSA-mvfc-c4vf-7wwr.json @@ -7,12 +7,8 @@ "CVE-2010-3537" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise FMS - AM component in Oracle PeopleSoft and JDEdwards Suite 8.9 Bundle #38, 9.0 Bundle #31, and 9.1 Bundle #6 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mvq9-gwc4-9r68/GHSA-mvq9-gwc4-9r68.json b/advisories/unreviewed/2022/05/GHSA-mvq9-gwc4-9r68/GHSA-mvq9-gwc4-9r68.json index 825a7defa1e..871a63b937f 100644 --- a/advisories/unreviewed/2022/05/GHSA-mvq9-gwc4-9r68/GHSA-mvq9-gwc4-9r68.json +++ b/advisories/unreviewed/2022/05/GHSA-mvq9-gwc4-9r68/GHSA-mvq9-gwc4-9r68.json @@ -7,12 +7,8 @@ "CVE-2010-3902" ], "details": "OpenConnect before 2.26 places the webvpn cookie value in the debugging output, which might allow remote attackers to obtain sensitive information by reading this output, as demonstrated by output posted to the public openconnect-devel mailing list.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-mvv4-4mqg-wq2g/GHSA-mvv4-4mqg-wq2g.json b/advisories/unreviewed/2022/05/GHSA-mvv4-4mqg-wq2g/GHSA-mvv4-4mqg-wq2g.json index f28f61495f3..a79186e3626 100644 --- a/advisories/unreviewed/2022/05/GHSA-mvv4-4mqg-wq2g/GHSA-mvv4-4mqg-wq2g.json +++ b/advisories/unreviewed/2022/05/GHSA-mvv4-4mqg-wq2g/GHSA-mvv4-4mqg-wq2g.json @@ -7,12 +7,8 @@ "CVE-2011-1137" ], "details": "Integer overflow in the mod_sftp (aka SFTP) module in ProFTPD 1.3.3d and earlier allows remote attackers to cause a denial of service (memory consumption leading to OOM kill) via a malformed SSH message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -88,9 +84,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mwx6-jr67-8329/GHSA-mwx6-jr67-8329.json b/advisories/unreviewed/2022/05/GHSA-mwx6-jr67-8329/GHSA-mwx6-jr67-8329.json index 8832e8970d5..8ed6f2f8c91 100644 --- a/advisories/unreviewed/2022/05/GHSA-mwx6-jr67-8329/GHSA-mwx6-jr67-8329.json +++ b/advisories/unreviewed/2022/05/GHSA-mwx6-jr67-8329/GHSA-mwx6-jr67-8329.json @@ -7,12 +7,8 @@ "CVE-2010-3312" ], "details": "Epiphany 2.28 and 2.29, when WebKit and LibSoup are used, unconditionally displays a closed-lock icon for any URL beginning with the https: substring, without any warning to the user, which allows man-in-the-middle attackers to spoof arbitrary https web sites via a crafted X.509 server certificate.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -80,9 +76,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-mx23-5vvr-76x7/GHSA-mx23-5vvr-76x7.json b/advisories/unreviewed/2022/05/GHSA-mx23-5vvr-76x7/GHSA-mx23-5vvr-76x7.json index 02958633d54..9550e1a9053 100644 --- a/advisories/unreviewed/2022/05/GHSA-mx23-5vvr-76x7/GHSA-mx23-5vvr-76x7.json +++ b/advisories/unreviewed/2022/05/GHSA-mx23-5vvr-76x7/GHSA-mx23-5vvr-76x7.json @@ -7,12 +7,8 @@ "CVE-2008-5675" ], "details": "Unspecified vulnerability in IBM WebSphere Portal 6.0 before 6.0.1.5 has unknown impact and attack vectors related to \"Access problems with BasicAuthTAI.\"", - "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-mxw2-6hjp-j6qp/GHSA-mxw2-6hjp-j6qp.json b/advisories/unreviewed/2022/05/GHSA-mxw2-6hjp-j6qp/GHSA-mxw2-6hjp-j6qp.json index 664edc473ab..e26b341caf4 100644 --- a/advisories/unreviewed/2022/05/GHSA-mxw2-6hjp-j6qp/GHSA-mxw2-6hjp-j6qp.json +++ b/advisories/unreviewed/2022/05/GHSA-mxw2-6hjp-j6qp/GHSA-mxw2-6hjp-j6qp.json @@ -7,12 +7,8 @@ "CVE-2011-0115" ], "details": "The DOM level 2 implementation in WebKit, as used in Apple iTunes before 10.2 on Windows and Apple Safari, does not properly handle DOM manipulations associated with event listeners during processing of range objects, which allows man-in-the-middle attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via vectors related to iTunes Store browsing, a different vulnerability than other CVEs listed in APPLE-SA-2011-03-02-1.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p3jj-qcmf-c59q/GHSA-p3jj-qcmf-c59q.json b/advisories/unreviewed/2022/05/GHSA-p3jj-qcmf-c59q/GHSA-p3jj-qcmf-c59q.json index e4395816106..86692493349 100644 --- a/advisories/unreviewed/2022/05/GHSA-p3jj-qcmf-c59q/GHSA-p3jj-qcmf-c59q.json +++ b/advisories/unreviewed/2022/05/GHSA-p3jj-qcmf-c59q/GHSA-p3jj-qcmf-c59q.json @@ -7,12 +7,8 @@ "CVE-2011-2957" ], "details": "Unspecified vulnerability in Rockwell Automation FactoryTalk Diagnostics Viewer before V2.30.00 (CPR9 SR3) allows local users to execute arbitrary code via a crafted FactoryTalk Diagnostics Viewer (.ftd) configuration file, which triggers memory corruption.", - "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-p75r-4c9j-53m6/GHSA-p75r-4c9j-53m6.json b/advisories/unreviewed/2022/05/GHSA-p75r-4c9j-53m6/GHSA-p75r-4c9j-53m6.json index 2f4d7576d79..ce232f461c1 100644 --- a/advisories/unreviewed/2022/05/GHSA-p75r-4c9j-53m6/GHSA-p75r-4c9j-53m6.json +++ b/advisories/unreviewed/2022/05/GHSA-p75r-4c9j-53m6/GHSA-p75r-4c9j-53m6.json @@ -7,12 +7,8 @@ "CVE-2010-4367" ], "details": "awstats.cgi in AWStats before 7.0 accepts a configdir parameter in the URL, which allows remote attackers to execute arbitrary commands via a crafted configuration file located on a (1) WebDAV server or (2) NFS server.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p7f7-gp26-q6h5/GHSA-p7f7-gp26-q6h5.json b/advisories/unreviewed/2022/05/GHSA-p7f7-gp26-q6h5/GHSA-p7f7-gp26-q6h5.json index 87a88661739..471e0c1332c 100644 --- a/advisories/unreviewed/2022/05/GHSA-p7f7-gp26-q6h5/GHSA-p7f7-gp26-q6h5.json +++ b/advisories/unreviewed/2022/05/GHSA-p7f7-gp26-q6h5/GHSA-p7f7-gp26-q6h5.json @@ -7,12 +7,8 @@ "CVE-2011-1903" ], "details": "SQL injection vulnerability in an unspecified function in Proofpoint Messaging Security Gateway 6.2.0.263:6.2.0.237 and earlier in Proofpoint Protection Server 5.5.3, 5.5.4, 5.5.5, 6.0.2, 6.1.1, and 6.2.0 allows remote attackers to execute arbitrary SQL commands via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-p8w5-8452-95gq/GHSA-p8w5-8452-95gq.json b/advisories/unreviewed/2022/05/GHSA-p8w5-8452-95gq/GHSA-p8w5-8452-95gq.json index 6c083dfbe19..a6a4bc4c039 100644 --- a/advisories/unreviewed/2022/05/GHSA-p8w5-8452-95gq/GHSA-p8w5-8452-95gq.json +++ b/advisories/unreviewed/2022/05/GHSA-p8w5-8452-95gq/GHSA-p8w5-8452-95gq.json @@ -7,12 +7,8 @@ "CVE-2011-0167" ], "details": "The windows functionality in WebKit in Apple Safari before 5.0.4 allows remote attackers to bypass the Same Origin Policy, and force the upload of arbitrary local files from a client computer, via a crafted web site.", - "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-p938-837q-c8xf/GHSA-p938-837q-c8xf.json b/advisories/unreviewed/2022/05/GHSA-p938-837q-c8xf/GHSA-p938-837q-c8xf.json index 366728c2d3e..f5cc78043a5 100644 --- a/advisories/unreviewed/2022/05/GHSA-p938-837q-c8xf/GHSA-p938-837q-c8xf.json +++ b/advisories/unreviewed/2022/05/GHSA-p938-837q-c8xf/GHSA-p938-837q-c8xf.json @@ -7,12 +7,8 @@ "CVE-2010-4607" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in Habari 0.6.5, when register_globals is enabled, allow remote attackers to inject arbitrary web script or HTML via the (1) additem_form parameter to system/admin/dash_additem.php and the (2) status_data[] parameter to system/admin/dash_status.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-pc4w-v257-3qm4/GHSA-pc4w-v257-3qm4.json b/advisories/unreviewed/2022/05/GHSA-pc4w-v257-3qm4/GHSA-pc4w-v257-3qm4.json index c3e34abc11f..4abde165e18 100644 --- a/advisories/unreviewed/2022/05/GHSA-pc4w-v257-3qm4/GHSA-pc4w-v257-3qm4.json +++ b/advisories/unreviewed/2022/05/GHSA-pc4w-v257-3qm4/GHSA-pc4w-v257-3qm4.json @@ -7,12 +7,8 @@ "CVE-2010-4209" ], "details": "Cross-site scripting (XSS) vulnerability in the Flash component infrastructure in YUI 2.8.0 through 2.8.1, as used in Bugzilla 3.7.1 through 3.7.3 and 4.1, allows remote attackers to inject arbitrary web script or HTML via vectors related to swfstore/swfstore.swf.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pc83-6763-fqcx/GHSA-pc83-6763-fqcx.json b/advisories/unreviewed/2022/05/GHSA-pc83-6763-fqcx/GHSA-pc83-6763-fqcx.json index 4fcf944209a..4a61245c58d 100644 --- a/advisories/unreviewed/2022/05/GHSA-pc83-6763-fqcx/GHSA-pc83-6763-fqcx.json +++ b/advisories/unreviewed/2022/05/GHSA-pc83-6763-fqcx/GHSA-pc83-6763-fqcx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pc8x-vq86-p9h4/GHSA-pc8x-vq86-p9h4.json b/advisories/unreviewed/2022/05/GHSA-pc8x-vq86-p9h4/GHSA-pc8x-vq86-p9h4.json index 8d8668aab58..5acd4cddef6 100644 --- a/advisories/unreviewed/2022/05/GHSA-pc8x-vq86-p9h4/GHSA-pc8x-vq86-p9h4.json +++ b/advisories/unreviewed/2022/05/GHSA-pc8x-vq86-p9h4/GHSA-pc8x-vq86-p9h4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -79,9 +77,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-pcp4-543c-r28m/GHSA-pcp4-543c-r28m.json b/advisories/unreviewed/2022/05/GHSA-pcp4-543c-r28m/GHSA-pcp4-543c-r28m.json index 1203550bc2d..238ee1630de 100644 --- a/advisories/unreviewed/2022/05/GHSA-pcp4-543c-r28m/GHSA-pcp4-543c-r28m.json +++ b/advisories/unreviewed/2022/05/GHSA-pcp4-543c-r28m/GHSA-pcp4-543c-r28m.json @@ -7,12 +7,8 @@ "CVE-2010-3794" ], "details": "QuickTime in Apple Mac OS X 10.6.x before 10.6.5 accesses uninitialized memory locations during processing of FlashPix image data, which allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted FlashPix file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pg34-cj9q-gpcg/GHSA-pg34-cj9q-gpcg.json b/advisories/unreviewed/2022/05/GHSA-pg34-cj9q-gpcg/GHSA-pg34-cj9q-gpcg.json index 5dee590c6f5..faca116ad69 100644 --- a/advisories/unreviewed/2022/05/GHSA-pg34-cj9q-gpcg/GHSA-pg34-cj9q-gpcg.json +++ b/advisories/unreviewed/2022/05/GHSA-pg34-cj9q-gpcg/GHSA-pg34-cj9q-gpcg.json @@ -7,12 +7,8 @@ "CVE-2011-0804" ], "details": "Unspecified vulnerability in the Database Vault component in Oracle Database Server 10.2.0.3, 10.2.0.4, 10.2.0.5, 11.1.0.7, 11.2.0.1, and 11.2.0.2 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-pgwh-48cm-wrqw/GHSA-pgwh-48cm-wrqw.json b/advisories/unreviewed/2022/05/GHSA-pgwh-48cm-wrqw/GHSA-pgwh-48cm-wrqw.json index fba8c5cc439..82ef199833d 100644 --- a/advisories/unreviewed/2022/05/GHSA-pgwh-48cm-wrqw/GHSA-pgwh-48cm-wrqw.json +++ b/advisories/unreviewed/2022/05/GHSA-pgwh-48cm-wrqw/GHSA-pgwh-48cm-wrqw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-phwc-895q-f8m7/GHSA-phwc-895q-f8m7.json b/advisories/unreviewed/2022/05/GHSA-phwc-895q-f8m7/GHSA-phwc-895q-f8m7.json index 6b3d82b7d28..1ad184d6f49 100644 --- a/advisories/unreviewed/2022/05/GHSA-phwc-895q-f8m7/GHSA-phwc-895q-f8m7.json +++ b/advisories/unreviewed/2022/05/GHSA-phwc-895q-f8m7/GHSA-phwc-895q-f8m7.json @@ -7,12 +7,8 @@ "CVE-2010-4715" ], "details": "Multiple directory traversal vulnerabilities in the (1) WebAccess Agent and (2) Document Viewer Agent components in Novell GroupWise before 8.02HP allow remote attackers to read arbitrary files via unspecified vectors. 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-ppfq-948g-73vc/GHSA-ppfq-948g-73vc.json b/advisories/unreviewed/2022/05/GHSA-ppfq-948g-73vc/GHSA-ppfq-948g-73vc.json index 20c410649c8..c9091ddcc72 100644 --- a/advisories/unreviewed/2022/05/GHSA-ppfq-948g-73vc/GHSA-ppfq-948g-73vc.json +++ b/advisories/unreviewed/2022/05/GHSA-ppfq-948g-73vc/GHSA-ppfq-948g-73vc.json @@ -7,12 +7,8 @@ "CVE-2010-4307" ], "details": "Buffer overflow in Adobe Shockwave Player before 11.5.9.620 allows attackers to execute arbitrary code via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-ppgj-6hgj-9892/GHSA-ppgj-6hgj-9892.json b/advisories/unreviewed/2022/05/GHSA-ppgj-6hgj-9892/GHSA-ppgj-6hgj-9892.json index 805218a92dd..6952d1f1aad 100644 --- a/advisories/unreviewed/2022/05/GHSA-ppgj-6hgj-9892/GHSA-ppgj-6hgj-9892.json +++ b/advisories/unreviewed/2022/05/GHSA-ppgj-6hgj-9892/GHSA-ppgj-6hgj-9892.json @@ -7,12 +7,8 @@ "CVE-2011-1321" ], "details": "The AuthCache purge implementation in the Security component in IBM WebSphere Application Server (WAS) 6.1.0.x before 6.1.0.37 and 7.x before 7.0.0.15 does not purge a user from the PlatformCredential cache, which might allow remote authenticated users to gain privileges by leveraging a group membership specified in an old RACF Object (aka RACO).", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-ppx3-whp5-5cp4/GHSA-ppx3-whp5-5cp4.json b/advisories/unreviewed/2022/05/GHSA-ppx3-whp5-5cp4/GHSA-ppx3-whp5-5cp4.json index 7c1d0b2abd4..818fa5125e6 100644 --- a/advisories/unreviewed/2022/05/GHSA-ppx3-whp5-5cp4/GHSA-ppx3-whp5-5cp4.json +++ b/advisories/unreviewed/2022/05/GHSA-ppx3-whp5-5cp4/GHSA-ppx3-whp5-5cp4.json @@ -7,12 +7,8 @@ "CVE-2010-1837" ], "details": "CoreText in Apple Mac OS X 10.5.8 and 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption) via a crafted font in a PDF document.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pq35-g3gc-7vg7/GHSA-pq35-g3gc-7vg7.json b/advisories/unreviewed/2022/05/GHSA-pq35-g3gc-7vg7/GHSA-pq35-g3gc-7vg7.json index 8869df222b0..df115f569b5 100644 --- a/advisories/unreviewed/2022/05/GHSA-pq35-g3gc-7vg7/GHSA-pq35-g3gc-7vg7.json +++ b/advisories/unreviewed/2022/05/GHSA-pq35-g3gc-7vg7/GHSA-pq35-g3gc-7vg7.json @@ -7,12 +7,8 @@ "CVE-2010-4383" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.4, RealPlayer Enterprise 2.1.2, Mac RealPlayer 11.0 through 12.0.0.1444, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allows remote attackers to have an unspecified impact via a crafted RA5 file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pq5j-h89p-xfxj/GHSA-pq5j-h89p-xfxj.json b/advisories/unreviewed/2022/05/GHSA-pq5j-h89p-xfxj/GHSA-pq5j-h89p-xfxj.json index 6a3a0164ce9..2b5405b3647 100644 --- a/advisories/unreviewed/2022/05/GHSA-pq5j-h89p-xfxj/GHSA-pq5j-h89p-xfxj.json +++ b/advisories/unreviewed/2022/05/GHSA-pq5j-h89p-xfxj/GHSA-pq5j-h89p-xfxj.json @@ -7,12 +7,8 @@ "CVE-2011-1407" ], "details": "The DKIM implementation in Exim 4.7x before 4.76 permits matching for DKIM identities to apply to lookup items, instead of only strings, which allows remote attackers to execute arbitrary code or access a filesystem via a crafted identity.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pqjq-7p8q-hp58/GHSA-pqjq-7p8q-hp58.json b/advisories/unreviewed/2022/05/GHSA-pqjq-7p8q-hp58/GHSA-pqjq-7p8q-hp58.json index c30b15e34e2..9f185445a26 100644 --- a/advisories/unreviewed/2022/05/GHSA-pqjq-7p8q-hp58/GHSA-pqjq-7p8q-hp58.json +++ b/advisories/unreviewed/2022/05/GHSA-pqjq-7p8q-hp58/GHSA-pqjq-7p8q-hp58.json @@ -7,12 +7,8 @@ "CVE-2010-1676" ], "details": "Heap-based buffer overflow in Tor before 0.2.1.28 and 0.2.2.x before 0.2.2.20-alpha allows remote attackers to cause a denial of service (daemon crash) or possibly execute arbitrary code via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-pr87-7v98-fx4p/GHSA-pr87-7v98-fx4p.json b/advisories/unreviewed/2022/05/GHSA-pr87-7v98-fx4p/GHSA-pr87-7v98-fx4p.json index fc869099bd7..6eff63d330f 100644 --- a/advisories/unreviewed/2022/05/GHSA-pr87-7v98-fx4p/GHSA-pr87-7v98-fx4p.json +++ b/advisories/unreviewed/2022/05/GHSA-pr87-7v98-fx4p/GHSA-pr87-7v98-fx4p.json @@ -7,12 +7,8 @@ "CVE-2011-2611" ], "details": "Unspecified vulnerability in the printing functionality in Opera before 11.50 allows user-assisted remote attackers to cause a denial of service (application crash) via a crafted web page.", - "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-px5f-9v9f-4cpw/GHSA-px5f-9v9f-4cpw.json b/advisories/unreviewed/2022/05/GHSA-px5f-9v9f-4cpw/GHSA-px5f-9v9f-4cpw.json index c4001798ce2..d67ec75f625 100644 --- a/advisories/unreviewed/2022/05/GHSA-px5f-9v9f-4cpw/GHSA-px5f-9v9f-4cpw.json +++ b/advisories/unreviewed/2022/05/GHSA-px5f-9v9f-4cpw/GHSA-px5f-9v9f-4cpw.json @@ -7,12 +7,8 @@ "CVE-2010-3707" ], "details": "plugins/acl/acl-backend-vfile.c in Dovecot 1.2.x before 1.2.15 and 2.0.x before 2.0.5 interprets an ACL entry as a directive to add to the permissions granted by another ACL entry, instead of a directive to replace the permissions granted by another ACL entry, in certain circumstances involving more specific entries that occur after less specific entries, which allows remote authenticated users to bypass intended access restrictions via a request to read or modify a mailbox.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -72,9 +68,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-pxmv-56j9-pwp4/GHSA-pxmv-56j9-pwp4.json b/advisories/unreviewed/2022/05/GHSA-pxmv-56j9-pwp4/GHSA-pxmv-56j9-pwp4.json index 758f5845e0b..43dbc33c4a9 100644 --- a/advisories/unreviewed/2022/05/GHSA-pxmv-56j9-pwp4/GHSA-pxmv-56j9-pwp4.json +++ b/advisories/unreviewed/2022/05/GHSA-pxmv-56j9-pwp4/GHSA-pxmv-56j9-pwp4.json @@ -7,12 +7,8 @@ "CVE-2010-3528" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise CRM - Common Components component in Oracle PeopleSoft and JDEdwards Suite 8.9 Bundle #41, 9.0 Bundle #28, and 9.1 Bundle #4 allows remote authenticated users to affect confidentiality via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-pxwr-h5q6-5xr3/GHSA-pxwr-h5q6-5xr3.json b/advisories/unreviewed/2022/05/GHSA-pxwr-h5q6-5xr3/GHSA-pxwr-h5q6-5xr3.json index 3ac490af647..6380f911d51 100644 --- a/advisories/unreviewed/2022/05/GHSA-pxwr-h5q6-5xr3/GHSA-pxwr-h5q6-5xr3.json +++ b/advisories/unreviewed/2022/05/GHSA-pxwr-h5q6-5xr3/GHSA-pxwr-h5q6-5xr3.json @@ -7,12 +7,8 @@ "CVE-2011-2615" ], "details": "Unspecified vulnerability in Opera before 11.50 allows remote attackers to cause a denial of service (application hang) via unknown content on a web page, as demonstrated by domiteca.com.", - "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-q2pp-3636-pf45/GHSA-q2pp-3636-pf45.json b/advisories/unreviewed/2022/05/GHSA-q2pp-3636-pf45/GHSA-q2pp-3636-pf45.json index 5f775130e91..c66c3edec59 100644 --- a/advisories/unreviewed/2022/05/GHSA-q2pp-3636-pf45/GHSA-q2pp-3636-pf45.json +++ b/advisories/unreviewed/2022/05/GHSA-q2pp-3636-pf45/GHSA-q2pp-3636-pf45.json @@ -7,12 +7,8 @@ "CVE-2011-0766" ], "details": "The random number generator in the Crypto application before 2.0.2.2, and SSH before 2.0.5, as used in the Erlang/OTP ssh library before R14B03, uses predictable seeds based on the current time, which makes it easier for remote attackers to guess DSA host and SSH session keys.", - "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-q39j-mm6g-6jg5/GHSA-q39j-mm6g-6jg5.json b/advisories/unreviewed/2022/05/GHSA-q39j-mm6g-6jg5/GHSA-q39j-mm6g-6jg5.json index 4101595ea24..7656c702856 100644 --- a/advisories/unreviewed/2022/05/GHSA-q39j-mm6g-6jg5/GHSA-q39j-mm6g-6jg5.json +++ b/advisories/unreviewed/2022/05/GHSA-q39j-mm6g-6jg5/GHSA-q39j-mm6g-6jg5.json @@ -7,12 +7,8 @@ "CVE-2010-4386" ], "details": "RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.4, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allow remote attackers to execute arbitrary code or cause a denial of service (heap memory corruption) via a crafted RealMedia video file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q48g-9298-9g9g/GHSA-q48g-9298-9g9g.json b/advisories/unreviewed/2022/05/GHSA-q48g-9298-9g9g/GHSA-q48g-9298-9g9g.json index 176be530448..6f9e662f062 100644 --- a/advisories/unreviewed/2022/05/GHSA-q48g-9298-9g9g/GHSA-q48g-9298-9g9g.json +++ b/advisories/unreviewed/2022/05/GHSA-q48g-9298-9g9g/GHSA-q48g-9298-9g9g.json @@ -7,12 +7,8 @@ "CVE-2010-4718" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the Lyftenbloggie (com_lyftenbloggie) component 1.1.0 for Joomla! allow remote attackers to inject arbitrary web script or HTML via the (1) tag and (2) category parameters to index.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q59j-r89m-6v8h/GHSA-q59j-r89m-6v8h.json b/advisories/unreviewed/2022/05/GHSA-q59j-r89m-6v8h/GHSA-q59j-r89m-6v8h.json index 4cbea137950..cb872258171 100644 --- a/advisories/unreviewed/2022/05/GHSA-q59j-r89m-6v8h/GHSA-q59j-r89m-6v8h.json +++ b/advisories/unreviewed/2022/05/GHSA-q59j-r89m-6v8h/GHSA-q59j-r89m-6v8h.json @@ -7,12 +7,8 @@ "CVE-2008-5845" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in Six Apart Movable Type (MT) before 4.23 allow remote attackers to inject arbitrary web script or HTML via a (1) MTEntryAuthorUsername, (2) MTAuthorDisplayName, (3) MTEntryAuthorDisplayName, or (4) MTCommenterName field in a Profile View template; a (5) listing screen or (6) edit screen in the CMS app; (7) a TrackBack title, related to the HTML sanitization library; or (8) a user archive name (aka archive title) on a published Community Blog template.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q66v-pchp-x9r8/GHSA-q66v-pchp-x9r8.json b/advisories/unreviewed/2022/05/GHSA-q66v-pchp-x9r8/GHSA-q66v-pchp-x9r8.json index fcde692e0f4..f69b83393a4 100644 --- a/advisories/unreviewed/2022/05/GHSA-q66v-pchp-x9r8/GHSA-q66v-pchp-x9r8.json +++ b/advisories/unreviewed/2022/05/GHSA-q66v-pchp-x9r8/GHSA-q66v-pchp-x9r8.json @@ -7,12 +7,8 @@ "CVE-2010-1841" ], "details": "Disk Images in Apple Mac OS X 10.5.8 and 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via a crafted UDIF image.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q73v-rr94-8cgh/GHSA-q73v-rr94-8cgh.json b/advisories/unreviewed/2022/05/GHSA-q73v-rr94-8cgh/GHSA-q73v-rr94-8cgh.json index 0f1a32bbb38..d40d02199ab 100644 --- a/advisories/unreviewed/2022/05/GHSA-q73v-rr94-8cgh/GHSA-q73v-rr94-8cgh.json +++ b/advisories/unreviewed/2022/05/GHSA-q73v-rr94-8cgh/GHSA-q73v-rr94-8cgh.json @@ -7,12 +7,8 @@ "CVE-2011-0331" ], "details": "Use-after-free vulnerability in the addOSPLext method in the Honeywell ScanServer ActiveX control 780.0.20.5 allows remote attackers to execute arbitrary code via a crafted HTML document.", - "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-q789-q4c9-c8vx/GHSA-q789-q4c9-c8vx.json b/advisories/unreviewed/2022/05/GHSA-q789-q4c9-c8vx/GHSA-q789-q4c9-c8vx.json index 18f2d1ef27f..c68829a852a 100644 --- a/advisories/unreviewed/2022/05/GHSA-q789-q4c9-c8vx/GHSA-q789-q4c9-c8vx.json +++ b/advisories/unreviewed/2022/05/GHSA-q789-q4c9-c8vx/GHSA-q789-q4c9-c8vx.json @@ -7,12 +7,8 @@ "CVE-2011-0894" ], "details": "Unspecified vulnerability in HP Operations 9.10 on UNIX platforms allows remote authenticated users to bypass intended access restrictions via unknown vectors.", - "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-q855-7hwp-xjwh/GHSA-q855-7hwp-xjwh.json b/advisories/unreviewed/2022/05/GHSA-q855-7hwp-xjwh/GHSA-q855-7hwp-xjwh.json index e3a225aba5e..f73392c5ee6 100644 --- a/advisories/unreviewed/2022/05/GHSA-q855-7hwp-xjwh/GHSA-q855-7hwp-xjwh.json +++ b/advisories/unreviewed/2022/05/GHSA-q855-7hwp-xjwh/GHSA-q855-7hwp-xjwh.json @@ -7,12 +7,8 @@ "CVE-2011-1127" ], "details": "SSI.php in Simple Machines Forum (SMF) before 1.1.13, and 2.x before 2.0 RC5, does not properly restrict guest access, which allows remote attackers to have an unspecified impact via unknown vectors.", - "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-q992-986p-ffh2/GHSA-q992-986p-ffh2.json b/advisories/unreviewed/2022/05/GHSA-q992-986p-ffh2/GHSA-q992-986p-ffh2.json index 108aacbf6a0..e0b84888d45 100644 --- a/advisories/unreviewed/2022/05/GHSA-q992-986p-ffh2/GHSA-q992-986p-ffh2.json +++ b/advisories/unreviewed/2022/05/GHSA-q992-986p-ffh2/GHSA-q992-986p-ffh2.json @@ -7,12 +7,8 @@ "CVE-2011-2180" ], "details": "Cross-site scripting (XSS) vulnerability in dereferer.php in A Really Simple Chat (ARSC) 3.3-rc2 allows remote attackers to inject arbitrary web script or HTML via the arsc_link parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-q9w4-w4p4-hp9h/GHSA-q9w4-w4p4-hp9h.json b/advisories/unreviewed/2022/05/GHSA-q9w4-w4p4-hp9h/GHSA-q9w4-w4p4-hp9h.json index 91187bd9c65..9fb476861ab 100644 --- a/advisories/unreviewed/2022/05/GHSA-q9w4-w4p4-hp9h/GHSA-q9w4-w4p4-hp9h.json +++ b/advisories/unreviewed/2022/05/GHSA-q9w4-w4p4-hp9h/GHSA-q9w4-w4p4-hp9h.json @@ -7,12 +7,8 @@ "CVE-2011-1317" ], "details": "Memory leak in com.ibm.ws.jsp.runtime.WASJSPStrBufferImpl in the JavaServer Pages (JSP) component in IBM WebSphere Application Server (WAS) 6.1.0.x before 6.1.0.37 and 7.x before 7.0.0.15 allows remote attackers to cause a denial of service (memory consumption) by sending many JSP requests that trigger large responses.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qc3q-2v3g-8x48/GHSA-qc3q-2v3g-8x48.json b/advisories/unreviewed/2022/05/GHSA-qc3q-2v3g-8x48/GHSA-qc3q-2v3g-8x48.json index 0ae94e990be..35865306591 100644 --- a/advisories/unreviewed/2022/05/GHSA-qc3q-2v3g-8x48/GHSA-qc3q-2v3g-8x48.json +++ b/advisories/unreviewed/2022/05/GHSA-qc3q-2v3g-8x48/GHSA-qc3q-2v3g-8x48.json @@ -7,12 +7,8 @@ "CVE-2011-1032" ], "details": "IBM Lotus Connections 3.0, when IBM WebSphere Application Server 7.0.0.11 is used, does not properly restrict access to the internal login module, which has unspecified impact and attack vectors.", - "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-qc46-qp72-2w2x/GHSA-qc46-qp72-2w2x.json b/advisories/unreviewed/2022/05/GHSA-qc46-qp72-2w2x/GHSA-qc46-qp72-2w2x.json index 320fe90d571..f0e36f81508 100644 --- a/advisories/unreviewed/2022/05/GHSA-qc46-qp72-2w2x/GHSA-qc46-qp72-2w2x.json +++ b/advisories/unreviewed/2022/05/GHSA-qc46-qp72-2w2x/GHSA-qc46-qp72-2w2x.json @@ -7,12 +7,8 @@ "CVE-2011-1311" ], "details": "The Security component in IBM WebSphere Application Server (WAS) before 7.0.0.15, when a J2EE 1.4 application is used, determines the security role mapping on the basis of the ibm-application-bnd.xml file instead of the intended ibm-application-bnd.xmi file, which might allow remote authenticated users to gain privileges in opportunistic circumstances by requesting a service.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qc4x-96qg-jfhq/GHSA-qc4x-96qg-jfhq.json b/advisories/unreviewed/2022/05/GHSA-qc4x-96qg-jfhq/GHSA-qc4x-96qg-jfhq.json index 95b733b4189..c027809dc00 100644 --- a/advisories/unreviewed/2022/05/GHSA-qc4x-96qg-jfhq/GHSA-qc4x-96qg-jfhq.json +++ b/advisories/unreviewed/2022/05/GHSA-qc4x-96qg-jfhq/GHSA-qc4x-96qg-jfhq.json @@ -7,12 +7,8 @@ "CVE-2010-4093" ], "details": "Adobe Shockwave Player before 11.5.9.620 allows attackers to execute arbitrary code or cause a denial of service (memory corruption) via unspecified vectors, a different vulnerability than CVE-2011-0555, CVE-2010-4187, CVE-2010-4190, CVE-2010-4191, CVE-2010-4192, and CVE-2010-4306.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qc99-p224-5m7g/GHSA-qc99-p224-5m7g.json b/advisories/unreviewed/2022/05/GHSA-qc99-p224-5m7g/GHSA-qc99-p224-5m7g.json index 681baf495f5..03df053e350 100644 --- a/advisories/unreviewed/2022/05/GHSA-qc99-p224-5m7g/GHSA-qc99-p224-5m7g.json +++ b/advisories/unreviewed/2022/05/GHSA-qc99-p224-5m7g/GHSA-qc99-p224-5m7g.json @@ -7,12 +7,8 @@ "CVE-2010-4785" ], "details": "The do_extendedOp function in ibmslapd in IBM Tivoli Directory Server (TDS) 6.0 before 6.0.0.62 (aka 6.0.0.8-TIV-ITDS-IF0004) on Linux, Solaris, and Windows allows remote authenticated users to cause a denial of service (ABEND) via a malformed LDAP extended operation that triggers certain comparisons involving the NULL operation OID.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qfqc-cj76-7mqj/GHSA-qfqc-cj76-7mqj.json b/advisories/unreviewed/2022/05/GHSA-qfqc-cj76-7mqj/GHSA-qfqc-cj76-7mqj.json index 26f19881278..e6728d90e18 100644 --- a/advisories/unreviewed/2022/05/GHSA-qfqc-cj76-7mqj/GHSA-qfqc-cj76-7mqj.json +++ b/advisories/unreviewed/2022/05/GHSA-qfqc-cj76-7mqj/GHSA-qfqc-cj76-7mqj.json @@ -7,12 +7,8 @@ "CVE-2011-1504" ], "details": "Cross-site scripting (XSS) vulnerability in Liferay Portal Community Edition (CE) 5.x and 6.x before 6.0.6 GA allows remote authenticated users to inject arbitrary web script or HTML via a blog title.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qg7g-2cwq-3jm2/GHSA-qg7g-2cwq-3jm2.json b/advisories/unreviewed/2022/05/GHSA-qg7g-2cwq-3jm2/GHSA-qg7g-2cwq-3jm2.json index 9b5c3e4bdd0..3ba50871f42 100644 --- a/advisories/unreviewed/2022/05/GHSA-qg7g-2cwq-3jm2/GHSA-qg7g-2cwq-3jm2.json +++ b/advisories/unreviewed/2022/05/GHSA-qg7g-2cwq-3jm2/GHSA-qg7g-2cwq-3jm2.json @@ -7,12 +7,8 @@ "CVE-2010-4412" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in pfSense 2 beta 4 allow remote attackers to inject arbitrary web script or HTML via (1) the id parameter in an olsrd.xml action to pkg_edit.php, (2) the xml parameter to pkg.php, or the if parameter to (3) status_graph.php or (4) interfaces.php, a different vulnerability than CVE-2008-1182 and CVE-2010-4246.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qgg5-h322-m2xw/GHSA-qgg5-h322-m2xw.json b/advisories/unreviewed/2022/05/GHSA-qgg5-h322-m2xw/GHSA-qgg5-h322-m2xw.json index 8d32f6d2202..758cd5dc99a 100644 --- a/advisories/unreviewed/2022/05/GHSA-qgg5-h322-m2xw/GHSA-qgg5-h322-m2xw.json +++ b/advisories/unreviewed/2022/05/GHSA-qgg5-h322-m2xw/GHSA-qgg5-h322-m2xw.json @@ -7,12 +7,8 @@ "CVE-2010-3703" ], "details": "The PostScriptFunction::PostScriptFunction function in poppler/Function.cc in the PDF parser in poppler 0.8.7 and possibly other versions up to 0.15.1, and possibly other products, allows context-dependent attackers to cause a denial of service (crash) via a PDF file that triggers an uninitialized pointer dereference.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qgg6-mxj6-rcxr/GHSA-qgg6-mxj6-rcxr.json b/advisories/unreviewed/2022/05/GHSA-qgg6-mxj6-rcxr/GHSA-qgg6-mxj6-rcxr.json index eda3a54bf5d..e3b7a3eae41 100644 --- a/advisories/unreviewed/2022/05/GHSA-qgg6-mxj6-rcxr/GHSA-qgg6-mxj6-rcxr.json +++ b/advisories/unreviewed/2022/05/GHSA-qgg6-mxj6-rcxr/GHSA-qgg6-mxj6-rcxr.json @@ -7,12 +7,8 @@ "CVE-2010-4114" ], "details": "Cross-site scripting (XSS) vulnerability in HP Discovery & Dependency Mapping Inventory (DDMI) 2.5x, 7.5x, and 7.6x allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qgrm-h8v4-5h63/GHSA-qgrm-h8v4-5h63.json b/advisories/unreviewed/2022/05/GHSA-qgrm-h8v4-5h63/GHSA-qgrm-h8v4-5h63.json index 034aa29a66f..fd664bb9e7f 100644 --- a/advisories/unreviewed/2022/05/GHSA-qgrm-h8v4-5h63/GHSA-qgrm-h8v4-5h63.json +++ b/advisories/unreviewed/2022/05/GHSA-qgrm-h8v4-5h63/GHSA-qgrm-h8v4-5h63.json @@ -7,12 +7,8 @@ "CVE-2011-1001" ], "details": "dexdump in Android SDK before 2.3 does not properly perform structural verification, which allows user-assisted remote attackers to cause a denial of service (dexdump crash) and possibly execute arbitrary code via a malformed APK or dex file that calls a method using more arguments than the number of register that have been declared for that method.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qjmf-pxfv-36h9/GHSA-qjmf-pxfv-36h9.json b/advisories/unreviewed/2022/05/GHSA-qjmf-pxfv-36h9/GHSA-qjmf-pxfv-36h9.json index eecf5fbe095..fa14a040b34 100644 --- a/advisories/unreviewed/2022/05/GHSA-qjmf-pxfv-36h9/GHSA-qjmf-pxfv-36h9.json +++ b/advisories/unreviewed/2022/05/GHSA-qjmf-pxfv-36h9/GHSA-qjmf-pxfv-36h9.json @@ -7,12 +7,8 @@ "CVE-2010-3578" ], "details": "Unspecified vulnerability in Oracle OpenSolaris allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Depot Server.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qjqh-6r8w-jq68/GHSA-qjqh-6r8w-jq68.json b/advisories/unreviewed/2022/05/GHSA-qjqh-6r8w-jq68/GHSA-qjqh-6r8w-jq68.json index a18d704004a..3a3bb3ef550 100644 --- a/advisories/unreviewed/2022/05/GHSA-qjqh-6r8w-jq68/GHSA-qjqh-6r8w-jq68.json +++ b/advisories/unreviewed/2022/05/GHSA-qjqh-6r8w-jq68/GHSA-qjqh-6r8w-jq68.json @@ -7,12 +7,8 @@ "CVE-2011-0790" ], "details": "Unspecified vulnerability in Oracle Solaris 9 and 10 allows local users to affect confidentiality via unknown vectors related to wbem.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qm2j-8rr2-62rh/GHSA-qm2j-8rr2-62rh.json b/advisories/unreviewed/2022/05/GHSA-qm2j-8rr2-62rh/GHSA-qm2j-8rr2-62rh.json index 6b0bf862475..28ed1a33e0c 100644 --- a/advisories/unreviewed/2022/05/GHSA-qm2j-8rr2-62rh/GHSA-qm2j-8rr2-62rh.json +++ b/advisories/unreviewed/2022/05/GHSA-qm2j-8rr2-62rh/GHSA-qm2j-8rr2-62rh.json @@ -7,12 +7,8 @@ "CVE-2010-4587" ], "details": "Opera before 11.00 on Windows does not properly implement the Insecure Third Party Module warning message, which might make it easier for user-assisted remote attackers to have an unspecified impact via a crafted module.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qmcv-6g3q-9v45/GHSA-qmcv-6g3q-9v45.json b/advisories/unreviewed/2022/05/GHSA-qmcv-6g3q-9v45/GHSA-qmcv-6g3q-9v45.json index db55848f145..025e8c423c1 100644 --- a/advisories/unreviewed/2022/05/GHSA-qmcv-6g3q-9v45/GHSA-qmcv-6g3q-9v45.json +++ b/advisories/unreviewed/2022/05/GHSA-qmcv-6g3q-9v45/GHSA-qmcv-6g3q-9v45.json @@ -7,12 +7,8 @@ "CVE-2011-0765" ], "details": "Unspecified vulnerability in lft in pWhois Layer Four Traceroute (LFT) 3.x before 3.3 allows local users to gain privileges via a crafted command line.", - "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-qmwc-7x28-rrw2/GHSA-qmwc-7x28-rrw2.json b/advisories/unreviewed/2022/05/GHSA-qmwc-7x28-rrw2/GHSA-qmwc-7x28-rrw2.json index f4d114d89cc..efb7c91e6c8 100644 --- a/advisories/unreviewed/2022/05/GHSA-qmwc-7x28-rrw2/GHSA-qmwc-7x28-rrw2.json +++ b/advisories/unreviewed/2022/05/GHSA-qmwc-7x28-rrw2/GHSA-qmwc-7x28-rrw2.json @@ -7,12 +7,8 @@ "CVE-2010-4705" ], "details": "Integer overflow in the vorbis_residue_decode_internal function in libavcodec/vorbis_dec.c in the Vorbis decoder in FFmpeg, possibly 0.6, has unspecified impact and remote attack vectors, related to the sizes of certain integer data types. NOTE: this might overlap CVE-2011-0480.", - "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-qpmg-gwwj-chrf/GHSA-qpmg-gwwj-chrf.json b/advisories/unreviewed/2022/05/GHSA-qpmg-gwwj-chrf/GHSA-qpmg-gwwj-chrf.json index 2e397ad1f92..b55c877e51c 100644 --- a/advisories/unreviewed/2022/05/GHSA-qpmg-gwwj-chrf/GHSA-qpmg-gwwj-chrf.json +++ b/advisories/unreviewed/2022/05/GHSA-qpmg-gwwj-chrf/GHSA-qpmg-gwwj-chrf.json @@ -7,12 +7,8 @@ "CVE-2010-3532" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise CRM - Order Capture component in Oracle PeopleSoft and JDEdwards Suite 9.0 Bundle #28 and 9.1 Bundle #4 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qpvr-7qhq-92vc/GHSA-qpvr-7qhq-92vc.json b/advisories/unreviewed/2022/05/GHSA-qpvr-7qhq-92vc/GHSA-qpvr-7qhq-92vc.json index 3680239e812..8830343ea7d 100644 --- a/advisories/unreviewed/2022/05/GHSA-qpvr-7qhq-92vc/GHSA-qpvr-7qhq-92vc.json +++ b/advisories/unreviewed/2022/05/GHSA-qpvr-7qhq-92vc/GHSA-qpvr-7qhq-92vc.json @@ -7,12 +7,8 @@ "CVE-2011-0183" ], "details": "Libinfo in Apple Mac OS X before 10.6.7 does not properly handle an unspecified integer field in an NFS RPC packet, which allows remote attackers to cause a denial of service (lockd, statd, mountd, or portmap outage) via a crafted packet, related to an \"integer truncation 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/05/GHSA-qpw7-wxj3-c3xw/GHSA-qpw7-wxj3-c3xw.json b/advisories/unreviewed/2022/05/GHSA-qpw7-wxj3-c3xw/GHSA-qpw7-wxj3-c3xw.json index 186e5638b60..edd4d73de20 100644 --- a/advisories/unreviewed/2022/05/GHSA-qpw7-wxj3-c3xw/GHSA-qpw7-wxj3-c3xw.json +++ b/advisories/unreviewed/2022/05/GHSA-qpw7-wxj3-c3xw/GHSA-qpw7-wxj3-c3xw.json @@ -7,12 +7,8 @@ "CVE-2010-4512" ], "details": "Cobbler before 2.0.4 uses an incorrect umask value, which allows local users to have an unspecified impact by leveraging world writable permissions for files and directories.", - "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-qqjf-9hh5-4gfh/GHSA-qqjf-9hh5-4gfh.json b/advisories/unreviewed/2022/05/GHSA-qqjf-9hh5-4gfh/GHSA-qqjf-9hh5-4gfh.json index b76cf09f408..4dc6ec51f0a 100644 --- a/advisories/unreviewed/2022/05/GHSA-qqjf-9hh5-4gfh/GHSA-qqjf-9hh5-4gfh.json +++ b/advisories/unreviewed/2022/05/GHSA-qqjf-9hh5-4gfh/GHSA-qqjf-9hh5-4gfh.json @@ -7,12 +7,8 @@ "CVE-2010-3434" ], "details": "Buffer overflow in the find_stream_bounds function in pdf.c in libclamav in ClamAV before 0.96.3 allows remote attackers to cause a denial of service (application crash) or possibly execute arbitrary code via a crafted PDF document. 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-qqv4-hj7r-xr74/GHSA-qqv4-hj7r-xr74.json b/advisories/unreviewed/2022/05/GHSA-qqv4-hj7r-xr74/GHSA-qqv4-hj7r-xr74.json index 1ebdda7430f..b3f6c622dbe 100644 --- a/advisories/unreviewed/2022/05/GHSA-qqv4-hj7r-xr74/GHSA-qqv4-hj7r-xr74.json +++ b/advisories/unreviewed/2022/05/GHSA-qqv4-hj7r-xr74/GHSA-qqv4-hj7r-xr74.json @@ -7,12 +7,8 @@ "CVE-2011-2756" ], "details": "FileDownload.jsp in ManageEngine ServiceDesk Plus 8.0 before Build 8012 does not require authentication, which allows remote attackers to read files from a specific directory via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qr9w-4vx5-7gf3/GHSA-qr9w-4vx5-7gf3.json b/advisories/unreviewed/2022/05/GHSA-qr9w-4vx5-7gf3/GHSA-qr9w-4vx5-7gf3.json index 0bb623a577f..99e3477e57f 100644 --- a/advisories/unreviewed/2022/05/GHSA-qr9w-4vx5-7gf3/GHSA-qr9w-4vx5-7gf3.json +++ b/advisories/unreviewed/2022/05/GHSA-qr9w-4vx5-7gf3/GHSA-qr9w-4vx5-7gf3.json @@ -7,12 +7,8 @@ "CVE-2011-1543" ], "details": "Cross-site request forgery (CSRF) vulnerability in HP Systems Insight Manager (SIM) before 6.3 allows remote attackers to hijack the authentication of unspecified victims via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qw2f-744w-3w38/GHSA-qw2f-744w-3w38.json b/advisories/unreviewed/2022/05/GHSA-qw2f-744w-3w38/GHSA-qw2f-744w-3w38.json index b9692f64582..99f036478c6 100644 --- a/advisories/unreviewed/2022/05/GHSA-qw2f-744w-3w38/GHSA-qw2f-744w-3w38.json +++ b/advisories/unreviewed/2022/05/GHSA-qw2f-744w-3w38/GHSA-qw2f-744w-3w38.json @@ -7,12 +7,8 @@ "CVE-2010-4388" ], "details": "The (1) Upsell.htm, (2) Main.html, and (3) Custsupport.html components in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.5, and RealPlayer Enterprise 2.1.2 and 2.1.3 allow remote attackers to inject code into the RealOneActiveXObject process, and consequently bypass intended Local Machine Zone restrictions and load arbitrary ActiveX controls, via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qw55-h237-r292/GHSA-qw55-h237-r292.json b/advisories/unreviewed/2022/05/GHSA-qw55-h237-r292/GHSA-qw55-h237-r292.json index 04e023681d1..d1e50647089 100644 --- a/advisories/unreviewed/2022/05/GHSA-qw55-h237-r292/GHSA-qw55-h237-r292.json +++ b/advisories/unreviewed/2022/05/GHSA-qw55-h237-r292/GHSA-qw55-h237-r292.json @@ -7,12 +7,8 @@ "CVE-2008-4658" ], "details": "SQL injection vulnerability in the JobControl (dmmjobcontrol) 1.15.4 and earlier extension for TYPO3 allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-qwpf-6jh9-gvv9/GHSA-qwpf-6jh9-gvv9.json b/advisories/unreviewed/2022/05/GHSA-qwpf-6jh9-gvv9/GHSA-qwpf-6jh9-gvv9.json index c2101a3ea50..d86d7d446d0 100644 --- a/advisories/unreviewed/2022/05/GHSA-qwpf-6jh9-gvv9/GHSA-qwpf-6jh9-gvv9.json +++ b/advisories/unreviewed/2022/05/GHSA-qwpf-6jh9-gvv9/GHSA-qwpf-6jh9-gvv9.json @@ -7,12 +7,8 @@ "CVE-2010-3988" ], "details": "Unspecified vulnerability in HP Insight Control Virtual Machine Management before 6.2 allows remote attackers to bypass intended access restrictions and cause a denial of service via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-qx8m-fxf9-f353/GHSA-qx8m-fxf9-f353.json b/advisories/unreviewed/2022/05/GHSA-qx8m-fxf9-f353/GHSA-qx8m-fxf9-f353.json index 0f2bb88dc95..fecd233519d 100644 --- a/advisories/unreviewed/2022/05/GHSA-qx8m-fxf9-f353/GHSA-qx8m-fxf9-f353.json +++ b/advisories/unreviewed/2022/05/GHSA-qx8m-fxf9-f353/GHSA-qx8m-fxf9-f353.json @@ -7,12 +7,8 @@ "CVE-2011-2603" ], "details": "The NVIDIA 9400M driver 6.2.6 on Mac OS X 10.6.7 allows remote attackers to cause a denial of service (desktop hang) via a crafted web page that is visited with Google Chrome or Mozilla Firefox, as demonstrated by the lots-of-polys-example.html test page in the Khronos WebGL SDK.", - "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-r25r-2ffc-9whp/GHSA-r25r-2ffc-9whp.json b/advisories/unreviewed/2022/05/GHSA-r25r-2ffc-9whp/GHSA-r25r-2ffc-9whp.json index 2f88d1fb4b3..1663d45310b 100644 --- a/advisories/unreviewed/2022/05/GHSA-r25r-2ffc-9whp/GHSA-r25r-2ffc-9whp.json +++ b/advisories/unreviewed/2022/05/GHSA-r25r-2ffc-9whp/GHSA-r25r-2ffc-9whp.json @@ -7,12 +7,8 @@ "CVE-2010-4829" ], "details": "SQL injection vulnerability in processview.asp in Techno Dreams (T-Dreams) Cars Ads Package 2.0 allows remote attackers to execute arbitrary SQL commands via the key parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r25r-v246-qqgv/GHSA-r25r-v246-qqgv.json b/advisories/unreviewed/2022/05/GHSA-r25r-v246-qqgv/GHSA-r25r-v246-qqgv.json index d23fab62303..361810b90af 100644 --- a/advisories/unreviewed/2022/05/GHSA-r25r-v246-qqgv/GHSA-r25r-v246-qqgv.json +++ b/advisories/unreviewed/2022/05/GHSA-r25r-v246-qqgv/GHSA-r25r-v246-qqgv.json @@ -7,12 +7,8 @@ "CVE-2011-1649" ], "details": "The Internet Streamer application in Cisco Content Delivery System (CDS) with software 2.5.7, 2.5.8, and 2.5.9 before build 126 allows remote attackers to cause a denial of service (Web Engine crash) via a crafted URL, aka Bug IDs CSCtg67333 and CSCth25341.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-r2jf-vq9h-96p6/GHSA-r2jf-vq9h-96p6.json b/advisories/unreviewed/2022/05/GHSA-r2jf-vq9h-96p6/GHSA-r2jf-vq9h-96p6.json index 85cad671a55..3dad41dc377 100644 --- a/advisories/unreviewed/2022/05/GHSA-r2jf-vq9h-96p6/GHSA-r2jf-vq9h-96p6.json +++ b/advisories/unreviewed/2022/05/GHSA-r2jf-vq9h-96p6/GHSA-r2jf-vq9h-96p6.json @@ -7,12 +7,8 @@ "CVE-2011-2206" ], "details": "XMLParser.pm in DJabberd before 0.85 allows remote authenticated users to read arbitrary files, and possibly send HTTP requests to intranet servers or cause a denial of service (CPU and memory consumption), via an XML external entity declaration in conjunction with an entity reference, a different vulnerability than CVE-2011-1757.", - "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-r55g-qvh3-7x6g/GHSA-r55g-qvh3-7x6g.json b/advisories/unreviewed/2022/05/GHSA-r55g-qvh3-7x6g/GHSA-r55g-qvh3-7x6g.json index 1b4f68ca795..68276ee60ee 100644 --- a/advisories/unreviewed/2022/05/GHSA-r55g-qvh3-7x6g/GHSA-r55g-qvh3-7x6g.json +++ b/advisories/unreviewed/2022/05/GHSA-r55g-qvh3-7x6g/GHSA-r55g-qvh3-7x6g.json @@ -7,12 +7,8 @@ "CVE-2011-1068" ], "details": "Microsoft Windows Azure Software Development Kit (SDK) 1.3.x before 1.3.20121.1237, when Full IIS and a Web Role are used with an ASP.NET application, does not properly support the use of cookies for maintaining state, which allows remote attackers to obtain potentially sensitive information by reading an encrypted cookie and performing unspecified other steps.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r6r8-x9w4-cx2w/GHSA-r6r8-x9w4-cx2w.json b/advisories/unreviewed/2022/05/GHSA-r6r8-x9w4-cx2w/GHSA-r6r8-x9w4-cx2w.json index bb1629ebadd..8fe5b2fe295 100644 --- a/advisories/unreviewed/2022/05/GHSA-r6r8-x9w4-cx2w/GHSA-r6r8-x9w4-cx2w.json +++ b/advisories/unreviewed/2022/05/GHSA-r6r8-x9w4-cx2w/GHSA-r6r8-x9w4-cx2w.json @@ -7,12 +7,8 @@ "CVE-2011-0244" ], "details": "WebKit in Apple Safari before 5.0.6 allows user-assisted remote attackers to read arbitrary files via vectors related to improper canonicalization of URLs within RSS feeds.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r7cq-qp4v-9qxv/GHSA-r7cq-qp4v-9qxv.json b/advisories/unreviewed/2022/05/GHSA-r7cq-qp4v-9qxv/GHSA-r7cq-qp4v-9qxv.json index 1d3ec532b08..f68fdce9cb8 100644 --- a/advisories/unreviewed/2022/05/GHSA-r7cq-qp4v-9qxv/GHSA-r7cq-qp4v-9qxv.json +++ b/advisories/unreviewed/2022/05/GHSA-r7cq-qp4v-9qxv/GHSA-r7cq-qp4v-9qxv.json @@ -7,12 +7,8 @@ "CVE-2010-4480" ], "details": "error.php in PhpMyAdmin 3.3.8.1, and other versions before 3.4.0-beta1, allows remote attackers to conduct cross-site scripting (XSS) attacks via a crafted BBcode tag containing \"@\" characters, as demonstrated using \"[a@url@page]\".", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r7g6-9h4x-rfpf/GHSA-r7g6-9h4x-rfpf.json b/advisories/unreviewed/2022/05/GHSA-r7g6-9h4x-rfpf/GHSA-r7g6-9h4x-rfpf.json index 6f20bab3ffb..9c1f7da073e 100644 --- a/advisories/unreviewed/2022/05/GHSA-r7g6-9h4x-rfpf/GHSA-r7g6-9h4x-rfpf.json +++ b/advisories/unreviewed/2022/05/GHSA-r7g6-9h4x-rfpf/GHSA-r7g6-9h4x-rfpf.json @@ -7,12 +7,8 @@ "CVE-2011-0172" ], "details": "AirPort in Apple Mac OS X 10.6 before 10.6.7 allows remote attackers to cause a denial of service (divide-by-zero error and reboot) via Wi-Fi frames on the local wireless network, a different vulnerability than CVE-2011-0162.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-r885-5jm5-57hg/GHSA-r885-5jm5-57hg.json b/advisories/unreviewed/2022/05/GHSA-r885-5jm5-57hg/GHSA-r885-5jm5-57hg.json index 7c829764e9a..a6208a68f83 100644 --- a/advisories/unreviewed/2022/05/GHSA-r885-5jm5-57hg/GHSA-r885-5jm5-57hg.json +++ b/advisories/unreviewed/2022/05/GHSA-r885-5jm5-57hg/GHSA-r885-5jm5-57hg.json @@ -7,12 +7,8 @@ "CVE-2010-3369" ], "details": "The (1) mdb and (2) mdb-symbolreader scripts in mono-debugger 2.4.3, and other versions before 2.8.1, place a zero-length directory name in the LD_LIBRARY_PATH, which allows local users to gain privileges via a Trojan horse shared library in the current working 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/05/GHSA-r898-ghgf-prvh/GHSA-r898-ghgf-prvh.json b/advisories/unreviewed/2022/05/GHSA-r898-ghgf-prvh/GHSA-r898-ghgf-prvh.json index 3b25e8f4393..18e79b482d2 100644 --- a/advisories/unreviewed/2022/05/GHSA-r898-ghgf-prvh/GHSA-r898-ghgf-prvh.json +++ b/advisories/unreviewed/2022/05/GHSA-r898-ghgf-prvh/GHSA-r898-ghgf-prvh.json @@ -7,12 +7,8 @@ "CVE-2010-3524" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise SCM - Strategic Sourcing component in Oracle PeopleSoft and JDEdwards Suite 8.9 Bundle #38, 9.0 Bundle #31, and 9.1 Bundle #6 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-r8g8-c85v-vj38/GHSA-r8g8-c85v-vj38.json b/advisories/unreviewed/2022/05/GHSA-r8g8-c85v-vj38/GHSA-r8g8-c85v-vj38.json index 82403111b55..d4e1ff23c96 100644 --- a/advisories/unreviewed/2022/05/GHSA-r8g8-c85v-vj38/GHSA-r8g8-c85v-vj38.json +++ b/advisories/unreviewed/2022/05/GHSA-r8g8-c85v-vj38/GHSA-r8g8-c85v-vj38.json @@ -7,12 +7,8 @@ "CVE-2010-3790" ], "details": "QuickTime in Apple Mac OS X 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via a crafted movie file that causes an image sample transformation to scale a sprite outside a buffer boundary.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-r946-8c39-rrcc/GHSA-r946-8c39-rrcc.json b/advisories/unreviewed/2022/05/GHSA-r946-8c39-rrcc/GHSA-r946-8c39-rrcc.json index 749ea58bf82..64d3a7d1c80 100644 --- a/advisories/unreviewed/2022/05/GHSA-r946-8c39-rrcc/GHSA-r946-8c39-rrcc.json +++ b/advisories/unreviewed/2022/05/GHSA-r946-8c39-rrcc/GHSA-r946-8c39-rrcc.json @@ -7,12 +7,8 @@ "CVE-2011-1034" ], "details": "Cross-site scripting (XSS) vulnerability in the UI in IBM Rational Build Forge 7.0.2 allows remote attackers to inject arbitrary web script or HTML via the mod parameter to the fullcontrol program. 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-r9cp-7gfm-xcw6/GHSA-r9cp-7gfm-xcw6.json b/advisories/unreviewed/2022/05/GHSA-r9cp-7gfm-xcw6/GHSA-r9cp-7gfm-xcw6.json index 9ceb16ed753..4a396adc527 100644 --- a/advisories/unreviewed/2022/05/GHSA-r9cp-7gfm-xcw6/GHSA-r9cp-7gfm-xcw6.json +++ b/advisories/unreviewed/2022/05/GHSA-r9cp-7gfm-xcw6/GHSA-r9cp-7gfm-xcw6.json @@ -7,12 +7,8 @@ "CVE-2010-4734" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the comment feature in Skeletonz CMS 1.0, when the Blog plugin is enabled, allow remote attackers to inject arbitrary web script or HTML via the (1) Name, (2) Website, and (3) Email parameters. 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-rc8r-vvgw-qc65/GHSA-rc8r-vvgw-qc65.json b/advisories/unreviewed/2022/05/GHSA-rc8r-vvgw-qc65/GHSA-rc8r-vvgw-qc65.json index fc0cada15f5..ce76d956705 100644 --- a/advisories/unreviewed/2022/05/GHSA-rc8r-vvgw-qc65/GHSA-rc8r-vvgw-qc65.json +++ b/advisories/unreviewed/2022/05/GHSA-rc8r-vvgw-qc65/GHSA-rc8r-vvgw-qc65.json @@ -7,12 +7,8 @@ "CVE-2011-1558" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the IBM Web Interface for Content Management (aka WEBi) 1.0.4 before FP3 allow remote attackers to inject arbitrary web script or HTML via unspecified vectors, a different vulnerability than CVE-2010-1242.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rcjj-rr24-fgwm/GHSA-rcjj-rr24-fgwm.json b/advisories/unreviewed/2022/05/GHSA-rcjj-rr24-fgwm/GHSA-rcjj-rr24-fgwm.json index 95e842cf569..a6b8226fdab 100644 --- a/advisories/unreviewed/2022/05/GHSA-rcjj-rr24-fgwm/GHSA-rcjj-rr24-fgwm.json +++ b/advisories/unreviewed/2022/05/GHSA-rcjj-rr24-fgwm/GHSA-rcjj-rr24-fgwm.json @@ -7,12 +7,8 @@ "CVE-2011-1315" ], "details": "Memory leak in the messaging engine in IBM WebSphere Application Server (WAS) before 7.0.0.15 allows remote attackers to cause a denial of service (memory consumption) via network connections associated with a NULL return value from a synchronous JMS receive call.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-rcww-x8ph-8v37/GHSA-rcww-x8ph-8v37.json b/advisories/unreviewed/2022/05/GHSA-rcww-x8ph-8v37/GHSA-rcww-x8ph-8v37.json index 96896f0439e..3ee88be8446 100644 --- a/advisories/unreviewed/2022/05/GHSA-rcww-x8ph-8v37/GHSA-rcww-x8ph-8v37.json +++ b/advisories/unreviewed/2022/05/GHSA-rcww-x8ph-8v37/GHSA-rcww-x8ph-8v37.json @@ -7,12 +7,8 @@ "CVE-2011-1507" ], "details": "Asterisk Open Source 1.4.x before 1.4.40.1, 1.6.1.x before 1.6.1.25, 1.6.2.x before 1.6.2.17.3, and 1.8.x before 1.8.3.3 and Asterisk Business Edition C.x.x before C.3.6.4 do not restrict the number of unauthenticated sessions to certain interfaces, which allows remote attackers to cause a denial of service (file descriptor exhaustion and disk space exhaustion) via a series of TCP connections.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -64,9 +60,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-rfgx-wrvh-ch9w/GHSA-rfgx-wrvh-ch9w.json b/advisories/unreviewed/2022/05/GHSA-rfgx-wrvh-ch9w/GHSA-rfgx-wrvh-ch9w.json index 4c0a15eeaf2..1a60eeab926 100644 --- a/advisories/unreviewed/2022/05/GHSA-rfgx-wrvh-ch9w/GHSA-rfgx-wrvh-ch9w.json +++ b/advisories/unreviewed/2022/05/GHSA-rfgx-wrvh-ch9w/GHSA-rfgx-wrvh-ch9w.json @@ -7,12 +7,8 @@ "CVE-2010-2388" ], "details": "Unspecified vulnerability in the Oracle Applications Manager component in Oracle E-Business Suite 11.5.10.2 allows remote attackers to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-rfv8-g2v3-qfj9/GHSA-rfv8-g2v3-qfj9.json b/advisories/unreviewed/2022/05/GHSA-rfv8-g2v3-qfj9/GHSA-rfv8-g2v3-qfj9.json index fd37ea007b0..c9426bd38ed 100644 --- a/advisories/unreviewed/2022/05/GHSA-rfv8-g2v3-qfj9/GHSA-rfv8-g2v3-qfj9.json +++ b/advisories/unreviewed/2022/05/GHSA-rfv8-g2v3-qfj9/GHSA-rfv8-g2v3-qfj9.json @@ -7,12 +7,8 @@ "CVE-2011-0519" ], "details": "SQL injection vulnerability in gallery.php in Gallarific PHP Photo Gallery script 2.1 and possibly other versions 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-rgfv-29jm-8wcc/GHSA-rgfv-29jm-8wcc.json b/advisories/unreviewed/2022/05/GHSA-rgfv-29jm-8wcc/GHSA-rgfv-29jm-8wcc.json index adec704b705..efae5d9c69f 100644 --- a/advisories/unreviewed/2022/05/GHSA-rgfv-29jm-8wcc/GHSA-rgfv-29jm-8wcc.json +++ b/advisories/unreviewed/2022/05/GHSA-rgfv-29jm-8wcc/GHSA-rgfv-29jm-8wcc.json @@ -7,12 +7,8 @@ "CVE-2008-7278" ], "details": "The S/MIME feature in Open Ticket Request System (OTRS) before 2.2.5, and 2.3.x before 2.3.0-beta1, does not properly configure the RANDFILE environment variable for OpenSSL, which might make it easier for remote attackers to decrypt e-mail messages that had lower than intended entropy available for cryptographic operations, related to inability to write to the seeding file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rgj5-q943-hjw8/GHSA-rgj5-q943-hjw8.json b/advisories/unreviewed/2022/05/GHSA-rgj5-q943-hjw8/GHSA-rgj5-q943-hjw8.json index be3d0e81098..f2fc0f0f6cf 100644 --- a/advisories/unreviewed/2022/05/GHSA-rgj5-q943-hjw8/GHSA-rgj5-q943-hjw8.json +++ b/advisories/unreviewed/2022/05/GHSA-rgj5-q943-hjw8/GHSA-rgj5-q943-hjw8.json @@ -7,12 +7,8 @@ "CVE-2010-2789" ], "details": "PHP remote file inclusion vulnerability in MediaWikiParserTest.php in MediaWiki 1.16 beta, when register_globals is enabled, allows remote attackers to execute arbitrary PHP code via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rmrv-cp8q-48qj/GHSA-rmrv-cp8q-48qj.json b/advisories/unreviewed/2022/05/GHSA-rmrv-cp8q-48qj/GHSA-rmrv-cp8q-48qj.json index 0a2bad1e08a..2f82a5ce74a 100644 --- a/advisories/unreviewed/2022/05/GHSA-rmrv-cp8q-48qj/GHSA-rmrv-cp8q-48qj.json +++ b/advisories/unreviewed/2022/05/GHSA-rmrv-cp8q-48qj/GHSA-rmrv-cp8q-48qj.json @@ -7,12 +7,8 @@ "CVE-2011-0806" ], "details": "Unspecified vulnerability in the Network Foundation component in Oracle Database Server 10.1.0.5, 10.2.0.4, 10.2.0.5, 11.1.0.7, 11.2.0.1, and 11.2.0.2, when running on Windows, allows remote attackers to affect availability via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-rpmq-jrch-356w/GHSA-rpmq-jrch-356w.json b/advisories/unreviewed/2022/05/GHSA-rpmq-jrch-356w/GHSA-rpmq-jrch-356w.json index 3b80827d386..809bce7a66a 100644 --- a/advisories/unreviewed/2022/05/GHSA-rpmq-jrch-356w/GHSA-rpmq-jrch-356w.json +++ b/advisories/unreviewed/2022/05/GHSA-rpmq-jrch-356w/GHSA-rpmq-jrch-356w.json @@ -7,12 +7,8 @@ "CVE-2008-7271" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in the Help Contents web application (aka the Help Server) in Eclipse IDE, possibly 3.3.2, allow remote attackers to inject arbitrary web script or HTML via (1) the searchWord parameter to help/advanced/searchView.jsp or (2) the workingSet parameter in an add action to help/advanced/workingSetManager.jsp, a different issue than CVE-2010-4647.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rqgr-h8g8-4p6w/GHSA-rqgr-h8g8-4p6w.json b/advisories/unreviewed/2022/05/GHSA-rqgr-h8g8-4p6w/GHSA-rqgr-h8g8-4p6w.json index ec078affaaf..ccee713bc1d 100644 --- a/advisories/unreviewed/2022/05/GHSA-rqgr-h8g8-4p6w/GHSA-rqgr-h8g8-4p6w.json +++ b/advisories/unreviewed/2022/05/GHSA-rqgr-h8g8-4p6w/GHSA-rqgr-h8g8-4p6w.json @@ -7,12 +7,8 @@ "CVE-2010-3172" ], "details": "CRLF injection vulnerability in Bugzilla before 3.2.9, 3.4.x before 3.4.9, 3.6.x before 3.6.3, and 4.0.x before 4.0rc1, when Server Push is enabled in a web browser, allows remote attackers to inject arbitrary HTTP headers and content, and conduct HTTP response splitting attacks, via a crafted URL.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rqj8-qvgf-v8mg/GHSA-rqj8-qvgf-v8mg.json b/advisories/unreviewed/2022/05/GHSA-rqj8-qvgf-v8mg/GHSA-rqj8-qvgf-v8mg.json index 0e3c55410ce..d0e4ee9d56b 100644 --- a/advisories/unreviewed/2022/05/GHSA-rqj8-qvgf-v8mg/GHSA-rqj8-qvgf-v8mg.json +++ b/advisories/unreviewed/2022/05/GHSA-rqj8-qvgf-v8mg/GHSA-rqj8-qvgf-v8mg.json @@ -7,12 +7,8 @@ "CVE-2011-0917" ], "details": "Buffer overflow in nLDAP.exe in IBM Lotus Domino allows remote attackers to execute arbitrary code via a long string in an LDAP Bind operation, aka SPR KLYH87LMVX.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rr2p-wwph-qx3g/GHSA-rr2p-wwph-qx3g.json b/advisories/unreviewed/2022/05/GHSA-rr2p-wwph-qx3g/GHSA-rr2p-wwph-qx3g.json index db53cf30ad5..48bee4501d4 100644 --- a/advisories/unreviewed/2022/05/GHSA-rr2p-wwph-qx3g/GHSA-rr2p-wwph-qx3g.json +++ b/advisories/unreviewed/2022/05/GHSA-rr2p-wwph-qx3g/GHSA-rr2p-wwph-qx3g.json @@ -7,12 +7,8 @@ "CVE-2011-1683" ], "details": "IBM WebSphere Application Server (WAS) 6.0.x through 6.0.2.43, 6.1.x before 6.1.0.37, and 7.0.x before 7.0.0.17 on z/OS, when a Local OS user registry or Federated Repository with RACF adapter is used, allows remote attackers to obtain unspecified application access via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -56,9 +52,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-rwhc-rf36-693j/GHSA-rwhc-rf36-693j.json b/advisories/unreviewed/2022/05/GHSA-rwhc-rf36-693j/GHSA-rwhc-rf36-693j.json index fcd17186252..e6445b650a8 100644 --- a/advisories/unreviewed/2022/05/GHSA-rwhc-rf36-693j/GHSA-rwhc-rf36-693j.json +++ b/advisories/unreviewed/2022/05/GHSA-rwhc-rf36-693j/GHSA-rwhc-rf36-693j.json @@ -7,12 +7,8 @@ "CVE-2011-0189" ], "details": "The default configuration of Terminal in Apple Mac OS X 10.6 before 10.6.7 uses SSH protocol version 1 within the New Remote Connection dialog, which might make it easier for man-in-the-middle attackers to spoof SSH servers by leveraging protocol vulnerabilities.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-rwq5-36hc-mxxq/GHSA-rwq5-36hc-mxxq.json b/advisories/unreviewed/2022/05/GHSA-rwq5-36hc-mxxq/GHSA-rwq5-36hc-mxxq.json index 4c8b32682dd..7e107256100 100644 --- a/advisories/unreviewed/2022/05/GHSA-rwq5-36hc-mxxq/GHSA-rwq5-36hc-mxxq.json +++ b/advisories/unreviewed/2022/05/GHSA-rwq5-36hc-mxxq/GHSA-rwq5-36hc-mxxq.json @@ -7,12 +7,8 @@ "CVE-2010-1844" ], "details": "Unspecified vulnerability in Image Capture in Apple Mac OS X 10.6.x before 10.6.5 allows remote attackers to cause a denial of service (memory consumption and system crash) via a crafted image.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-rx38-v4jx-9vw9/GHSA-rx38-v4jx-9vw9.json b/advisories/unreviewed/2022/05/GHSA-rx38-v4jx-9vw9/GHSA-rx38-v4jx-9vw9.json index 5fd3722e3c3..409479a1440 100644 --- a/advisories/unreviewed/2022/05/GHSA-rx38-v4jx-9vw9/GHSA-rx38-v4jx-9vw9.json +++ b/advisories/unreviewed/2022/05/GHSA-rx38-v4jx-9vw9/GHSA-rx38-v4jx-9vw9.json @@ -7,12 +7,8 @@ "CVE-2011-0911" ], "details": "Cross-site scripting (XSS) vulnerability in the Users module in Zikula before 1.2.5 allows remote attackers to inject arbitrary web script or HTML via unspecified vectors. NOTE: it is possible that this overlaps CVE-2011-0535.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v283-44v6-4392/GHSA-v283-44v6-4392.json b/advisories/unreviewed/2022/05/GHSA-v283-44v6-4392/GHSA-v283-44v6-4392.json index ba1b6b0cb9c..f503b73bf18 100644 --- a/advisories/unreviewed/2022/05/GHSA-v283-44v6-4392/GHSA-v283-44v6-4392.json +++ b/advisories/unreviewed/2022/05/GHSA-v283-44v6-4392/GHSA-v283-44v6-4392.json @@ -7,12 +7,8 @@ "CVE-2010-4404" ], "details": "SQL injection vulnerability in the Yannick Gaultier sh404SEF component before 2.1.8.777 for Joomla! allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v355-j978-c759/GHSA-v355-j978-c759.json b/advisories/unreviewed/2022/05/GHSA-v355-j978-c759/GHSA-v355-j978-c759.json index 2c5894650f5..f7a8602ec9f 100644 --- a/advisories/unreviewed/2022/05/GHSA-v355-j978-c759/GHSA-v355-j978-c759.json +++ b/advisories/unreviewed/2022/05/GHSA-v355-j978-c759/GHSA-v355-j978-c759.json @@ -7,12 +7,8 @@ "CVE-2010-4369" ], "details": "Directory traversal vulnerability in AWStats before 7.0 allows remote attackers to have an unspecified impact via a crafted LoadPlugin directory.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v39j-9cq4-4342/GHSA-v39j-9cq4-4342.json b/advisories/unreviewed/2022/05/GHSA-v39j-9cq4-4342/GHSA-v39j-9cq4-4342.json index 319a48090e9..a71c1a0eff1 100644 --- a/advisories/unreviewed/2022/05/GHSA-v39j-9cq4-4342/GHSA-v39j-9cq4-4342.json +++ b/advisories/unreviewed/2022/05/GHSA-v39j-9cq4-4342/GHSA-v39j-9cq4-4342.json @@ -7,12 +7,8 @@ "CVE-2008-7274" ], "details": "IBM WebSphere Application Server (WAS) 6.1.0.9, when the JAAS Login functionality is enabled, allows attackers to perform an internal application hashtable login by (1) not providing a password or (2) providing an empty password.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v4pg-hhqm-jpjh/GHSA-v4pg-hhqm-jpjh.json b/advisories/unreviewed/2022/05/GHSA-v4pg-hhqm-jpjh/GHSA-v4pg-hhqm-jpjh.json index c8db691275a..2e81a35917a 100644 --- a/advisories/unreviewed/2022/05/GHSA-v4pg-hhqm-jpjh/GHSA-v4pg-hhqm-jpjh.json +++ b/advisories/unreviewed/2022/05/GHSA-v4pg-hhqm-jpjh/GHSA-v4pg-hhqm-jpjh.json @@ -7,12 +7,8 @@ "CVE-2010-3037" ], "details": "goform/websXMLAdminRequestCgi.cgi in Cisco Unified Videoconferencing (UVC) System 5110 and 5115, and possibly Unified Videoconferencing System 3545 and 5230, Unified Videoconferencing 3527 Primary Rate Interface (PRI) Gateway, Unified Videoconferencing 3522 Basic Rate Interfaces (BRI) Gateway, and Unified Videoconferencing 3515 Multipoint Control Unit (MCU), allows remote authenticated administrators to execute arbitrary commands via the username field, related to a \"shell command injection vulnerability,\" aka Bug ID CSCti54059.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v52f-q648-c264/GHSA-v52f-q648-c264.json b/advisories/unreviewed/2022/05/GHSA-v52f-q648-c264/GHSA-v52f-q648-c264.json index 7e9ae8ccbd5..35754ceb34b 100644 --- a/advisories/unreviewed/2022/05/GHSA-v52f-q648-c264/GHSA-v52f-q648-c264.json +++ b/advisories/unreviewed/2022/05/GHSA-v52f-q648-c264/GHSA-v52f-q648-c264.json @@ -7,12 +7,8 @@ "CVE-2008-7290" ], "details": "Memory leak in the ldap_explode_rdn API function in IBM Tivoli Directory Server (TDS) 5.2 before 5.2.0.5-TIV-ITDS-LA0007 allows remote authenticated users to cause a denial of service (memory consumption) by making many function calls.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v5c6-8332-w725/GHSA-v5c6-8332-w725.json b/advisories/unreviewed/2022/05/GHSA-v5c6-8332-w725/GHSA-v5c6-8332-w725.json index d47c3330adc..902090b3d45 100644 --- a/advisories/unreviewed/2022/05/GHSA-v5c6-8332-w725/GHSA-v5c6-8332-w725.json +++ b/advisories/unreviewed/2022/05/GHSA-v5c6-8332-w725/GHSA-v5c6-8332-w725.json @@ -7,12 +7,8 @@ "CVE-2010-4375" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, Mac RealPlayer 11.0 through 11.1, Linux RealPlayer 11.0.2.1744, and possibly HelixPlayer 1.0.6 and other versions, allows remote attackers to execute arbitrary code via malformed multi-rate data in an audio stream.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v5rm-rc2x-22cx/GHSA-v5rm-rc2x-22cx.json b/advisories/unreviewed/2022/05/GHSA-v5rm-rc2x-22cx/GHSA-v5rm-rc2x-22cx.json index f39454cd70b..191f642fd1d 100644 --- a/advisories/unreviewed/2022/05/GHSA-v5rm-rc2x-22cx/GHSA-v5rm-rc2x-22cx.json +++ b/advisories/unreviewed/2022/05/GHSA-v5rm-rc2x-22cx/GHSA-v5rm-rc2x-22cx.json @@ -7,12 +7,8 @@ "CVE-2011-2169" ], "details": "Google Chrome OS before R12 0.12.433.38 Beta allows local users to gain privileges by creating a /var/lib/chromeos-aliases.conf file and placing commands in it.", - "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-v6gw-xw3f-59f9/GHSA-v6gw-xw3f-59f9.json b/advisories/unreviewed/2022/05/GHSA-v6gw-xw3f-59f9/GHSA-v6gw-xw3f-59f9.json index 5fe27d1e2c1..bf9eaac7383 100644 --- a/advisories/unreviewed/2022/05/GHSA-v6gw-xw3f-59f9/GHSA-v6gw-xw3f-59f9.json +++ b/advisories/unreviewed/2022/05/GHSA-v6gw-xw3f-59f9/GHSA-v6gw-xw3f-59f9.json @@ -7,12 +7,8 @@ "CVE-2011-0807" ], "details": "Unspecified vulnerability in Oracle Sun GlassFish Enterprise Server 2.1, 2.1.1, and 3.0.1, and Sun Java System Application Server 9.1, allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors related to Administration.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v72f-5j8q-jfjq/GHSA-v72f-5j8q-jfjq.json b/advisories/unreviewed/2022/05/GHSA-v72f-5j8q-jfjq/GHSA-v72f-5j8q-jfjq.json index b417cd2f1b6..e5fef0aff65 100644 --- a/advisories/unreviewed/2022/05/GHSA-v72f-5j8q-jfjq/GHSA-v72f-5j8q-jfjq.json +++ b/advisories/unreviewed/2022/05/GHSA-v72f-5j8q-jfjq/GHSA-v72f-5j8q-jfjq.json @@ -7,12 +7,8 @@ "CVE-2011-2757" ], "details": "Directory traversal vulnerability in FileDownload.jsp in ManageEngine ServiceDesk Plus 8.0.0.12 and earlier allows remote attackers to read arbitrary files via a .. (dot dot) in the FILENAME parameter. NOTE: this might overlap the US-CERT VU#543310 issue.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v7vq-95xq-r8fw/GHSA-v7vq-95xq-r8fw.json b/advisories/unreviewed/2022/05/GHSA-v7vq-95xq-r8fw/GHSA-v7vq-95xq-r8fw.json index a641d9cbd5a..8fe009566d7 100644 --- a/advisories/unreviewed/2022/05/GHSA-v7vq-95xq-r8fw/GHSA-v7vq-95xq-r8fw.json +++ b/advisories/unreviewed/2022/05/GHSA-v7vq-95xq-r8fw/GHSA-v7vq-95xq-r8fw.json @@ -7,12 +7,8 @@ "CVE-2010-4806" ], "details": "The authoring tool in IBM Web Content Manager (WCM) 6.1.5, and 7.0.0.1 before CF003, allows remote authenticated users to bypass intended access restrictions on draft creation by leveraging certain resource editor privileges.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v8m6-8px5-gcmp/GHSA-v8m6-8px5-gcmp.json b/advisories/unreviewed/2022/05/GHSA-v8m6-8px5-gcmp/GHSA-v8m6-8px5-gcmp.json index 90e8e006b03..3f668b0354c 100644 --- a/advisories/unreviewed/2022/05/GHSA-v8m6-8px5-gcmp/GHSA-v8m6-8px5-gcmp.json +++ b/advisories/unreviewed/2022/05/GHSA-v8m6-8px5-gcmp/GHSA-v8m6-8px5-gcmp.json @@ -7,12 +7,8 @@ "CVE-2010-3547" ], "details": "Unspecified vulnerability in the PeopleSoft FMS ESA - EX component in Oracle PeopleSoft and JDEdwards Suite 8.9 Bundle #38, 9.0 Bundle #31, and 9.1 Bundle #6 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v95p-r9w4-7mfq/GHSA-v95p-r9w4-7mfq.json b/advisories/unreviewed/2022/05/GHSA-v95p-r9w4-7mfq/GHSA-v95p-r9w4-7mfq.json index be79def4994..79fb7941144 100644 --- a/advisories/unreviewed/2022/05/GHSA-v95p-r9w4-7mfq/GHSA-v95p-r9w4-7mfq.json +++ b/advisories/unreviewed/2022/05/GHSA-v95p-r9w4-7mfq/GHSA-v95p-r9w4-7mfq.json @@ -7,12 +7,8 @@ "CVE-2011-1335" ], "details": "Cross-site scripting (XSS) vulnerability in Cybozu Office 6, 7, and 8 before 8.1.1 allows remote attackers to inject arbitrary web script or HTML via vectors related to the \"address book and user list functions.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v979-m555-4gx8/GHSA-v979-m555-4gx8.json b/advisories/unreviewed/2022/05/GHSA-v979-m555-4gx8/GHSA-v979-m555-4gx8.json index 50b6208af18..6441f56feff 100644 --- a/advisories/unreviewed/2022/05/GHSA-v979-m555-4gx8/GHSA-v979-m555-4gx8.json +++ b/advisories/unreviewed/2022/05/GHSA-v979-m555-4gx8/GHSA-v979-m555-4gx8.json @@ -7,12 +7,8 @@ "CVE-2008-7219" ], "details": "Horde Kronolith H3 2.1 before 2.1.7 and 2.2 before 2.2-RC2; Nag H3 2.1 before 2.1.4 and 2.2 before 2.2-RC2; Mnemo H3 2.1 before 2.1.2 and H3 2.2 before 2.2-RC2; Groupware 1.0 before 1.0.3 and 1.1 before 1.1-RC2; and Groupware Webmail Edition 1.0 before 1.0.4 and 1.1 before 1.1-RC2 does not validate ownership when performing share changes, which has unknown impact and attack vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -72,9 +68,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v9ff-pxp5-jj2v/GHSA-v9ff-pxp5-jj2v.json b/advisories/unreviewed/2022/05/GHSA-v9ff-pxp5-jj2v/GHSA-v9ff-pxp5-jj2v.json index e4668cc4f2b..fca1a1517e9 100644 --- a/advisories/unreviewed/2022/05/GHSA-v9ff-pxp5-jj2v/GHSA-v9ff-pxp5-jj2v.json +++ b/advisories/unreviewed/2022/05/GHSA-v9ff-pxp5-jj2v/GHSA-v9ff-pxp5-jj2v.json @@ -7,12 +7,8 @@ "CVE-2011-1316" ], "details": "The Session Initiation Protocol (SIP) Proxy in the HTTP Transport component in IBM WebSphere Application Server (WAS) before 7.0.0.15 allows remote attackers to cause a denial of service (worker thread exhaustion and UDP messaging outage) by sending many UDP messages.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-v9gf-pp25-fr4x/GHSA-v9gf-pp25-fr4x.json b/advisories/unreviewed/2022/05/GHSA-v9gf-pp25-fr4x/GHSA-v9gf-pp25-fr4x.json index 74b386c979d..991029ab86c 100644 --- a/advisories/unreviewed/2022/05/GHSA-v9gf-pp25-fr4x/GHSA-v9gf-pp25-fr4x.json +++ b/advisories/unreviewed/2022/05/GHSA-v9gf-pp25-fr4x/GHSA-v9gf-pp25-fr4x.json @@ -7,12 +7,8 @@ "CVE-2010-4732" ], "details": "cgi-bin/read.cgi in WebSCADA WS100 and WS200, Easy Connect EC150, Modbus RTU - TCP Gateway MB100, and Serial Ethernet Server SS100 on the IntelliCom NetBiter NB100 and NB200 platforms allows remote authenticated administrators to execute arbitrary code by using a config.html 2.conf action to replace the logo page's GIF image file with a file containing this code, a different vulnerability than CVE-2009-4463.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v9hw-w7vj-4pv9/GHSA-v9hw-w7vj-4pv9.json b/advisories/unreviewed/2022/05/GHSA-v9hw-w7vj-4pv9/GHSA-v9hw-w7vj-4pv9.json index 2e0ef5e3eb9..8be4c8b953d 100644 --- a/advisories/unreviewed/2022/05/GHSA-v9hw-w7vj-4pv9/GHSA-v9hw-w7vj-4pv9.json +++ b/advisories/unreviewed/2022/05/GHSA-v9hw-w7vj-4pv9/GHSA-v9hw-w7vj-4pv9.json @@ -7,12 +7,8 @@ "CVE-2011-1557" ], "details": "SQL injection vulnerability in ICloudCenter ICJobSite 1.1 allows remote attackers to execute arbitrary SQL commands via the pid parameter to an unspecified component, a different vulnerability than CVE-2011-1546. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v9jp-7rfg-3xr7/GHSA-v9jp-7rfg-3xr7.json b/advisories/unreviewed/2022/05/GHSA-v9jp-7rfg-3xr7/GHSA-v9jp-7rfg-3xr7.json index 8096420fdef..964d11804d0 100644 --- a/advisories/unreviewed/2022/05/GHSA-v9jp-7rfg-3xr7/GHSA-v9jp-7rfg-3xr7.json +++ b/advisories/unreviewed/2022/05/GHSA-v9jp-7rfg-3xr7/GHSA-v9jp-7rfg-3xr7.json @@ -7,12 +7,8 @@ "CVE-2011-1320" ], "details": "The Security component in IBM WebSphere Application Server (WAS) 6.1.0.x before 6.1.0.35 and 7.x before 7.0.0.15, when the Tivoli Integrated Portal / embedded WebSphere Application Server (TIP/eWAS) framework is used, does not properly delete AuthCache entries upon a logout, which might allow remote attackers to access the server by leveraging an unattended workstation.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-v9pm-7h94-mgr6/GHSA-v9pm-7h94-mgr6.json b/advisories/unreviewed/2022/05/GHSA-v9pm-7h94-mgr6/GHSA-v9pm-7h94-mgr6.json index ffe2dd15821..c91b5661087 100644 --- a/advisories/unreviewed/2022/05/GHSA-v9pm-7h94-mgr6/GHSA-v9pm-7h94-mgr6.json +++ b/advisories/unreviewed/2022/05/GHSA-v9pm-7h94-mgr6/GHSA-v9pm-7h94-mgr6.json @@ -7,12 +7,8 @@ "CVE-2010-4495" ], "details": "Unspecified vulnerability in the ActiveMatrix Runtime component in TIBCO ActiveMatrix Service Grid 3.0.0, 3.0.1, and 3.1.0; ActiveMatrix Service Bus 3.0.0 and 3.0.1; ActiveMatrix BusinessWorks Service Engine 5.9.0; ActiveMatrix BPM 1.0.1 and 1.0.2; Silver BPM Service 1.0.1; and Silver CAP Service 1.0.0 allows remote authenticated users to execute arbitrary code via vectors related to JMX connections.", - "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-vc38-g7cc-cphq/GHSA-vc38-g7cc-cphq.json b/advisories/unreviewed/2022/05/GHSA-vc38-g7cc-cphq/GHSA-vc38-g7cc-cphq.json index fd2965c69f4..8fb97cb4d14 100644 --- a/advisories/unreviewed/2022/05/GHSA-vc38-g7cc-cphq/GHSA-vc38-g7cc-cphq.json +++ b/advisories/unreviewed/2022/05/GHSA-vc38-g7cc-cphq/GHSA-vc38-g7cc-cphq.json @@ -7,12 +7,8 @@ "CVE-2011-0287" ], "details": "Unspecified vulnerability in the BlackBerry Administration API in Research In Motion (RIM) BlackBerry Enterprise Server (BES) software 5.0.1 through 5.0.3, and BlackBerry Enterprise Server Express software 5.0.1 through 5.0.3, allows remote attackers to read text files or cause a denial of service via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vc83-g5p3-ggc5/GHSA-vc83-g5p3-ggc5.json b/advisories/unreviewed/2022/05/GHSA-vc83-g5p3-ggc5/GHSA-vc83-g5p3-ggc5.json index d9cf05d5637..0019997553d 100644 --- a/advisories/unreviewed/2022/05/GHSA-vc83-g5p3-ggc5/GHSA-vc83-g5p3-ggc5.json +++ b/advisories/unreviewed/2022/05/GHSA-vc83-g5p3-ggc5/GHSA-vc83-g5p3-ggc5.json @@ -7,12 +7,8 @@ "CVE-2010-3851" ], "details": "libguestfs before 1.5.23, as used in virt-v2v, virt-inspector 1.5.3 and earlier, and possibly other products, when a raw-format disk image is used, allows local guest OS administrators to read files from the host via a crafted (1) qcow2, (2) VMDK, or (3) VDI header, related to lack of support for a disk format specifier.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vcr4-xgv5-xwf2/GHSA-vcr4-xgv5-xwf2.json b/advisories/unreviewed/2022/05/GHSA-vcr4-xgv5-xwf2/GHSA-vcr4-xgv5-xwf2.json index c3639ccffa2..aa96a6b49e0 100644 --- a/advisories/unreviewed/2022/05/GHSA-vcr4-xgv5-xwf2/GHSA-vcr4-xgv5-xwf2.json +++ b/advisories/unreviewed/2022/05/GHSA-vcr4-xgv5-xwf2/GHSA-vcr4-xgv5-xwf2.json @@ -7,12 +7,8 @@ "CVE-2010-4306" ], "details": "Adobe Shockwave Player before 11.5.9.620 allows attackers to execute arbitrary code or cause a denial of service (memory corruption) via unspecified vectors, a different vulnerability than CVE-2011-0555, CVE-2010-4093, CVE-2010-4187, CVE-2010-4190, CVE-2010-4191, and CVE-2010-4192.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vcvh-mv5m-x8ww/GHSA-vcvh-mv5m-x8ww.json b/advisories/unreviewed/2022/05/GHSA-vcvh-mv5m-x8ww/GHSA-vcvh-mv5m-x8ww.json index e53436ff1d6..6ee76c6527f 100644 --- a/advisories/unreviewed/2022/05/GHSA-vcvh-mv5m-x8ww/GHSA-vcvh-mv5m-x8ww.json +++ b/advisories/unreviewed/2022/05/GHSA-vcvh-mv5m-x8ww/GHSA-vcvh-mv5m-x8ww.json @@ -7,12 +7,8 @@ "CVE-2011-1333" ], "details": "Cross-site scripting (XSS) vulnerability in Cybozu Office 6 and Cybozu Garoon 2.0.0 through 2.1.3 allows remote attackers to inject arbitrary web script or HTML via vectors related to \"downloading graphic files from the bulletin board system.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vcw3-62fv-p965/GHSA-vcw3-62fv-p965.json b/advisories/unreviewed/2022/05/GHSA-vcw3-62fv-p965/GHSA-vcw3-62fv-p965.json index 093559c41fe..899e74b819b 100644 --- a/advisories/unreviewed/2022/05/GHSA-vcw3-62fv-p965/GHSA-vcw3-62fv-p965.json +++ b/advisories/unreviewed/2022/05/GHSA-vcw3-62fv-p965/GHSA-vcw3-62fv-p965.json @@ -7,12 +7,8 @@ "CVE-2011-0916" ], "details": "Stack-based buffer overflow in the SMTP service in IBM Lotus Domino allows remote attackers to execute arbitrary code via long arguments in a filename parameter in a malformed MIME e-mail message, aka SPR KLYH889M8H.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vg9p-pv32-gf3w/GHSA-vg9p-pv32-gf3w.json b/advisories/unreviewed/2022/05/GHSA-vg9p-pv32-gf3w/GHSA-vg9p-pv32-gf3w.json index 4e2c9c61885..82167cb08c7 100644 --- a/advisories/unreviewed/2022/05/GHSA-vg9p-pv32-gf3w/GHSA-vg9p-pv32-gf3w.json +++ b/advisories/unreviewed/2022/05/GHSA-vg9p-pv32-gf3w/GHSA-vg9p-pv32-gf3w.json @@ -7,12 +7,8 @@ "CVE-2010-3783" ], "details": "Password Server in Apple Mac OS X 10.5.8 and 10.6.x before 10.6.5 does not properly perform replication, which allows remote authenticated users to bypass verification of the current password via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -32,9 +28,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vgm4-v633-q73c/GHSA-vgm4-v633-q73c.json b/advisories/unreviewed/2022/05/GHSA-vgm4-v633-q73c/GHSA-vgm4-v633-q73c.json index bb0412bbd47..a96575caac5 100644 --- a/advisories/unreviewed/2022/05/GHSA-vgm4-v633-q73c/GHSA-vgm4-v633-q73c.json +++ b/advisories/unreviewed/2022/05/GHSA-vgm4-v633-q73c/GHSA-vgm4-v633-q73c.json @@ -7,12 +7,8 @@ "CVE-2008-7283" ], "details": "Open Ticket Request System (OTRS) before 2.2.6, when customer group support is enabled, allows remote authenticated users to bypass intended access restrictions and perform web-interface updates to tickets by leveraging queue read permissions.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vgq6-5774-xvfp/GHSA-vgq6-5774-xvfp.json b/advisories/unreviewed/2022/05/GHSA-vgq6-5774-xvfp/GHSA-vgq6-5774-xvfp.json index 7b33e9553ba..44ff66f2f29 100644 --- a/advisories/unreviewed/2022/05/GHSA-vgq6-5774-xvfp/GHSA-vgq6-5774-xvfp.json +++ b/advisories/unreviewed/2022/05/GHSA-vgq6-5774-xvfp/GHSA-vgq6-5774-xvfp.json @@ -7,12 +7,8 @@ "CVE-2010-3616" ], "details": "ISC DHCP server 4.2 before 4.2.0-P2, when configured to use failover partnerships, allows remote attackers to cause a denial of service (communications-interrupted state and DHCP client service loss) by connecting to a port that is only intended for a failover peer, as demonstrated by a Nagios check_tcp process check to TCP port 520.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vgwx-7c53-q5fc/GHSA-vgwx-7c53-q5fc.json b/advisories/unreviewed/2022/05/GHSA-vgwx-7c53-q5fc/GHSA-vgwx-7c53-q5fc.json index 300e418fbef..10f5907c9d0 100644 --- a/advisories/unreviewed/2022/05/GHSA-vgwx-7c53-q5fc/GHSA-vgwx-7c53-q5fc.json +++ b/advisories/unreviewed/2022/05/GHSA-vgwx-7c53-q5fc/GHSA-vgwx-7c53-q5fc.json @@ -7,12 +7,8 @@ "CVE-2010-3518" ], "details": "Unspecified vulnerability in the PeopleSoft Enterprise HCM GP - Japan component in Oracle PeopleSoft and JDEdwards Suite 8.81 SP1 Bundle #13, 8.9 GP Update 2010-E, 9.0 GP Update 2010-E, and 9.1 GP Update 2010-E allows remote authenticated users to affect confidentiality and integrity via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vhfx-wqjv-qhqq/GHSA-vhfx-wqjv-qhqq.json b/advisories/unreviewed/2022/05/GHSA-vhfx-wqjv-qhqq/GHSA-vhfx-wqjv-qhqq.json index 92ed525b04a..c594197ad9c 100644 --- a/advisories/unreviewed/2022/05/GHSA-vhfx-wqjv-qhqq/GHSA-vhfx-wqjv-qhqq.json +++ b/advisories/unreviewed/2022/05/GHSA-vhfx-wqjv-qhqq/GHSA-vhfx-wqjv-qhqq.json @@ -7,12 +7,8 @@ "CVE-2011-2618" ], "details": "Opera before 11.50 allows remote attackers to cause a denial of service (application crash) via web script that moves a (1) AUDIO element or (2) VIDEO element between windows.", - "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-vj37-f7rj-jvjm/GHSA-vj37-f7rj-jvjm.json b/advisories/unreviewed/2022/05/GHSA-vj37-f7rj-jvjm/GHSA-vj37-f7rj-jvjm.json index 63a25186ff3..034f9142fd5 100644 --- a/advisories/unreviewed/2022/05/GHSA-vj37-f7rj-jvjm/GHSA-vj37-f7rj-jvjm.json +++ b/advisories/unreviewed/2022/05/GHSA-vj37-f7rj-jvjm/GHSA-vj37-f7rj-jvjm.json @@ -7,12 +7,8 @@ "CVE-2008-4928" ], "details": "Cross-site scripting (XSS) vulnerability in the redirect function in functions.php in MyBB (aka MyBulletinBoard) 1.4.2 allows remote attackers to inject arbitrary web script or HTML via the url parameter in a removesubscriptions action to moderation.php, related to use of the ajax option to request a JavaScript redirect. NOTE: this can be leveraged to execute PHP code and bypass cross-site request forgery (CSRF) protection.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vj5c-g6v8-g74w/GHSA-vj5c-g6v8-g74w.json b/advisories/unreviewed/2022/05/GHSA-vj5c-g6v8-g74w/GHSA-vj5c-g6v8-g74w.json index 8057f97fa3b..2c06a62fd06 100644 --- a/advisories/unreviewed/2022/05/GHSA-vj5c-g6v8-g74w/GHSA-vj5c-g6v8-g74w.json +++ b/advisories/unreviewed/2022/05/GHSA-vj5c-g6v8-g74w/GHSA-vj5c-g6v8-g74w.json @@ -7,12 +7,8 @@ "CVE-2011-1307" ], "details": "The installer in IBM WebSphere Application Server (WAS) before 7.0.0.15 uses 777 permissions for a temporary log directory, which allows local users to have unintended access to log files via standard filesystem operations, a different vulnerability than CVE-2009-1173.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -36,9 +32,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-vm34-5fj4-jh3w/GHSA-vm34-5fj4-jh3w.json b/advisories/unreviewed/2022/05/GHSA-vm34-5fj4-jh3w/GHSA-vm34-5fj4-jh3w.json index f2794ad606e..f12e4c94c6a 100644 --- a/advisories/unreviewed/2022/05/GHSA-vm34-5fj4-jh3w/GHSA-vm34-5fj4-jh3w.json +++ b/advisories/unreviewed/2022/05/GHSA-vm34-5fj4-jh3w/GHSA-vm34-5fj4-jh3w.json @@ -7,12 +7,8 @@ "CVE-2008-7289" ], "details": "IBM Tivoli Directory Server (TDS) 5.2 before 5.2.0.5-TIV-ITDS-LA0007 does not properly handle the simultaneous changing of multiple passwords, which makes it easier for remote authenticated users to cause a denial of service (DB2 daemon deadlock) by making password changes that trigger updates to a DB2 password-history table.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vm4w-vmpf-hfpq/GHSA-vm4w-vmpf-hfpq.json b/advisories/unreviewed/2022/05/GHSA-vm4w-vmpf-hfpq/GHSA-vm4w-vmpf-hfpq.json index abeb3f9d40e..f7c1f852baf 100644 --- a/advisories/unreviewed/2022/05/GHSA-vm4w-vmpf-hfpq/GHSA-vm4w-vmpf-hfpq.json +++ b/advisories/unreviewed/2022/05/GHSA-vm4w-vmpf-hfpq/GHSA-vm4w-vmpf-hfpq.json @@ -7,12 +7,8 @@ "CVE-2010-4391" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.5, and RealPlayer Enterprise 2.1.2 and 2.1.3 allows remote attackers to execute arbitrary code via a crafted value in an unspecified header field in an RMX file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vm7x-m59f-jp86/GHSA-vm7x-m59f-jp86.json b/advisories/unreviewed/2022/05/GHSA-vm7x-m59f-jp86/GHSA-vm7x-m59f-jp86.json index 13f2f6b95c9..a1afff4cdee 100644 --- a/advisories/unreviewed/2022/05/GHSA-vm7x-m59f-jp86/GHSA-vm7x-m59f-jp86.json +++ b/advisories/unreviewed/2022/05/GHSA-vm7x-m59f-jp86/GHSA-vm7x-m59f-jp86.json @@ -7,12 +7,8 @@ "CVE-2010-4187" ], "details": "Adobe Shockwave Player before 11.5.9.620 allows attackers to execute arbitrary code or cause a denial of service (memory corruption) via a malformed chunk in a Director file, a different vulnerability than CVE-2011-0555, CVE-2010-4093, CVE-2010-4190, CVE-2010-4191, CVE-2010-4192, and CVE-2010-4306.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vm99-f93f-5hfh/GHSA-vm99-f93f-5hfh.json b/advisories/unreviewed/2022/05/GHSA-vm99-f93f-5hfh/GHSA-vm99-f93f-5hfh.json index 87a43960e82..85412ce4d76 100644 --- a/advisories/unreviewed/2022/05/GHSA-vm99-f93f-5hfh/GHSA-vm99-f93f-5hfh.json +++ b/advisories/unreviewed/2022/05/GHSA-vm99-f93f-5hfh/GHSA-vm99-f93f-5hfh.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-vmch-7q25-jv77/GHSA-vmch-7q25-jv77.json b/advisories/unreviewed/2022/05/GHSA-vmch-7q25-jv77/GHSA-vmch-7q25-jv77.json index 3bbb264d9cc..3b2d02d2604 100644 --- a/advisories/unreviewed/2022/05/GHSA-vmch-7q25-jv77/GHSA-vmch-7q25-jv77.json +++ b/advisories/unreviewed/2022/05/GHSA-vmch-7q25-jv77/GHSA-vmch-7q25-jv77.json @@ -7,12 +7,8 @@ "CVE-2011-1902" ], "details": "Directory traversal vulnerability in the web interface in Proofpoint Messaging Security Gateway 6.2.0.263:6.2.0.237 and earlier in Proofpoint Protection Server 5.5.3, 5.5.4, 5.5.5, 6.0.2, 6.1.1, and 6.2.0 allows remote attackers to read arbitrary files via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vp93-v8xp-q5r9/GHSA-vp93-v8xp-q5r9.json b/advisories/unreviewed/2022/05/GHSA-vp93-v8xp-q5r9/GHSA-vp93-v8xp-q5r9.json index b362fad1da8..8f059697d34 100644 --- a/advisories/unreviewed/2022/05/GHSA-vp93-v8xp-q5r9/GHSA-vp93-v8xp-q5r9.json +++ b/advisories/unreviewed/2022/05/GHSA-vp93-v8xp-q5r9/GHSA-vp93-v8xp-q5r9.json @@ -7,12 +7,8 @@ "CVE-2010-4740" ], "details": "Stack-based buffer overflow in WTclient.dll in SCADA Engine BACnet OPC Client before 1.0.25 allows user-assisted remote attackers to execute arbitrary code via a crafted .csv file, related to a status log message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vqgh-6qvp-jq6m/GHSA-vqgh-6qvp-jq6m.json b/advisories/unreviewed/2022/05/GHSA-vqgh-6qvp-jq6m/GHSA-vqgh-6qvp-jq6m.json index 93f85794ea8..589e43b80ff 100644 --- a/advisories/unreviewed/2022/05/GHSA-vqgh-6qvp-jq6m/GHSA-vqgh-6qvp-jq6m.json +++ b/advisories/unreviewed/2022/05/GHSA-vqgh-6qvp-jq6m/GHSA-vqgh-6qvp-jq6m.json @@ -7,12 +7,8 @@ "CVE-2011-2470" ], "details": "Cross-site scripting (XSS) vulnerability in chat/base/admin/login.php in A Really Simple Chat (ARSC) 3.3-rc2 allows remote attackers to inject arbitrary web script or HTML via the arsc_message parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vr35-f3pr-6j5j/GHSA-vr35-f3pr-6j5j.json b/advisories/unreviewed/2022/05/GHSA-vr35-f3pr-6j5j/GHSA-vr35-f3pr-6j5j.json index 7f86b3781b8..c38a38cb805 100644 --- a/advisories/unreviewed/2022/05/GHSA-vr35-f3pr-6j5j/GHSA-vr35-f3pr-6j5j.json +++ b/advisories/unreviewed/2022/05/GHSA-vr35-f3pr-6j5j/GHSA-vr35-f3pr-6j5j.json @@ -7,12 +7,8 @@ "CVE-2011-0453" ], "details": "F-Secure Internet Gatekeeper for Linux 3.x before 3.03 does not require authentication for reading access logs, which allows remote attackers to obtain potentially sensitive information via a TCP session on the admin UI port.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vwc7-2mqc-8723/GHSA-vwc7-2mqc-8723.json b/advisories/unreviewed/2022/05/GHSA-vwc7-2mqc-8723/GHSA-vwc7-2mqc-8723.json index 5c3071ccfc8..33b23fa01e5 100644 --- a/advisories/unreviewed/2022/05/GHSA-vwc7-2mqc-8723/GHSA-vwc7-2mqc-8723.json +++ b/advisories/unreviewed/2022/05/GHSA-vwc7-2mqc-8723/GHSA-vwc7-2mqc-8723.json @@ -7,12 +7,8 @@ "CVE-2010-3056" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in phpMyAdmin 2.11.x before 2.11.10.1 and 3.x before 3.3.5.1 allow remote attackers to inject arbitrary web script or HTML via vectors related to (1) db_search.php, (2) db_sql.php, (3) db_structure.php, (4) js/messages.php, (5) libraries/common.lib.php, (6) libraries/database_interface.lib.php, (7) libraries/dbi/mysql.dbi.lib.php, (8) libraries/dbi/mysqli.dbi.lib.php, (9) libraries/db_info.inc.php, (10) libraries/sanitizing.lib.php, (11) libraries/sqlparser.lib.php, (12) server_databases.php, (13) server_privileges.php, (14) setup/config.php, (15) sql.php, (16) tbl_replace.php, and (17) tbl_sql.php.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vwjw-8j8p-j6m8/GHSA-vwjw-8j8p-j6m8.json b/advisories/unreviewed/2022/05/GHSA-vwjw-8j8p-j6m8/GHSA-vwjw-8j8p-j6m8.json index 4dc1b4e1d0f..6c8047862a2 100644 --- a/advisories/unreviewed/2022/05/GHSA-vwjw-8j8p-j6m8/GHSA-vwjw-8j8p-j6m8.json +++ b/advisories/unreviewed/2022/05/GHSA-vwjw-8j8p-j6m8/GHSA-vwjw-8j8p-j6m8.json @@ -7,12 +7,8 @@ "CVE-2011-3384" ], "details": "Cross-site scripting (XSS) vulnerability in the Sage add-on 1.3.10 and earlier for Firefox allows remote attackers to inject arbitrary web script or HTML via a crafted feed, a different vulnerability than CVE-2009-4102.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-vxxg-j26r-33g8/GHSA-vxxg-j26r-33g8.json b/advisories/unreviewed/2022/05/GHSA-vxxg-j26r-33g8/GHSA-vxxg-j26r-33g8.json index 77906c89f09..e31ff3e5c88 100644 --- a/advisories/unreviewed/2022/05/GHSA-vxxg-j26r-33g8/GHSA-vxxg-j26r-33g8.json +++ b/advisories/unreviewed/2022/05/GHSA-vxxg-j26r-33g8/GHSA-vxxg-j26r-33g8.json @@ -7,12 +7,8 @@ "CVE-2010-2244" ], "details": "The AvahiDnsPacket function in avahi-core/socket.c in avahi-daemon in Avahi 0.6.16 and 0.6.25 allows remote attackers to cause a denial of service (assertion failure and daemon exit) via a DNS packet with an invalid checksum followed by a DNS packet with a valid checksum, a different vulnerability than CVE-2008-5081.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -52,9 +48,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w2gc-fxmq-hpfh/GHSA-w2gc-fxmq-hpfh.json b/advisories/unreviewed/2022/05/GHSA-w2gc-fxmq-hpfh/GHSA-w2gc-fxmq-hpfh.json index dd1761b512a..4e5ffb4f1cc 100644 --- a/advisories/unreviewed/2022/05/GHSA-w2gc-fxmq-hpfh/GHSA-w2gc-fxmq-hpfh.json +++ b/advisories/unreviewed/2022/05/GHSA-w2gc-fxmq-hpfh/GHSA-w2gc-fxmq-hpfh.json @@ -7,12 +7,8 @@ "CVE-2011-0542" ], "details": "fusermount in fuse 2.8.5 and earlier does not perform a chdir to / before performing a mount or umount, which allows local users to unmount arbitrary directories via unspecified vectors.", - "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/05/GHSA-w3qm-9vrx-79hx/GHSA-w3qm-9vrx-79hx.json b/advisories/unreviewed/2022/05/GHSA-w3qm-9vrx-79hx/GHSA-w3qm-9vrx-79hx.json index 9d01ffa6619..b1196296d82 100644 --- a/advisories/unreviewed/2022/05/GHSA-w3qm-9vrx-79hx/GHSA-w3qm-9vrx-79hx.json +++ b/advisories/unreviewed/2022/05/GHSA-w3qm-9vrx-79hx/GHSA-w3qm-9vrx-79hx.json @@ -7,12 +7,8 @@ "CVE-2011-0179" ], "details": "CoreText in Apple Mac OS X before 10.6.7 allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via a document that contains a crafted embedded font.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w3wj-3q97-7hmm/GHSA-w3wj-3q97-7hmm.json b/advisories/unreviewed/2022/05/GHSA-w3wj-3q97-7hmm/GHSA-w3wj-3q97-7hmm.json index 3f861e96a47..b6a53d04c3c 100644 --- a/advisories/unreviewed/2022/05/GHSA-w3wj-3q97-7hmm/GHSA-w3wj-3q97-7hmm.json +++ b/advisories/unreviewed/2022/05/GHSA-w3wj-3q97-7hmm/GHSA-w3wj-3q97-7hmm.json @@ -7,12 +7,8 @@ "CVE-2008-5685" ], "details": "Sun ScApp firmware 5.18.x, 5.19.x, and 5.20.0 through 5.20.10 on Sun Fire and Netra platforms allows remote attackers to access the System Controller (SC), the system console, and possibly the host OS, and cause a denial of service (shutdown or reboot), via spoofed IP packets.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -48,9 +44,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w44m-87m9-m744/GHSA-w44m-87m9-m744.json b/advisories/unreviewed/2022/05/GHSA-w44m-87m9-m744/GHSA-w44m-87m9-m744.json index ad8f70c48fb..c5a9dec950f 100644 --- a/advisories/unreviewed/2022/05/GHSA-w44m-87m9-m744/GHSA-w44m-87m9-m744.json +++ b/advisories/unreviewed/2022/05/GHSA-w44m-87m9-m744/GHSA-w44m-87m9-m744.json @@ -7,12 +7,8 @@ "CVE-2010-3930" ], "details": "Directory traversal vulnerability in MODx Evolution 1.0.4 and earlier allows remote attackers to read arbitrary files via unspecified vectors related to AjaxSearch, a different vulnerability than CVE-2010-1427.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w48p-p38c-ph98/GHSA-w48p-p38c-ph98.json b/advisories/unreviewed/2022/05/GHSA-w48p-p38c-ph98/GHSA-w48p-p38c-ph98.json index 072a3ebf9b1..14ccd49b661 100644 --- a/advisories/unreviewed/2022/05/GHSA-w48p-p38c-ph98/GHSA-w48p-p38c-ph98.json +++ b/advisories/unreviewed/2022/05/GHSA-w48p-p38c-ph98/GHSA-w48p-p38c-ph98.json @@ -7,12 +7,8 @@ "CVE-2008-7276" ], "details": "Kernel/System/Web/Request.pm in Open Ticket Request System (OTRS) before 2.3.2 creates a directory under /tmp/ with 1274 permissions, which might allow local users to bypass intended access restrictions via standard filesystem operations, related to incorrect interpretation of 0700 as a decimal value.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w4rc-xm4h-xq3g/GHSA-w4rc-xm4h-xq3g.json b/advisories/unreviewed/2022/05/GHSA-w4rc-xm4h-xq3g/GHSA-w4rc-xm4h-xq3g.json index 5b3df8f2558..36f9e4f0091 100644 --- a/advisories/unreviewed/2022/05/GHSA-w4rc-xm4h-xq3g/GHSA-w4rc-xm4h-xq3g.json +++ b/advisories/unreviewed/2022/05/GHSA-w4rc-xm4h-xq3g/GHSA-w4rc-xm4h-xq3g.json @@ -7,12 +7,8 @@ "CVE-2011-0502" ], "details": "Music Animation Machine MIDI Player 2006aug19 Release 035 and possibly other versions allows user-assisted remote attackers to cause a denial of service (crash) and possibly have other unspecified impact via a long line in a MIDI (.mid) file.", - "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-w55v-q4px-2w63/GHSA-w55v-q4px-2w63.json b/advisories/unreviewed/2022/05/GHSA-w55v-q4px-2w63/GHSA-w55v-q4px-2w63.json index a8974da3ee5..2d2c569a73a 100644 --- a/advisories/unreviewed/2022/05/GHSA-w55v-q4px-2w63/GHSA-w55v-q4px-2w63.json +++ b/advisories/unreviewed/2022/05/GHSA-w55v-q4px-2w63/GHSA-w55v-q4px-2w63.json @@ -7,12 +7,8 @@ "CVE-2010-3903" ], "details": "Unspecified vulnerability in OpenConnect before 2.23 allows remote AnyConnect SSL VPN servers to cause a denial of service (application crash) via a 404 HTTP status code.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w56p-h676-566f/GHSA-w56p-h676-566f.json b/advisories/unreviewed/2022/05/GHSA-w56p-h676-566f/GHSA-w56p-h676-566f.json index c8597f19c89..6ea3f20f5ad 100644 --- a/advisories/unreviewed/2022/05/GHSA-w56p-h676-566f/GHSA-w56p-h676-566f.json +++ b/advisories/unreviewed/2022/05/GHSA-w56p-h676-566f/GHSA-w56p-h676-566f.json @@ -7,12 +7,8 @@ "CVE-2008-7265" ], "details": "The pr_data_xfer function in ProFTPD before 1.3.2rc3 allows remote authenticated users to cause a denial of service (CPU consumption) via an ABOR command during a data transfer.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w7q9-fmm4-v8jg/GHSA-w7q9-fmm4-v8jg.json b/advisories/unreviewed/2022/05/GHSA-w7q9-fmm4-v8jg/GHSA-w7q9-fmm4-v8jg.json index 0b07e971d09..0b77aa3de1e 100644 --- a/advisories/unreviewed/2022/05/GHSA-w7q9-fmm4-v8jg/GHSA-w7q9-fmm4-v8jg.json +++ b/advisories/unreviewed/2022/05/GHSA-w7q9-fmm4-v8jg/GHSA-w7q9-fmm4-v8jg.json @@ -7,12 +7,8 @@ "CVE-2011-1336" ], "details": "Buffer overflow in ALZip 8.21 and earlier allows remote attackers to execute arbitrary code via a crafted mim file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w87f-j522-95hp/GHSA-w87f-j522-95hp.json b/advisories/unreviewed/2022/05/GHSA-w87f-j522-95hp/GHSA-w87f-j522-95hp.json index 62c833bb7bb..5a5095627eb 100644 --- a/advisories/unreviewed/2022/05/GHSA-w87f-j522-95hp/GHSA-w87f-j522-95hp.json +++ b/advisories/unreviewed/2022/05/GHSA-w87f-j522-95hp/GHSA-w87f-j522-95hp.json @@ -7,12 +7,8 @@ "CVE-2011-0935" ], "details": "The PKI functionality in Cisco IOS 15.0 and 15.1 does not prevent permanent caching of certain public keys, which allows remote attackers to bypass authentication and have unspecified other impact by leveraging an IKE peer relationship in which a key was previously valid but later revoked, aka Bug ID CSCth82164, a different vulnerability than CVE-2010-4685.", - "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-w8hp-2828-m4h2/GHSA-w8hp-2828-m4h2.json b/advisories/unreviewed/2022/05/GHSA-w8hp-2828-m4h2/GHSA-w8hp-2828-m4h2.json index cbda1f189a1..479a596ad53 100644 --- a/advisories/unreviewed/2022/05/GHSA-w8hp-2828-m4h2/GHSA-w8hp-2828-m4h2.json +++ b/advisories/unreviewed/2022/05/GHSA-w8hp-2828-m4h2/GHSA-w8hp-2828-m4h2.json @@ -7,12 +7,8 @@ "CVE-2011-2489" ], "details": "Multiple off-by-one errors in opiesu.c in opiesu in OPIE 2.4.1-test1 and earlier might allow local users to gain privileges via a crafted command line.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -64,9 +60,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-w8wq-c48h-9q7g/GHSA-w8wq-c48h-9q7g.json b/advisories/unreviewed/2022/05/GHSA-w8wq-c48h-9q7g/GHSA-w8wq-c48h-9q7g.json index 54eb354b987..c9a064b6be4 100644 --- a/advisories/unreviewed/2022/05/GHSA-w8wq-c48h-9q7g/GHSA-w8wq-c48h-9q7g.json +++ b/advisories/unreviewed/2022/05/GHSA-w8wq-c48h-9q7g/GHSA-w8wq-c48h-9q7g.json @@ -7,12 +7,8 @@ "CVE-2011-1563" ], "details": "Multiple stack-based buffer overflows in the HMI application in DATAC RealFlex RealWin 2.1 (Build 6.1.10.10) and earlier allow remote attackers to execute arbitrary code via (1) a long username in an On_FC_CONNECT_FCS_LOGIN packet, and crafted (2) On_FC_CTAGLIST_FCS_CADDTAG, (3) On_FC_CTAGLIST_FCS_CDELTAG, (4) On_FC_CTAGLIST_FCS_ADDTAGMS, (5) On_FC_RFUSER_FCS_LOGIN, (6) unspecified \"On_FC_BINFILE_FCS_*FILE\", (7) On_FC_CGETTAG_FCS_GETTELEMETRY, (8) On_FC_CGETTAG_FCS_GETCHANNELTELEMETRY, (9) On_FC_CGETTAG_FCS_SETTELEMETRY, (10) On_FC_CGETTAG_FCS_SETCHANNELTELEMETRY, and (11) On_FC_SCRIPT_FCS_STARTPROG packets to port 910.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w96p-g4xq-chrg/GHSA-w96p-g4xq-chrg.json b/advisories/unreviewed/2022/05/GHSA-w96p-g4xq-chrg/GHSA-w96p-g4xq-chrg.json index 97849a8211c..da17b7f01ec 100644 --- a/advisories/unreviewed/2022/05/GHSA-w96p-g4xq-chrg/GHSA-w96p-g4xq-chrg.json +++ b/advisories/unreviewed/2022/05/GHSA-w96p-g4xq-chrg/GHSA-w96p-g4xq-chrg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-w9x9-fc49-2chx/GHSA-w9x9-fc49-2chx.json b/advisories/unreviewed/2022/05/GHSA-w9x9-fc49-2chx/GHSA-w9x9-fc49-2chx.json index 104da061085..081035af2e8 100644 --- a/advisories/unreviewed/2022/05/GHSA-w9x9-fc49-2chx/GHSA-w9x9-fc49-2chx.json +++ b/advisories/unreviewed/2022/05/GHSA-w9x9-fc49-2chx/GHSA-w9x9-fc49-2chx.json @@ -7,12 +7,8 @@ "CVE-2010-4767" ], "details": "Open Ticket Request System (OTRS) before 2.3.6 does not properly handle e-mail messages in which the From line contains UTF-8 characters associated with diacritical marks and an invalid charset, which allows remote attackers to cause a denial of service (duplicate tickets and duplicate auto-responses) by sending a crafted message to a POP3 mailbox.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wc9x-xr56-87qv/GHSA-wc9x-xr56-87qv.json b/advisories/unreviewed/2022/05/GHSA-wc9x-xr56-87qv/GHSA-wc9x-xr56-87qv.json index c859c02a12a..63160eec4e5 100644 --- a/advisories/unreviewed/2022/05/GHSA-wc9x-xr56-87qv/GHSA-wc9x-xr56-87qv.json +++ b/advisories/unreviewed/2022/05/GHSA-wc9x-xr56-87qv/GHSA-wc9x-xr56-87qv.json @@ -7,12 +7,8 @@ "CVE-2010-2094" ], "details": "Multiple format string vulnerabilities in the phar extension in PHP 5.3 before 5.3.2 allow context-dependent attackers to obtain sensitive information (memory contents) and possibly execute arbitrary code via a crafted phar:// URI that is not properly handled by the (1) phar_stream_flush, (2) phar_wrapper_unlink, (3) phar_parse_url, or (4) phar_wrapper_open_url functions in ext/phar/stream.c; and the (5) phar_wrapper_open_dir function in ext/phar/dirstream.c, which triggers errors in the php_stream_wrapper_log_error function.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wf9j-wrqc-3h9g/GHSA-wf9j-wrqc-3h9g.json b/advisories/unreviewed/2022/05/GHSA-wf9j-wrqc-3h9g/GHSA-wf9j-wrqc-3h9g.json index 7aa2d6949cd..b4fd166fa8a 100644 --- a/advisories/unreviewed/2022/05/GHSA-wf9j-wrqc-3h9g/GHSA-wf9j-wrqc-3h9g.json +++ b/advisories/unreviewed/2022/05/GHSA-wf9j-wrqc-3h9g/GHSA-wf9j-wrqc-3h9g.json @@ -7,12 +7,8 @@ "CVE-2010-4728" ], "details": "Zikula before 1.3.1 uses the rand and srand PHP functions for random number generation, which makes it easier for remote attackers to defeat protection mechanisms based on randomization by predicting a return value, as demonstrated by the authid protection mechanism.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-wgjp-xwrv-3j6h/GHSA-wgjp-xwrv-3j6h.json b/advisories/unreviewed/2022/05/GHSA-wgjp-xwrv-3j6h/GHSA-wgjp-xwrv-3j6h.json index 23140330398..7b5a563cd4c 100644 --- a/advisories/unreviewed/2022/05/GHSA-wgjp-xwrv-3j6h/GHSA-wgjp-xwrv-3j6h.json +++ b/advisories/unreviewed/2022/05/GHSA-wgjp-xwrv-3j6h/GHSA-wgjp-xwrv-3j6h.json @@ -7,12 +7,8 @@ "CVE-2010-4779" ], "details": "Cross-site scripting (XSS) vulnerability in lib/includes/auth.inc.php in the WPtouch plugin 1.9.19.4 and 1.9.20 for WordPress allows remote attackers to inject arbitrary web script or HTML via the wptouch_settings parameter to include/adsense-new.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-wgvq-4crq-jghq/GHSA-wgvq-4crq-jghq.json b/advisories/unreviewed/2022/05/GHSA-wgvq-4crq-jghq/GHSA-wgvq-4crq-jghq.json index 7af9d43f56d..dbf0f6eb474 100644 --- a/advisories/unreviewed/2022/05/GHSA-wgvq-4crq-jghq/GHSA-wgvq-4crq-jghq.json +++ b/advisories/unreviewed/2022/05/GHSA-wgvq-4crq-jghq/GHSA-wgvq-4crq-jghq.json @@ -7,12 +7,8 @@ "CVE-2011-0732" ], "details": "Multiple unspecified vulnerabilities in IBM Tivoli Integrated Portal (TIP) 1.1.1.1, as used in IBM Tivoli Common Reporting (TCR) 1.2.0 before Interim Fix 9, have unknown impact and attack vectors, related to \"security vulnerabilities of Websphere Application Server bundled within\" and \"many internal defects and APARs.\"", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-wh82-qfjf-6428/GHSA-wh82-qfjf-6428.json b/advisories/unreviewed/2022/05/GHSA-wh82-qfjf-6428/GHSA-wh82-qfjf-6428.json index 4ae4fb4b41f..c044cdf1cfb 100644 --- a/advisories/unreviewed/2022/05/GHSA-wh82-qfjf-6428/GHSA-wh82-qfjf-6428.json +++ b/advisories/unreviewed/2022/05/GHSA-wh82-qfjf-6428/GHSA-wh82-qfjf-6428.json @@ -7,12 +7,8 @@ "CVE-2010-4753" ], "details": "Cross-site scripting (XSS) vulnerability in LightNEasy.php in LightNEasy 3.2.1 allows remote attackers to inject arbitrary web script or HTML via the id parameter, which is not properly handled in a forced SQL error message.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-whfp-4v96-fx4x/GHSA-whfp-4v96-fx4x.json b/advisories/unreviewed/2022/05/GHSA-whfp-4v96-fx4x/GHSA-whfp-4v96-fx4x.json index 805d99533db..1301f39e3de 100644 --- a/advisories/unreviewed/2022/05/GHSA-whfp-4v96-fx4x/GHSA-whfp-4v96-fx4x.json +++ b/advisories/unreviewed/2022/05/GHSA-whfp-4v96-fx4x/GHSA-whfp-4v96-fx4x.json @@ -7,12 +7,8 @@ "CVE-2010-4112" ], "details": "HP Insight Management Agents before 8.6 allows remote attackers to obtain sensitive information via an unspecified request that triggers disclosure of the full path.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-whwf-72vv-pq9w/GHSA-whwf-72vv-pq9w.json b/advisories/unreviewed/2022/05/GHSA-whwf-72vv-pq9w/GHSA-whwf-72vv-pq9w.json index 603e9598ad3..59b71b0eca7 100644 --- a/advisories/unreviewed/2022/05/GHSA-whwf-72vv-pq9w/GHSA-whwf-72vv-pq9w.json +++ b/advisories/unreviewed/2022/05/GHSA-whwf-72vv-pq9w/GHSA-whwf-72vv-pq9w.json @@ -7,12 +7,8 @@ "CVE-2010-4770" ], "details": "SQL injection vulnerability in index.php in CommodityRentals DVD Rentals Script allows remote attackers to execute arbitrary SQL commands via the cat_id parameter in a catalog action.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wj2p-qwwc-9v45/GHSA-wj2p-qwwc-9v45.json b/advisories/unreviewed/2022/05/GHSA-wj2p-qwwc-9v45/GHSA-wj2p-qwwc-9v45.json index 73e91422a5a..0cac3693275 100644 --- a/advisories/unreviewed/2022/05/GHSA-wj2p-qwwc-9v45/GHSA-wj2p-qwwc-9v45.json +++ b/advisories/unreviewed/2022/05/GHSA-wj2p-qwwc-9v45/GHSA-wj2p-qwwc-9v45.json @@ -7,12 +7,8 @@ "CVE-2010-4599" ], "details": "Untrusted search path vulnerability in Ecava IntegraXor 3.6.4000.0 allows local users to gain privileges via a Trojan horse dwmapi.dll file in the current working directory. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-wjgg-xm9w-7wc5/GHSA-wjgg-xm9w-7wc5.json b/advisories/unreviewed/2022/05/GHSA-wjgg-xm9w-7wc5/GHSA-wjgg-xm9w-7wc5.json index cf3ac3cef1f..ba9c540e482 100644 --- a/advisories/unreviewed/2022/05/GHSA-wjgg-xm9w-7wc5/GHSA-wjgg-xm9w-7wc5.json +++ b/advisories/unreviewed/2022/05/GHSA-wjgg-xm9w-7wc5/GHSA-wjgg-xm9w-7wc5.json @@ -7,12 +7,8 @@ "CVE-2011-3502" ], "details": "The web server in Cogent DataHub 7.1.1.63 and earlier allows remote attackers to obtain the source code of executable files via a request with a trailing (1) space or (2) %2e (encoded dot).", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wjpq-x66w-f4mj/GHSA-wjpq-x66w-f4mj.json b/advisories/unreviewed/2022/05/GHSA-wjpq-x66w-f4mj/GHSA-wjpq-x66w-f4mj.json index ab7813bd806..119392db57f 100644 --- a/advisories/unreviewed/2022/05/GHSA-wjpq-x66w-f4mj/GHSA-wjpq-x66w-f4mj.json +++ b/advisories/unreviewed/2022/05/GHSA-wjpq-x66w-f4mj/GHSA-wjpq-x66w-f4mj.json @@ -7,12 +7,8 @@ "CVE-2010-4395" ], "details": "Heap-based buffer overflow in RealNetworks RealPlayer 11.0 through 11.1, RealPlayer SP 1.0 through 1.1.5, and Linux RealPlayer 11.0.2.1744 allows remote attackers to execute arbitrary code via a crafted conditional component in AAC frame data.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wjrv-q7f3-wm8x/GHSA-wjrv-q7f3-wm8x.json b/advisories/unreviewed/2022/05/GHSA-wjrv-q7f3-wm8x/GHSA-wjrv-q7f3-wm8x.json index a11c92b238d..a878827813c 100644 --- a/advisories/unreviewed/2022/05/GHSA-wjrv-q7f3-wm8x/GHSA-wjrv-q7f3-wm8x.json +++ b/advisories/unreviewed/2022/05/GHSA-wjrv-q7f3-wm8x/GHSA-wjrv-q7f3-wm8x.json @@ -7,12 +7,8 @@ "CVE-2010-3784" ], "details": "The PMPageFormatCreateWithDataRepresentation API in Printing in Apple Mac OS X 10.5.8 and 10.6.x before 10.6.5 does not properly handle XML data, which allows attackers to cause a denial of service (NULL pointer dereference and application crash) via unspecified API calls.", - "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-wmf8-498j-7qmx/GHSA-wmf8-498j-7qmx.json b/advisories/unreviewed/2022/05/GHSA-wmf8-498j-7qmx/GHSA-wmf8-498j-7qmx.json index 9072d9cc165..2a7e10a74b0 100644 --- a/advisories/unreviewed/2022/05/GHSA-wmf8-498j-7qmx/GHSA-wmf8-498j-7qmx.json +++ b/advisories/unreviewed/2022/05/GHSA-wmf8-498j-7qmx/GHSA-wmf8-498j-7qmx.json @@ -7,12 +7,8 @@ "CVE-2010-4726" ], "details": "Unspecified vulnerability in the math plugin in Smarty before 3.0.0 RC1 has unknown impact and remote attack vectors. NOTE: this might overlap CVE-2009-1669.", - "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-wmfm-p2jq-55wv/GHSA-wmfm-p2jq-55wv.json b/advisories/unreviewed/2022/05/GHSA-wmfm-p2jq-55wv/GHSA-wmfm-p2jq-55wv.json index fd0aa53cfc3..8d0f0a8d300 100644 --- a/advisories/unreviewed/2022/05/GHSA-wmfm-p2jq-55wv/GHSA-wmfm-p2jq-55wv.json +++ b/advisories/unreviewed/2022/05/GHSA-wmfm-p2jq-55wv/GHSA-wmfm-p2jq-55wv.json @@ -7,12 +7,8 @@ "CVE-2011-1486" ], "details": "libvirtd in libvirt before 0.9.0 does not use thread-safe error reporting, which allows remote attackers to cause a denial of service (crash) by causing multiple threads to report errors at the same time.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -68,9 +64,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "LOW", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-wmgq-g8jq-35gg/GHSA-wmgq-g8jq-35gg.json b/advisories/unreviewed/2022/05/GHSA-wmgq-g8jq-35gg/GHSA-wmgq-g8jq-35gg.json index af2e11063ca..3877b87e5a0 100644 --- a/advisories/unreviewed/2022/05/GHSA-wmgq-g8jq-35gg/GHSA-wmgq-g8jq-35gg.json +++ b/advisories/unreviewed/2022/05/GHSA-wmgq-g8jq-35gg/GHSA-wmgq-g8jq-35gg.json @@ -7,12 +7,8 @@ "CVE-2011-1341" ], "details": "Cross-site request forgery (CSRF) vulnerability in Aimluck Aipo before 4.0.4.0, and Aipo for ASP before 4.0.4.0, allows remote attackers to hijack the authentication of administrators for requests that modify data.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wqfg-v2qg-cx67/GHSA-wqfg-v2qg-cx67.json b/advisories/unreviewed/2022/05/GHSA-wqfg-v2qg-cx67/GHSA-wqfg-v2qg-cx67.json index 3148c29def7..a34da120e55 100644 --- a/advisories/unreviewed/2022/05/GHSA-wqfg-v2qg-cx67/GHSA-wqfg-v2qg-cx67.json +++ b/advisories/unreviewed/2022/05/GHSA-wqfg-v2qg-cx67/GHSA-wqfg-v2qg-cx67.json @@ -7,12 +7,8 @@ "CVE-2010-4610" ], "details": "Cross-site scripting (XSS) vulnerability in index.php in Html-edit CMS 3.1.8 allows remote attackers to inject arbitrary web script or HTML via the error parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wqhw-ww86-mf7g/GHSA-wqhw-ww86-mf7g.json b/advisories/unreviewed/2022/05/GHSA-wqhw-ww86-mf7g/GHSA-wqhw-ww86-mf7g.json index f08237d3e21..7b7a7c11eb1 100644 --- a/advisories/unreviewed/2022/05/GHSA-wqhw-ww86-mf7g/GHSA-wqhw-ww86-mf7g.json +++ b/advisories/unreviewed/2022/05/GHSA-wqhw-ww86-mf7g/GHSA-wqhw-ww86-mf7g.json @@ -7,12 +7,8 @@ "CVE-2010-4195" ], "details": "The TextXtra module in Adobe Shockwave Player before 11.5.9.620 does not properly validate unspecified input data, which allows attackers to execute arbitrary code via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wqwx-hhf2-x4q9/GHSA-wqwx-hhf2-x4q9.json b/advisories/unreviewed/2022/05/GHSA-wqwx-hhf2-x4q9/GHSA-wqwx-hhf2-x4q9.json index 96490232a6c..53049d5ba34 100644 --- a/advisories/unreviewed/2022/05/GHSA-wqwx-hhf2-x4q9/GHSA-wqwx-hhf2-x4q9.json +++ b/advisories/unreviewed/2022/05/GHSA-wqwx-hhf2-x4q9/GHSA-wqwx-hhf2-x4q9.json @@ -7,12 +7,8 @@ "CVE-2010-4005" ], "details": "The (1) tomboy and (2) tomboy-panel scripts in GNOME Tomboy 1.5.2 and earlier place a zero-length directory name in the LD_LIBRARY_PATH, which allows local users to gain privileges via a Trojan horse shared library in the current working directory. NOTE: vector 1 exists because of an incorrect fix for CVE-2005-4790.2.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wr7g-9fxm-4x77/GHSA-wr7g-9fxm-4x77.json b/advisories/unreviewed/2022/05/GHSA-wr7g-9fxm-4x77/GHSA-wr7g-9fxm-4x77.json index 720d81d713e..6932ccc2ca5 100644 --- a/advisories/unreviewed/2022/05/GHSA-wr7g-9fxm-4x77/GHSA-wr7g-9fxm-4x77.json +++ b/advisories/unreviewed/2022/05/GHSA-wr7g-9fxm-4x77/GHSA-wr7g-9fxm-4x77.json @@ -7,12 +7,8 @@ "CVE-2010-4305" ], "details": "Cisco Unified Videoconferencing (UVC) System 3545, 5110, 5115, and 5230; Unified Videoconferencing 3527 Primary Rate Interface (PRI) Gateway; Unified Videoconferencing 3522 Basic Rate Interfaces (BRI) Gateway; and Unified Videoconferencing 3515 Multipoint Control Unit (MCU) improperly use cookies for web-interface credentials, which allows remote attackers to obtain sensitive information by reading a (1) cleartext or (2) base64-encoded cleartext cookie, aka Bug ID CSCti54052.", - "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-wv2h-929x-6v2j/GHSA-wv2h-929x-6v2j.json b/advisories/unreviewed/2022/05/GHSA-wv2h-929x-6v2j/GHSA-wv2h-929x-6v2j.json index 946f4ec3efd..39bc8d2ed78 100644 --- a/advisories/unreviewed/2022/05/GHSA-wv2h-929x-6v2j/GHSA-wv2h-929x-6v2j.json +++ b/advisories/unreviewed/2022/05/GHSA-wv2h-929x-6v2j/GHSA-wv2h-929x-6v2j.json @@ -7,12 +7,8 @@ "CVE-2010-3077" ], "details": "Cross-site scripting (XSS) vulnerability in util/icon_browser.php in the Horde Application Framework before 3.3.9 allows remote attackers to inject arbitrary web script or HTML via the subdir parameter.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-wv7c-w578-4jm4/GHSA-wv7c-w578-4jm4.json b/advisories/unreviewed/2022/05/GHSA-wv7c-w578-4jm4/GHSA-wv7c-w578-4jm4.json index beaf30c04d3..d2e9c393f53 100644 --- a/advisories/unreviewed/2022/05/GHSA-wv7c-w578-4jm4/GHSA-wv7c-w578-4jm4.json +++ b/advisories/unreviewed/2022/05/GHSA-wv7c-w578-4jm4/GHSA-wv7c-w578-4jm4.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -79,9 +77,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-wxr2-5mq6-gvcq/GHSA-wxr2-5mq6-gvcq.json b/advisories/unreviewed/2022/05/GHSA-wxr2-5mq6-gvcq/GHSA-wxr2-5mq6-gvcq.json index 8e7148fa571..6db8c229f18 100644 --- a/advisories/unreviewed/2022/05/GHSA-wxr2-5mq6-gvcq/GHSA-wxr2-5mq6-gvcq.json +++ b/advisories/unreviewed/2022/05/GHSA-wxr2-5mq6-gvcq/GHSA-wxr2-5mq6-gvcq.json @@ -7,12 +7,8 @@ "CVE-2010-4479" ], "details": "Unspecified vulnerability in pdf.c in libclamav in ClamAV before 0.96.5 allows remote attackers to cause a denial of service (application crash) or possibly execute arbitrary code via a crafted PDF document, aka \"bb #2380,\" a different vulnerability than CVE-2010-4260.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -108,9 +104,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-x27m-58m8-qvm6/GHSA-x27m-58m8-qvm6.json b/advisories/unreviewed/2022/05/GHSA-x27m-58m8-qvm6/GHSA-x27m-58m8-qvm6.json index 9f539821d6e..2a61f3a98b7 100644 --- a/advisories/unreviewed/2022/05/GHSA-x27m-58m8-qvm6/GHSA-x27m-58m8-qvm6.json +++ b/advisories/unreviewed/2022/05/GHSA-x27m-58m8-qvm6/GHSA-x27m-58m8-qvm6.json @@ -7,12 +7,8 @@ "CVE-2010-3900" ], "details": "Midori before 0.2.5, when WebKitGTK+ before 1.1.14 or LibSoup before 2.29.91 is used, does not verify X.509 certificates, which allows man-in-the-middle attackers to spoof arbitrary https web sites via a crafted server certificate, a related issue to CVE-2010-3312.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -56,9 +52,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-x2mv-9qmp-fx7x/GHSA-x2mv-9qmp-fx7x.json b/advisories/unreviewed/2022/05/GHSA-x2mv-9qmp-fx7x/GHSA-x2mv-9qmp-fx7x.json index 7d4d410030f..ac63950940b 100644 --- a/advisories/unreviewed/2022/05/GHSA-x2mv-9qmp-fx7x/GHSA-x2mv-9qmp-fx7x.json +++ b/advisories/unreviewed/2022/05/GHSA-x2mv-9qmp-fx7x/GHSA-x2mv-9qmp-fx7x.json @@ -7,12 +7,8 @@ "CVE-2010-4284" ], "details": "SQL injection vulnerability in the authentication form in the integrated web server in the Data Management Server (DMS) before 1.4.3 in Samsung Integrated Management System allows remote attackers to execute arbitrary SQL commands via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x2wr-2x34-4hqr/GHSA-x2wr-2x34-4hqr.json b/advisories/unreviewed/2022/05/GHSA-x2wr-2x34-4hqr/GHSA-x2wr-2x34-4hqr.json index f127eacba5b..c1ed61892aa 100644 --- a/advisories/unreviewed/2022/05/GHSA-x2wr-2x34-4hqr/GHSA-x2wr-2x34-4hqr.json +++ b/advisories/unreviewed/2022/05/GHSA-x2wr-2x34-4hqr/GHSA-x2wr-2x34-4hqr.json @@ -7,12 +7,8 @@ "CVE-2008-7299" ], "details": "IBM Tivoli Federated Identity Manager (TFIM) 6.2.0 before 6.2.0.2 uses an incomplete SAML 1.x browser-artifact, which allows remote OpenID providers to spoof assertions via vectors related to the Issuer field.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x43w-pppr-g4w3/GHSA-x43w-pppr-g4w3.json b/advisories/unreviewed/2022/05/GHSA-x43w-pppr-g4w3/GHSA-x43w-pppr-g4w3.json index 0e803909812..59453ae7b47 100644 --- a/advisories/unreviewed/2022/05/GHSA-x43w-pppr-g4w3/GHSA-x43w-pppr-g4w3.json +++ b/advisories/unreviewed/2022/05/GHSA-x43w-pppr-g4w3/GHSA-x43w-pppr-g4w3.json @@ -7,12 +7,8 @@ "CVE-2010-4789" ], "details": "Use-after-free vulnerability in the proxy-server implementation in IBM Tivoli Directory Server (TDS) 6.0 before 6.0.0.65 (aka 6.0.0.8-TIV-ITDS-IF0007) and 6.3 before 6.3.0.1 (aka 6.3.0.0-TIV-ITDS-IF0001) allows remote authenticated users to cause a denial of service (daemon crash) via a paged search that is interrupted by an LDAP Unbind operation.", - "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-x44w-r4m7-73mv/GHSA-x44w-r4m7-73mv.json b/advisories/unreviewed/2022/05/GHSA-x44w-r4m7-73mv/GHSA-x44w-r4m7-73mv.json index 50578f6a4fe..4d63e9d8c72 100644 --- a/advisories/unreviewed/2022/05/GHSA-x44w-r4m7-73mv/GHSA-x44w-r4m7-73mv.json +++ b/advisories/unreviewed/2022/05/GHSA-x44w-r4m7-73mv/GHSA-x44w-r4m7-73mv.json @@ -7,12 +7,8 @@ "CVE-2010-3792" ], "details": "Integer signedness error in QuickTime in Apple Mac OS X 10.6.x before 10.6.5 allows remote attackers to execute arbitrary code or cause a denial of service (application crash) via a crafted MPEG movie file.", - "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-x4c2-mfpm-hc2q/GHSA-x4c2-mfpm-hc2q.json b/advisories/unreviewed/2022/05/GHSA-x4c2-mfpm-hc2q/GHSA-x4c2-mfpm-hc2q.json index 76a1e0036fa..9ee161fd059 100644 --- a/advisories/unreviewed/2022/05/GHSA-x4c2-mfpm-hc2q/GHSA-x4c2-mfpm-hc2q.json +++ b/advisories/unreviewed/2022/05/GHSA-x4c2-mfpm-hc2q/GHSA-x4c2-mfpm-hc2q.json @@ -7,12 +7,8 @@ "CVE-2010-3996" ], "details": "festival_server in Centre for Speech Technology Research (CSTR) Festival, probably 2.0.95-beta and earlier, places a zero-length directory name in the LD_LIBRARY_PATH, which allows local users to gain privileges via a Trojan horse shared library in the current working directory.", - "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-x55m-wvj6-673p/GHSA-x55m-wvj6-673p.json b/advisories/unreviewed/2022/05/GHSA-x55m-wvj6-673p/GHSA-x55m-wvj6-673p.json index 728b595e0ab..da4eefcb3b9 100644 --- a/advisories/unreviewed/2022/05/GHSA-x55m-wvj6-673p/GHSA-x55m-wvj6-673p.json +++ b/advisories/unreviewed/2022/05/GHSA-x55m-wvj6-673p/GHSA-x55m-wvj6-673p.json @@ -7,12 +7,8 @@ "CVE-2010-4585" ], "details": "Unspecified vulnerability in the auto-update functionality in Opera before 11.00 allows remote attackers to cause a denial of service (application crash) by triggering an Opera Unite update.", - "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-x5qr-8rcm-8f6h/GHSA-x5qr-8rcm-8f6h.json b/advisories/unreviewed/2022/05/GHSA-x5qr-8rcm-8f6h/GHSA-x5qr-8rcm-8f6h.json index 3b95cdbd020..c56b8a928e1 100644 --- a/advisories/unreviewed/2022/05/GHSA-x5qr-8rcm-8f6h/GHSA-x5qr-8rcm-8f6h.json +++ b/advisories/unreviewed/2022/05/GHSA-x5qr-8rcm-8f6h/GHSA-x5qr-8rcm-8f6h.json @@ -7,12 +7,8 @@ "CVE-2010-4713" ], "details": "Integer signedness error in gwia.exe in GroupWise Internet Agent (GWIA) in Novell GroupWise before 8.02HP allows remote attackers to execute arbitrary code via a signed integer value in the Content-Type header.", - "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-x5xh-pghj-pqvq/GHSA-x5xh-pghj-pqvq.json b/advisories/unreviewed/2022/05/GHSA-x5xh-pghj-pqvq/GHSA-x5xh-pghj-pqvq.json index 2535fcc1a14..7c439b3e5be 100644 --- a/advisories/unreviewed/2022/05/GHSA-x5xh-pghj-pqvq/GHSA-x5xh-pghj-pqvq.json +++ b/advisories/unreviewed/2022/05/GHSA-x5xh-pghj-pqvq/GHSA-x5xh-pghj-pqvq.json @@ -7,12 +7,8 @@ "CVE-2010-3992" ], "details": "Unspecified vulnerability in HP Insight Control Server Migration before 6.2 allows remote authenticated users to gain privileges via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-x6mv-pcvr-j73m/GHSA-x6mv-pcvr-j73m.json b/advisories/unreviewed/2022/05/GHSA-x6mv-pcvr-j73m/GHSA-x6mv-pcvr-j73m.json index 191aba2cf1f..8f2debd4f94 100644 --- a/advisories/unreviewed/2022/05/GHSA-x6mv-pcvr-j73m/GHSA-x6mv-pcvr-j73m.json +++ b/advisories/unreviewed/2022/05/GHSA-x6mv-pcvr-j73m/GHSA-x6mv-pcvr-j73m.json @@ -7,12 +7,8 @@ "CVE-2011-2168" ], "details": "Multiple integer overflows in the glob implementation in libc in OpenBSD before 4.9 might allow context-dependent attackers to have an unspecified impact via a crafted string, related to the GLOB_APPEND and GLOB_DOOFFS flags, a different issue than CVE-2011-0418.", - "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-x737-xpxp-6ggm/GHSA-x737-xpxp-6ggm.json b/advisories/unreviewed/2022/05/GHSA-x737-xpxp-6ggm/GHSA-x737-xpxp-6ggm.json index cf79ff07b64..248753527de 100644 --- a/advisories/unreviewed/2022/05/GHSA-x737-xpxp-6ggm/GHSA-x737-xpxp-6ggm.json +++ b/advisories/unreviewed/2022/05/GHSA-x737-xpxp-6ggm/GHSA-x737-xpxp-6ggm.json @@ -7,12 +7,8 @@ "CVE-2011-0615" ], "details": "Multiple buffer overflows in Adobe Audition 3.0.1 and earlier allow remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via crafted data in unspecified fields in the TRKM chunk in an Audition Session (aka .ses) file, related to inconsistent use of character data types.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x78w-w3vx-6qmj/GHSA-x78w-w3vx-6qmj.json b/advisories/unreviewed/2022/05/GHSA-x78w-w3vx-6qmj/GHSA-x78w-w3vx-6qmj.json index 2c76ab5864f..636bdcdbb23 100644 --- a/advisories/unreviewed/2022/05/GHSA-x78w-w3vx-6qmj/GHSA-x78w-w3vx-6qmj.json +++ b/advisories/unreviewed/2022/05/GHSA-x78w-w3vx-6qmj/GHSA-x78w-w3vx-6qmj.json @@ -7,12 +7,8 @@ "CVE-2011-2758" ], "details": "IDSWebApp in the Web Administration Tool in IBM Tivoli Directory Server (TDS) 6.2 before 6.2.0.3-TIV-ITDS-IF0004 does not require authentication for access to LDAP Server log files, which allows remote attackers to obtain sensitive information via a crafted URL.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x79w-q38w-5c3p/GHSA-x79w-q38w-5c3p.json b/advisories/unreviewed/2022/05/GHSA-x79w-q38w-5c3p/GHSA-x79w-q38w-5c3p.json index b3fcd04b48b..04d469e65e4 100644 --- a/advisories/unreviewed/2022/05/GHSA-x79w-q38w-5c3p/GHSA-x79w-q38w-5c3p.json +++ b/advisories/unreviewed/2022/05/GHSA-x79w-q38w-5c3p/GHSA-x79w-q38w-5c3p.json @@ -7,12 +7,8 @@ "CVE-2008-7275" ], "details": "Multiple cross-site scripting (XSS) vulnerabilities in Open Ticket Request System (OTRS) before 2.3.3 allow remote attackers to inject arbitrary web script or HTML via vectors related to (1) AgentTicketMailbox or (2) CustomerTicketOverView.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x7pg-vc3g-6r22/GHSA-x7pg-vc3g-6r22.json b/advisories/unreviewed/2022/05/GHSA-x7pg-vc3g-6r22/GHSA-x7pg-vc3g-6r22.json index 6ed4855d377..3684966659c 100644 --- a/advisories/unreviewed/2022/05/GHSA-x7pg-vc3g-6r22/GHSA-x7pg-vc3g-6r22.json +++ b/advisories/unreviewed/2022/05/GHSA-x7pg-vc3g-6r22/GHSA-x7pg-vc3g-6r22.json @@ -7,12 +7,8 @@ "CVE-2011-1223" ], "details": "Buffer overflow in the Alternate Data Stream (aka ADS or named stream) functionality in the backup-archive client in IBM Tivoli Storage Manager (TSM) before 5.4.3.4, 5.5.x before 5.5.3, 6.x before 6.1.4, and 6.2.x before 6.2.2 on Windows allows local users to gain privileges via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-x7w4-r6vr-7hqw/GHSA-x7w4-r6vr-7hqw.json b/advisories/unreviewed/2022/05/GHSA-x7w4-r6vr-7hqw/GHSA-x7w4-r6vr-7hqw.json index 0ba33c37d1a..4e06f0f8378 100644 --- a/advisories/unreviewed/2022/05/GHSA-x7w4-r6vr-7hqw/GHSA-x7w4-r6vr-7hqw.json +++ b/advisories/unreviewed/2022/05/GHSA-x7w4-r6vr-7hqw/GHSA-x7w4-r6vr-7hqw.json @@ -7,12 +7,8 @@ "CVE-2011-1548" ], "details": "The default configuration of logrotate on Debian GNU/Linux uses root privileges to process files in directories that permit non-root write access, which allows local users to conduct symlink and hard link attacks by leveraging logrotate's lack of support for untrusted directories, as demonstrated by /var/log/postgresql/.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -164,9 +160,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-x7xp-pjf4-4g8m/GHSA-x7xp-pjf4-4g8m.json b/advisories/unreviewed/2022/05/GHSA-x7xp-pjf4-4g8m/GHSA-x7xp-pjf4-4g8m.json index a974347621d..325a6c267a3 100644 --- a/advisories/unreviewed/2022/05/GHSA-x7xp-pjf4-4g8m/GHSA-x7xp-pjf4-4g8m.json +++ b/advisories/unreviewed/2022/05/GHSA-x7xp-pjf4-4g8m/GHSA-x7xp-pjf4-4g8m.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-x93q-rpmp-2jg3/GHSA-x93q-rpmp-2jg3.json b/advisories/unreviewed/2022/05/GHSA-x93q-rpmp-2jg3/GHSA-x93q-rpmp-2jg3.json index b3780a8c644..1df6877e6e0 100644 --- a/advisories/unreviewed/2022/05/GHSA-x93q-rpmp-2jg3/GHSA-x93q-rpmp-2jg3.json +++ b/advisories/unreviewed/2022/05/GHSA-x93q-rpmp-2jg3/GHSA-x93q-rpmp-2jg3.json @@ -7,12 +7,8 @@ "CVE-2011-0639" ], "details": "Apple Mac OS X does not properly warn the user before enabling additional Human Interface Device (HID) functionality over USB, which allows user-assisted attackers to execute arbitrary programs via crafted USB data, as demonstrated by keyboard and mouse data sent by malware on a smartphone that the user connected to the computer.", - "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-xc6x-4p9c-5pvr/GHSA-xc6x-4p9c-5pvr.json b/advisories/unreviewed/2022/05/GHSA-xc6x-4p9c-5pvr/GHSA-xc6x-4p9c-5pvr.json index f8879714bea..0a75d12a115 100644 --- a/advisories/unreviewed/2022/05/GHSA-xc6x-4p9c-5pvr/GHSA-xc6x-4p9c-5pvr.json +++ b/advisories/unreviewed/2022/05/GHSA-xc6x-4p9c-5pvr/GHSA-xc6x-4p9c-5pvr.json @@ -7,12 +7,8 @@ "CVE-2010-4594" ], "details": "The Connection Manager in IBM Lotus Mobile Connect before 6.1.4, when HTTP Access Services (HTTP-AS) is enabled, does not properly process TCP connection requests, which allows remote attackers to cause a denial of service (memory consumption and HTTP-AS hang) by making many connection requests that trigger \"queue size delta errors,\" related to a \"timing hole\" 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/05/GHSA-xf47-mf7m-r2x9/GHSA-xf47-mf7m-r2x9.json b/advisories/unreviewed/2022/05/GHSA-xf47-mf7m-r2x9/GHSA-xf47-mf7m-r2x9.json index 9e5d34819ae..d571d73ba9f 100644 --- a/advisories/unreviewed/2022/05/GHSA-xf47-mf7m-r2x9/GHSA-xf47-mf7m-r2x9.json +++ b/advisories/unreviewed/2022/05/GHSA-xf47-mf7m-r2x9/GHSA-xf47-mf7m-r2x9.json @@ -7,12 +7,8 @@ "CVE-2011-1416" ], "details": "The Research In Motion (RIM) BlackBerry Torch 9800 with firmware 6.0.0.246 allows attackers to read the contents of memory locations via unknown vectors, as demonstrated by Vincenzo Iozzo, Willem Pinckaers, and Ralf-Philipp Weinmann during a Pwn2Own competition at CanSecWest 2011.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xf6r-r485-49mr/GHSA-xf6r-r485-49mr.json b/advisories/unreviewed/2022/05/GHSA-xf6r-r485-49mr/GHSA-xf6r-r485-49mr.json index 513a7a9342c..237a5bcbb3d 100644 --- a/advisories/unreviewed/2022/05/GHSA-xf6r-r485-49mr/GHSA-xf6r-r485-49mr.json +++ b/advisories/unreviewed/2022/05/GHSA-xf6r-r485-49mr/GHSA-xf6r-r485-49mr.json @@ -7,12 +7,8 @@ "CVE-2010-4207" ], "details": "Cross-site scripting (XSS) vulnerability in the Flash component infrastructure in YUI 2.4.0 through 2.8.1, as used in Bugzilla, Moodle, and other products, allows remote attackers to inject arbitrary web script or HTML via vectors related to charts/assets/charts.swf.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xfmg-272h-3c38/GHSA-xfmg-272h-3c38.json b/advisories/unreviewed/2022/05/GHSA-xfmg-272h-3c38/GHSA-xfmg-272h-3c38.json index 28c627eb717..447ca58b2b4 100644 --- a/advisories/unreviewed/2022/05/GHSA-xfmg-272h-3c38/GHSA-xfmg-272h-3c38.json +++ b/advisories/unreviewed/2022/05/GHSA-xfmg-272h-3c38/GHSA-xfmg-272h-3c38.json @@ -7,12 +7,8 @@ "CVE-2011-0891" ], "details": "Unspecified vulnerability in the OS-Core.CORE2-KRN fileset in HP HP-UX B.11.23 and B.11.31 allows local users to cause a denial of service via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -28,9 +24,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xgrf-pj3c-wvq6/GHSA-xgrf-pj3c-wvq6.json b/advisories/unreviewed/2022/05/GHSA-xgrf-pj3c-wvq6/GHSA-xgrf-pj3c-wvq6.json index 5dd18b4b7fd..c357fdd3102 100644 --- a/advisories/unreviewed/2022/05/GHSA-xgrf-pj3c-wvq6/GHSA-xgrf-pj3c-wvq6.json +++ b/advisories/unreviewed/2022/05/GHSA-xgrf-pj3c-wvq6/GHSA-xgrf-pj3c-wvq6.json @@ -7,12 +7,8 @@ "CVE-2011-0501" ], "details": "Stack-based buffer overflow in Music Animation Machine MIDI Player 2006aug19 Release 035 and possibly other versions allows user-assisted remote attackers to execute arbitrary code via a long line in a .mamx file.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xh3j-4pjj-5vjv/GHSA-xh3j-4pjj-5vjv.json b/advisories/unreviewed/2022/05/GHSA-xh3j-4pjj-5vjv/GHSA-xh3j-4pjj-5vjv.json index 7aa10fb9000..f0645a72e73 100644 --- a/advisories/unreviewed/2022/05/GHSA-xh3j-4pjj-5vjv/GHSA-xh3j-4pjj-5vjv.json +++ b/advisories/unreviewed/2022/05/GHSA-xh3j-4pjj-5vjv/GHSA-xh3j-4pjj-5vjv.json @@ -7,12 +7,8 @@ "CVE-2008-7285" ], "details": "Unspecified vulnerability in the docnote string handling implementation in IBM Lotus Quickr 8.1 before 8.1.0.2 services for Lotus Domino allows remote attackers to cause a denial of service (daemon crash) via unknown vectors, aka SPR JFLD7GZT25.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xhr6-v9pv-82wv/GHSA-xhr6-v9pv-82wv.json b/advisories/unreviewed/2022/05/GHSA-xhr6-v9pv-82wv/GHSA-xhr6-v9pv-82wv.json index 8a5583b59e3..c32fd79792f 100644 --- a/advisories/unreviewed/2022/05/GHSA-xhr6-v9pv-82wv/GHSA-xhr6-v9pv-82wv.json +++ b/advisories/unreviewed/2022/05/GHSA-xhr6-v9pv-82wv/GHSA-xhr6-v9pv-82wv.json @@ -7,12 +7,8 @@ "CVE-2011-1056" ], "details": "The installer for Metasploit Framework 3.5.1, when running on Windows, uses weak inherited permissions for the Metasploit installation directory, which allows local users to gain privileges by replacing critical files with a Trojan horse.", - "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-xjpq-hgc7-6jvh/GHSA-xjpq-hgc7-6jvh.json b/advisories/unreviewed/2022/05/GHSA-xjpq-hgc7-6jvh/GHSA-xjpq-hgc7-6jvh.json index 2f823b48366..61f83350566 100644 --- a/advisories/unreviewed/2022/05/GHSA-xjpq-hgc7-6jvh/GHSA-xjpq-hgc7-6jvh.json +++ b/advisories/unreviewed/2022/05/GHSA-xjpq-hgc7-6jvh/GHSA-xjpq-hgc7-6jvh.json @@ -7,12 +7,8 @@ "CVE-2011-1131" ], "details": "The PlushSearch2 function in Search.php in Simple Machines Forum (SMF) before 1.1.13, and 2.x before 2.0 RC5, uses certain cached data in a situation where a temporary table has been created, even though this cached data is intended only for situations where a temporary table has not been created, which might allow remote attackers to obtain sensitive information via a search.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xm8h-gm5v-cggh/GHSA-xm8h-gm5v-cggh.json b/advisories/unreviewed/2022/05/GHSA-xm8h-gm5v-cggh/GHSA-xm8h-gm5v-cggh.json index 2f4106f8e46..f1c6fd1f73a 100644 --- a/advisories/unreviewed/2022/05/GHSA-xm8h-gm5v-cggh/GHSA-xm8h-gm5v-cggh.json +++ b/advisories/unreviewed/2022/05/GHSA-xm8h-gm5v-cggh/GHSA-xm8h-gm5v-cggh.json @@ -7,12 +7,8 @@ "CVE-2011-1843" ], "details": "Integer overflow in conf.c in Tinyproxy before 1.8.3 might allow remote attackers to bypass intended access restrictions in opportunistic circumstances via a TCP connection, related to improper handling of invalid port numbers.", - "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-xpqw-3mmq-rpcv/GHSA-xpqw-3mmq-rpcv.json b/advisories/unreviewed/2022/05/GHSA-xpqw-3mmq-rpcv/GHSA-xpqw-3mmq-rpcv.json index 137f47c5c25..a831571cfee 100644 --- a/advisories/unreviewed/2022/05/GHSA-xpqw-3mmq-rpcv/GHSA-xpqw-3mmq-rpcv.json +++ b/advisories/unreviewed/2022/05/GHSA-xpqw-3mmq-rpcv/GHSA-xpqw-3mmq-rpcv.json @@ -7,12 +7,8 @@ "CVE-2011-1905" ], "details": "Multiple cross-site request forgery (CSRF) vulnerabilities in unspecified administrative modules in Proofpoint Messaging Security Gateway 6.2.0.263:6.2.0.237 and earlier in Proofpoint Protection Server 5.5.3, 5.5.4, 5.5.5, 6.0.2, 6.1.1, and 6.2.0 allow remote attackers to hijack the authentication of administrators via unknown vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xq3w-4qf4-4638/GHSA-xq3w-4qf4-4638.json b/advisories/unreviewed/2022/05/GHSA-xq3w-4qf4-4638/GHSA-xq3w-4qf4-4638.json index a1f38cabe78..0d363771c08 100644 --- a/advisories/unreviewed/2022/05/GHSA-xq3w-4qf4-4638/GHSA-xq3w-4qf4-4638.json +++ b/advisories/unreviewed/2022/05/GHSA-xq3w-4qf4-4638/GHSA-xq3w-4qf4-4638.json @@ -7,12 +7,8 @@ "CVE-2011-0792" ], "details": "Unspecified vulnerability in the Oracle Warehouse Builder component in Oracle Database Server 10.2.0.5 (OWB) and 11.1.0.7 allows remote authenticated users to affect confidentiality, integrity, and availability via unknown vectors related to Dimensional Data Modeling.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/05/GHSA-xqhf-37hr-73jq/GHSA-xqhf-37hr-73jq.json b/advisories/unreviewed/2022/05/GHSA-xqhf-37hr-73jq/GHSA-xqhf-37hr-73jq.json index 10adad0c246..78cab30b3e9 100644 --- a/advisories/unreviewed/2022/05/GHSA-xqhf-37hr-73jq/GHSA-xqhf-37hr-73jq.json +++ b/advisories/unreviewed/2022/05/GHSA-xqhf-37hr-73jq/GHSA-xqhf-37hr-73jq.json @@ -7,12 +7,8 @@ "CVE-2010-3038" ], "details": "Cisco Unified Videoconferencing (UVC) System 5110 and 5115, when the Linux operating system is used, has a default password for the (1) root, (2) cs, and (3) develop accounts, which makes it easier for remote attackers to obtain access via the (a) FTP or (b) SSH daemon, aka Bug ID CSCti54008.", - "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-xvfr-r8m7-6v65/GHSA-xvfr-r8m7-6v65.json b/advisories/unreviewed/2022/05/GHSA-xvfr-r8m7-6v65/GHSA-xvfr-r8m7-6v65.json index 594de512c9a..e1298f4daab 100644 --- a/advisories/unreviewed/2022/05/GHSA-xvfr-r8m7-6v65/GHSA-xvfr-r8m7-6v65.json +++ b/advisories/unreviewed/2022/05/GHSA-xvfr-r8m7-6v65/GHSA-xvfr-r8m7-6v65.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xw43-h3fq-8x5w/GHSA-xw43-h3fq-8x5w.json b/advisories/unreviewed/2022/05/GHSA-xw43-h3fq-8x5w/GHSA-xw43-h3fq-8x5w.json index 16dae59c3d4..0feeeb7d1fa 100644 --- a/advisories/unreviewed/2022/05/GHSA-xw43-h3fq-8x5w/GHSA-xw43-h3fq-8x5w.json +++ b/advisories/unreviewed/2022/05/GHSA-xw43-h3fq-8x5w/GHSA-xw43-h3fq-8x5w.json @@ -7,12 +7,8 @@ "CVE-2010-4614" ], "details": "SQL injection vulnerability in item.php in Ero Auktion 2010 allows remote attackers to execute arbitrary SQL commands via the id parameter, a different vector than CVE-2010-0723.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xx38-qpxm-6j8x/GHSA-xx38-qpxm-6j8x.json b/advisories/unreviewed/2022/05/GHSA-xx38-qpxm-6j8x/GHSA-xx38-qpxm-6j8x.json index 35e4bfd02a1..1a17dba5d1f 100644 --- a/advisories/unreviewed/2022/05/GHSA-xx38-qpxm-6j8x/GHSA-xx38-qpxm-6j8x.json +++ b/advisories/unreviewed/2022/05/GHSA-xx38-qpxm-6j8x/GHSA-xx38-qpxm-6j8x.json @@ -7,12 +7,8 @@ "CVE-2013-0543" ], "details": "IBM WebSphere Application Server (WAS) 6.1 before 6.1.0.47, 7.0 before 7.0.0.29, 8.0 before 8.0.0.6, and 8.5 before 8.5.0.2 on Linux, Solaris, and HP-UX, when a Local OS registry is used, does not properly validate user accounts, which allows remote attackers to bypass intended access restrictions via unspecified vectors.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/05/GHSA-xxpf-83g5-3w2v/GHSA-xxpf-83g5-3w2v.json b/advisories/unreviewed/2022/05/GHSA-xxpf-83g5-3w2v/GHSA-xxpf-83g5-3w2v.json index c560d1fa416..3d1cb6d1856 100644 --- a/advisories/unreviewed/2022/05/GHSA-xxpf-83g5-3w2v/GHSA-xxpf-83g5-3w2v.json +++ b/advisories/unreviewed/2022/05/GHSA-xxpf-83g5-3w2v/GHSA-xxpf-83g5-3w2v.json @@ -7,12 +7,8 @@ "CVE-2011-2963" ], "details": "TCPUploadServer.exe in Progea Movicon 11.2 before Build 1084 does not require authentication for critical functions, which allows remote attackers to obtain sensitive information, delete files, execute arbitrary programs, or cause a denial of service (crash) via a crafted packet to TCP port 10651.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-2f3w-wgwf-r3g8/GHSA-2f3w-wgwf-r3g8.json b/advisories/unreviewed/2022/06/GHSA-2f3w-wgwf-r3g8/GHSA-2f3w-wgwf-r3g8.json index df09011ef89..87f8fb2d4d5 100644 --- a/advisories/unreviewed/2022/06/GHSA-2f3w-wgwf-r3g8/GHSA-2f3w-wgwf-r3g8.json +++ b/advisories/unreviewed/2022/06/GHSA-2f3w-wgwf-r3g8/GHSA-2f3w-wgwf-r3g8.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/06/GHSA-2fvp-h46w-x58c/GHSA-2fvp-h46w-x58c.json b/advisories/unreviewed/2022/06/GHSA-2fvp-h46w-x58c/GHSA-2fvp-h46w-x58c.json index f39df5299f5..7c30d6da829 100644 --- a/advisories/unreviewed/2022/06/GHSA-2fvp-h46w-x58c/GHSA-2fvp-h46w-x58c.json +++ b/advisories/unreviewed/2022/06/GHSA-2fvp-h46w-x58c/GHSA-2fvp-h46w-x58c.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/06/GHSA-2jxf-gp85-8mw2/GHSA-2jxf-gp85-8mw2.json b/advisories/unreviewed/2022/06/GHSA-2jxf-gp85-8mw2/GHSA-2jxf-gp85-8mw2.json index 34375e69a08..c65f03aff7d 100644 --- a/advisories/unreviewed/2022/06/GHSA-2jxf-gp85-8mw2/GHSA-2jxf-gp85-8mw2.json +++ b/advisories/unreviewed/2022/06/GHSA-2jxf-gp85-8mw2/GHSA-2jxf-gp85-8mw2.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/06/GHSA-3279-q5c5-7rr6/GHSA-3279-q5c5-7rr6.json b/advisories/unreviewed/2022/06/GHSA-3279-q5c5-7rr6/GHSA-3279-q5c5-7rr6.json index 9707a084092..51c485757b3 100644 --- a/advisories/unreviewed/2022/06/GHSA-3279-q5c5-7rr6/GHSA-3279-q5c5-7rr6.json +++ b/advisories/unreviewed/2022/06/GHSA-3279-q5c5-7rr6/GHSA-3279-q5c5-7rr6.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/06/GHSA-33hj-36q7-m72x/GHSA-33hj-36q7-m72x.json b/advisories/unreviewed/2022/06/GHSA-33hj-36q7-m72x/GHSA-33hj-36q7-m72x.json index 6241a8affdc..a624465ad6d 100644 --- a/advisories/unreviewed/2022/06/GHSA-33hj-36q7-m72x/GHSA-33hj-36q7-m72x.json +++ b/advisories/unreviewed/2022/06/GHSA-33hj-36q7-m72x/GHSA-33hj-36q7-m72x.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-33q3-54qh-6h84/GHSA-33q3-54qh-6h84.json b/advisories/unreviewed/2022/06/GHSA-33q3-54qh-6h84/GHSA-33q3-54qh-6h84.json index 12b4f921f54..60615e93fea 100644 --- a/advisories/unreviewed/2022/06/GHSA-33q3-54qh-6h84/GHSA-33q3-54qh-6h84.json +++ b/advisories/unreviewed/2022/06/GHSA-33q3-54qh-6h84/GHSA-33q3-54qh-6h84.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/06/GHSA-33v7-h6gx-6h2h/GHSA-33v7-h6gx-6h2h.json b/advisories/unreviewed/2022/06/GHSA-33v7-h6gx-6h2h/GHSA-33v7-h6gx-6h2h.json index f0826248763..1f30ceabc6a 100644 --- a/advisories/unreviewed/2022/06/GHSA-33v7-h6gx-6h2h/GHSA-33v7-h6gx-6h2h.json +++ b/advisories/unreviewed/2022/06/GHSA-33v7-h6gx-6h2h/GHSA-33v7-h6gx-6h2h.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/06/GHSA-3739-j4g5-p5h6/GHSA-3739-j4g5-p5h6.json b/advisories/unreviewed/2022/06/GHSA-3739-j4g5-p5h6/GHSA-3739-j4g5-p5h6.json index c23fe86b83d..653d901448f 100644 --- a/advisories/unreviewed/2022/06/GHSA-3739-j4g5-p5h6/GHSA-3739-j4g5-p5h6.json +++ b/advisories/unreviewed/2022/06/GHSA-3739-j4g5-p5h6/GHSA-3739-j4g5-p5h6.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-3953-gjxx-vgwp/GHSA-3953-gjxx-vgwp.json b/advisories/unreviewed/2022/06/GHSA-3953-gjxx-vgwp/GHSA-3953-gjxx-vgwp.json index 2a00c007a97..410307fa5ac 100644 --- a/advisories/unreviewed/2022/06/GHSA-3953-gjxx-vgwp/GHSA-3953-gjxx-vgwp.json +++ b/advisories/unreviewed/2022/06/GHSA-3953-gjxx-vgwp/GHSA-3953-gjxx-vgwp.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/06/GHSA-39c2-q9pq-vfcj/GHSA-39c2-q9pq-vfcj.json b/advisories/unreviewed/2022/06/GHSA-39c2-q9pq-vfcj/GHSA-39c2-q9pq-vfcj.json index b4483e0df0c..0d22fd4dd79 100644 --- a/advisories/unreviewed/2022/06/GHSA-39c2-q9pq-vfcj/GHSA-39c2-q9pq-vfcj.json +++ b/advisories/unreviewed/2022/06/GHSA-39c2-q9pq-vfcj/GHSA-39c2-q9pq-vfcj.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/06/GHSA-39v6-68rf-3jhj/GHSA-39v6-68rf-3jhj.json b/advisories/unreviewed/2022/06/GHSA-39v6-68rf-3jhj/GHSA-39v6-68rf-3jhj.json index a3507374818..4387d153716 100644 --- a/advisories/unreviewed/2022/06/GHSA-39v6-68rf-3jhj/GHSA-39v6-68rf-3jhj.json +++ b/advisories/unreviewed/2022/06/GHSA-39v6-68rf-3jhj/GHSA-39v6-68rf-3jhj.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/06/GHSA-3h5j-7g67-p37p/GHSA-3h5j-7g67-p37p.json b/advisories/unreviewed/2022/06/GHSA-3h5j-7g67-p37p/GHSA-3h5j-7g67-p37p.json index b89fa0cb24e..663bc94b19f 100644 --- a/advisories/unreviewed/2022/06/GHSA-3h5j-7g67-p37p/GHSA-3h5j-7g67-p37p.json +++ b/advisories/unreviewed/2022/06/GHSA-3h5j-7g67-p37p/GHSA-3h5j-7g67-p37p.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-3pfw-v5wv-h5xj/GHSA-3pfw-v5wv-h5xj.json b/advisories/unreviewed/2022/06/GHSA-3pfw-v5wv-h5xj/GHSA-3pfw-v5wv-h5xj.json index 26a8f35e2f2..52cbe8dc369 100644 --- a/advisories/unreviewed/2022/06/GHSA-3pfw-v5wv-h5xj/GHSA-3pfw-v5wv-h5xj.json +++ b/advisories/unreviewed/2022/06/GHSA-3pfw-v5wv-h5xj/GHSA-3pfw-v5wv-h5xj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -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/06/GHSA-3vq3-mvhh-hjcp/GHSA-3vq3-mvhh-hjcp.json b/advisories/unreviewed/2022/06/GHSA-3vq3-mvhh-hjcp/GHSA-3vq3-mvhh-hjcp.json index f1e589fc636..79730de8cad 100644 --- a/advisories/unreviewed/2022/06/GHSA-3vq3-mvhh-hjcp/GHSA-3vq3-mvhh-hjcp.json +++ b/advisories/unreviewed/2022/06/GHSA-3vq3-mvhh-hjcp/GHSA-3vq3-mvhh-hjcp.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-3xh3-cprw-47gx/GHSA-3xh3-cprw-47gx.json b/advisories/unreviewed/2022/06/GHSA-3xh3-cprw-47gx/GHSA-3xh3-cprw-47gx.json index 295d8bdc90b..b0e12645206 100644 --- a/advisories/unreviewed/2022/06/GHSA-3xh3-cprw-47gx/GHSA-3xh3-cprw-47gx.json +++ b/advisories/unreviewed/2022/06/GHSA-3xh3-cprw-47gx/GHSA-3xh3-cprw-47gx.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-4222-x45c-hh2q/GHSA-4222-x45c-hh2q.json b/advisories/unreviewed/2022/06/GHSA-4222-x45c-hh2q/GHSA-4222-x45c-hh2q.json index a42a4dc29c2..8d43802aee8 100644 --- a/advisories/unreviewed/2022/06/GHSA-4222-x45c-hh2q/GHSA-4222-x45c-hh2q.json +++ b/advisories/unreviewed/2022/06/GHSA-4222-x45c-hh2q/GHSA-4222-x45c-hh2q.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-427f-v2mq-364f/GHSA-427f-v2mq-364f.json b/advisories/unreviewed/2022/06/GHSA-427f-v2mq-364f/GHSA-427f-v2mq-364f.json index a25945e84d7..da64a50b989 100644 --- a/advisories/unreviewed/2022/06/GHSA-427f-v2mq-364f/GHSA-427f-v2mq-364f.json +++ b/advisories/unreviewed/2022/06/GHSA-427f-v2mq-364f/GHSA-427f-v2mq-364f.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/06/GHSA-42jp-5v4c-jj6v/GHSA-42jp-5v4c-jj6v.json b/advisories/unreviewed/2022/06/GHSA-42jp-5v4c-jj6v/GHSA-42jp-5v4c-jj6v.json index 7451b88ad2f..7109058664c 100644 --- a/advisories/unreviewed/2022/06/GHSA-42jp-5v4c-jj6v/GHSA-42jp-5v4c-jj6v.json +++ b/advisories/unreviewed/2022/06/GHSA-42jp-5v4c-jj6v/GHSA-42jp-5v4c-jj6v.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/06/GHSA-45cc-j36m-hxq2/GHSA-45cc-j36m-hxq2.json b/advisories/unreviewed/2022/06/GHSA-45cc-j36m-hxq2/GHSA-45cc-j36m-hxq2.json index 35ec786f811..c1136891c62 100644 --- a/advisories/unreviewed/2022/06/GHSA-45cc-j36m-hxq2/GHSA-45cc-j36m-hxq2.json +++ b/advisories/unreviewed/2022/06/GHSA-45cc-j36m-hxq2/GHSA-45cc-j36m-hxq2.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/2022/06/GHSA-479h-6v7f-3jx7/GHSA-479h-6v7f-3jx7.json b/advisories/unreviewed/2022/06/GHSA-479h-6v7f-3jx7/GHSA-479h-6v7f-3jx7.json index 65cfe9334b3..a79a4055d5e 100644 --- a/advisories/unreviewed/2022/06/GHSA-479h-6v7f-3jx7/GHSA-479h-6v7f-3jx7.json +++ b/advisories/unreviewed/2022/06/GHSA-479h-6v7f-3jx7/GHSA-479h-6v7f-3jx7.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/06/GHSA-4fq5-hp4p-wwmv/GHSA-4fq5-hp4p-wwmv.json b/advisories/unreviewed/2022/06/GHSA-4fq5-hp4p-wwmv/GHSA-4fq5-hp4p-wwmv.json index b4492a927e6..6d6129bcffe 100644 --- a/advisories/unreviewed/2022/06/GHSA-4fq5-hp4p-wwmv/GHSA-4fq5-hp4p-wwmv.json +++ b/advisories/unreviewed/2022/06/GHSA-4fq5-hp4p-wwmv/GHSA-4fq5-hp4p-wwmv.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/06/GHSA-4jx7-c67v-r2v7/GHSA-4jx7-c67v-r2v7.json b/advisories/unreviewed/2022/06/GHSA-4jx7-c67v-r2v7/GHSA-4jx7-c67v-r2v7.json index 021f7533c3e..c69a4aa8ad8 100644 --- a/advisories/unreviewed/2022/06/GHSA-4jx7-c67v-r2v7/GHSA-4jx7-c67v-r2v7.json +++ b/advisories/unreviewed/2022/06/GHSA-4jx7-c67v-r2v7/GHSA-4jx7-c67v-r2v7.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/06/GHSA-4m2r-q6jf-fq73/GHSA-4m2r-q6jf-fq73.json b/advisories/unreviewed/2022/06/GHSA-4m2r-q6jf-fq73/GHSA-4m2r-q6jf-fq73.json index 7cfb5bb5988..6b9079d5c89 100644 --- a/advisories/unreviewed/2022/06/GHSA-4m2r-q6jf-fq73/GHSA-4m2r-q6jf-fq73.json +++ b/advisories/unreviewed/2022/06/GHSA-4m2r-q6jf-fq73/GHSA-4m2r-q6jf-fq73.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/06/GHSA-4mv8-3862-hghv/GHSA-4mv8-3862-hghv.json b/advisories/unreviewed/2022/06/GHSA-4mv8-3862-hghv/GHSA-4mv8-3862-hghv.json index 04d505b9199..2501ed9e42d 100644 --- a/advisories/unreviewed/2022/06/GHSA-4mv8-3862-hghv/GHSA-4mv8-3862-hghv.json +++ b/advisories/unreviewed/2022/06/GHSA-4mv8-3862-hghv/GHSA-4mv8-3862-hghv.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/06/GHSA-4rwg-53cx-5g82/GHSA-4rwg-53cx-5g82.json b/advisories/unreviewed/2022/06/GHSA-4rwg-53cx-5g82/GHSA-4rwg-53cx-5g82.json index 799ad22389f..2d229fe0612 100644 --- a/advisories/unreviewed/2022/06/GHSA-4rwg-53cx-5g82/GHSA-4rwg-53cx-5g82.json +++ b/advisories/unreviewed/2022/06/GHSA-4rwg-53cx-5g82/GHSA-4rwg-53cx-5g82.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/06/GHSA-4v52-cfm2-5xvm/GHSA-4v52-cfm2-5xvm.json b/advisories/unreviewed/2022/06/GHSA-4v52-cfm2-5xvm/GHSA-4v52-cfm2-5xvm.json index e50ff9f705b..5821934257f 100644 --- a/advisories/unreviewed/2022/06/GHSA-4v52-cfm2-5xvm/GHSA-4v52-cfm2-5xvm.json +++ b/advisories/unreviewed/2022/06/GHSA-4v52-cfm2-5xvm/GHSA-4v52-cfm2-5xvm.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/06/GHSA-4vxg-jp55-crg9/GHSA-4vxg-jp55-crg9.json b/advisories/unreviewed/2022/06/GHSA-4vxg-jp55-crg9/GHSA-4vxg-jp55-crg9.json index 9a3a51a8d94..99bd5ac616b 100644 --- a/advisories/unreviewed/2022/06/GHSA-4vxg-jp55-crg9/GHSA-4vxg-jp55-crg9.json +++ b/advisories/unreviewed/2022/06/GHSA-4vxg-jp55-crg9/GHSA-4vxg-jp55-crg9.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/06/GHSA-4ww3-6ww5-444j/GHSA-4ww3-6ww5-444j.json b/advisories/unreviewed/2022/06/GHSA-4ww3-6ww5-444j/GHSA-4ww3-6ww5-444j.json index 75449a10767..6189cb3326e 100644 --- a/advisories/unreviewed/2022/06/GHSA-4ww3-6ww5-444j/GHSA-4ww3-6ww5-444j.json +++ b/advisories/unreviewed/2022/06/GHSA-4ww3-6ww5-444j/GHSA-4ww3-6ww5-444j.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/06/GHSA-54m8-pj68-6r3r/GHSA-54m8-pj68-6r3r.json b/advisories/unreviewed/2022/06/GHSA-54m8-pj68-6r3r/GHSA-54m8-pj68-6r3r.json index 7518eca6bd4..7ff1781460f 100644 --- a/advisories/unreviewed/2022/06/GHSA-54m8-pj68-6r3r/GHSA-54m8-pj68-6r3r.json +++ b/advisories/unreviewed/2022/06/GHSA-54m8-pj68-6r3r/GHSA-54m8-pj68-6r3r.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/06/GHSA-56rw-hqqv-mjgx/GHSA-56rw-hqqv-mjgx.json b/advisories/unreviewed/2022/06/GHSA-56rw-hqqv-mjgx/GHSA-56rw-hqqv-mjgx.json index 14519155cd8..4d47f33f2ab 100644 --- a/advisories/unreviewed/2022/06/GHSA-56rw-hqqv-mjgx/GHSA-56rw-hqqv-mjgx.json +++ b/advisories/unreviewed/2022/06/GHSA-56rw-hqqv-mjgx/GHSA-56rw-hqqv-mjgx.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/06/GHSA-5928-7p5g-cvxm/GHSA-5928-7p5g-cvxm.json b/advisories/unreviewed/2022/06/GHSA-5928-7p5g-cvxm/GHSA-5928-7p5g-cvxm.json index ae05778e3ee..8dcd30dc3ba 100644 --- a/advisories/unreviewed/2022/06/GHSA-5928-7p5g-cvxm/GHSA-5928-7p5g-cvxm.json +++ b/advisories/unreviewed/2022/06/GHSA-5928-7p5g-cvxm/GHSA-5928-7p5g-cvxm.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-5jjp-q7f2-773p/GHSA-5jjp-q7f2-773p.json b/advisories/unreviewed/2022/06/GHSA-5jjp-q7f2-773p/GHSA-5jjp-q7f2-773p.json index a0ec9db0c8a..b5be407dd0b 100644 --- a/advisories/unreviewed/2022/06/GHSA-5jjp-q7f2-773p/GHSA-5jjp-q7f2-773p.json +++ b/advisories/unreviewed/2022/06/GHSA-5jjp-q7f2-773p/GHSA-5jjp-q7f2-773p.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/06/GHSA-5p3h-2382-v79c/GHSA-5p3h-2382-v79c.json b/advisories/unreviewed/2022/06/GHSA-5p3h-2382-v79c/GHSA-5p3h-2382-v79c.json index 4822634ae07..4f22675e8b7 100644 --- a/advisories/unreviewed/2022/06/GHSA-5p3h-2382-v79c/GHSA-5p3h-2382-v79c.json +++ b/advisories/unreviewed/2022/06/GHSA-5p3h-2382-v79c/GHSA-5p3h-2382-v79c.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/06/GHSA-5qq7-66q5-3rv8/GHSA-5qq7-66q5-3rv8.json b/advisories/unreviewed/2022/06/GHSA-5qq7-66q5-3rv8/GHSA-5qq7-66q5-3rv8.json index 83f514a9da0..1f4e6edf87b 100644 --- a/advisories/unreviewed/2022/06/GHSA-5qq7-66q5-3rv8/GHSA-5qq7-66q5-3rv8.json +++ b/advisories/unreviewed/2022/06/GHSA-5qq7-66q5-3rv8/GHSA-5qq7-66q5-3rv8.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/06/GHSA-5wh9-f3fj-hgm7/GHSA-5wh9-f3fj-hgm7.json b/advisories/unreviewed/2022/06/GHSA-5wh9-f3fj-hgm7/GHSA-5wh9-f3fj-hgm7.json index d9e7bfcdd3a..edb16e97795 100644 --- a/advisories/unreviewed/2022/06/GHSA-5wh9-f3fj-hgm7/GHSA-5wh9-f3fj-hgm7.json +++ b/advisories/unreviewed/2022/06/GHSA-5wh9-f3fj-hgm7/GHSA-5wh9-f3fj-hgm7.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/06/GHSA-63w8-jhm5-x9vp/GHSA-63w8-jhm5-x9vp.json b/advisories/unreviewed/2022/06/GHSA-63w8-jhm5-x9vp/GHSA-63w8-jhm5-x9vp.json index 2acc2855d67..86d77d28698 100644 --- a/advisories/unreviewed/2022/06/GHSA-63w8-jhm5-x9vp/GHSA-63w8-jhm5-x9vp.json +++ b/advisories/unreviewed/2022/06/GHSA-63w8-jhm5-x9vp/GHSA-63w8-jhm5-x9vp.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/06/GHSA-64vq-q588-gmpm/GHSA-64vq-q588-gmpm.json b/advisories/unreviewed/2022/06/GHSA-64vq-q588-gmpm/GHSA-64vq-q588-gmpm.json index 3cd6a393239..63bd9762529 100644 --- a/advisories/unreviewed/2022/06/GHSA-64vq-q588-gmpm/GHSA-64vq-q588-gmpm.json +++ b/advisories/unreviewed/2022/06/GHSA-64vq-q588-gmpm/GHSA-64vq-q588-gmpm.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/06/GHSA-654p-jgh5-45f8/GHSA-654p-jgh5-45f8.json b/advisories/unreviewed/2022/06/GHSA-654p-jgh5-45f8/GHSA-654p-jgh5-45f8.json index b8daa21396d..66aa13eba22 100644 --- a/advisories/unreviewed/2022/06/GHSA-654p-jgh5-45f8/GHSA-654p-jgh5-45f8.json +++ b/advisories/unreviewed/2022/06/GHSA-654p-jgh5-45f8/GHSA-654p-jgh5-45f8.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/06/GHSA-65mq-j423-r6fc/GHSA-65mq-j423-r6fc.json b/advisories/unreviewed/2022/06/GHSA-65mq-j423-r6fc/GHSA-65mq-j423-r6fc.json index feb6dcada61..a915fa63ab7 100644 --- a/advisories/unreviewed/2022/06/GHSA-65mq-j423-r6fc/GHSA-65mq-j423-r6fc.json +++ b/advisories/unreviewed/2022/06/GHSA-65mq-j423-r6fc/GHSA-65mq-j423-r6fc.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/06/GHSA-67wg-rf9j-w59j/GHSA-67wg-rf9j-w59j.json b/advisories/unreviewed/2022/06/GHSA-67wg-rf9j-w59j/GHSA-67wg-rf9j-w59j.json index 00bdd06e998..77aeff2a505 100644 --- a/advisories/unreviewed/2022/06/GHSA-67wg-rf9j-w59j/GHSA-67wg-rf9j-w59j.json +++ b/advisories/unreviewed/2022/06/GHSA-67wg-rf9j-w59j/GHSA-67wg-rf9j-w59j.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/06/GHSA-6cww-xg38-hj24/GHSA-6cww-xg38-hj24.json b/advisories/unreviewed/2022/06/GHSA-6cww-xg38-hj24/GHSA-6cww-xg38-hj24.json index 767d32c8805..b807bfb0ac8 100644 --- a/advisories/unreviewed/2022/06/GHSA-6cww-xg38-hj24/GHSA-6cww-xg38-hj24.json +++ b/advisories/unreviewed/2022/06/GHSA-6cww-xg38-hj24/GHSA-6cww-xg38-hj24.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/06/GHSA-6ffw-xvf7-6p82/GHSA-6ffw-xvf7-6p82.json b/advisories/unreviewed/2022/06/GHSA-6ffw-xvf7-6p82/GHSA-6ffw-xvf7-6p82.json index 3bae4939275..de01e95fe0f 100644 --- a/advisories/unreviewed/2022/06/GHSA-6ffw-xvf7-6p82/GHSA-6ffw-xvf7-6p82.json +++ b/advisories/unreviewed/2022/06/GHSA-6ffw-xvf7-6p82/GHSA-6ffw-xvf7-6p82.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", @@ -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/06/GHSA-6h95-7xvr-jhm2/GHSA-6h95-7xvr-jhm2.json b/advisories/unreviewed/2022/06/GHSA-6h95-7xvr-jhm2/GHSA-6h95-7xvr-jhm2.json index d48a63504ea..ad60313b158 100644 --- a/advisories/unreviewed/2022/06/GHSA-6h95-7xvr-jhm2/GHSA-6h95-7xvr-jhm2.json +++ b/advisories/unreviewed/2022/06/GHSA-6h95-7xvr-jhm2/GHSA-6h95-7xvr-jhm2.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/06/GHSA-6jr6-7jrx-9wjj/GHSA-6jr6-7jrx-9wjj.json b/advisories/unreviewed/2022/06/GHSA-6jr6-7jrx-9wjj/GHSA-6jr6-7jrx-9wjj.json index f0e0722780a..ffeb3824cd1 100644 --- a/advisories/unreviewed/2022/06/GHSA-6jr6-7jrx-9wjj/GHSA-6jr6-7jrx-9wjj.json +++ b/advisories/unreviewed/2022/06/GHSA-6jr6-7jrx-9wjj/GHSA-6jr6-7jrx-9wjj.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/06/GHSA-6jw7-vvcv-gjq3/GHSA-6jw7-vvcv-gjq3.json b/advisories/unreviewed/2022/06/GHSA-6jw7-vvcv-gjq3/GHSA-6jw7-vvcv-gjq3.json index b0397e8094f..c86ea0fe5af 100644 --- a/advisories/unreviewed/2022/06/GHSA-6jw7-vvcv-gjq3/GHSA-6jw7-vvcv-gjq3.json +++ b/advisories/unreviewed/2022/06/GHSA-6jw7-vvcv-gjq3/GHSA-6jw7-vvcv-gjq3.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/06/GHSA-6p3q-m7x8-x9pq/GHSA-6p3q-m7x8-x9pq.json b/advisories/unreviewed/2022/06/GHSA-6p3q-m7x8-x9pq/GHSA-6p3q-m7x8-x9pq.json index 4c167c1798f..8ab7ec2b92d 100644 --- a/advisories/unreviewed/2022/06/GHSA-6p3q-m7x8-x9pq/GHSA-6p3q-m7x8-x9pq.json +++ b/advisories/unreviewed/2022/06/GHSA-6p3q-m7x8-x9pq/GHSA-6p3q-m7x8-x9pq.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/06/GHSA-6r32-gqc8-p399/GHSA-6r32-gqc8-p399.json b/advisories/unreviewed/2022/06/GHSA-6r32-gqc8-p399/GHSA-6r32-gqc8-p399.json index c6a9000296f..29e5d08abe7 100644 --- a/advisories/unreviewed/2022/06/GHSA-6r32-gqc8-p399/GHSA-6r32-gqc8-p399.json +++ b/advisories/unreviewed/2022/06/GHSA-6r32-gqc8-p399/GHSA-6r32-gqc8-p399.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/06/GHSA-6rgv-qr47-8w9g/GHSA-6rgv-qr47-8w9g.json b/advisories/unreviewed/2022/06/GHSA-6rgv-qr47-8w9g/GHSA-6rgv-qr47-8w9g.json index 41bf0f53b05..9379e8dfd9c 100644 --- a/advisories/unreviewed/2022/06/GHSA-6rgv-qr47-8w9g/GHSA-6rgv-qr47-8w9g.json +++ b/advisories/unreviewed/2022/06/GHSA-6rgv-qr47-8w9g/GHSA-6rgv-qr47-8w9g.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/06/GHSA-6w38-m3gc-82f9/GHSA-6w38-m3gc-82f9.json b/advisories/unreviewed/2022/06/GHSA-6w38-m3gc-82f9/GHSA-6w38-m3gc-82f9.json index d3fcc70dd84..598ccb0954e 100644 --- a/advisories/unreviewed/2022/06/GHSA-6w38-m3gc-82f9/GHSA-6w38-m3gc-82f9.json +++ b/advisories/unreviewed/2022/06/GHSA-6w38-m3gc-82f9/GHSA-6w38-m3gc-82f9.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/06/GHSA-6w4c-2q4v-8q89/GHSA-6w4c-2q4v-8q89.json b/advisories/unreviewed/2022/06/GHSA-6w4c-2q4v-8q89/GHSA-6w4c-2q4v-8q89.json index 8f3e17437d3..32849a0a6f0 100644 --- a/advisories/unreviewed/2022/06/GHSA-6w4c-2q4v-8q89/GHSA-6w4c-2q4v-8q89.json +++ b/advisories/unreviewed/2022/06/GHSA-6w4c-2q4v-8q89/GHSA-6w4c-2q4v-8q89.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/06/GHSA-723m-ghxf-mhqg/GHSA-723m-ghxf-mhqg.json b/advisories/unreviewed/2022/06/GHSA-723m-ghxf-mhqg/GHSA-723m-ghxf-mhqg.json index 32f11d90ed6..e4dcda110fe 100644 --- a/advisories/unreviewed/2022/06/GHSA-723m-ghxf-mhqg/GHSA-723m-ghxf-mhqg.json +++ b/advisories/unreviewed/2022/06/GHSA-723m-ghxf-mhqg/GHSA-723m-ghxf-mhqg.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-727r-q8p4-vgjp/GHSA-727r-q8p4-vgjp.json b/advisories/unreviewed/2022/06/GHSA-727r-q8p4-vgjp/GHSA-727r-q8p4-vgjp.json index 7df3676fa86..aba24c7c19d 100644 --- a/advisories/unreviewed/2022/06/GHSA-727r-q8p4-vgjp/GHSA-727r-q8p4-vgjp.json +++ b/advisories/unreviewed/2022/06/GHSA-727r-q8p4-vgjp/GHSA-727r-q8p4-vgjp.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/06/GHSA-742q-fvx3-9vh3/GHSA-742q-fvx3-9vh3.json b/advisories/unreviewed/2022/06/GHSA-742q-fvx3-9vh3/GHSA-742q-fvx3-9vh3.json index 5159c25cf02..eba07983715 100644 --- a/advisories/unreviewed/2022/06/GHSA-742q-fvx3-9vh3/GHSA-742q-fvx3-9vh3.json +++ b/advisories/unreviewed/2022/06/GHSA-742q-fvx3-9vh3/GHSA-742q-fvx3-9vh3.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/06/GHSA-75c4-q3jm-gq6h/GHSA-75c4-q3jm-gq6h.json b/advisories/unreviewed/2022/06/GHSA-75c4-q3jm-gq6h/GHSA-75c4-q3jm-gq6h.json index b54718f1f7e..a812af8feff 100644 --- a/advisories/unreviewed/2022/06/GHSA-75c4-q3jm-gq6h/GHSA-75c4-q3jm-gq6h.json +++ b/advisories/unreviewed/2022/06/GHSA-75c4-q3jm-gq6h/GHSA-75c4-q3jm-gq6h.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-75x4-rjm7-wg55/GHSA-75x4-rjm7-wg55.json b/advisories/unreviewed/2022/06/GHSA-75x4-rjm7-wg55/GHSA-75x4-rjm7-wg55.json index d1479df5b89..e5944b26e78 100644 --- a/advisories/unreviewed/2022/06/GHSA-75x4-rjm7-wg55/GHSA-75x4-rjm7-wg55.json +++ b/advisories/unreviewed/2022/06/GHSA-75x4-rjm7-wg55/GHSA-75x4-rjm7-wg55.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/06/GHSA-775p-gpqh-xf63/GHSA-775p-gpqh-xf63.json b/advisories/unreviewed/2022/06/GHSA-775p-gpqh-xf63/GHSA-775p-gpqh-xf63.json index d997c29057c..54db8b9dbbc 100644 --- a/advisories/unreviewed/2022/06/GHSA-775p-gpqh-xf63/GHSA-775p-gpqh-xf63.json +++ b/advisories/unreviewed/2022/06/GHSA-775p-gpqh-xf63/GHSA-775p-gpqh-xf63.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/06/GHSA-77fh-mgrj-x7vc/GHSA-77fh-mgrj-x7vc.json b/advisories/unreviewed/2022/06/GHSA-77fh-mgrj-x7vc/GHSA-77fh-mgrj-x7vc.json index 2617295331b..6ff46b2485d 100644 --- a/advisories/unreviewed/2022/06/GHSA-77fh-mgrj-x7vc/GHSA-77fh-mgrj-x7vc.json +++ b/advisories/unreviewed/2022/06/GHSA-77fh-mgrj-x7vc/GHSA-77fh-mgrj-x7vc.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/06/GHSA-7869-w4f7-fjg9/GHSA-7869-w4f7-fjg9.json b/advisories/unreviewed/2022/06/GHSA-7869-w4f7-fjg9/GHSA-7869-w4f7-fjg9.json index 67620ee2305..ac37af0baba 100644 --- a/advisories/unreviewed/2022/06/GHSA-7869-w4f7-fjg9/GHSA-7869-w4f7-fjg9.json +++ b/advisories/unreviewed/2022/06/GHSA-7869-w4f7-fjg9/GHSA-7869-w4f7-fjg9.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/06/GHSA-79j9-4f8h-p5qv/GHSA-79j9-4f8h-p5qv.json b/advisories/unreviewed/2022/06/GHSA-79j9-4f8h-p5qv/GHSA-79j9-4f8h-p5qv.json index 4fca95fc6b7..7f68bb4791c 100644 --- a/advisories/unreviewed/2022/06/GHSA-79j9-4f8h-p5qv/GHSA-79j9-4f8h-p5qv.json +++ b/advisories/unreviewed/2022/06/GHSA-79j9-4f8h-p5qv/GHSA-79j9-4f8h-p5qv.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/06/GHSA-7c3v-qp4q-7jpq/GHSA-7c3v-qp4q-7jpq.json b/advisories/unreviewed/2022/06/GHSA-7c3v-qp4q-7jpq/GHSA-7c3v-qp4q-7jpq.json index f7bc4517121..daee4c21158 100644 --- a/advisories/unreviewed/2022/06/GHSA-7c3v-qp4q-7jpq/GHSA-7c3v-qp4q-7jpq.json +++ b/advisories/unreviewed/2022/06/GHSA-7c3v-qp4q-7jpq/GHSA-7c3v-qp4q-7jpq.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", @@ -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/06/GHSA-7fx5-x28x-jw5r/GHSA-7fx5-x28x-jw5r.json b/advisories/unreviewed/2022/06/GHSA-7fx5-x28x-jw5r/GHSA-7fx5-x28x-jw5r.json index cef2deec496..c658ebdedfb 100644 --- a/advisories/unreviewed/2022/06/GHSA-7fx5-x28x-jw5r/GHSA-7fx5-x28x-jw5r.json +++ b/advisories/unreviewed/2022/06/GHSA-7fx5-x28x-jw5r/GHSA-7fx5-x28x-jw5r.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/06/GHSA-7g3p-h5cq-7xhf/GHSA-7g3p-h5cq-7xhf.json b/advisories/unreviewed/2022/06/GHSA-7g3p-h5cq-7xhf/GHSA-7g3p-h5cq-7xhf.json index 2a88ca77d6e..13f8718dfc2 100644 --- a/advisories/unreviewed/2022/06/GHSA-7g3p-h5cq-7xhf/GHSA-7g3p-h5cq-7xhf.json +++ b/advisories/unreviewed/2022/06/GHSA-7g3p-h5cq-7xhf/GHSA-7g3p-h5cq-7xhf.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-7rc7-wgwr-3w4r/GHSA-7rc7-wgwr-3w4r.json b/advisories/unreviewed/2022/06/GHSA-7rc7-wgwr-3w4r/GHSA-7rc7-wgwr-3w4r.json index cb6f24c0d61..171f5d9dc7f 100644 --- a/advisories/unreviewed/2022/06/GHSA-7rc7-wgwr-3w4r/GHSA-7rc7-wgwr-3w4r.json +++ b/advisories/unreviewed/2022/06/GHSA-7rc7-wgwr-3w4r/GHSA-7rc7-wgwr-3w4r.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/06/GHSA-7rg4-7rm4-x499/GHSA-7rg4-7rm4-x499.json b/advisories/unreviewed/2022/06/GHSA-7rg4-7rm4-x499/GHSA-7rg4-7rm4-x499.json index 717ebd62c5e..b212b474d5c 100644 --- a/advisories/unreviewed/2022/06/GHSA-7rg4-7rm4-x499/GHSA-7rg4-7rm4-x499.json +++ b/advisories/unreviewed/2022/06/GHSA-7rg4-7rm4-x499/GHSA-7rg4-7rm4-x499.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/06/GHSA-7xw2-fq6v-q6c9/GHSA-7xw2-fq6v-q6c9.json b/advisories/unreviewed/2022/06/GHSA-7xw2-fq6v-q6c9/GHSA-7xw2-fq6v-q6c9.json index 9113a43e4cc..560c6d48213 100644 --- a/advisories/unreviewed/2022/06/GHSA-7xw2-fq6v-q6c9/GHSA-7xw2-fq6v-q6c9.json +++ b/advisories/unreviewed/2022/06/GHSA-7xw2-fq6v-q6c9/GHSA-7xw2-fq6v-q6c9.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/06/GHSA-83p3-3frh-4fjj/GHSA-83p3-3frh-4fjj.json b/advisories/unreviewed/2022/06/GHSA-83p3-3frh-4fjj/GHSA-83p3-3frh-4fjj.json index 0c79e156e0c..ba0d03816d7 100644 --- a/advisories/unreviewed/2022/06/GHSA-83p3-3frh-4fjj/GHSA-83p3-3frh-4fjj.json +++ b/advisories/unreviewed/2022/06/GHSA-83p3-3frh-4fjj/GHSA-83p3-3frh-4fjj.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-846h-5rhj-768f/GHSA-846h-5rhj-768f.json b/advisories/unreviewed/2022/06/GHSA-846h-5rhj-768f/GHSA-846h-5rhj-768f.json index 40fec2f136e..038be809171 100644 --- a/advisories/unreviewed/2022/06/GHSA-846h-5rhj-768f/GHSA-846h-5rhj-768f.json +++ b/advisories/unreviewed/2022/06/GHSA-846h-5rhj-768f/GHSA-846h-5rhj-768f.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/06/GHSA-877f-3vrv-42c7/GHSA-877f-3vrv-42c7.json b/advisories/unreviewed/2022/06/GHSA-877f-3vrv-42c7/GHSA-877f-3vrv-42c7.json index 73585cd573d..96a2ea48850 100644 --- a/advisories/unreviewed/2022/06/GHSA-877f-3vrv-42c7/GHSA-877f-3vrv-42c7.json +++ b/advisories/unreviewed/2022/06/GHSA-877f-3vrv-42c7/GHSA-877f-3vrv-42c7.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/06/GHSA-8c6j-33p3-5mcx/GHSA-8c6j-33p3-5mcx.json b/advisories/unreviewed/2022/06/GHSA-8c6j-33p3-5mcx/GHSA-8c6j-33p3-5mcx.json index 4409887af9d..c33f9bd2543 100644 --- a/advisories/unreviewed/2022/06/GHSA-8c6j-33p3-5mcx/GHSA-8c6j-33p3-5mcx.json +++ b/advisories/unreviewed/2022/06/GHSA-8c6j-33p3-5mcx/GHSA-8c6j-33p3-5mcx.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/06/GHSA-8f8h-5gg9-gvv4/GHSA-8f8h-5gg9-gvv4.json b/advisories/unreviewed/2022/06/GHSA-8f8h-5gg9-gvv4/GHSA-8f8h-5gg9-gvv4.json index ce7e19c3d54..1ba605d3400 100644 --- a/advisories/unreviewed/2022/06/GHSA-8f8h-5gg9-gvv4/GHSA-8f8h-5gg9-gvv4.json +++ b/advisories/unreviewed/2022/06/GHSA-8f8h-5gg9-gvv4/GHSA-8f8h-5gg9-gvv4.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/06/GHSA-8gjc-8wm2-3h6g/GHSA-8gjc-8wm2-3h6g.json b/advisories/unreviewed/2022/06/GHSA-8gjc-8wm2-3h6g/GHSA-8gjc-8wm2-3h6g.json index 0af28c60576..4058c75b491 100644 --- a/advisories/unreviewed/2022/06/GHSA-8gjc-8wm2-3h6g/GHSA-8gjc-8wm2-3h6g.json +++ b/advisories/unreviewed/2022/06/GHSA-8gjc-8wm2-3h6g/GHSA-8gjc-8wm2-3h6g.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/06/GHSA-8h29-fphp-8pph/GHSA-8h29-fphp-8pph.json b/advisories/unreviewed/2022/06/GHSA-8h29-fphp-8pph/GHSA-8h29-fphp-8pph.json index 6802c857f9e..614996a81a2 100644 --- a/advisories/unreviewed/2022/06/GHSA-8h29-fphp-8pph/GHSA-8h29-fphp-8pph.json +++ b/advisories/unreviewed/2022/06/GHSA-8h29-fphp-8pph/GHSA-8h29-fphp-8pph.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/06/GHSA-8jff-rjf4-c2vg/GHSA-8jff-rjf4-c2vg.json b/advisories/unreviewed/2022/06/GHSA-8jff-rjf4-c2vg/GHSA-8jff-rjf4-c2vg.json index edd07cfda2d..df0ac6f9c19 100644 --- a/advisories/unreviewed/2022/06/GHSA-8jff-rjf4-c2vg/GHSA-8jff-rjf4-c2vg.json +++ b/advisories/unreviewed/2022/06/GHSA-8jff-rjf4-c2vg/GHSA-8jff-rjf4-c2vg.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-8jgh-7ggx-887v/GHSA-8jgh-7ggx-887v.json b/advisories/unreviewed/2022/06/GHSA-8jgh-7ggx-887v/GHSA-8jgh-7ggx-887v.json index 4efdc2e1212..041a12f679d 100644 --- a/advisories/unreviewed/2022/06/GHSA-8jgh-7ggx-887v/GHSA-8jgh-7ggx-887v.json +++ b/advisories/unreviewed/2022/06/GHSA-8jgh-7ggx-887v/GHSA-8jgh-7ggx-887v.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/06/GHSA-8qmc-xr4h-98gp/GHSA-8qmc-xr4h-98gp.json b/advisories/unreviewed/2022/06/GHSA-8qmc-xr4h-98gp/GHSA-8qmc-xr4h-98gp.json index b90b48bc232..b3e919df178 100644 --- a/advisories/unreviewed/2022/06/GHSA-8qmc-xr4h-98gp/GHSA-8qmc-xr4h-98gp.json +++ b/advisories/unreviewed/2022/06/GHSA-8qmc-xr4h-98gp/GHSA-8qmc-xr4h-98gp.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/06/GHSA-8v59-5v5m-6f43/GHSA-8v59-5v5m-6f43.json b/advisories/unreviewed/2022/06/GHSA-8v59-5v5m-6f43/GHSA-8v59-5v5m-6f43.json index 3fefa0c6da7..ab3cbaecf68 100644 --- a/advisories/unreviewed/2022/06/GHSA-8v59-5v5m-6f43/GHSA-8v59-5v5m-6f43.json +++ b/advisories/unreviewed/2022/06/GHSA-8v59-5v5m-6f43/GHSA-8v59-5v5m-6f43.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/06/GHSA-8xvf-6hjw-r24j/GHSA-8xvf-6hjw-r24j.json b/advisories/unreviewed/2022/06/GHSA-8xvf-6hjw-r24j/GHSA-8xvf-6hjw-r24j.json index 4ef847075a8..5970735a62e 100644 --- a/advisories/unreviewed/2022/06/GHSA-8xvf-6hjw-r24j/GHSA-8xvf-6hjw-r24j.json +++ b/advisories/unreviewed/2022/06/GHSA-8xvf-6hjw-r24j/GHSA-8xvf-6hjw-r24j.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/06/GHSA-95pm-6wjg-58qw/GHSA-95pm-6wjg-58qw.json b/advisories/unreviewed/2022/06/GHSA-95pm-6wjg-58qw/GHSA-95pm-6wjg-58qw.json index c64fe8ff868..e0b321cd3b3 100644 --- a/advisories/unreviewed/2022/06/GHSA-95pm-6wjg-58qw/GHSA-95pm-6wjg-58qw.json +++ b/advisories/unreviewed/2022/06/GHSA-95pm-6wjg-58qw/GHSA-95pm-6wjg-58qw.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/06/GHSA-97pc-4h67-c2qp/GHSA-97pc-4h67-c2qp.json b/advisories/unreviewed/2022/06/GHSA-97pc-4h67-c2qp/GHSA-97pc-4h67-c2qp.json index 0cdad60fc5b..c3053b1d873 100644 --- a/advisories/unreviewed/2022/06/GHSA-97pc-4h67-c2qp/GHSA-97pc-4h67-c2qp.json +++ b/advisories/unreviewed/2022/06/GHSA-97pc-4h67-c2qp/GHSA-97pc-4h67-c2qp.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/06/GHSA-9fxc-pgqv-h278/GHSA-9fxc-pgqv-h278.json b/advisories/unreviewed/2022/06/GHSA-9fxc-pgqv-h278/GHSA-9fxc-pgqv-h278.json index f0f2776837e..e69dee18066 100644 --- a/advisories/unreviewed/2022/06/GHSA-9fxc-pgqv-h278/GHSA-9fxc-pgqv-h278.json +++ b/advisories/unreviewed/2022/06/GHSA-9fxc-pgqv-h278/GHSA-9fxc-pgqv-h278.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/06/GHSA-9p9p-64q6-hgqm/GHSA-9p9p-64q6-hgqm.json b/advisories/unreviewed/2022/06/GHSA-9p9p-64q6-hgqm/GHSA-9p9p-64q6-hgqm.json index 3e065b8da92..fb7ce21a0ff 100644 --- a/advisories/unreviewed/2022/06/GHSA-9p9p-64q6-hgqm/GHSA-9p9p-64q6-hgqm.json +++ b/advisories/unreviewed/2022/06/GHSA-9p9p-64q6-hgqm/GHSA-9p9p-64q6-hgqm.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/06/GHSA-9q4r-5p5v-23xq/GHSA-9q4r-5p5v-23xq.json b/advisories/unreviewed/2022/06/GHSA-9q4r-5p5v-23xq/GHSA-9q4r-5p5v-23xq.json index 18d67cd6943..d1332e184c9 100644 --- a/advisories/unreviewed/2022/06/GHSA-9q4r-5p5v-23xq/GHSA-9q4r-5p5v-23xq.json +++ b/advisories/unreviewed/2022/06/GHSA-9q4r-5p5v-23xq/GHSA-9q4r-5p5v-23xq.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/06/GHSA-9rc7-jmvv-4fhr/GHSA-9rc7-jmvv-4fhr.json b/advisories/unreviewed/2022/06/GHSA-9rc7-jmvv-4fhr/GHSA-9rc7-jmvv-4fhr.json index b95d7a101d5..cc0bee0c270 100644 --- a/advisories/unreviewed/2022/06/GHSA-9rc7-jmvv-4fhr/GHSA-9rc7-jmvv-4fhr.json +++ b/advisories/unreviewed/2022/06/GHSA-9rc7-jmvv-4fhr/GHSA-9rc7-jmvv-4fhr.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/06/GHSA-9vv8-3g89-c4p4/GHSA-9vv8-3g89-c4p4.json b/advisories/unreviewed/2022/06/GHSA-9vv8-3g89-c4p4/GHSA-9vv8-3g89-c4p4.json index 02c0bdb9f93..231daf01a6c 100644 --- a/advisories/unreviewed/2022/06/GHSA-9vv8-3g89-c4p4/GHSA-9vv8-3g89-c4p4.json +++ b/advisories/unreviewed/2022/06/GHSA-9vv8-3g89-c4p4/GHSA-9vv8-3g89-c4p4.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/06/GHSA-9wmj-55r5-f45x/GHSA-9wmj-55r5-f45x.json b/advisories/unreviewed/2022/06/GHSA-9wmj-55r5-f45x/GHSA-9wmj-55r5-f45x.json index cc10cf45e0d..49340d62a73 100644 --- a/advisories/unreviewed/2022/06/GHSA-9wmj-55r5-f45x/GHSA-9wmj-55r5-f45x.json +++ b/advisories/unreviewed/2022/06/GHSA-9wmj-55r5-f45x/GHSA-9wmj-55r5-f45x.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/06/GHSA-c2gm-46v7-vh4c/GHSA-c2gm-46v7-vh4c.json b/advisories/unreviewed/2022/06/GHSA-c2gm-46v7-vh4c/GHSA-c2gm-46v7-vh4c.json index 66587f8bfd9..0aa3abf76ee 100644 --- a/advisories/unreviewed/2022/06/GHSA-c2gm-46v7-vh4c/GHSA-c2gm-46v7-vh4c.json +++ b/advisories/unreviewed/2022/06/GHSA-c2gm-46v7-vh4c/GHSA-c2gm-46v7-vh4c.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", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "CRITICAL", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/06/GHSA-c457-6cm5-j5m6/GHSA-c457-6cm5-j5m6.json b/advisories/unreviewed/2022/06/GHSA-c457-6cm5-j5m6/GHSA-c457-6cm5-j5m6.json index 466b4193ab5..319c84fa28e 100644 --- a/advisories/unreviewed/2022/06/GHSA-c457-6cm5-j5m6/GHSA-c457-6cm5-j5m6.json +++ b/advisories/unreviewed/2022/06/GHSA-c457-6cm5-j5m6/GHSA-c457-6cm5-j5m6.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/06/GHSA-c6vw-pfx6-wqr2/GHSA-c6vw-pfx6-wqr2.json b/advisories/unreviewed/2022/06/GHSA-c6vw-pfx6-wqr2/GHSA-c6vw-pfx6-wqr2.json index c514a4b4f0a..5a827e9a6bd 100644 --- a/advisories/unreviewed/2022/06/GHSA-c6vw-pfx6-wqr2/GHSA-c6vw-pfx6-wqr2.json +++ b/advisories/unreviewed/2022/06/GHSA-c6vw-pfx6-wqr2/GHSA-c6vw-pfx6-wqr2.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/06/GHSA-c6w9-3x73-v34p/GHSA-c6w9-3x73-v34p.json b/advisories/unreviewed/2022/06/GHSA-c6w9-3x73-v34p/GHSA-c6w9-3x73-v34p.json index b1afd65bd35..ad043c7e7a8 100644 --- a/advisories/unreviewed/2022/06/GHSA-c6w9-3x73-v34p/GHSA-c6w9-3x73-v34p.json +++ b/advisories/unreviewed/2022/06/GHSA-c6w9-3x73-v34p/GHSA-c6w9-3x73-v34p.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-c8r8-rcww-x6g5/GHSA-c8r8-rcww-x6g5.json b/advisories/unreviewed/2022/06/GHSA-c8r8-rcww-x6g5/GHSA-c8r8-rcww-x6g5.json index e9eddb699cf..e09b9953916 100644 --- a/advisories/unreviewed/2022/06/GHSA-c8r8-rcww-x6g5/GHSA-c8r8-rcww-x6g5.json +++ b/advisories/unreviewed/2022/06/GHSA-c8r8-rcww-x6g5/GHSA-c8r8-rcww-x6g5.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/06/GHSA-cgp6-w26q-mgmm/GHSA-cgp6-w26q-mgmm.json b/advisories/unreviewed/2022/06/GHSA-cgp6-w26q-mgmm/GHSA-cgp6-w26q-mgmm.json index 3ec538a9649..f2fdb2c332e 100644 --- a/advisories/unreviewed/2022/06/GHSA-cgp6-w26q-mgmm/GHSA-cgp6-w26q-mgmm.json +++ b/advisories/unreviewed/2022/06/GHSA-cgp6-w26q-mgmm/GHSA-cgp6-w26q-mgmm.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/06/GHSA-cgwx-w22x-7vjx/GHSA-cgwx-w22x-7vjx.json b/advisories/unreviewed/2022/06/GHSA-cgwx-w22x-7vjx/GHSA-cgwx-w22x-7vjx.json index 827346160fd..9bba224e18b 100644 --- a/advisories/unreviewed/2022/06/GHSA-cgwx-w22x-7vjx/GHSA-cgwx-w22x-7vjx.json +++ b/advisories/unreviewed/2022/06/GHSA-cgwx-w22x-7vjx/GHSA-cgwx-w22x-7vjx.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/06/GHSA-ch4m-c4f3-46vm/GHSA-ch4m-c4f3-46vm.json b/advisories/unreviewed/2022/06/GHSA-ch4m-c4f3-46vm/GHSA-ch4m-c4f3-46vm.json index f513ecf80bf..5de7a77ac7f 100644 --- a/advisories/unreviewed/2022/06/GHSA-ch4m-c4f3-46vm/GHSA-ch4m-c4f3-46vm.json +++ b/advisories/unreviewed/2022/06/GHSA-ch4m-c4f3-46vm/GHSA-ch4m-c4f3-46vm.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/06/GHSA-chmr-hq3h-fw8j/GHSA-chmr-hq3h-fw8j.json b/advisories/unreviewed/2022/06/GHSA-chmr-hq3h-fw8j/GHSA-chmr-hq3h-fw8j.json index 263d6593ab1..47e17115c62 100644 --- a/advisories/unreviewed/2022/06/GHSA-chmr-hq3h-fw8j/GHSA-chmr-hq3h-fw8j.json +++ b/advisories/unreviewed/2022/06/GHSA-chmr-hq3h-fw8j/GHSA-chmr-hq3h-fw8j.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/06/GHSA-cjmr-r6gh-g953/GHSA-cjmr-r6gh-g953.json b/advisories/unreviewed/2022/06/GHSA-cjmr-r6gh-g953/GHSA-cjmr-r6gh-g953.json index 7c4265675ea..9f1515e0b61 100644 --- a/advisories/unreviewed/2022/06/GHSA-cjmr-r6gh-g953/GHSA-cjmr-r6gh-g953.json +++ b/advisories/unreviewed/2022/06/GHSA-cjmr-r6gh-g953/GHSA-cjmr-r6gh-g953.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/06/GHSA-cpv8-24x3-2rvq/GHSA-cpv8-24x3-2rvq.json b/advisories/unreviewed/2022/06/GHSA-cpv8-24x3-2rvq/GHSA-cpv8-24x3-2rvq.json index e7698982fe1..5aa88f7950b 100644 --- a/advisories/unreviewed/2022/06/GHSA-cpv8-24x3-2rvq/GHSA-cpv8-24x3-2rvq.json +++ b/advisories/unreviewed/2022/06/GHSA-cpv8-24x3-2rvq/GHSA-cpv8-24x3-2rvq.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/06/GHSA-cw9c-p3pw-x38h/GHSA-cw9c-p3pw-x38h.json b/advisories/unreviewed/2022/06/GHSA-cw9c-p3pw-x38h/GHSA-cw9c-p3pw-x38h.json index 1f2fd785cd7..e7bf610a6bb 100644 --- a/advisories/unreviewed/2022/06/GHSA-cw9c-p3pw-x38h/GHSA-cw9c-p3pw-x38h.json +++ b/advisories/unreviewed/2022/06/GHSA-cw9c-p3pw-x38h/GHSA-cw9c-p3pw-x38h.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/06/GHSA-cx27-88fx-8jw8/GHSA-cx27-88fx-8jw8.json b/advisories/unreviewed/2022/06/GHSA-cx27-88fx-8jw8/GHSA-cx27-88fx-8jw8.json index b8b4978446e..ca3f0d5098d 100644 --- a/advisories/unreviewed/2022/06/GHSA-cx27-88fx-8jw8/GHSA-cx27-88fx-8jw8.json +++ b/advisories/unreviewed/2022/06/GHSA-cx27-88fx-8jw8/GHSA-cx27-88fx-8jw8.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/06/GHSA-cxr9-w7cf-j438/GHSA-cxr9-w7cf-j438.json b/advisories/unreviewed/2022/06/GHSA-cxr9-w7cf-j438/GHSA-cxr9-w7cf-j438.json index 728f186bd2a..aea8c665694 100644 --- a/advisories/unreviewed/2022/06/GHSA-cxr9-w7cf-j438/GHSA-cxr9-w7cf-j438.json +++ b/advisories/unreviewed/2022/06/GHSA-cxr9-w7cf-j438/GHSA-cxr9-w7cf-j438.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/06/GHSA-f27x-prv4-7q7x/GHSA-f27x-prv4-7q7x.json b/advisories/unreviewed/2022/06/GHSA-f27x-prv4-7q7x/GHSA-f27x-prv4-7q7x.json index 1ca8aab0e17..66a9b0f849e 100644 --- a/advisories/unreviewed/2022/06/GHSA-f27x-prv4-7q7x/GHSA-f27x-prv4-7q7x.json +++ b/advisories/unreviewed/2022/06/GHSA-f27x-prv4-7q7x/GHSA-f27x-prv4-7q7x.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/06/GHSA-f3hf-xwgv-vfqj/GHSA-f3hf-xwgv-vfqj.json b/advisories/unreviewed/2022/06/GHSA-f3hf-xwgv-vfqj/GHSA-f3hf-xwgv-vfqj.json index f1c0c273177..781494ca22c 100644 --- a/advisories/unreviewed/2022/06/GHSA-f3hf-xwgv-vfqj/GHSA-f3hf-xwgv-vfqj.json +++ b/advisories/unreviewed/2022/06/GHSA-f3hf-xwgv-vfqj/GHSA-f3hf-xwgv-vfqj.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/2022/06/GHSA-f58f-3rr4-4p93/GHSA-f58f-3rr4-4p93.json b/advisories/unreviewed/2022/06/GHSA-f58f-3rr4-4p93/GHSA-f58f-3rr4-4p93.json index 5271b5f0317..8d0cc4bdd92 100644 --- a/advisories/unreviewed/2022/06/GHSA-f58f-3rr4-4p93/GHSA-f58f-3rr4-4p93.json +++ b/advisories/unreviewed/2022/06/GHSA-f58f-3rr4-4p93/GHSA-f58f-3rr4-4p93.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/2022/06/GHSA-f6xv-j6ff-72x3/GHSA-f6xv-j6ff-72x3.json b/advisories/unreviewed/2022/06/GHSA-f6xv-j6ff-72x3/GHSA-f6xv-j6ff-72x3.json index 5dd79692257..9fec878520e 100644 --- a/advisories/unreviewed/2022/06/GHSA-f6xv-j6ff-72x3/GHSA-f6xv-j6ff-72x3.json +++ b/advisories/unreviewed/2022/06/GHSA-f6xv-j6ff-72x3/GHSA-f6xv-j6ff-72x3.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/06/GHSA-f75x-968j-64hc/GHSA-f75x-968j-64hc.json b/advisories/unreviewed/2022/06/GHSA-f75x-968j-64hc/GHSA-f75x-968j-64hc.json index 471550b74a8..50e746cfbd7 100644 --- a/advisories/unreviewed/2022/06/GHSA-f75x-968j-64hc/GHSA-f75x-968j-64hc.json +++ b/advisories/unreviewed/2022/06/GHSA-f75x-968j-64hc/GHSA-f75x-968j-64hc.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/06/GHSA-f8p8-qq4c-94wg/GHSA-f8p8-qq4c-94wg.json b/advisories/unreviewed/2022/06/GHSA-f8p8-qq4c-94wg/GHSA-f8p8-qq4c-94wg.json index aba45b0c96e..a6bca4970ed 100644 --- a/advisories/unreviewed/2022/06/GHSA-f8p8-qq4c-94wg/GHSA-f8p8-qq4c-94wg.json +++ b/advisories/unreviewed/2022/06/GHSA-f8p8-qq4c-94wg/GHSA-f8p8-qq4c-94wg.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/2022/06/GHSA-ff73-9vgm-hwwj/GHSA-ff73-9vgm-hwwj.json b/advisories/unreviewed/2022/06/GHSA-ff73-9vgm-hwwj/GHSA-ff73-9vgm-hwwj.json index 8636edcc936..a9ee746390a 100644 --- a/advisories/unreviewed/2022/06/GHSA-ff73-9vgm-hwwj/GHSA-ff73-9vgm-hwwj.json +++ b/advisories/unreviewed/2022/06/GHSA-ff73-9vgm-hwwj/GHSA-ff73-9vgm-hwwj.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/06/GHSA-fxwx-rj48-wvv5/GHSA-fxwx-rj48-wvv5.json b/advisories/unreviewed/2022/06/GHSA-fxwx-rj48-wvv5/GHSA-fxwx-rj48-wvv5.json index dcdd50f311c..725d2fdd9aa 100644 --- a/advisories/unreviewed/2022/06/GHSA-fxwx-rj48-wvv5/GHSA-fxwx-rj48-wvv5.json +++ b/advisories/unreviewed/2022/06/GHSA-fxwx-rj48-wvv5/GHSA-fxwx-rj48-wvv5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-g3xf-3cpx-mwfg/GHSA-g3xf-3cpx-mwfg.json b/advisories/unreviewed/2022/06/GHSA-g3xf-3cpx-mwfg/GHSA-g3xf-3cpx-mwfg.json index f257da4cdc3..2c159038cd4 100644 --- a/advisories/unreviewed/2022/06/GHSA-g3xf-3cpx-mwfg/GHSA-g3xf-3cpx-mwfg.json +++ b/advisories/unreviewed/2022/06/GHSA-g3xf-3cpx-mwfg/GHSA-g3xf-3cpx-mwfg.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/06/GHSA-g6p4-fv6m-vf86/GHSA-g6p4-fv6m-vf86.json b/advisories/unreviewed/2022/06/GHSA-g6p4-fv6m-vf86/GHSA-g6p4-fv6m-vf86.json index 8261e0a8de4..9dc9aa29983 100644 --- a/advisories/unreviewed/2022/06/GHSA-g6p4-fv6m-vf86/GHSA-g6p4-fv6m-vf86.json +++ b/advisories/unreviewed/2022/06/GHSA-g6p4-fv6m-vf86/GHSA-g6p4-fv6m-vf86.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/06/GHSA-gcfc-j66c-qv36/GHSA-gcfc-j66c-qv36.json b/advisories/unreviewed/2022/06/GHSA-gcfc-j66c-qv36/GHSA-gcfc-j66c-qv36.json index c6cce56f222..2e2a0b134ee 100644 --- a/advisories/unreviewed/2022/06/GHSA-gcfc-j66c-qv36/GHSA-gcfc-j66c-qv36.json +++ b/advisories/unreviewed/2022/06/GHSA-gcfc-j66c-qv36/GHSA-gcfc-j66c-qv36.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/06/GHSA-gqgg-cf45-vjxf/GHSA-gqgg-cf45-vjxf.json b/advisories/unreviewed/2022/06/GHSA-gqgg-cf45-vjxf/GHSA-gqgg-cf45-vjxf.json index 5c6ee5874d7..54938b1a24c 100644 --- a/advisories/unreviewed/2022/06/GHSA-gqgg-cf45-vjxf/GHSA-gqgg-cf45-vjxf.json +++ b/advisories/unreviewed/2022/06/GHSA-gqgg-cf45-vjxf/GHSA-gqgg-cf45-vjxf.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/06/GHSA-grvx-cvr2-fc84/GHSA-grvx-cvr2-fc84.json b/advisories/unreviewed/2022/06/GHSA-grvx-cvr2-fc84/GHSA-grvx-cvr2-fc84.json index 3610f1c2414..372499b9af3 100644 --- a/advisories/unreviewed/2022/06/GHSA-grvx-cvr2-fc84/GHSA-grvx-cvr2-fc84.json +++ b/advisories/unreviewed/2022/06/GHSA-grvx-cvr2-fc84/GHSA-grvx-cvr2-fc84.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/06/GHSA-gwg6-55p7-gx2j/GHSA-gwg6-55p7-gx2j.json b/advisories/unreviewed/2022/06/GHSA-gwg6-55p7-gx2j/GHSA-gwg6-55p7-gx2j.json index b4cefc53bc9..c77767cd1e9 100644 --- a/advisories/unreviewed/2022/06/GHSA-gwg6-55p7-gx2j/GHSA-gwg6-55p7-gx2j.json +++ b/advisories/unreviewed/2022/06/GHSA-gwg6-55p7-gx2j/GHSA-gwg6-55p7-gx2j.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/06/GHSA-gwq5-w3hg-334v/GHSA-gwq5-w3hg-334v.json b/advisories/unreviewed/2022/06/GHSA-gwq5-w3hg-334v/GHSA-gwq5-w3hg-334v.json index acbc8c0826d..b1da5b9ed2d 100644 --- a/advisories/unreviewed/2022/06/GHSA-gwq5-w3hg-334v/GHSA-gwq5-w3hg-334v.json +++ b/advisories/unreviewed/2022/06/GHSA-gwq5-w3hg-334v/GHSA-gwq5-w3hg-334v.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/06/GHSA-gwvp-q9v5-8g2x/GHSA-gwvp-q9v5-8g2x.json b/advisories/unreviewed/2022/06/GHSA-gwvp-q9v5-8g2x/GHSA-gwvp-q9v5-8g2x.json index b76493f5a37..31e3879ac50 100644 --- a/advisories/unreviewed/2022/06/GHSA-gwvp-q9v5-8g2x/GHSA-gwvp-q9v5-8g2x.json +++ b/advisories/unreviewed/2022/06/GHSA-gwvp-q9v5-8g2x/GHSA-gwvp-q9v5-8g2x.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/06/GHSA-gxpm-c49g-8q5r/GHSA-gxpm-c49g-8q5r.json b/advisories/unreviewed/2022/06/GHSA-gxpm-c49g-8q5r/GHSA-gxpm-c49g-8q5r.json index f0267b3ec9f..ee308e0cb68 100644 --- a/advisories/unreviewed/2022/06/GHSA-gxpm-c49g-8q5r/GHSA-gxpm-c49g-8q5r.json +++ b/advisories/unreviewed/2022/06/GHSA-gxpm-c49g-8q5r/GHSA-gxpm-c49g-8q5r.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/06/GHSA-h4xv-p56q-f9hj/GHSA-h4xv-p56q-f9hj.json b/advisories/unreviewed/2022/06/GHSA-h4xv-p56q-f9hj/GHSA-h4xv-p56q-f9hj.json index c09c69cebfb..fbcaac77143 100644 --- a/advisories/unreviewed/2022/06/GHSA-h4xv-p56q-f9hj/GHSA-h4xv-p56q-f9hj.json +++ b/advisories/unreviewed/2022/06/GHSA-h4xv-p56q-f9hj/GHSA-h4xv-p56q-f9hj.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/06/GHSA-h899-2p3m-3gm2/GHSA-h899-2p3m-3gm2.json b/advisories/unreviewed/2022/06/GHSA-h899-2p3m-3gm2/GHSA-h899-2p3m-3gm2.json index 56463e079ed..2ccb791c3e6 100644 --- a/advisories/unreviewed/2022/06/GHSA-h899-2p3m-3gm2/GHSA-h899-2p3m-3gm2.json +++ b/advisories/unreviewed/2022/06/GHSA-h899-2p3m-3gm2/GHSA-h899-2p3m-3gm2.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": "WEB", diff --git a/advisories/unreviewed/2022/06/GHSA-h8q6-227q-cxw6/GHSA-h8q6-227q-cxw6.json b/advisories/unreviewed/2022/06/GHSA-h8q6-227q-cxw6/GHSA-h8q6-227q-cxw6.json index 15433662980..b05f591c63e 100644 --- a/advisories/unreviewed/2022/06/GHSA-h8q6-227q-cxw6/GHSA-h8q6-227q-cxw6.json +++ b/advisories/unreviewed/2022/06/GHSA-h8q6-227q-cxw6/GHSA-h8q6-227q-cxw6.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/06/GHSA-h8rg-gc78-6ppm/GHSA-h8rg-gc78-6ppm.json b/advisories/unreviewed/2022/06/GHSA-h8rg-gc78-6ppm/GHSA-h8rg-gc78-6ppm.json index bff65d7ec3e..ffe53b7f4fc 100644 --- a/advisories/unreviewed/2022/06/GHSA-h8rg-gc78-6ppm/GHSA-h8rg-gc78-6ppm.json +++ b/advisories/unreviewed/2022/06/GHSA-h8rg-gc78-6ppm/GHSA-h8rg-gc78-6ppm.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/06/GHSA-hf5f-6q2f-wm25/GHSA-hf5f-6q2f-wm25.json b/advisories/unreviewed/2022/06/GHSA-hf5f-6q2f-wm25/GHSA-hf5f-6q2f-wm25.json index 7b1751148c8..08438c995df 100644 --- a/advisories/unreviewed/2022/06/GHSA-hf5f-6q2f-wm25/GHSA-hf5f-6q2f-wm25.json +++ b/advisories/unreviewed/2022/06/GHSA-hf5f-6q2f-wm25/GHSA-hf5f-6q2f-wm25.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-hfm9-4xvm-3rch/GHSA-hfm9-4xvm-3rch.json b/advisories/unreviewed/2022/06/GHSA-hfm9-4xvm-3rch/GHSA-hfm9-4xvm-3rch.json index e94f6e38b2d..d16b5ecb7a1 100644 --- a/advisories/unreviewed/2022/06/GHSA-hfm9-4xvm-3rch/GHSA-hfm9-4xvm-3rch.json +++ b/advisories/unreviewed/2022/06/GHSA-hfm9-4xvm-3rch/GHSA-hfm9-4xvm-3rch.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/06/GHSA-hgfv-hfj7-4r42/GHSA-hgfv-hfj7-4r42.json b/advisories/unreviewed/2022/06/GHSA-hgfv-hfj7-4r42/GHSA-hgfv-hfj7-4r42.json index bf69feb2abd..31ced352739 100644 --- a/advisories/unreviewed/2022/06/GHSA-hgfv-hfj7-4r42/GHSA-hgfv-hfj7-4r42.json +++ b/advisories/unreviewed/2022/06/GHSA-hgfv-hfj7-4r42/GHSA-hgfv-hfj7-4r42.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/06/GHSA-hgrw-f4vv-qw46/GHSA-hgrw-f4vv-qw46.json b/advisories/unreviewed/2022/06/GHSA-hgrw-f4vv-qw46/GHSA-hgrw-f4vv-qw46.json index 9e1149bf103..377384489c2 100644 --- a/advisories/unreviewed/2022/06/GHSA-hgrw-f4vv-qw46/GHSA-hgrw-f4vv-qw46.json +++ b/advisories/unreviewed/2022/06/GHSA-hgrw-f4vv-qw46/GHSA-hgrw-f4vv-qw46.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/06/GHSA-hrm3-4qxx-v4qm/GHSA-hrm3-4qxx-v4qm.json b/advisories/unreviewed/2022/06/GHSA-hrm3-4qxx-v4qm/GHSA-hrm3-4qxx-v4qm.json index a1fe70b48dc..bb61adeb464 100644 --- a/advisories/unreviewed/2022/06/GHSA-hrm3-4qxx-v4qm/GHSA-hrm3-4qxx-v4qm.json +++ b/advisories/unreviewed/2022/06/GHSA-hrm3-4qxx-v4qm/GHSA-hrm3-4qxx-v4qm.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-hv28-fjgq-6mc5/GHSA-hv28-fjgq-6mc5.json b/advisories/unreviewed/2022/06/GHSA-hv28-fjgq-6mc5/GHSA-hv28-fjgq-6mc5.json index e4940da0581..79db752f3a0 100644 --- a/advisories/unreviewed/2022/06/GHSA-hv28-fjgq-6mc5/GHSA-hv28-fjgq-6mc5.json +++ b/advisories/unreviewed/2022/06/GHSA-hv28-fjgq-6mc5/GHSA-hv28-fjgq-6mc5.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/06/GHSA-j22w-f6g9-q452/GHSA-j22w-f6g9-q452.json b/advisories/unreviewed/2022/06/GHSA-j22w-f6g9-q452/GHSA-j22w-f6g9-q452.json index 44b6be0be22..c05cc2a25fe 100644 --- a/advisories/unreviewed/2022/06/GHSA-j22w-f6g9-q452/GHSA-j22w-f6g9-q452.json +++ b/advisories/unreviewed/2022/06/GHSA-j22w-f6g9-q452/GHSA-j22w-f6g9-q452.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/06/GHSA-j323-vp27-mqgh/GHSA-j323-vp27-mqgh.json b/advisories/unreviewed/2022/06/GHSA-j323-vp27-mqgh/GHSA-j323-vp27-mqgh.json index efd8a272652..1e155c0153c 100644 --- a/advisories/unreviewed/2022/06/GHSA-j323-vp27-mqgh/GHSA-j323-vp27-mqgh.json +++ b/advisories/unreviewed/2022/06/GHSA-j323-vp27-mqgh/GHSA-j323-vp27-mqgh.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/06/GHSA-j5vv-p22h-45m3/GHSA-j5vv-p22h-45m3.json b/advisories/unreviewed/2022/06/GHSA-j5vv-p22h-45m3/GHSA-j5vv-p22h-45m3.json index ec088691a83..672c7a50301 100644 --- a/advisories/unreviewed/2022/06/GHSA-j5vv-p22h-45m3/GHSA-j5vv-p22h-45m3.json +++ b/advisories/unreviewed/2022/06/GHSA-j5vv-p22h-45m3/GHSA-j5vv-p22h-45m3.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/06/GHSA-j8rg-hxhv-j879/GHSA-j8rg-hxhv-j879.json b/advisories/unreviewed/2022/06/GHSA-j8rg-hxhv-j879/GHSA-j8rg-hxhv-j879.json index 4fed0ca0794..2453bc0be99 100644 --- a/advisories/unreviewed/2022/06/GHSA-j8rg-hxhv-j879/GHSA-j8rg-hxhv-j879.json +++ b/advisories/unreviewed/2022/06/GHSA-j8rg-hxhv-j879/GHSA-j8rg-hxhv-j879.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/06/GHSA-j987-pxxg-769m/GHSA-j987-pxxg-769m.json b/advisories/unreviewed/2022/06/GHSA-j987-pxxg-769m/GHSA-j987-pxxg-769m.json index e41722dcf7a..7b06e2baa38 100644 --- a/advisories/unreviewed/2022/06/GHSA-j987-pxxg-769m/GHSA-j987-pxxg-769m.json +++ b/advisories/unreviewed/2022/06/GHSA-j987-pxxg-769m/GHSA-j987-pxxg-769m.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/06/GHSA-j9wf-5v5m-g6r9/GHSA-j9wf-5v5m-g6r9.json b/advisories/unreviewed/2022/06/GHSA-j9wf-5v5m-g6r9/GHSA-j9wf-5v5m-g6r9.json index 98031b1149a..a5fe602db6a 100644 --- a/advisories/unreviewed/2022/06/GHSA-j9wf-5v5m-g6r9/GHSA-j9wf-5v5m-g6r9.json +++ b/advisories/unreviewed/2022/06/GHSA-j9wf-5v5m-g6r9/GHSA-j9wf-5v5m-g6r9.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/06/GHSA-jf6g-4766-8jrp/GHSA-jf6g-4766-8jrp.json b/advisories/unreviewed/2022/06/GHSA-jf6g-4766-8jrp/GHSA-jf6g-4766-8jrp.json index 64a40536cd7..c1e16956675 100644 --- a/advisories/unreviewed/2022/06/GHSA-jf6g-4766-8jrp/GHSA-jf6g-4766-8jrp.json +++ b/advisories/unreviewed/2022/06/GHSA-jf6g-4766-8jrp/GHSA-jf6g-4766-8jrp.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/06/GHSA-jhq7-4xg6-wgfm/GHSA-jhq7-4xg6-wgfm.json b/advisories/unreviewed/2022/06/GHSA-jhq7-4xg6-wgfm/GHSA-jhq7-4xg6-wgfm.json index bfb180f2431..963cb304474 100644 --- a/advisories/unreviewed/2022/06/GHSA-jhq7-4xg6-wgfm/GHSA-jhq7-4xg6-wgfm.json +++ b/advisories/unreviewed/2022/06/GHSA-jhq7-4xg6-wgfm/GHSA-jhq7-4xg6-wgfm.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/06/GHSA-jmv3-88r7-9f4p/GHSA-jmv3-88r7-9f4p.json b/advisories/unreviewed/2022/06/GHSA-jmv3-88r7-9f4p/GHSA-jmv3-88r7-9f4p.json index 7f1ff1d48d0..7ebb6cca3d7 100644 --- a/advisories/unreviewed/2022/06/GHSA-jmv3-88r7-9f4p/GHSA-jmv3-88r7-9f4p.json +++ b/advisories/unreviewed/2022/06/GHSA-jmv3-88r7-9f4p/GHSA-jmv3-88r7-9f4p.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/06/GHSA-jq2f-vxh6-4f2r/GHSA-jq2f-vxh6-4f2r.json b/advisories/unreviewed/2022/06/GHSA-jq2f-vxh6-4f2r/GHSA-jq2f-vxh6-4f2r.json index 01db5ee3a65..e13ff512a1c 100644 --- a/advisories/unreviewed/2022/06/GHSA-jq2f-vxh6-4f2r/GHSA-jq2f-vxh6-4f2r.json +++ b/advisories/unreviewed/2022/06/GHSA-jq2f-vxh6-4f2r/GHSA-jq2f-vxh6-4f2r.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/06/GHSA-jw5f-6r3j-fc5c/GHSA-jw5f-6r3j-fc5c.json b/advisories/unreviewed/2022/06/GHSA-jw5f-6r3j-fc5c/GHSA-jw5f-6r3j-fc5c.json index 5429af118e5..caf24cfcacb 100644 --- a/advisories/unreviewed/2022/06/GHSA-jw5f-6r3j-fc5c/GHSA-jw5f-6r3j-fc5c.json +++ b/advisories/unreviewed/2022/06/GHSA-jw5f-6r3j-fc5c/GHSA-jw5f-6r3j-fc5c.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/2022/06/GHSA-jwc2-6wxh-qmvw/GHSA-jwc2-6wxh-qmvw.json b/advisories/unreviewed/2022/06/GHSA-jwc2-6wxh-qmvw/GHSA-jwc2-6wxh-qmvw.json index 7d456543673..bc4f051173c 100644 --- a/advisories/unreviewed/2022/06/GHSA-jwc2-6wxh-qmvw/GHSA-jwc2-6wxh-qmvw.json +++ b/advisories/unreviewed/2022/06/GHSA-jwc2-6wxh-qmvw/GHSA-jwc2-6wxh-qmvw.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/06/GHSA-jwhf-pf82-x55c/GHSA-jwhf-pf82-x55c.json b/advisories/unreviewed/2022/06/GHSA-jwhf-pf82-x55c/GHSA-jwhf-pf82-x55c.json index fbf97fe6aa6..6ada6ef3292 100644 --- a/advisories/unreviewed/2022/06/GHSA-jwhf-pf82-x55c/GHSA-jwhf-pf82-x55c.json +++ b/advisories/unreviewed/2022/06/GHSA-jwhf-pf82-x55c/GHSA-jwhf-pf82-x55c.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-jxhj-v2x6-23c5/GHSA-jxhj-v2x6-23c5.json b/advisories/unreviewed/2022/06/GHSA-jxhj-v2x6-23c5/GHSA-jxhj-v2x6-23c5.json index 68f8be5a794..62e2462c7ec 100644 --- a/advisories/unreviewed/2022/06/GHSA-jxhj-v2x6-23c5/GHSA-jxhj-v2x6-23c5.json +++ b/advisories/unreviewed/2022/06/GHSA-jxhj-v2x6-23c5/GHSA-jxhj-v2x6-23c5.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/06/GHSA-m2c4-qf2x-c4mh/GHSA-m2c4-qf2x-c4mh.json b/advisories/unreviewed/2022/06/GHSA-m2c4-qf2x-c4mh/GHSA-m2c4-qf2x-c4mh.json index 9156eb3068b..dd1150df834 100644 --- a/advisories/unreviewed/2022/06/GHSA-m2c4-qf2x-c4mh/GHSA-m2c4-qf2x-c4mh.json +++ b/advisories/unreviewed/2022/06/GHSA-m2c4-qf2x-c4mh/GHSA-m2c4-qf2x-c4mh.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/06/GHSA-m2hw-wfx9-2cvj/GHSA-m2hw-wfx9-2cvj.json b/advisories/unreviewed/2022/06/GHSA-m2hw-wfx9-2cvj/GHSA-m2hw-wfx9-2cvj.json index a22be5a073c..29867dcef76 100644 --- a/advisories/unreviewed/2022/06/GHSA-m2hw-wfx9-2cvj/GHSA-m2hw-wfx9-2cvj.json +++ b/advisories/unreviewed/2022/06/GHSA-m2hw-wfx9-2cvj/GHSA-m2hw-wfx9-2cvj.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/06/GHSA-m569-wf8v-mgp2/GHSA-m569-wf8v-mgp2.json b/advisories/unreviewed/2022/06/GHSA-m569-wf8v-mgp2/GHSA-m569-wf8v-mgp2.json index d65f19890c7..8817bb6df8f 100644 --- a/advisories/unreviewed/2022/06/GHSA-m569-wf8v-mgp2/GHSA-m569-wf8v-mgp2.json +++ b/advisories/unreviewed/2022/06/GHSA-m569-wf8v-mgp2/GHSA-m569-wf8v-mgp2.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/06/GHSA-m6gj-x369-462f/GHSA-m6gj-x369-462f.json b/advisories/unreviewed/2022/06/GHSA-m6gj-x369-462f/GHSA-m6gj-x369-462f.json index 19166c057ab..bd1c1a86303 100644 --- a/advisories/unreviewed/2022/06/GHSA-m6gj-x369-462f/GHSA-m6gj-x369-462f.json +++ b/advisories/unreviewed/2022/06/GHSA-m6gj-x369-462f/GHSA-m6gj-x369-462f.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/06/GHSA-m7hv-7hvq-q3xx/GHSA-m7hv-7hvq-q3xx.json b/advisories/unreviewed/2022/06/GHSA-m7hv-7hvq-q3xx/GHSA-m7hv-7hvq-q3xx.json index 5f01d268657..08023cf1dca 100644 --- a/advisories/unreviewed/2022/06/GHSA-m7hv-7hvq-q3xx/GHSA-m7hv-7hvq-q3xx.json +++ b/advisories/unreviewed/2022/06/GHSA-m7hv-7hvq-q3xx/GHSA-m7hv-7hvq-q3xx.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/06/GHSA-m8mj-cpcj-h3j8/GHSA-m8mj-cpcj-h3j8.json b/advisories/unreviewed/2022/06/GHSA-m8mj-cpcj-h3j8/GHSA-m8mj-cpcj-h3j8.json index 407c0f1cdcb..7bac2c58582 100644 --- a/advisories/unreviewed/2022/06/GHSA-m8mj-cpcj-h3j8/GHSA-m8mj-cpcj-h3j8.json +++ b/advisories/unreviewed/2022/06/GHSA-m8mj-cpcj-h3j8/GHSA-m8mj-cpcj-h3j8.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-m92m-rg83-7pwm/GHSA-m92m-rg83-7pwm.json b/advisories/unreviewed/2022/06/GHSA-m92m-rg83-7pwm/GHSA-m92m-rg83-7pwm.json index a62ec9e8742..451f851c6bc 100644 --- a/advisories/unreviewed/2022/06/GHSA-m92m-rg83-7pwm/GHSA-m92m-rg83-7pwm.json +++ b/advisories/unreviewed/2022/06/GHSA-m92m-rg83-7pwm/GHSA-m92m-rg83-7pwm.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/06/GHSA-mfh6-p4f5-6j77/GHSA-mfh6-p4f5-6j77.json b/advisories/unreviewed/2022/06/GHSA-mfh6-p4f5-6j77/GHSA-mfh6-p4f5-6j77.json index 42ca8627c01..2aab7cc824f 100644 --- a/advisories/unreviewed/2022/06/GHSA-mfh6-p4f5-6j77/GHSA-mfh6-p4f5-6j77.json +++ b/advisories/unreviewed/2022/06/GHSA-mfh6-p4f5-6j77/GHSA-mfh6-p4f5-6j77.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/06/GHSA-mvfx-pprq-hjfm/GHSA-mvfx-pprq-hjfm.json b/advisories/unreviewed/2022/06/GHSA-mvfx-pprq-hjfm/GHSA-mvfx-pprq-hjfm.json index 3c6d664d7e5..ba98a47e4ab 100644 --- a/advisories/unreviewed/2022/06/GHSA-mvfx-pprq-hjfm/GHSA-mvfx-pprq-hjfm.json +++ b/advisories/unreviewed/2022/06/GHSA-mvfx-pprq-hjfm/GHSA-mvfx-pprq-hjfm.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-mwq6-9rww-wmjh/GHSA-mwq6-9rww-wmjh.json b/advisories/unreviewed/2022/06/GHSA-mwq6-9rww-wmjh/GHSA-mwq6-9rww-wmjh.json index f2186f41cd3..6fdf2d581c2 100644 --- a/advisories/unreviewed/2022/06/GHSA-mwq6-9rww-wmjh/GHSA-mwq6-9rww-wmjh.json +++ b/advisories/unreviewed/2022/06/GHSA-mwq6-9rww-wmjh/GHSA-mwq6-9rww-wmjh.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-p25g-64wc-h88x/GHSA-p25g-64wc-h88x.json b/advisories/unreviewed/2022/06/GHSA-p25g-64wc-h88x/GHSA-p25g-64wc-h88x.json index c23ecd5bfd5..486b3059be2 100644 --- a/advisories/unreviewed/2022/06/GHSA-p25g-64wc-h88x/GHSA-p25g-64wc-h88x.json +++ b/advisories/unreviewed/2022/06/GHSA-p25g-64wc-h88x/GHSA-p25g-64wc-h88x.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/06/GHSA-p2g8-fr9c-fqr4/GHSA-p2g8-fr9c-fqr4.json b/advisories/unreviewed/2022/06/GHSA-p2g8-fr9c-fqr4/GHSA-p2g8-fr9c-fqr4.json index 27a1bbd181f..29cb54c6226 100644 --- a/advisories/unreviewed/2022/06/GHSA-p2g8-fr9c-fqr4/GHSA-p2g8-fr9c-fqr4.json +++ b/advisories/unreviewed/2022/06/GHSA-p2g8-fr9c-fqr4/GHSA-p2g8-fr9c-fqr4.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/06/GHSA-p468-hq86-gghc/GHSA-p468-hq86-gghc.json b/advisories/unreviewed/2022/06/GHSA-p468-hq86-gghc/GHSA-p468-hq86-gghc.json index a67f3e26272..d5cfabddcc3 100644 --- a/advisories/unreviewed/2022/06/GHSA-p468-hq86-gghc/GHSA-p468-hq86-gghc.json +++ b/advisories/unreviewed/2022/06/GHSA-p468-hq86-gghc/GHSA-p468-hq86-gghc.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-p5w2-mxxh-jwgh/GHSA-p5w2-mxxh-jwgh.json b/advisories/unreviewed/2022/06/GHSA-p5w2-mxxh-jwgh/GHSA-p5w2-mxxh-jwgh.json index 350d9132711..a19808ad43d 100644 --- a/advisories/unreviewed/2022/06/GHSA-p5w2-mxxh-jwgh/GHSA-p5w2-mxxh-jwgh.json +++ b/advisories/unreviewed/2022/06/GHSA-p5w2-mxxh-jwgh/GHSA-p5w2-mxxh-jwgh.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-p6fg-p4c2-4gjj/GHSA-p6fg-p4c2-4gjj.json b/advisories/unreviewed/2022/06/GHSA-p6fg-p4c2-4gjj/GHSA-p6fg-p4c2-4gjj.json index ad46c92a25a..337aafae837 100644 --- a/advisories/unreviewed/2022/06/GHSA-p6fg-p4c2-4gjj/GHSA-p6fg-p4c2-4gjj.json +++ b/advisories/unreviewed/2022/06/GHSA-p6fg-p4c2-4gjj/GHSA-p6fg-p4c2-4gjj.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-p6r9-h8xg-qhvr/GHSA-p6r9-h8xg-qhvr.json b/advisories/unreviewed/2022/06/GHSA-p6r9-h8xg-qhvr/GHSA-p6r9-h8xg-qhvr.json index 75b24f06022..c0e21f2d0f7 100644 --- a/advisories/unreviewed/2022/06/GHSA-p6r9-h8xg-qhvr/GHSA-p6r9-h8xg-qhvr.json +++ b/advisories/unreviewed/2022/06/GHSA-p6r9-h8xg-qhvr/GHSA-p6r9-h8xg-qhvr.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/06/GHSA-p9hq-ccp8-r44h/GHSA-p9hq-ccp8-r44h.json b/advisories/unreviewed/2022/06/GHSA-p9hq-ccp8-r44h/GHSA-p9hq-ccp8-r44h.json index c79ae4e97c2..d9ca72f3bd7 100644 --- a/advisories/unreviewed/2022/06/GHSA-p9hq-ccp8-r44h/GHSA-p9hq-ccp8-r44h.json +++ b/advisories/unreviewed/2022/06/GHSA-p9hq-ccp8-r44h/GHSA-p9hq-ccp8-r44h.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/06/GHSA-p9wg-rw4x-5mjg/GHSA-p9wg-rw4x-5mjg.json b/advisories/unreviewed/2022/06/GHSA-p9wg-rw4x-5mjg/GHSA-p9wg-rw4x-5mjg.json index 0b88848148e..0d37291d54e 100644 --- a/advisories/unreviewed/2022/06/GHSA-p9wg-rw4x-5mjg/GHSA-p9wg-rw4x-5mjg.json +++ b/advisories/unreviewed/2022/06/GHSA-p9wg-rw4x-5mjg/GHSA-p9wg-rw4x-5mjg.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/06/GHSA-pc7x-r4c4-7qqw/GHSA-pc7x-r4c4-7qqw.json b/advisories/unreviewed/2022/06/GHSA-pc7x-r4c4-7qqw/GHSA-pc7x-r4c4-7qqw.json index bf41e7023ed..5a48081535e 100644 --- a/advisories/unreviewed/2022/06/GHSA-pc7x-r4c4-7qqw/GHSA-pc7x-r4c4-7qqw.json +++ b/advisories/unreviewed/2022/06/GHSA-pc7x-r4c4-7qqw/GHSA-pc7x-r4c4-7qqw.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/06/GHSA-pj4v-78mw-5334/GHSA-pj4v-78mw-5334.json b/advisories/unreviewed/2022/06/GHSA-pj4v-78mw-5334/GHSA-pj4v-78mw-5334.json index a9f06f19b94..98671cb7c3a 100644 --- a/advisories/unreviewed/2022/06/GHSA-pj4v-78mw-5334/GHSA-pj4v-78mw-5334.json +++ b/advisories/unreviewed/2022/06/GHSA-pj4v-78mw-5334/GHSA-pj4v-78mw-5334.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/06/GHSA-pprh-777f-3fqc/GHSA-pprh-777f-3fqc.json b/advisories/unreviewed/2022/06/GHSA-pprh-777f-3fqc/GHSA-pprh-777f-3fqc.json index 3ce13dbdf70..61a5ba93a91 100644 --- a/advisories/unreviewed/2022/06/GHSA-pprh-777f-3fqc/GHSA-pprh-777f-3fqc.json +++ b/advisories/unreviewed/2022/06/GHSA-pprh-777f-3fqc/GHSA-pprh-777f-3fqc.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-pwc4-xgrm-h5wv/GHSA-pwc4-xgrm-h5wv.json b/advisories/unreviewed/2022/06/GHSA-pwc4-xgrm-h5wv/GHSA-pwc4-xgrm-h5wv.json index 4b04563bc81..7cb1f588c1a 100644 --- a/advisories/unreviewed/2022/06/GHSA-pwc4-xgrm-h5wv/GHSA-pwc4-xgrm-h5wv.json +++ b/advisories/unreviewed/2022/06/GHSA-pwc4-xgrm-h5wv/GHSA-pwc4-xgrm-h5wv.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/06/GHSA-pwf3-v5c7-ccrh/GHSA-pwf3-v5c7-ccrh.json b/advisories/unreviewed/2022/06/GHSA-pwf3-v5c7-ccrh/GHSA-pwf3-v5c7-ccrh.json index f823bbc2429..165244fc1e4 100644 --- a/advisories/unreviewed/2022/06/GHSA-pwf3-v5c7-ccrh/GHSA-pwf3-v5c7-ccrh.json +++ b/advisories/unreviewed/2022/06/GHSA-pwf3-v5c7-ccrh/GHSA-pwf3-v5c7-ccrh.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/06/GHSA-q6r7-rg43-w9vm/GHSA-q6r7-rg43-w9vm.json b/advisories/unreviewed/2022/06/GHSA-q6r7-rg43-w9vm/GHSA-q6r7-rg43-w9vm.json index 9dfdc5c1e1b..c1dea1eb219 100644 --- a/advisories/unreviewed/2022/06/GHSA-q6r7-rg43-w9vm/GHSA-q6r7-rg43-w9vm.json +++ b/advisories/unreviewed/2022/06/GHSA-q6r7-rg43-w9vm/GHSA-q6r7-rg43-w9vm.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/06/GHSA-q7jq-85jx-h8fw/GHSA-q7jq-85jx-h8fw.json b/advisories/unreviewed/2022/06/GHSA-q7jq-85jx-h8fw/GHSA-q7jq-85jx-h8fw.json index 9fdfeb58ffc..b0426b5e1ed 100644 --- a/advisories/unreviewed/2022/06/GHSA-q7jq-85jx-h8fw/GHSA-q7jq-85jx-h8fw.json +++ b/advisories/unreviewed/2022/06/GHSA-q7jq-85jx-h8fw/GHSA-q7jq-85jx-h8fw.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/06/GHSA-q8jx-m42w-vf92/GHSA-q8jx-m42w-vf92.json b/advisories/unreviewed/2022/06/GHSA-q8jx-m42w-vf92/GHSA-q8jx-m42w-vf92.json index ea42ad4b48a..99a9d5d0b31 100644 --- a/advisories/unreviewed/2022/06/GHSA-q8jx-m42w-vf92/GHSA-q8jx-m42w-vf92.json +++ b/advisories/unreviewed/2022/06/GHSA-q8jx-m42w-vf92/GHSA-q8jx-m42w-vf92.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/06/GHSA-q9qj-gqmf-73c2/GHSA-q9qj-gqmf-73c2.json b/advisories/unreviewed/2022/06/GHSA-q9qj-gqmf-73c2/GHSA-q9qj-gqmf-73c2.json index 9a24b41745f..425cf1621d7 100644 --- a/advisories/unreviewed/2022/06/GHSA-q9qj-gqmf-73c2/GHSA-q9qj-gqmf-73c2.json +++ b/advisories/unreviewed/2022/06/GHSA-q9qj-gqmf-73c2/GHSA-q9qj-gqmf-73c2.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/06/GHSA-qfc4-pwcf-h2pq/GHSA-qfc4-pwcf-h2pq.json b/advisories/unreviewed/2022/06/GHSA-qfc4-pwcf-h2pq/GHSA-qfc4-pwcf-h2pq.json index 21a9b0bf9da..c9cb36cc490 100644 --- a/advisories/unreviewed/2022/06/GHSA-qfc4-pwcf-h2pq/GHSA-qfc4-pwcf-h2pq.json +++ b/advisories/unreviewed/2022/06/GHSA-qfc4-pwcf-h2pq/GHSA-qfc4-pwcf-h2pq.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/06/GHSA-qmgh-rmpj-2fpq/GHSA-qmgh-rmpj-2fpq.json b/advisories/unreviewed/2022/06/GHSA-qmgh-rmpj-2fpq/GHSA-qmgh-rmpj-2fpq.json index 5dbeec0f397..d84087f6ec6 100644 --- a/advisories/unreviewed/2022/06/GHSA-qmgh-rmpj-2fpq/GHSA-qmgh-rmpj-2fpq.json +++ b/advisories/unreviewed/2022/06/GHSA-qmgh-rmpj-2fpq/GHSA-qmgh-rmpj-2fpq.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/06/GHSA-qv39-c89v-9h6h/GHSA-qv39-c89v-9h6h.json b/advisories/unreviewed/2022/06/GHSA-qv39-c89v-9h6h/GHSA-qv39-c89v-9h6h.json index ca3454fb6e4..89a603aacf3 100644 --- a/advisories/unreviewed/2022/06/GHSA-qv39-c89v-9h6h/GHSA-qv39-c89v-9h6h.json +++ b/advisories/unreviewed/2022/06/GHSA-qv39-c89v-9h6h/GHSA-qv39-c89v-9h6h.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/06/GHSA-qwg4-p4h4-v84v/GHSA-qwg4-p4h4-v84v.json b/advisories/unreviewed/2022/06/GHSA-qwg4-p4h4-v84v/GHSA-qwg4-p4h4-v84v.json index 901de79030a..d9e772441f2 100644 --- a/advisories/unreviewed/2022/06/GHSA-qwg4-p4h4-v84v/GHSA-qwg4-p4h4-v84v.json +++ b/advisories/unreviewed/2022/06/GHSA-qwg4-p4h4-v84v/GHSA-qwg4-p4h4-v84v.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/06/GHSA-rf4j-5wqh-fgfx/GHSA-rf4j-5wqh-fgfx.json b/advisories/unreviewed/2022/06/GHSA-rf4j-5wqh-fgfx/GHSA-rf4j-5wqh-fgfx.json index 251cfcef943..e2ee0066aa3 100644 --- a/advisories/unreviewed/2022/06/GHSA-rf4j-5wqh-fgfx/GHSA-rf4j-5wqh-fgfx.json +++ b/advisories/unreviewed/2022/06/GHSA-rf4j-5wqh-fgfx/GHSA-rf4j-5wqh-fgfx.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/06/GHSA-rgvj-3mvm-p9g8/GHSA-rgvj-3mvm-p9g8.json b/advisories/unreviewed/2022/06/GHSA-rgvj-3mvm-p9g8/GHSA-rgvj-3mvm-p9g8.json index e3be9cd2e46..f152c0be043 100644 --- a/advisories/unreviewed/2022/06/GHSA-rgvj-3mvm-p9g8/GHSA-rgvj-3mvm-p9g8.json +++ b/advisories/unreviewed/2022/06/GHSA-rgvj-3mvm-p9g8/GHSA-rgvj-3mvm-p9g8.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/06/GHSA-rvc8-68wq-jcj6/GHSA-rvc8-68wq-jcj6.json b/advisories/unreviewed/2022/06/GHSA-rvc8-68wq-jcj6/GHSA-rvc8-68wq-jcj6.json index 0ac671a8d1b..8bd8d033427 100644 --- a/advisories/unreviewed/2022/06/GHSA-rvc8-68wq-jcj6/GHSA-rvc8-68wq-jcj6.json +++ b/advisories/unreviewed/2022/06/GHSA-rvc8-68wq-jcj6/GHSA-rvc8-68wq-jcj6.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/06/GHSA-rwwv-m5jx-g9xw/GHSA-rwwv-m5jx-g9xw.json b/advisories/unreviewed/2022/06/GHSA-rwwv-m5jx-g9xw/GHSA-rwwv-m5jx-g9xw.json index 02d63ddff12..de9a311a1f0 100644 --- a/advisories/unreviewed/2022/06/GHSA-rwwv-m5jx-g9xw/GHSA-rwwv-m5jx-g9xw.json +++ b/advisories/unreviewed/2022/06/GHSA-rwwv-m5jx-g9xw/GHSA-rwwv-m5jx-g9xw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/06/GHSA-rx85-gxv3-499c/GHSA-rx85-gxv3-499c.json b/advisories/unreviewed/2022/06/GHSA-rx85-gxv3-499c/GHSA-rx85-gxv3-499c.json index 358f2ae5768..21feb4fed4a 100644 --- a/advisories/unreviewed/2022/06/GHSA-rx85-gxv3-499c/GHSA-rx85-gxv3-499c.json +++ b/advisories/unreviewed/2022/06/GHSA-rx85-gxv3-499c/GHSA-rx85-gxv3-499c.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/06/GHSA-v2rr-ww6m-w47m/GHSA-v2rr-ww6m-w47m.json b/advisories/unreviewed/2022/06/GHSA-v2rr-ww6m-w47m/GHSA-v2rr-ww6m-w47m.json index 0c7d6fdf198..2c4540cd865 100644 --- a/advisories/unreviewed/2022/06/GHSA-v2rr-ww6m-w47m/GHSA-v2rr-ww6m-w47m.json +++ b/advisories/unreviewed/2022/06/GHSA-v2rr-ww6m-w47m/GHSA-v2rr-ww6m-w47m.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/06/GHSA-v4c7-53jg-7x9j/GHSA-v4c7-53jg-7x9j.json b/advisories/unreviewed/2022/06/GHSA-v4c7-53jg-7x9j/GHSA-v4c7-53jg-7x9j.json index c4a1486af83..a8b7e4668a6 100644 --- a/advisories/unreviewed/2022/06/GHSA-v4c7-53jg-7x9j/GHSA-v4c7-53jg-7x9j.json +++ b/advisories/unreviewed/2022/06/GHSA-v4c7-53jg-7x9j/GHSA-v4c7-53jg-7x9j.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/06/GHSA-v4p3-q3fm-mfrr/GHSA-v4p3-q3fm-mfrr.json b/advisories/unreviewed/2022/06/GHSA-v4p3-q3fm-mfrr/GHSA-v4p3-q3fm-mfrr.json index 6beba785dc8..35bf3cdccb0 100644 --- a/advisories/unreviewed/2022/06/GHSA-v4p3-q3fm-mfrr/GHSA-v4p3-q3fm-mfrr.json +++ b/advisories/unreviewed/2022/06/GHSA-v4p3-q3fm-mfrr/GHSA-v4p3-q3fm-mfrr.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/06/GHSA-v63c-6qf8-qq2c/GHSA-v63c-6qf8-qq2c.json b/advisories/unreviewed/2022/06/GHSA-v63c-6qf8-qq2c/GHSA-v63c-6qf8-qq2c.json index 850e81a7d72..8aa3d0df768 100644 --- a/advisories/unreviewed/2022/06/GHSA-v63c-6qf8-qq2c/GHSA-v63c-6qf8-qq2c.json +++ b/advisories/unreviewed/2022/06/GHSA-v63c-6qf8-qq2c/GHSA-v63c-6qf8-qq2c.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/06/GHSA-v6r2-xp96-qv7w/GHSA-v6r2-xp96-qv7w.json b/advisories/unreviewed/2022/06/GHSA-v6r2-xp96-qv7w/GHSA-v6r2-xp96-qv7w.json index 3dc523c4e5b..a8b225574e3 100644 --- a/advisories/unreviewed/2022/06/GHSA-v6r2-xp96-qv7w/GHSA-v6r2-xp96-qv7w.json +++ b/advisories/unreviewed/2022/06/GHSA-v6r2-xp96-qv7w/GHSA-v6r2-xp96-qv7w.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/06/GHSA-v93r-fr6f-m4mx/GHSA-v93r-fr6f-m4mx.json b/advisories/unreviewed/2022/06/GHSA-v93r-fr6f-m4mx/GHSA-v93r-fr6f-m4mx.json index 785503752c6..c7876ab5bb6 100644 --- a/advisories/unreviewed/2022/06/GHSA-v93r-fr6f-m4mx/GHSA-v93r-fr6f-m4mx.json +++ b/advisories/unreviewed/2022/06/GHSA-v93r-fr6f-m4mx/GHSA-v93r-fr6f-m4mx.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/06/GHSA-v9gp-5967-g642/GHSA-v9gp-5967-g642.json b/advisories/unreviewed/2022/06/GHSA-v9gp-5967-g642/GHSA-v9gp-5967-g642.json index 421087d73d0..7e4b9f1a0ef 100644 --- a/advisories/unreviewed/2022/06/GHSA-v9gp-5967-g642/GHSA-v9gp-5967-g642.json +++ b/advisories/unreviewed/2022/06/GHSA-v9gp-5967-g642/GHSA-v9gp-5967-g642.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -27,9 +25,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/06/GHSA-v9xm-x7mc-f74g/GHSA-v9xm-x7mc-f74g.json b/advisories/unreviewed/2022/06/GHSA-v9xm-x7mc-f74g/GHSA-v9xm-x7mc-f74g.json index 13d3cee0f5f..9aac42a8c95 100644 --- a/advisories/unreviewed/2022/06/GHSA-v9xm-x7mc-f74g/GHSA-v9xm-x7mc-f74g.json +++ b/advisories/unreviewed/2022/06/GHSA-v9xm-x7mc-f74g/GHSA-v9xm-x7mc-f74g.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/06/GHSA-vc2m-8v25-q6g5/GHSA-vc2m-8v25-q6g5.json b/advisories/unreviewed/2022/06/GHSA-vc2m-8v25-q6g5/GHSA-vc2m-8v25-q6g5.json index 3f99e984ad1..795ea4e9725 100644 --- a/advisories/unreviewed/2022/06/GHSA-vc2m-8v25-q6g5/GHSA-vc2m-8v25-q6g5.json +++ b/advisories/unreviewed/2022/06/GHSA-vc2m-8v25-q6g5/GHSA-vc2m-8v25-q6g5.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-vc9g-fwv6-r53p/GHSA-vc9g-fwv6-r53p.json b/advisories/unreviewed/2022/06/GHSA-vc9g-fwv6-r53p/GHSA-vc9g-fwv6-r53p.json index 48ba2c0970e..f064000871b 100644 --- a/advisories/unreviewed/2022/06/GHSA-vc9g-fwv6-r53p/GHSA-vc9g-fwv6-r53p.json +++ b/advisories/unreviewed/2022/06/GHSA-vc9g-fwv6-r53p/GHSA-vc9g-fwv6-r53p.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/2022/06/GHSA-vfw8-9352-cfqg/GHSA-vfw8-9352-cfqg.json b/advisories/unreviewed/2022/06/GHSA-vfw8-9352-cfqg/GHSA-vfw8-9352-cfqg.json index 024c920c163..a918bbe4e26 100644 --- a/advisories/unreviewed/2022/06/GHSA-vfw8-9352-cfqg/GHSA-vfw8-9352-cfqg.json +++ b/advisories/unreviewed/2022/06/GHSA-vfw8-9352-cfqg/GHSA-vfw8-9352-cfqg.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/06/GHSA-vgp9-ghj6-rf88/GHSA-vgp9-ghj6-rf88.json b/advisories/unreviewed/2022/06/GHSA-vgp9-ghj6-rf88/GHSA-vgp9-ghj6-rf88.json index e2d1dc4df31..596bc947294 100644 --- a/advisories/unreviewed/2022/06/GHSA-vgp9-ghj6-rf88/GHSA-vgp9-ghj6-rf88.json +++ b/advisories/unreviewed/2022/06/GHSA-vgp9-ghj6-rf88/GHSA-vgp9-ghj6-rf88.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/06/GHSA-vh57-r7rp-9489/GHSA-vh57-r7rp-9489.json b/advisories/unreviewed/2022/06/GHSA-vh57-r7rp-9489/GHSA-vh57-r7rp-9489.json index d1d6e1bde62..18bb2d25278 100644 --- a/advisories/unreviewed/2022/06/GHSA-vh57-r7rp-9489/GHSA-vh57-r7rp-9489.json +++ b/advisories/unreviewed/2022/06/GHSA-vh57-r7rp-9489/GHSA-vh57-r7rp-9489.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/06/GHSA-vj26-6x8f-236w/GHSA-vj26-6x8f-236w.json b/advisories/unreviewed/2022/06/GHSA-vj26-6x8f-236w/GHSA-vj26-6x8f-236w.json index 7f447ae08bc..64db93edcdb 100644 --- a/advisories/unreviewed/2022/06/GHSA-vj26-6x8f-236w/GHSA-vj26-6x8f-236w.json +++ b/advisories/unreviewed/2022/06/GHSA-vj26-6x8f-236w/GHSA-vj26-6x8f-236w.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/06/GHSA-vjpp-hrqc-3g4m/GHSA-vjpp-hrqc-3g4m.json b/advisories/unreviewed/2022/06/GHSA-vjpp-hrqc-3g4m/GHSA-vjpp-hrqc-3g4m.json index 1fd1bedc32b..88fef6ebb21 100644 --- a/advisories/unreviewed/2022/06/GHSA-vjpp-hrqc-3g4m/GHSA-vjpp-hrqc-3g4m.json +++ b/advisories/unreviewed/2022/06/GHSA-vjpp-hrqc-3g4m/GHSA-vjpp-hrqc-3g4m.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/06/GHSA-vqxx-xvgv-6cxp/GHSA-vqxx-xvgv-6cxp.json b/advisories/unreviewed/2022/06/GHSA-vqxx-xvgv-6cxp/GHSA-vqxx-xvgv-6cxp.json index 10931ed7d08..a3245c9bd23 100644 --- a/advisories/unreviewed/2022/06/GHSA-vqxx-xvgv-6cxp/GHSA-vqxx-xvgv-6cxp.json +++ b/advisories/unreviewed/2022/06/GHSA-vqxx-xvgv-6cxp/GHSA-vqxx-xvgv-6cxp.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/06/GHSA-vvcq-rjcr-qmw3/GHSA-vvcq-rjcr-qmw3.json b/advisories/unreviewed/2022/06/GHSA-vvcq-rjcr-qmw3/GHSA-vvcq-rjcr-qmw3.json index 3933262bb19..52112f3293e 100644 --- a/advisories/unreviewed/2022/06/GHSA-vvcq-rjcr-qmw3/GHSA-vvcq-rjcr-qmw3.json +++ b/advisories/unreviewed/2022/06/GHSA-vvcq-rjcr-qmw3/GHSA-vvcq-rjcr-qmw3.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/06/GHSA-vwgm-vpr3-8798/GHSA-vwgm-vpr3-8798.json b/advisories/unreviewed/2022/06/GHSA-vwgm-vpr3-8798/GHSA-vwgm-vpr3-8798.json index ac6cf89ec58..b2aa77fd588 100644 --- a/advisories/unreviewed/2022/06/GHSA-vwgm-vpr3-8798/GHSA-vwgm-vpr3-8798.json +++ b/advisories/unreviewed/2022/06/GHSA-vwgm-vpr3-8798/GHSA-vwgm-vpr3-8798.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/06/GHSA-vxrp-8pgw-3r88/GHSA-vxrp-8pgw-3r88.json b/advisories/unreviewed/2022/06/GHSA-vxrp-8pgw-3r88/GHSA-vxrp-8pgw-3r88.json index b988d81d0cb..d6abfb97ef7 100644 --- a/advisories/unreviewed/2022/06/GHSA-vxrp-8pgw-3r88/GHSA-vxrp-8pgw-3r88.json +++ b/advisories/unreviewed/2022/06/GHSA-vxrp-8pgw-3r88/GHSA-vxrp-8pgw-3r88.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/06/GHSA-w6j9-57w3-6829/GHSA-w6j9-57w3-6829.json b/advisories/unreviewed/2022/06/GHSA-w6j9-57w3-6829/GHSA-w6j9-57w3-6829.json index 143d8efdf8c..4f0f7489a1b 100644 --- a/advisories/unreviewed/2022/06/GHSA-w6j9-57w3-6829/GHSA-w6j9-57w3-6829.json +++ b/advisories/unreviewed/2022/06/GHSA-w6j9-57w3-6829/GHSA-w6j9-57w3-6829.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2022/06/GHSA-w78v-77pm-44m4/GHSA-w78v-77pm-44m4.json b/advisories/unreviewed/2022/06/GHSA-w78v-77pm-44m4/GHSA-w78v-77pm-44m4.json index 9ada8cf9c66..e19c9bdd39f 100644 --- a/advisories/unreviewed/2022/06/GHSA-w78v-77pm-44m4/GHSA-w78v-77pm-44m4.json +++ b/advisories/unreviewed/2022/06/GHSA-w78v-77pm-44m4/GHSA-w78v-77pm-44m4.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/06/GHSA-w84r-7gx4-7v92/GHSA-w84r-7gx4-7v92.json b/advisories/unreviewed/2022/06/GHSA-w84r-7gx4-7v92/GHSA-w84r-7gx4-7v92.json index 6b6663793c8..e01ac597bc2 100644 --- a/advisories/unreviewed/2022/06/GHSA-w84r-7gx4-7v92/GHSA-w84r-7gx4-7v92.json +++ b/advisories/unreviewed/2022/06/GHSA-w84r-7gx4-7v92/GHSA-w84r-7gx4-7v92.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/06/GHSA-wmvj-jgw2-92m9/GHSA-wmvj-jgw2-92m9.json b/advisories/unreviewed/2022/06/GHSA-wmvj-jgw2-92m9/GHSA-wmvj-jgw2-92m9.json index 4a980a1cdde..12130e0d916 100644 --- a/advisories/unreviewed/2022/06/GHSA-wmvj-jgw2-92m9/GHSA-wmvj-jgw2-92m9.json +++ b/advisories/unreviewed/2022/06/GHSA-wmvj-jgw2-92m9/GHSA-wmvj-jgw2-92m9.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/06/GHSA-wpjw-qvg4-9cv9/GHSA-wpjw-qvg4-9cv9.json b/advisories/unreviewed/2022/06/GHSA-wpjw-qvg4-9cv9/GHSA-wpjw-qvg4-9cv9.json index 7161bec6012..43b821fe03f 100644 --- a/advisories/unreviewed/2022/06/GHSA-wpjw-qvg4-9cv9/GHSA-wpjw-qvg4-9cv9.json +++ b/advisories/unreviewed/2022/06/GHSA-wpjw-qvg4-9cv9/GHSA-wpjw-qvg4-9cv9.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/06/GHSA-wpwx-h2cj-939x/GHSA-wpwx-h2cj-939x.json b/advisories/unreviewed/2022/06/GHSA-wpwx-h2cj-939x/GHSA-wpwx-h2cj-939x.json index 9ac75c10a84..09e70cd9706 100644 --- a/advisories/unreviewed/2022/06/GHSA-wpwx-h2cj-939x/GHSA-wpwx-h2cj-939x.json +++ b/advisories/unreviewed/2022/06/GHSA-wpwx-h2cj-939x/GHSA-wpwx-h2cj-939x.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/06/GHSA-wq3v-33f3-3c29/GHSA-wq3v-33f3-3c29.json b/advisories/unreviewed/2022/06/GHSA-wq3v-33f3-3c29/GHSA-wq3v-33f3-3c29.json index 205944d9206..b8f77466c64 100644 --- a/advisories/unreviewed/2022/06/GHSA-wq3v-33f3-3c29/GHSA-wq3v-33f3-3c29.json +++ b/advisories/unreviewed/2022/06/GHSA-wq3v-33f3-3c29/GHSA-wq3v-33f3-3c29.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/06/GHSA-wr2v-5qvp-wv57/GHSA-wr2v-5qvp-wv57.json b/advisories/unreviewed/2022/06/GHSA-wr2v-5qvp-wv57/GHSA-wr2v-5qvp-wv57.json index 2f4082cfd24..6c8dfdc29ae 100644 --- a/advisories/unreviewed/2022/06/GHSA-wr2v-5qvp-wv57/GHSA-wr2v-5qvp-wv57.json +++ b/advisories/unreviewed/2022/06/GHSA-wr2v-5qvp-wv57/GHSA-wr2v-5qvp-wv57.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-wwff-24hj-g6pw/GHSA-wwff-24hj-g6pw.json b/advisories/unreviewed/2022/06/GHSA-wwff-24hj-g6pw/GHSA-wwff-24hj-g6pw.json index cef01b1078b..698a7ae7fdf 100644 --- a/advisories/unreviewed/2022/06/GHSA-wwff-24hj-g6pw/GHSA-wwff-24hj-g6pw.json +++ b/advisories/unreviewed/2022/06/GHSA-wwff-24hj-g6pw/GHSA-wwff-24hj-g6pw.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/06/GHSA-wwjg-5jcc-ghvm/GHSA-wwjg-5jcc-ghvm.json b/advisories/unreviewed/2022/06/GHSA-wwjg-5jcc-ghvm/GHSA-wwjg-5jcc-ghvm.json index 50101da4c7d..be4509acdef 100644 --- a/advisories/unreviewed/2022/06/GHSA-wwjg-5jcc-ghvm/GHSA-wwjg-5jcc-ghvm.json +++ b/advisories/unreviewed/2022/06/GHSA-wwjg-5jcc-ghvm/GHSA-wwjg-5jcc-ghvm.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/06/GHSA-x335-2chq-v4r9/GHSA-x335-2chq-v4r9.json b/advisories/unreviewed/2022/06/GHSA-x335-2chq-v4r9/GHSA-x335-2chq-v4r9.json index d739a7bc747..0dadd6fce17 100644 --- a/advisories/unreviewed/2022/06/GHSA-x335-2chq-v4r9/GHSA-x335-2chq-v4r9.json +++ b/advisories/unreviewed/2022/06/GHSA-x335-2chq-v4r9/GHSA-x335-2chq-v4r9.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/06/GHSA-xf92-6qp2-3hc7/GHSA-xf92-6qp2-3hc7.json b/advisories/unreviewed/2022/06/GHSA-xf92-6qp2-3hc7/GHSA-xf92-6qp2-3hc7.json index 374c8cdda93..d3abf4dbae3 100644 --- a/advisories/unreviewed/2022/06/GHSA-xf92-6qp2-3hc7/GHSA-xf92-6qp2-3hc7.json +++ b/advisories/unreviewed/2022/06/GHSA-xf92-6qp2-3hc7/GHSA-xf92-6qp2-3hc7.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-268j-8q64-9cqx/GHSA-268j-8q64-9cqx.json b/advisories/unreviewed/2022/07/GHSA-268j-8q64-9cqx/GHSA-268j-8q64-9cqx.json index a399928c620..2f446eaace7 100644 --- a/advisories/unreviewed/2022/07/GHSA-268j-8q64-9cqx/GHSA-268j-8q64-9cqx.json +++ b/advisories/unreviewed/2022/07/GHSA-268j-8q64-9cqx/GHSA-268j-8q64-9cqx.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/07/GHSA-44q2-c8m6-j2gg/GHSA-44q2-c8m6-j2gg.json b/advisories/unreviewed/2022/07/GHSA-44q2-c8m6-j2gg/GHSA-44q2-c8m6-j2gg.json index 9162f6d59a3..70348630e6f 100644 --- a/advisories/unreviewed/2022/07/GHSA-44q2-c8m6-j2gg/GHSA-44q2-c8m6-j2gg.json +++ b/advisories/unreviewed/2022/07/GHSA-44q2-c8m6-j2gg/GHSA-44q2-c8m6-j2gg.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", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/07/GHSA-4rjr-p7j3-f64g/GHSA-4rjr-p7j3-f64g.json b/advisories/unreviewed/2022/07/GHSA-4rjr-p7j3-f64g/GHSA-4rjr-p7j3-f64g.json index 6766e4468f2..d21c5b2128b 100644 --- a/advisories/unreviewed/2022/07/GHSA-4rjr-p7j3-f64g/GHSA-4rjr-p7j3-f64g.json +++ b/advisories/unreviewed/2022/07/GHSA-4rjr-p7j3-f64g/GHSA-4rjr-p7j3-f64g.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/07/GHSA-54r4-ppj3-fq8f/GHSA-54r4-ppj3-fq8f.json b/advisories/unreviewed/2022/07/GHSA-54r4-ppj3-fq8f/GHSA-54r4-ppj3-fq8f.json index 4d95f995d56..cefd4207ac3 100644 --- a/advisories/unreviewed/2022/07/GHSA-54r4-ppj3-fq8f/GHSA-54r4-ppj3-fq8f.json +++ b/advisories/unreviewed/2022/07/GHSA-54r4-ppj3-fq8f/GHSA-54r4-ppj3-fq8f.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/07/GHSA-6537-j3xq-39r6/GHSA-6537-j3xq-39r6.json b/advisories/unreviewed/2022/07/GHSA-6537-j3xq-39r6/GHSA-6537-j3xq-39r6.json index a50def36b4f..dc9a48e0171 100644 --- a/advisories/unreviewed/2022/07/GHSA-6537-j3xq-39r6/GHSA-6537-j3xq-39r6.json +++ b/advisories/unreviewed/2022/07/GHSA-6537-j3xq-39r6/GHSA-6537-j3xq-39r6.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/2022/07/GHSA-cwg9-vp4r-v3q2/GHSA-cwg9-vp4r-v3q2.json b/advisories/unreviewed/2022/07/GHSA-cwg9-vp4r-v3q2/GHSA-cwg9-vp4r-v3q2.json index 64e71646226..4c9df7c0a9b 100644 --- a/advisories/unreviewed/2022/07/GHSA-cwg9-vp4r-v3q2/GHSA-cwg9-vp4r-v3q2.json +++ b/advisories/unreviewed/2022/07/GHSA-cwg9-vp4r-v3q2/GHSA-cwg9-vp4r-v3q2.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", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/07/GHSA-cxcg-577f-2582/GHSA-cxcg-577f-2582.json b/advisories/unreviewed/2022/07/GHSA-cxcg-577f-2582/GHSA-cxcg-577f-2582.json index 87ac94769c6..f56eb21db79 100644 --- a/advisories/unreviewed/2022/07/GHSA-cxcg-577f-2582/GHSA-cxcg-577f-2582.json +++ b/advisories/unreviewed/2022/07/GHSA-cxcg-577f-2582/GHSA-cxcg-577f-2582.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", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/07/GHSA-ggqc-76h3-jpv2/GHSA-ggqc-76h3-jpv2.json b/advisories/unreviewed/2022/07/GHSA-ggqc-76h3-jpv2/GHSA-ggqc-76h3-jpv2.json index 2d82305af38..e22c81e34a1 100644 --- a/advisories/unreviewed/2022/07/GHSA-ggqc-76h3-jpv2/GHSA-ggqc-76h3-jpv2.json +++ b/advisories/unreviewed/2022/07/GHSA-ggqc-76h3-jpv2/GHSA-ggqc-76h3-jpv2.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/07/GHSA-hc55-j7j2-f8w9/GHSA-hc55-j7j2-f8w9.json b/advisories/unreviewed/2022/07/GHSA-hc55-j7j2-f8w9/GHSA-hc55-j7j2-f8w9.json index cebea913237..0ce12d54898 100644 --- a/advisories/unreviewed/2022/07/GHSA-hc55-j7j2-f8w9/GHSA-hc55-j7j2-f8w9.json +++ b/advisories/unreviewed/2022/07/GHSA-hc55-j7j2-f8w9/GHSA-hc55-j7j2-f8w9.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", @@ -35,9 +33,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "HIGH", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/07/GHSA-j8g4-6p94-j4fp/GHSA-j8g4-6p94-j4fp.json b/advisories/unreviewed/2022/07/GHSA-j8g4-6p94-j4fp/GHSA-j8g4-6p94-j4fp.json index 68372631d3d..8df8d7437c7 100644 --- a/advisories/unreviewed/2022/07/GHSA-j8g4-6p94-j4fp/GHSA-j8g4-6p94-j4fp.json +++ b/advisories/unreviewed/2022/07/GHSA-j8g4-6p94-j4fp/GHSA-j8g4-6p94-j4fp.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/08/GHSA-4c36-rwf6-qrpp/GHSA-4c36-rwf6-qrpp.json b/advisories/unreviewed/2022/08/GHSA-4c36-rwf6-qrpp/GHSA-4c36-rwf6-qrpp.json index a4673d57064..e4e06532da9 100644 --- a/advisories/unreviewed/2022/08/GHSA-4c36-rwf6-qrpp/GHSA-4c36-rwf6-qrpp.json +++ b/advisories/unreviewed/2022/08/GHSA-4c36-rwf6-qrpp/GHSA-4c36-rwf6-qrpp.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/08/GHSA-8p7w-cmwv-fhh6/GHSA-8p7w-cmwv-fhh6.json b/advisories/unreviewed/2022/08/GHSA-8p7w-cmwv-fhh6/GHSA-8p7w-cmwv-fhh6.json index e6e923d158b..f95c22884a6 100644 --- a/advisories/unreviewed/2022/08/GHSA-8p7w-cmwv-fhh6/GHSA-8p7w-cmwv-fhh6.json +++ b/advisories/unreviewed/2022/08/GHSA-8p7w-cmwv-fhh6/GHSA-8p7w-cmwv-fhh6.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-9hrv-56fv-3x46/GHSA-9hrv-56fv-3x46.json b/advisories/unreviewed/2022/08/GHSA-9hrv-56fv-3x46/GHSA-9hrv-56fv-3x46.json index a1378c3bb87..6b6cabbc029 100644 --- a/advisories/unreviewed/2022/08/GHSA-9hrv-56fv-3x46/GHSA-9hrv-56fv-3x46.json +++ b/advisories/unreviewed/2022/08/GHSA-9hrv-56fv-3x46/GHSA-9hrv-56fv-3x46.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", @@ -31,9 +29,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": "MODERATE", "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2022/08/GHSA-c9p4-gcvv-wv36/GHSA-c9p4-gcvv-wv36.json b/advisories/unreviewed/2022/08/GHSA-c9p4-gcvv-wv36/GHSA-c9p4-gcvv-wv36.json index be7ed6fd840..840c84d5285 100644 --- a/advisories/unreviewed/2022/08/GHSA-c9p4-gcvv-wv36/GHSA-c9p4-gcvv-wv36.json +++ b/advisories/unreviewed/2022/08/GHSA-c9p4-gcvv-wv36/GHSA-c9p4-gcvv-wv36.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-fr9x-3gv2-g88h/GHSA-fr9x-3gv2-g88h.json b/advisories/unreviewed/2022/08/GHSA-fr9x-3gv2-g88h/GHSA-fr9x-3gv2-g88h.json index 69d01336dcd..7704728af23 100644 --- a/advisories/unreviewed/2022/08/GHSA-fr9x-3gv2-g88h/GHSA-fr9x-3gv2-g88h.json +++ b/advisories/unreviewed/2022/08/GHSA-fr9x-3gv2-g88h/GHSA-fr9x-3gv2-g88h.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/08/GHSA-gfvw-9xh7-xvfr/GHSA-gfvw-9xh7-xvfr.json b/advisories/unreviewed/2022/08/GHSA-gfvw-9xh7-xvfr/GHSA-gfvw-9xh7-xvfr.json index 6d843465b96..fe4b349ac0d 100644 --- a/advisories/unreviewed/2022/08/GHSA-gfvw-9xh7-xvfr/GHSA-gfvw-9xh7-xvfr.json +++ b/advisories/unreviewed/2022/08/GHSA-gfvw-9xh7-xvfr/GHSA-gfvw-9xh7-xvfr.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-jr3c-5vfx-72q8/GHSA-jr3c-5vfx-72q8.json b/advisories/unreviewed/2022/08/GHSA-jr3c-5vfx-72q8/GHSA-jr3c-5vfx-72q8.json index dcd1b8ef2b4..df97ae4d7ff 100644 --- a/advisories/unreviewed/2022/08/GHSA-jr3c-5vfx-72q8/GHSA-jr3c-5vfx-72q8.json +++ b/advisories/unreviewed/2022/08/GHSA-jr3c-5vfx-72q8/GHSA-jr3c-5vfx-72q8.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-pcp3-7g28-42wg/GHSA-pcp3-7g28-42wg.json b/advisories/unreviewed/2022/08/GHSA-pcp3-7g28-42wg/GHSA-pcp3-7g28-42wg.json index 6081cd7c1e4..72fa5fc5f5e 100644 --- a/advisories/unreviewed/2022/08/GHSA-pcp3-7g28-42wg/GHSA-pcp3-7g28-42wg.json +++ b/advisories/unreviewed/2022/08/GHSA-pcp3-7g28-42wg/GHSA-pcp3-7g28-42wg.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-r56p-cpvv-hp2f/GHSA-r56p-cpvv-hp2f.json b/advisories/unreviewed/2022/08/GHSA-r56p-cpvv-hp2f/GHSA-r56p-cpvv-hp2f.json index 3219de73c4d..1dc24d5eb34 100644 --- a/advisories/unreviewed/2022/08/GHSA-r56p-cpvv-hp2f/GHSA-r56p-cpvv-hp2f.json +++ b/advisories/unreviewed/2022/08/GHSA-r56p-cpvv-hp2f/GHSA-r56p-cpvv-hp2f.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-vp2j-mcvq-w3mr/GHSA-vp2j-mcvq-w3mr.json b/advisories/unreviewed/2022/08/GHSA-vp2j-mcvq-w3mr/GHSA-vp2j-mcvq-w3mr.json index 725c49410cf..52bd81b6b89 100644 --- a/advisories/unreviewed/2022/08/GHSA-vp2j-mcvq-w3mr/GHSA-vp2j-mcvq-w3mr.json +++ b/advisories/unreviewed/2022/08/GHSA-vp2j-mcvq-w3mr/GHSA-vp2j-mcvq-w3mr.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-xgr7-3fmq-x97v/GHSA-xgr7-3fmq-x97v.json b/advisories/unreviewed/2022/08/GHSA-xgr7-3fmq-x97v/GHSA-xgr7-3fmq-x97v.json index ed0777dc12a..ab1fa37618e 100644 --- a/advisories/unreviewed/2022/08/GHSA-xgr7-3fmq-x97v/GHSA-xgr7-3fmq-x97v.json +++ b/advisories/unreviewed/2022/08/GHSA-xgr7-3fmq-x97v/GHSA-xgr7-3fmq-x97v.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-238v-qhq7-h88m/GHSA-238v-qhq7-h88m.json b/advisories/unreviewed/2022/09/GHSA-238v-qhq7-h88m/GHSA-238v-qhq7-h88m.json index 7696159cc0e..0fd52f54849 100644 --- a/advisories/unreviewed/2022/09/GHSA-238v-qhq7-h88m/GHSA-238v-qhq7-h88m.json +++ b/advisories/unreviewed/2022/09/GHSA-238v-qhq7-h88m/GHSA-238v-qhq7-h88m.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-7m77-x4j7-qjh8/GHSA-7m77-x4j7-qjh8.json b/advisories/unreviewed/2022/09/GHSA-7m77-x4j7-qjh8/GHSA-7m77-x4j7-qjh8.json index af46e93042a..17e95bc1522 100644 --- a/advisories/unreviewed/2022/09/GHSA-7m77-x4j7-qjh8/GHSA-7m77-x4j7-qjh8.json +++ b/advisories/unreviewed/2022/09/GHSA-7m77-x4j7-qjh8/GHSA-7m77-x4j7-qjh8.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/09/GHSA-fc2r-q5xw-m9fm/GHSA-fc2r-q5xw-m9fm.json b/advisories/unreviewed/2022/09/GHSA-fc2r-q5xw-m9fm/GHSA-fc2r-q5xw-m9fm.json index 42c4ca31001..80d7876c66c 100644 --- a/advisories/unreviewed/2022/09/GHSA-fc2r-q5xw-m9fm/GHSA-fc2r-q5xw-m9fm.json +++ b/advisories/unreviewed/2022/09/GHSA-fc2r-q5xw-m9fm/GHSA-fc2r-q5xw-m9fm.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/09/GHSA-gf6q-7pjq-pfq7/GHSA-gf6q-7pjq-pfq7.json b/advisories/unreviewed/2022/09/GHSA-gf6q-7pjq-pfq7/GHSA-gf6q-7pjq-pfq7.json index d9f51d7a22a..58c6f712eeb 100644 --- a/advisories/unreviewed/2022/09/GHSA-gf6q-7pjq-pfq7/GHSA-gf6q-7pjq-pfq7.json +++ b/advisories/unreviewed/2022/09/GHSA-gf6q-7pjq-pfq7/GHSA-gf6q-7pjq-pfq7.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/2024/04/GHSA-24vg-8cmx-c7xr/GHSA-24vg-8cmx-c7xr.json b/advisories/unreviewed/2024/04/GHSA-24vg-8cmx-c7xr/GHSA-24vg-8cmx-c7xr.json index 933dead59c9..c5daaab4244 100644 --- a/advisories/unreviewed/2024/04/GHSA-24vg-8cmx-c7xr/GHSA-24vg-8cmx-c7xr.json +++ b/advisories/unreviewed/2024/04/GHSA-24vg-8cmx-c7xr/GHSA-24vg-8cmx-c7xr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:L/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/2024/04/GHSA-264q-f23m-4cfj/GHSA-264q-f23m-4cfj.json b/advisories/unreviewed/2024/04/GHSA-264q-f23m-4cfj/GHSA-264q-f23m-4cfj.json index 10a7174b9d4..f4e1c5f3a93 100644 --- a/advisories/unreviewed/2024/04/GHSA-264q-f23m-4cfj/GHSA-264q-f23m-4cfj.json +++ b/advisories/unreviewed/2024/04/GHSA-264q-f23m-4cfj/GHSA-264q-f23m-4cfj.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/2024/04/GHSA-2qhj-48hf-mvhm/GHSA-2qhj-48hf-mvhm.json b/advisories/unreviewed/2024/04/GHSA-2qhj-48hf-mvhm/GHSA-2qhj-48hf-mvhm.json index 64fa58eccc8..3dc03dbc85a 100644 --- a/advisories/unreviewed/2024/04/GHSA-2qhj-48hf-mvhm/GHSA-2qhj-48hf-mvhm.json +++ b/advisories/unreviewed/2024/04/GHSA-2qhj-48hf-mvhm/GHSA-2qhj-48hf-mvhm.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/2024/04/GHSA-2rvv-pj46-cw4f/GHSA-2rvv-pj46-cw4f.json b/advisories/unreviewed/2024/04/GHSA-2rvv-pj46-cw4f/GHSA-2rvv-pj46-cw4f.json index 92b8a20775f..091e07567cc 100644 --- a/advisories/unreviewed/2024/04/GHSA-2rvv-pj46-cw4f/GHSA-2rvv-pj46-cw4f.json +++ b/advisories/unreviewed/2024/04/GHSA-2rvv-pj46-cw4f/GHSA-2rvv-pj46-cw4f.json @@ -7,12 +7,8 @@ "CVE-2024-31576" ], "details": "Rejected reason: DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: This candidate was withdrawn by its CNA. Further investigation showed that it was not a security issue. Notes: none.", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -20,9 +16,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": null, "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2024/04/GHSA-34mv-cg5q-cf3q/GHSA-34mv-cg5q-cf3q.json b/advisories/unreviewed/2024/04/GHSA-34mv-cg5q-cf3q/GHSA-34mv-cg5q-cf3q.json index 4abf0d68ccb..b8ecd401956 100644 --- a/advisories/unreviewed/2024/04/GHSA-34mv-cg5q-cf3q/GHSA-34mv-cg5q-cf3q.json +++ b/advisories/unreviewed/2024/04/GHSA-34mv-cg5q-cf3q/GHSA-34mv-cg5q-cf3q.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/2024/04/GHSA-3gx6-pfq2-pf53/GHSA-3gx6-pfq2-pf53.json b/advisories/unreviewed/2024/04/GHSA-3gx6-pfq2-pf53/GHSA-3gx6-pfq2-pf53.json index af75dc26389..784707f0e80 100644 --- a/advisories/unreviewed/2024/04/GHSA-3gx6-pfq2-pf53/GHSA-3gx6-pfq2-pf53.json +++ b/advisories/unreviewed/2024/04/GHSA-3gx6-pfq2-pf53/GHSA-3gx6-pfq2-pf53.json @@ -7,12 +7,8 @@ "CVE-2024-2739" ], "details": "The Advanced Search WordPress plugin through 1.1.6 does not have CSRF checks in some places, which could allow attackers to make logged in users perform unwanted actions via CSRF attacks", - "severity": [ - - ], - "affected": [ - - ], + "severity": [], + "affected": [], "references": [ { "type": "ADVISORY", @@ -24,9 +20,7 @@ } ], "database_specific": { - "cwe_ids": [ - - ], + "cwe_ids": [], "severity": null, "github_reviewed": false, "github_reviewed_at": null, diff --git a/advisories/unreviewed/2024/04/GHSA-3m77-j76g-6phr/GHSA-3m77-j76g-6phr.json b/advisories/unreviewed/2024/04/GHSA-3m77-j76g-6phr/GHSA-3m77-j76g-6phr.json index cdf7c2bc7c5..0e7773f1c06 100644 --- a/advisories/unreviewed/2024/04/GHSA-3m77-j76g-6phr/GHSA-3m77-j76g-6phr.json +++ b/advisories/unreviewed/2024/04/GHSA-3m77-j76g-6phr/GHSA-3m77-j76g-6phr.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-48q7-j5wr-pmw9/GHSA-48q7-j5wr-pmw9.json b/advisories/unreviewed/2024/04/GHSA-48q7-j5wr-pmw9/GHSA-48q7-j5wr-pmw9.json index 64d9df2aa67..461da73e291 100644 --- a/advisories/unreviewed/2024/04/GHSA-48q7-j5wr-pmw9/GHSA-48q7-j5wr-pmw9.json +++ b/advisories/unreviewed/2024/04/GHSA-48q7-j5wr-pmw9/GHSA-48q7-j5wr-pmw9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-4jg4-vxrf-wx9q/GHSA-4jg4-vxrf-wx9q.json b/advisories/unreviewed/2024/04/GHSA-4jg4-vxrf-wx9q/GHSA-4jg4-vxrf-wx9q.json index ce01e85c057..1e082e9dc7d 100644 --- a/advisories/unreviewed/2024/04/GHSA-4jg4-vxrf-wx9q/GHSA-4jg4-vxrf-wx9q.json +++ b/advisories/unreviewed/2024/04/GHSA-4jg4-vxrf-wx9q/GHSA-4jg4-vxrf-wx9q.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/2024/04/GHSA-4mwx-59fh-c222/GHSA-4mwx-59fh-c222.json b/advisories/unreviewed/2024/04/GHSA-4mwx-59fh-c222/GHSA-4mwx-59fh-c222.json index 3e81ad42401..a3fcb3cd9c7 100644 --- a/advisories/unreviewed/2024/04/GHSA-4mwx-59fh-c222/GHSA-4mwx-59fh-c222.json +++ b/advisories/unreviewed/2024/04/GHSA-4mwx-59fh-c222/GHSA-4mwx-59fh-c222.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/2024/04/GHSA-4x7q-prxg-7hxw/GHSA-4x7q-prxg-7hxw.json b/advisories/unreviewed/2024/04/GHSA-4x7q-prxg-7hxw/GHSA-4x7q-prxg-7hxw.json index a7c5d6412ae..5edf4cfd6a3 100644 --- a/advisories/unreviewed/2024/04/GHSA-4x7q-prxg-7hxw/GHSA-4x7q-prxg-7hxw.json +++ b/advisories/unreviewed/2024/04/GHSA-4x7q-prxg-7hxw/GHSA-4x7q-prxg-7hxw.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-56vq-f9pv-ppjp/GHSA-56vq-f9pv-ppjp.json b/advisories/unreviewed/2024/04/GHSA-56vq-f9pv-ppjp/GHSA-56vq-f9pv-ppjp.json index cb7e436a20c..abbdb0c1d55 100644 --- a/advisories/unreviewed/2024/04/GHSA-56vq-f9pv-ppjp/GHSA-56vq-f9pv-ppjp.json +++ b/advisories/unreviewed/2024/04/GHSA-56vq-f9pv-ppjp/GHSA-56vq-f9pv-ppjp.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/2024/04/GHSA-5q7f-7r7p-8g8m/GHSA-5q7f-7r7p-8g8m.json b/advisories/unreviewed/2024/04/GHSA-5q7f-7r7p-8g8m/GHSA-5q7f-7r7p-8g8m.json index ca72a055637..930dc202cde 100644 --- a/advisories/unreviewed/2024/04/GHSA-5q7f-7r7p-8g8m/GHSA-5q7f-7r7p-8g8m.json +++ b/advisories/unreviewed/2024/04/GHSA-5q7f-7r7p-8g8m/GHSA-5q7f-7r7p-8g8m.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/2024/04/GHSA-63vc-3rx9-frx5/GHSA-63vc-3rx9-frx5.json b/advisories/unreviewed/2024/04/GHSA-63vc-3rx9-frx5/GHSA-63vc-3rx9-frx5.json index 5139ac18622..9bd8d7eec15 100644 --- a/advisories/unreviewed/2024/04/GHSA-63vc-3rx9-frx5/GHSA-63vc-3rx9-frx5.json +++ b/advisories/unreviewed/2024/04/GHSA-63vc-3rx9-frx5/GHSA-63vc-3rx9-frx5.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-6fvv-69mq-fcfq/GHSA-6fvv-69mq-fcfq.json b/advisories/unreviewed/2024/04/GHSA-6fvv-69mq-fcfq/GHSA-6fvv-69mq-fcfq.json index 45457b80d78..e4f7009bbdc 100644 --- a/advisories/unreviewed/2024/04/GHSA-6fvv-69mq-fcfq/GHSA-6fvv-69mq-fcfq.json +++ b/advisories/unreviewed/2024/04/GHSA-6fvv-69mq-fcfq/GHSA-6fvv-69mq-fcfq.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/2024/04/GHSA-6wfg-6whf-2xj9/GHSA-6wfg-6whf-2xj9.json b/advisories/unreviewed/2024/04/GHSA-6wfg-6whf-2xj9/GHSA-6wfg-6whf-2xj9.json index ad391edee35..457c51a7298 100644 --- a/advisories/unreviewed/2024/04/GHSA-6wfg-6whf-2xj9/GHSA-6wfg-6whf-2xj9.json +++ b/advisories/unreviewed/2024/04/GHSA-6wfg-6whf-2xj9/GHSA-6wfg-6whf-2xj9.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/2024/04/GHSA-744g-wfhc-3v4q/GHSA-744g-wfhc-3v4q.json b/advisories/unreviewed/2024/04/GHSA-744g-wfhc-3v4q/GHSA-744g-wfhc-3v4q.json index fca90537398..21113795c2c 100644 --- a/advisories/unreviewed/2024/04/GHSA-744g-wfhc-3v4q/GHSA-744g-wfhc-3v4q.json +++ b/advisories/unreviewed/2024/04/GHSA-744g-wfhc-3v4q/GHSA-744g-wfhc-3v4q.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/04/GHSA-78f4-mrhm-jmvg/GHSA-78f4-mrhm-jmvg.json b/advisories/unreviewed/2024/04/GHSA-78f4-mrhm-jmvg/GHSA-78f4-mrhm-jmvg.json index aae0a9c9ede..c3d84c41bae 100644 --- a/advisories/unreviewed/2024/04/GHSA-78f4-mrhm-jmvg/GHSA-78f4-mrhm-jmvg.json +++ b/advisories/unreviewed/2024/04/GHSA-78f4-mrhm-jmvg/GHSA-78f4-mrhm-jmvg.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/2024/04/GHSA-7p4g-2jvw-v22q/GHSA-7p4g-2jvw-v22q.json b/advisories/unreviewed/2024/04/GHSA-7p4g-2jvw-v22q/GHSA-7p4g-2jvw-v22q.json index 8060596f762..1bef923be49 100644 --- a/advisories/unreviewed/2024/04/GHSA-7p4g-2jvw-v22q/GHSA-7p4g-2jvw-v22q.json +++ b/advisories/unreviewed/2024/04/GHSA-7p4g-2jvw-v22q/GHSA-7p4g-2jvw-v22q.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/2024/04/GHSA-8qv7-j2hc-229m/GHSA-8qv7-j2hc-229m.json b/advisories/unreviewed/2024/04/GHSA-8qv7-j2hc-229m/GHSA-8qv7-j2hc-229m.json index 44fb5c9dd8d..82646d65e3f 100644 --- a/advisories/unreviewed/2024/04/GHSA-8qv7-j2hc-229m/GHSA-8qv7-j2hc-229m.json +++ b/advisories/unreviewed/2024/04/GHSA-8qv7-j2hc-229m/GHSA-8qv7-j2hc-229m.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-8xw7-2r28-f569/GHSA-8xw7-2r28-f569.json b/advisories/unreviewed/2024/04/GHSA-8xw7-2r28-f569/GHSA-8xw7-2r28-f569.json index 00dc0167cbd..8afad510dce 100644 --- a/advisories/unreviewed/2024/04/GHSA-8xw7-2r28-f569/GHSA-8xw7-2r28-f569.json +++ b/advisories/unreviewed/2024/04/GHSA-8xw7-2r28-f569/GHSA-8xw7-2r28-f569.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-95x7-f98q-fqqq/GHSA-95x7-f98q-fqqq.json b/advisories/unreviewed/2024/04/GHSA-95x7-f98q-fqqq/GHSA-95x7-f98q-fqqq.json index b64322830d0..f5a7a55a271 100644 --- a/advisories/unreviewed/2024/04/GHSA-95x7-f98q-fqqq/GHSA-95x7-f98q-fqqq.json +++ b/advisories/unreviewed/2024/04/GHSA-95x7-f98q-fqqq/GHSA-95x7-f98q-fqqq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-96v9-59qq-96x9/GHSA-96v9-59qq-96x9.json b/advisories/unreviewed/2024/04/GHSA-96v9-59qq-96x9/GHSA-96v9-59qq-96x9.json index 7762b79ce99..1ee9fa0210d 100644 --- a/advisories/unreviewed/2024/04/GHSA-96v9-59qq-96x9/GHSA-96v9-59qq-96x9.json +++ b/advisories/unreviewed/2024/04/GHSA-96v9-59qq-96x9/GHSA-96v9-59qq-96x9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-9767-v9q2-46c6/GHSA-9767-v9q2-46c6.json b/advisories/unreviewed/2024/04/GHSA-9767-v9q2-46c6/GHSA-9767-v9q2-46c6.json index 3307263150c..de129737b95 100644 --- a/advisories/unreviewed/2024/04/GHSA-9767-v9q2-46c6/GHSA-9767-v9q2-46c6.json +++ b/advisories/unreviewed/2024/04/GHSA-9767-v9q2-46c6/GHSA-9767-v9q2-46c6.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/2024/04/GHSA-9vwm-6vm6-ffwv/GHSA-9vwm-6vm6-ffwv.json b/advisories/unreviewed/2024/04/GHSA-9vwm-6vm6-ffwv/GHSA-9vwm-6vm6-ffwv.json index 2e0756f1370..7581c3a3fed 100644 --- a/advisories/unreviewed/2024/04/GHSA-9vwm-6vm6-ffwv/GHSA-9vwm-6vm6-ffwv.json +++ b/advisories/unreviewed/2024/04/GHSA-9vwm-6vm6-ffwv/GHSA-9vwm-6vm6-ffwv.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:L/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/2024/04/GHSA-fjhr-fj38-3cpv/GHSA-fjhr-fj38-3cpv.json b/advisories/unreviewed/2024/04/GHSA-fjhr-fj38-3cpv/GHSA-fjhr-fj38-3cpv.json index 8271c2cd726..34f7ed7aa1f 100644 --- a/advisories/unreviewed/2024/04/GHSA-fjhr-fj38-3cpv/GHSA-fjhr-fj38-3cpv.json +++ b/advisories/unreviewed/2024/04/GHSA-fjhr-fj38-3cpv/GHSA-fjhr-fj38-3cpv.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/2024/04/GHSA-fvhp-g7rg-4vvm/GHSA-fvhp-g7rg-4vvm.json b/advisories/unreviewed/2024/04/GHSA-fvhp-g7rg-4vvm/GHSA-fvhp-g7rg-4vvm.json index bab926748a5..6292cf4408a 100644 --- a/advisories/unreviewed/2024/04/GHSA-fvhp-g7rg-4vvm/GHSA-fvhp-g7rg-4vvm.json +++ b/advisories/unreviewed/2024/04/GHSA-fvhp-g7rg-4vvm/GHSA-fvhp-g7rg-4vvm.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/04/GHSA-fw79-h545-vgr4/GHSA-fw79-h545-vgr4.json b/advisories/unreviewed/2024/04/GHSA-fw79-h545-vgr4/GHSA-fw79-h545-vgr4.json index 38f85a4628a..a04783146ca 100644 --- a/advisories/unreviewed/2024/04/GHSA-fw79-h545-vgr4/GHSA-fw79-h545-vgr4.json +++ b/advisories/unreviewed/2024/04/GHSA-fw79-h545-vgr4/GHSA-fw79-h545-vgr4.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/2024/04/GHSA-fw8v-vg4m-jvmm/GHSA-fw8v-vg4m-jvmm.json b/advisories/unreviewed/2024/04/GHSA-fw8v-vg4m-jvmm/GHSA-fw8v-vg4m-jvmm.json index d8d6635f3e3..de4f192cee0 100644 --- a/advisories/unreviewed/2024/04/GHSA-fw8v-vg4m-jvmm/GHSA-fw8v-vg4m-jvmm.json +++ b/advisories/unreviewed/2024/04/GHSA-fw8v-vg4m-jvmm/GHSA-fw8v-vg4m-jvmm.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/2024/04/GHSA-g2mr-jcjh-hmc7/GHSA-g2mr-jcjh-hmc7.json b/advisories/unreviewed/2024/04/GHSA-g2mr-jcjh-hmc7/GHSA-g2mr-jcjh-hmc7.json index 82373a1b9d0..05b01ff2aa9 100644 --- a/advisories/unreviewed/2024/04/GHSA-g2mr-jcjh-hmc7/GHSA-g2mr-jcjh-hmc7.json +++ b/advisories/unreviewed/2024/04/GHSA-g2mr-jcjh-hmc7/GHSA-g2mr-jcjh-hmc7.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-gfwx-97cp-vqxm/GHSA-gfwx-97cp-vqxm.json b/advisories/unreviewed/2024/04/GHSA-gfwx-97cp-vqxm/GHSA-gfwx-97cp-vqxm.json index 65bdcc3c5ef..ad60f4985c5 100644 --- a/advisories/unreviewed/2024/04/GHSA-gfwx-97cp-vqxm/GHSA-gfwx-97cp-vqxm.json +++ b/advisories/unreviewed/2024/04/GHSA-gfwx-97cp-vqxm/GHSA-gfwx-97cp-vqxm.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/2024/04/GHSA-h2wm-gg6w-wcx7/GHSA-h2wm-gg6w-wcx7.json b/advisories/unreviewed/2024/04/GHSA-h2wm-gg6w-wcx7/GHSA-h2wm-gg6w-wcx7.json index 3773c086345..5355842921b 100644 --- a/advisories/unreviewed/2024/04/GHSA-h2wm-gg6w-wcx7/GHSA-h2wm-gg6w-wcx7.json +++ b/advisories/unreviewed/2024/04/GHSA-h2wm-gg6w-wcx7/GHSA-h2wm-gg6w-wcx7.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/04/GHSA-h4mf-2q8r-28xx/GHSA-h4mf-2q8r-28xx.json b/advisories/unreviewed/2024/04/GHSA-h4mf-2q8r-28xx/GHSA-h4mf-2q8r-28xx.json index 76a5cd423fb..2392222492e 100644 --- a/advisories/unreviewed/2024/04/GHSA-h4mf-2q8r-28xx/GHSA-h4mf-2q8r-28xx.json +++ b/advisories/unreviewed/2024/04/GHSA-h4mf-2q8r-28xx/GHSA-h4mf-2q8r-28xx.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-h727-v4g2-pq85/GHSA-h727-v4g2-pq85.json b/advisories/unreviewed/2024/04/GHSA-h727-v4g2-pq85/GHSA-h727-v4g2-pq85.json index b4d3b3ce658..d1abfe0b16a 100644 --- a/advisories/unreviewed/2024/04/GHSA-h727-v4g2-pq85/GHSA-h727-v4g2-pq85.json +++ b/advisories/unreviewed/2024/04/GHSA-h727-v4g2-pq85/GHSA-h727-v4g2-pq85.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/2024/04/GHSA-hg9c-gvjm-p267/GHSA-hg9c-gvjm-p267.json b/advisories/unreviewed/2024/04/GHSA-hg9c-gvjm-p267/GHSA-hg9c-gvjm-p267.json index 08277e200a9..f7d349547dd 100644 --- a/advisories/unreviewed/2024/04/GHSA-hg9c-gvjm-p267/GHSA-hg9c-gvjm-p267.json +++ b/advisories/unreviewed/2024/04/GHSA-hg9c-gvjm-p267/GHSA-hg9c-gvjm-p267.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/2024/04/GHSA-j7mj-9hgx-cgcf/GHSA-j7mj-9hgx-cgcf.json b/advisories/unreviewed/2024/04/GHSA-j7mj-9hgx-cgcf/GHSA-j7mj-9hgx-cgcf.json index 3af68aff41f..66f720be15e 100644 --- a/advisories/unreviewed/2024/04/GHSA-j7mj-9hgx-cgcf/GHSA-j7mj-9hgx-cgcf.json +++ b/advisories/unreviewed/2024/04/GHSA-j7mj-9hgx-cgcf/GHSA-j7mj-9hgx-cgcf.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-j9q5-gh3m-3cf9/GHSA-j9q5-gh3m-3cf9.json b/advisories/unreviewed/2024/04/GHSA-j9q5-gh3m-3cf9/GHSA-j9q5-gh3m-3cf9.json index 92fabef8345..fe9d5f463d7 100644 --- a/advisories/unreviewed/2024/04/GHSA-j9q5-gh3m-3cf9/GHSA-j9q5-gh3m-3cf9.json +++ b/advisories/unreviewed/2024/04/GHSA-j9q5-gh3m-3cf9/GHSA-j9q5-gh3m-3cf9.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-jq5m-3v7c-39qm/GHSA-jq5m-3v7c-39qm.json b/advisories/unreviewed/2024/04/GHSA-jq5m-3v7c-39qm/GHSA-jq5m-3v7c-39qm.json index 111c9c69e4f..16a6c8f0f7f 100644 --- a/advisories/unreviewed/2024/04/GHSA-jq5m-3v7c-39qm/GHSA-jq5m-3v7c-39qm.json +++ b/advisories/unreviewed/2024/04/GHSA-jq5m-3v7c-39qm/GHSA-jq5m-3v7c-39qm.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-jv3v-w3r5-rrcc/GHSA-jv3v-w3r5-rrcc.json b/advisories/unreviewed/2024/04/GHSA-jv3v-w3r5-rrcc/GHSA-jv3v-w3r5-rrcc.json index 9857a1e499a..af7ff8bb36d 100644 --- a/advisories/unreviewed/2024/04/GHSA-jv3v-w3r5-rrcc/GHSA-jv3v-w3r5-rrcc.json +++ b/advisories/unreviewed/2024/04/GHSA-jv3v-w3r5-rrcc/GHSA-jv3v-w3r5-rrcc.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/2024/04/GHSA-mc2c-3rcw-gxqm/GHSA-mc2c-3rcw-gxqm.json b/advisories/unreviewed/2024/04/GHSA-mc2c-3rcw-gxqm/GHSA-mc2c-3rcw-gxqm.json index feaed552179..a8a65e22e15 100644 --- a/advisories/unreviewed/2024/04/GHSA-mc2c-3rcw-gxqm/GHSA-mc2c-3rcw-gxqm.json +++ b/advisories/unreviewed/2024/04/GHSA-mc2c-3rcw-gxqm/GHSA-mc2c-3rcw-gxqm.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/2024/04/GHSA-mj7m-rpfc-pwp6/GHSA-mj7m-rpfc-pwp6.json b/advisories/unreviewed/2024/04/GHSA-mj7m-rpfc-pwp6/GHSA-mj7m-rpfc-pwp6.json index 2c15b5e12aa..56e8065edc0 100644 --- a/advisories/unreviewed/2024/04/GHSA-mj7m-rpfc-pwp6/GHSA-mj7m-rpfc-pwp6.json +++ b/advisories/unreviewed/2024/04/GHSA-mj7m-rpfc-pwp6/GHSA-mj7m-rpfc-pwp6.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/2024/04/GHSA-mj9m-9mc5-vfxg/GHSA-mj9m-9mc5-vfxg.json b/advisories/unreviewed/2024/04/GHSA-mj9m-9mc5-vfxg/GHSA-mj9m-9mc5-vfxg.json index d15fa454945..62b1c1f551b 100644 --- a/advisories/unreviewed/2024/04/GHSA-mj9m-9mc5-vfxg/GHSA-mj9m-9mc5-vfxg.json +++ b/advisories/unreviewed/2024/04/GHSA-mj9m-9mc5-vfxg/GHSA-mj9m-9mc5-vfxg.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/2024/04/GHSA-mjg4-p237-8j88/GHSA-mjg4-p237-8j88.json b/advisories/unreviewed/2024/04/GHSA-mjg4-p237-8j88/GHSA-mjg4-p237-8j88.json index a72388f51cb..4cd5ca30f30 100644 --- a/advisories/unreviewed/2024/04/GHSA-mjg4-p237-8j88/GHSA-mjg4-p237-8j88.json +++ b/advisories/unreviewed/2024/04/GHSA-mjg4-p237-8j88/GHSA-mjg4-p237-8j88.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-p24q-fvgc-fm3f/GHSA-p24q-fvgc-fm3f.json b/advisories/unreviewed/2024/04/GHSA-p24q-fvgc-fm3f/GHSA-p24q-fvgc-fm3f.json index e995e7efd11..46cab299205 100644 --- a/advisories/unreviewed/2024/04/GHSA-p24q-fvgc-fm3f/GHSA-p24q-fvgc-fm3f.json +++ b/advisories/unreviewed/2024/04/GHSA-p24q-fvgc-fm3f/GHSA-p24q-fvgc-fm3f.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/2024/04/GHSA-p4v4-7727-65mx/GHSA-p4v4-7727-65mx.json b/advisories/unreviewed/2024/04/GHSA-p4v4-7727-65mx/GHSA-p4v4-7727-65mx.json index 9ac0d273e0c..9dfa98be955 100644 --- a/advisories/unreviewed/2024/04/GHSA-p4v4-7727-65mx/GHSA-p4v4-7727-65mx.json +++ b/advisories/unreviewed/2024/04/GHSA-p4v4-7727-65mx/GHSA-p4v4-7727-65mx.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/2024/04/GHSA-p4vq-xcmp-gvqq/GHSA-p4vq-xcmp-gvqq.json b/advisories/unreviewed/2024/04/GHSA-p4vq-xcmp-gvqq/GHSA-p4vq-xcmp-gvqq.json index 6027cf6825a..fe60519f004 100644 --- a/advisories/unreviewed/2024/04/GHSA-p4vq-xcmp-gvqq/GHSA-p4vq-xcmp-gvqq.json +++ b/advisories/unreviewed/2024/04/GHSA-p4vq-xcmp-gvqq/GHSA-p4vq-xcmp-gvqq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-p844-j7rx-qqm7/GHSA-p844-j7rx-qqm7.json b/advisories/unreviewed/2024/04/GHSA-p844-j7rx-qqm7/GHSA-p844-j7rx-qqm7.json index 878bc0e18b5..62bdd97df5d 100644 --- a/advisories/unreviewed/2024/04/GHSA-p844-j7rx-qqm7/GHSA-p844-j7rx-qqm7.json +++ b/advisories/unreviewed/2024/04/GHSA-p844-j7rx-qqm7/GHSA-p844-j7rx-qqm7.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/2024/04/GHSA-pcf5-pv9f-hrqm/GHSA-pcf5-pv9f-hrqm.json b/advisories/unreviewed/2024/04/GHSA-pcf5-pv9f-hrqm/GHSA-pcf5-pv9f-hrqm.json index 9e62476625e..e1f47a20e89 100644 --- a/advisories/unreviewed/2024/04/GHSA-pcf5-pv9f-hrqm/GHSA-pcf5-pv9f-hrqm.json +++ b/advisories/unreviewed/2024/04/GHSA-pcf5-pv9f-hrqm/GHSA-pcf5-pv9f-hrqm.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-q2h7-3vwj-43v6/GHSA-q2h7-3vwj-43v6.json b/advisories/unreviewed/2024/04/GHSA-q2h7-3vwj-43v6/GHSA-q2h7-3vwj-43v6.json index de14058fcb6..4d5bd28082b 100644 --- a/advisories/unreviewed/2024/04/GHSA-q2h7-3vwj-43v6/GHSA-q2h7-3vwj-43v6.json +++ b/advisories/unreviewed/2024/04/GHSA-q2h7-3vwj-43v6/GHSA-q2h7-3vwj-43v6.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-q3g8-5vqc-pvwp/GHSA-q3g8-5vqc-pvwp.json b/advisories/unreviewed/2024/04/GHSA-q3g8-5vqc-pvwp/GHSA-q3g8-5vqc-pvwp.json index 3d750c07bc1..1902697edf0 100644 --- a/advisories/unreviewed/2024/04/GHSA-q3g8-5vqc-pvwp/GHSA-q3g8-5vqc-pvwp.json +++ b/advisories/unreviewed/2024/04/GHSA-q3g8-5vqc-pvwp/GHSA-q3g8-5vqc-pvwp.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-r5x3-96cj-22fq/GHSA-r5x3-96cj-22fq.json b/advisories/unreviewed/2024/04/GHSA-r5x3-96cj-22fq/GHSA-r5x3-96cj-22fq.json index 560e9396bbe..2e17233071f 100644 --- a/advisories/unreviewed/2024/04/GHSA-r5x3-96cj-22fq/GHSA-r5x3-96cj-22fq.json +++ b/advisories/unreviewed/2024/04/GHSA-r5x3-96cj-22fq/GHSA-r5x3-96cj-22fq.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-r9gq-h86f-vj2g/GHSA-r9gq-h86f-vj2g.json b/advisories/unreviewed/2024/04/GHSA-r9gq-h86f-vj2g/GHSA-r9gq-h86f-vj2g.json index e939aafbab4..0a11984661f 100644 --- a/advisories/unreviewed/2024/04/GHSA-r9gq-h86f-vj2g/GHSA-r9gq-h86f-vj2g.json +++ b/advisories/unreviewed/2024/04/GHSA-r9gq-h86f-vj2g/GHSA-r9gq-h86f-vj2g.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/2024/04/GHSA-rqpr-4fhr-fpc2/GHSA-rqpr-4fhr-fpc2.json b/advisories/unreviewed/2024/04/GHSA-rqpr-4fhr-fpc2/GHSA-rqpr-4fhr-fpc2.json index 51d300abc75..196ba27c192 100644 --- a/advisories/unreviewed/2024/04/GHSA-rqpr-4fhr-fpc2/GHSA-rqpr-4fhr-fpc2.json +++ b/advisories/unreviewed/2024/04/GHSA-rqpr-4fhr-fpc2/GHSA-rqpr-4fhr-fpc2.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/2024/04/GHSA-v6x9-589r-m39r/GHSA-v6x9-589r-m39r.json b/advisories/unreviewed/2024/04/GHSA-v6x9-589r-m39r/GHSA-v6x9-589r-m39r.json index 405eb032a91..440f0be4ace 100644 --- a/advisories/unreviewed/2024/04/GHSA-v6x9-589r-m39r/GHSA-v6x9-589r-m39r.json +++ b/advisories/unreviewed/2024/04/GHSA-v6x9-589r-m39r/GHSA-v6x9-589r-m39r.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/2024/04/GHSA-v84m-cf86-322v/GHSA-v84m-cf86-322v.json b/advisories/unreviewed/2024/04/GHSA-v84m-cf86-322v/GHSA-v84m-cf86-322v.json index 5e275779a89..6be7fb1fb33 100644 --- a/advisories/unreviewed/2024/04/GHSA-v84m-cf86-322v/GHSA-v84m-cf86-322v.json +++ b/advisories/unreviewed/2024/04/GHSA-v84m-cf86-322v/GHSA-v84m-cf86-322v.json @@ -13,9 +13,7 @@ "score": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY", diff --git a/advisories/unreviewed/2024/04/GHSA-vc8m-vjwh-382j/GHSA-vc8m-vjwh-382j.json b/advisories/unreviewed/2024/04/GHSA-vc8m-vjwh-382j/GHSA-vc8m-vjwh-382j.json index e47b6f471f0..6f1f00340b5 100644 --- a/advisories/unreviewed/2024/04/GHSA-vc8m-vjwh-382j/GHSA-vc8m-vjwh-382j.json +++ b/advisories/unreviewed/2024/04/GHSA-vc8m-vjwh-382j/GHSA-vc8m-vjwh-382j.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/2024/04/GHSA-whm2-f248-cc6r/GHSA-whm2-f248-cc6r.json b/advisories/unreviewed/2024/04/GHSA-whm2-f248-cc6r/GHSA-whm2-f248-cc6r.json index d4721653f7a..b221f088cc3 100644 --- a/advisories/unreviewed/2024/04/GHSA-whm2-f248-cc6r/GHSA-whm2-f248-cc6r.json +++ b/advisories/unreviewed/2024/04/GHSA-whm2-f248-cc6r/GHSA-whm2-f248-cc6r.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/2024/04/GHSA-xrm4-23hc-gwj2/GHSA-xrm4-23hc-gwj2.json b/advisories/unreviewed/2024/04/GHSA-xrm4-23hc-gwj2/GHSA-xrm4-23hc-gwj2.json index 178c66e1b2e..5f424c72754 100644 --- a/advisories/unreviewed/2024/04/GHSA-xrm4-23hc-gwj2/GHSA-xrm4-23hc-gwj2.json +++ b/advisories/unreviewed/2024/04/GHSA-xrm4-23hc-gwj2/GHSA-xrm4-23hc-gwj2.json @@ -13,9 +13,7 @@ "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N" } ], - "affected": [ - - ], + "affected": [], "references": [ { "type": "ADVISORY",