From fa23bdfe7459d7280e4bd6bc456ad448061e415d Mon Sep 17 00:00:00 2001 From: "github.actions" Date: Thu, 9 Nov 2023 08:04:47 +0000 Subject: [PATCH] Latest data: Thu Nov 9 08:04:47 UTC 2023 --- audits/awscli-requirements.audit.json | 4 +- audits/buku-requirements.audit.json | 5 +- audits/fdroidserver-requirements.audit.json | 1127 ----------------- audits/linode-cli-requirements.audit.json | 406 ------ audits/psutils-requirements.audit.json | 4 +- audits/recon-ng-requirements.audit.json | 5 +- requirements/ansible-requirements.txt | 2 +- requirements/awscli-requirements.txt | 2 +- requirements/awscli@1-requirements.txt | 2 +- requirements/black-requirements.txt | 2 +- requirements/dotdrop-requirements.txt | 4 +- requirements/fdroidserver-requirements.txt | 22 +- requirements/graph-tool-requirements.txt | 2 - requirements/huggingface-cli-requirements.txt | 6 +- requirements/linode-cli-requirements.txt | 4 +- requirements/molecule-requirements.txt | 4 +- requirements/nbdime-requirements.txt | 6 +- requirements/ocrmypdf-requirements.txt | 4 +- requirements/yamllint-requirements.txt | 2 +- 19 files changed, 40 insertions(+), 1573 deletions(-) delete mode 100644 audits/fdroidserver-requirements.audit.json delete mode 100644 audits/linode-cli-requirements.audit.json diff --git a/audits/awscli-requirements.audit.json b/audits/awscli-requirements.audit.json index afbc0463..485c0c7e 100644 --- a/audits/awscli-requirements.audit.json +++ b/audits/awscli-requirements.audit.json @@ -8,7 +8,7 @@ }, "vulnerabilities": [ { - "modified": "2023-08-24T22:16:11Z", + "modified": "2023-11-09T05:40:01Z", "published": "2023-07-14T21:31:08Z", "schema_version": "1.6.0", "id": "GHSA-cf7p-gm2m-833m", @@ -107,7 +107,7 @@ ], "github_reviewed": true, "github_reviewed_at": "2023-07-14T22:14:26Z", - "nvd_published_at": null, + "nvd_published_at": "2023-07-14T20:15:09Z", "severity": "HIGH" } }, diff --git a/audits/buku-requirements.audit.json b/audits/buku-requirements.audit.json index cd72a058..3be1470c 100644 --- a/audits/buku-requirements.audit.json +++ b/audits/buku-requirements.audit.json @@ -967,7 +967,7 @@ } }, { - "modified": "2023-11-01T18:30:03Z", + "modified": "2023-11-08T18:38:34Z", "published": "2023-10-25T18:17:00Z", "schema_version": "1.6.0", "id": "PYSEC-2023-221", @@ -1098,7 +1098,8 @@ "2.3.5", "2.3.6", "2.3.7", - "3.0.0" + "3.0.0", + "2.3.8" ], "database_specific": { "source": "https://github.com/pypa/advisory-database/blob/main/vulns/werkzeug/PYSEC-2023-221.yaml" diff --git a/audits/fdroidserver-requirements.audit.json b/audits/fdroidserver-requirements.audit.json deleted file mode 100644 index 7ea4c97a..00000000 --- a/audits/fdroidserver-requirements.audit.json +++ /dev/null @@ -1,1127 +0,0 @@ -[ - { - "package": { - "name": "gitpython", - "version": "3.1.34", - "ecosystem": "PyPI", - "commit": "" - }, - "vulnerabilities": [ - { - "modified": "2023-11-05T05:24:11Z", - "published": "2023-08-30T20:09:36Z", - "schema_version": "1.6.0", - "id": "GHSA-cwvm-v4w8-q58c", - "aliases": [ - "CVE-2023-41040" - ], - "summary": "Blind local file inclusion", - "details": "### Summary\n\nIn order to resolve some git references, GitPython reads files from the `.git` directory, in some places the name of the file being read is provided by the user, GitPython doesn't check if this file is located outside the `.git` directory. This allows an attacker to make GitPython read any file from the system.\n\n### Details\n\nThis vulnerability is present in\n\nhttps://github.com/gitpython-developers/GitPython/blob/1c8310d7cae144f74a671cbe17e51f63a830adbf/git/refs/symbolic.py#L174-L175\n\nThat code joins the base directory with a user given string without checking if the final path is located outside the base directory.\n\nI was able to exploit it from three places, but there may be more code paths that lead to it:\n\nhttps://github.com/gitpython-developers/GitPython/blob/1c8310d7cae144f74a671cbe17e51f63a830adbf/git/repo/base.py#L605\n\nhttps://github.com/gitpython-developers/GitPython/blob/1c8310d7cae144f74a671cbe17e51f63a830adbf/git/repo/base.py#L620\n\nhttps://github.com/gitpython-developers/GitPython/blob/1c8310d7cae144f74a671cbe17e51f63a830adbf/git/index/base.py#L1353\n\n### PoC\n\nRunning GitPython within any repo should work, here is an example with the GitPython repo.\n\n```python\nimport git\n\nr = git.Repo(\".\")\n\n# This will make GitPython read the README.md file from the root of the repo\nr.commit(\"../README.md\")\nr.tree(\"../README.md\")\nr.index.diff(\"../README.md\")\n\n# Reading /etc/random\n# WARNING: this will probably halt your system, run with caution\n# r.commit(\"../../../../../../../../../dev/random\")\n```\n\n### Impact\n\nI wasn't able to show the contents of the files (that's why \"blind\" local file inclusion), depending on how GitPython is being used, this can be used by an attacker for something _inoffensive_ as checking if a file exits, or cause a DoS by making GitPython read a big/infinite file (like `/dev/random` on Linux systems).\n\n### Possible solutions\n\nA solution would be to check that the final path isn't located outside the `repodir` path (maybe even after resolving symlinks). Maybe there could be other checks in place to make sure that the reference names are valid.\n\n---\n\n> [!NOTE]\n> This vulnerability was reported via email, and it was decided to publish it here and make it public, so the community is aware of it, and a fix can be provided.", - "affected": [ - { - "package": { - "ecosystem": "PyPI", - "name": "gitpython", - "purl": "pkg:pypi/gitpython" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "3.1.37" - } - ] - } - ], - "versions": [ - "0.1.7", - "0.2.0-beta1", - "0.3.0-beta1", - "0.3.0-beta2", - "0.3.1-beta2", - "0.3.2", - "0.3.2.1", - "0.3.2.RC1", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.9.dev0", - "2.0.9.dev1", - "2.1.0", - "2.1.1", - "2.1.10", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.14", - "2.1.15", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.1.0", - "3.1.1", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.1.16", - "3.1.17", - "3.1.18", - "3.1.19", - "3.1.2", - "3.1.20", - "3.1.22", - "3.1.23", - "3.1.24", - "3.1.25", - "3.1.26", - "3.1.27", - "3.1.28", - "3.1.29", - "3.1.3", - "3.1.30", - "3.1.31", - "3.1.32", - "3.1.33", - "3.1.34", - "3.1.35", - "3.1.36", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9" - ], - "database_specific": { - "last_known_affected_version_range": "<= 3.1.36", - "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/08/GHSA-cwvm-v4w8-q58c/GHSA-cwvm-v4w8-q58c.json" - } - } - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L" - } - ], - "references": [ - { - "type": "WEB", - "url": "https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-cwvm-v4w8-q58c" - }, - { - "type": "ADVISORY", - "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-41040" - }, - { - "type": "WEB", - "url": "https://github.com/gitpython-developers/GitPython/pull/1672" - }, - { - "type": "WEB", - "url": "https://github.com/gitpython-developers/GitPython/commit/74e55ee4544867e1bd976b7df5a45869ee397b0b" - }, - { - "type": "PACKAGE", - "url": "https://github.com/gitpython-developers/GitPython" - }, - { - "type": "WEB", - "url": "https://github.com/gitpython-developers/GitPython/blob/1c8310d7cae144f74a671cbe17e51f63a830adbf/git/refs/symbolic.py#L174-L175" - }, - { - "type": "WEB", - "url": "https://github.com/gitpython-developers/GitPython/releases/tag/3.1.37" - }, - { - "type": "WEB", - "url": "https://github.com/pypa/advisory-database/tree/main/vulns/gitpython/PYSEC-2023-165.yaml" - }, - { - "type": "WEB", - "url": "https://lists.debian.org/debian-lts-announce/2023/09/msg00036.html" - } - ], - "database_specific": { - "cwe_ids": [ - "CWE-22" - ], - "github_reviewed": true, - "github_reviewed_at": "2023-08-30T20:09:36Z", - "nvd_published_at": "2023-08-30T22:15:09Z", - "severity": "MODERATE" - } - }, - { - "modified": "2023-09-07T14:33:25Z", - "published": "2023-08-30T22:15:00Z", - "schema_version": "1.6.0", - "id": "PYSEC-2023-165", - "aliases": [ - "CVE-2023-41040", - "GHSA-cwvm-v4w8-q58c" - ], - "details": " GitPython is a python library used to interact with Git repositories. In order to resolve some git references, GitPython reads files from the `.git` directory, in some places the name of the file being read is provided by the user, GitPython doesn't check if this file is located outside the `.git` directory. This allows an attacker to make GitPython read any file from the system. This vulnerability is present in https://github.com/gitpython-developers/GitPython/blob/1c8310d7cae144f74a671cbe17e51f63a830adbf/git/refs/symbolic.py#L174-L175. That code joins the base directory with a user given string without checking if the final path is located outside the base directory. This vulnerability cannot be used to read the contents of files but could in theory be used to trigger a denial of service for the program. This issue has not yet been addressed.", - "affected": [ - { - "package": { - "ecosystem": "PyPI", - "name": "gitpython", - "purl": "pkg:pypi/gitpython" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "3.1.35" - } - ] - } - ], - "versions": [ - "0.1.7", - "0.2.0-beta1", - "0.3.0-beta1", - "0.3.0-beta2", - "0.3.1-beta2", - "0.3.2", - "0.3.2.1", - "0.3.2.RC1", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.9.dev0", - "2.0.9.dev1", - "2.1.0", - "2.1.1", - "2.1.10", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.14", - "2.1.15", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.1.0", - "3.1.1", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.1.16", - "3.1.17", - "3.1.18", - "3.1.19", - "3.1.2", - "3.1.20", - "3.1.22", - "3.1.23", - "3.1.24", - "3.1.25", - "3.1.26", - "3.1.27", - "3.1.28", - "3.1.29", - "3.1.3", - "3.1.30", - "3.1.31", - "3.1.32", - "3.1.33", - "3.1.34", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9" - ], - "database_specific": { - "source": "https://github.com/pypa/advisory-database/blob/main/vulns/gitpython/PYSEC-2023-165.yaml" - } - } - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:L" - } - ], - "references": [ - { - "type": "ADVISORY", - "url": "https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-cwvm-v4w8-q58c" - }, - { - "type": "WEB", - "url": "https://github.com/gitpython-developers/GitPython/blob/1c8310d7cae144f74a671cbe17e51f63a830adbf/git/refs/symbolic.py#L174-L175" - } - ] - } - ], - "groups": [ - { - "ids": [ - "GHSA-cwvm-v4w8-q58c", - "PYSEC-2023-165" - ] - } - ] - }, - { - "package": { - "name": "urllib3", - "version": "2.0.4", - "ecosystem": "PyPI", - "commit": "" - }, - "vulnerabilities": [ - { - "modified": "2023-11-06T16:43:34Z", - "published": "2023-10-17T20:15:25Z", - "schema_version": "1.6.0", - "id": "GHSA-g4mx-q9vg-27p4", - "aliases": [ - "CVE-2023-45803" - ], - "summary": "urllib3's request body not stripped after redirect from 303 status changes request method to GET", - "details": "urllib3 previously wouldn't remove the HTTP request body when an HTTP redirect response using status 303 \"See Other\" after the request had its method changed from one that could accept a request body (like `POST`) to `GET` as is required by HTTP RFCs. Although the behavior of removing the request body is not specified in the section for redirects, it can be inferred by piecing together information from different sections and we have observed the behavior in other major HTTP client implementations like curl and web browsers.\n\nFrom [RFC 9110 Section 9.3.1](https://www.rfc-editor.org/rfc/rfc9110.html#name-get):\n\n> A client SHOULD NOT generate content in a GET request unless it is made directly to an origin server that has previously indicated, in or out of band, that such a request has a purpose and will be adequately supported.\n\n## Affected usages\n\nBecause the vulnerability requires a previously trusted service to become compromised in order to have an impact on confidentiality we believe the exploitability of this vulnerability is low. Additionally, many users aren't putting sensitive data in HTTP request bodies, if this is the case then this vulnerability isn't exploitable.\n\nBoth of the following conditions must be true to be affected by this vulnerability:\n\n* If you're using urllib3 and submitting sensitive information in the HTTP request body (such as form data or JSON)\n* The origin service is compromised and starts redirecting using 303 to a malicious peer or the redirected-to service becomes compromised.\n\n## Remediation\n\nYou can remediate this vulnerability with any of the following steps:\n\n* Upgrade to a patched version of urllib3 (v1.26.18 or v2.0.7)\n* Disable redirects for services that you aren't expecting to respond with redirects with `redirects=False`.\n* Disable automatic redirects with `redirects=False` and handle 303 redirects manually by stripping the HTTP request body.\n", - "affected": [ - { - "package": { - "ecosystem": "PyPI", - "name": "urllib3", - "purl": "pkg:pypi/urllib3" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "2.0.0" - }, - { - "fixed": "2.0.7" - } - ] - } - ], - "versions": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "database_specific": { - "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/10/GHSA-g4mx-q9vg-27p4/GHSA-g4mx-q9vg-27p4.json" - } - }, - { - "package": { - "ecosystem": "PyPI", - "name": "urllib3", - "purl": "pkg:pypi/urllib3" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "1.26.18" - } - ] - } - ], - "versions": [ - "0.2", - "0.3", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0", - "1.0.1", - "1.0.2", - "1.1", - "1.10", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.11", - "1.12", - "1.13", - "1.13.1", - "1.14", - "1.15", - "1.15.1", - "1.16", - "1.17", - "1.18", - "1.18.1", - "1.19", - "1.19.1", - "1.2", - "1.2.1", - "1.2.2", - "1.20", - "1.21", - "1.21.1", - "1.22", - "1.23", - "1.24", - "1.24.1", - "1.24.2", - "1.24.3", - "1.25", - "1.25.1", - "1.25.10", - "1.25.11", - "1.25.2", - "1.25.3", - "1.25.4", - "1.25.5", - "1.25.6", - "1.25.7", - "1.25.8", - "1.25.9", - "1.26.0", - "1.26.1", - "1.26.10", - "1.26.11", - "1.26.12", - "1.26.13", - "1.26.14", - "1.26.15", - "1.26.16", - "1.26.17", - "1.26.2", - "1.26.3", - "1.26.4", - "1.26.5", - "1.26.6", - "1.26.7", - "1.26.8", - "1.26.9", - "1.3", - "1.4", - "1.5", - "1.6", - "1.7", - "1.7.1", - "1.8", - "1.8.2", - "1.8.3", - "1.9", - "1.9.1" - ], - "database_specific": { - "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/10/GHSA-g4mx-q9vg-27p4/GHSA-g4mx-q9vg-27p4.json" - } - } - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:A/AC:H/PR:H/UI:N/S:U/C:H/I:N/A:N" - } - ], - "references": [ - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-g4mx-q9vg-27p4" - }, - { - "type": "ADVISORY", - "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-45803" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/commit/4e50fbc5db74e32cabd5ccc1ab81fc103adfe0b3" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/commit/4e98d57809dacab1cbe625fddeec1a290c478ea9" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/commit/b594c5ceaca38e1ac215f916538fb128e3526a36" - }, - { - "type": "WEB", - "url": "https://github.com/pypa/advisory-database/tree/main/vulns/urllib3/PYSEC-2023-212.yaml" - }, - { - "type": "PACKAGE", - "url": "https://github.com/urllib3/urllib3" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/releases/tag/1.26.18" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/releases/tag/2.0.7" - }, - { - "type": "WEB", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4R2Y5XK3WALSR3FNAGN7JBYV2B343ZKB/" - }, - { - "type": "WEB", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5F5CUBAN5XMEBVBZPHFITBLMJV5FIJJ5/" - }, - { - "type": "WEB", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PPDPLM6UUMN55ESPQWJFLLIZY4ZKCNRX/" - }, - { - "type": "WEB", - "url": "https://www.rfc-editor.org/rfc/rfc9110.html#name-get" - } - ], - "database_specific": { - "cwe_ids": [ - "CWE-200" - ], - "github_reviewed": true, - "github_reviewed_at": "2023-10-17T20:15:25Z", - "nvd_published_at": "2023-10-17T20:15:10Z", - "severity": "MODERATE" - } - }, - { - "modified": "2023-11-04T00:48:52Z", - "published": "2023-10-02T23:27:05Z", - "schema_version": "1.6.0", - "id": "GHSA-v845-jxx5-vc9f", - "aliases": [ - "CVE-2023-43804" - ], - "summary": "`Cookie` HTTP header isn't stripped on cross-origin redirects", - "details": "urllib3 doesn't treat the `Cookie` HTTP header special or provide any helpers for managing cookies over HTTP, that is the responsibility of the user. However, it is possible for a user to specify a `Cookie` header and unknowingly leak information via HTTP redirects to a different origin if that user doesn't disable redirects explicitly.\n\nUsers **must** handle redirects themselves instead of relying on urllib3's automatic redirects to achieve safe processing of the `Cookie` header, thus we decided to strip the header by default in order to further protect users who aren't using the correct approach.\n\n## Affected usages\n\nWe believe the number of usages affected by this advisory is low. It requires all of the following to be true to be exploited:\n\n* Using an affected version of urllib3 (patched in v1.26.17 and v2.0.6)\n* Using the `Cookie` header on requests, which is mostly typical for impersonating a browser.\n* Not disabling HTTP redirects\n* Either not using HTTPS or for the origin server to redirect to a malicious origin.\n\n## Remediation\n\n* Upgrading to at least urllib3 v1.26.17 or v2.0.6\n* Disabling HTTP redirects using `redirects=False` when sending requests.\n* Not using the `Cookie` header.", - "affected": [ - { - "package": { - "ecosystem": "PyPI", - "name": "urllib3", - "purl": "pkg:pypi/urllib3" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "2.0.0" - }, - { - "fixed": "2.0.6" - } - ] - } - ], - "versions": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "database_specific": { - "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/10/GHSA-v845-jxx5-vc9f/GHSA-v845-jxx5-vc9f.json" - } - }, - { - "package": { - "ecosystem": "PyPI", - "name": "urllib3", - "purl": "pkg:pypi/urllib3" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "1.26.17" - } - ] - } - ], - "versions": [ - "0.2", - "0.3", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0", - "1.0.1", - "1.0.2", - "1.1", - "1.10", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.11", - "1.12", - "1.13", - "1.13.1", - "1.14", - "1.15", - "1.15.1", - "1.16", - "1.17", - "1.18", - "1.18.1", - "1.19", - "1.19.1", - "1.2", - "1.2.1", - "1.2.2", - "1.20", - "1.21", - "1.21.1", - "1.22", - "1.23", - "1.24", - "1.24.1", - "1.24.2", - "1.24.3", - "1.25", - "1.25.1", - "1.25.10", - "1.25.11", - "1.25.2", - "1.25.3", - "1.25.4", - "1.25.5", - "1.25.6", - "1.25.7", - "1.25.8", - "1.25.9", - "1.26.0", - "1.26.1", - "1.26.10", - "1.26.11", - "1.26.12", - "1.26.13", - "1.26.14", - "1.26.15", - "1.26.16", - "1.26.2", - "1.26.3", - "1.26.4", - "1.26.5", - "1.26.6", - "1.26.7", - "1.26.8", - "1.26.9", - "1.3", - "1.4", - "1.5", - "1.6", - "1.7", - "1.7.1", - "1.8", - "1.8.2", - "1.8.3", - "1.9", - "1.9.1" - ], - "database_specific": { - "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/10/GHSA-v845-jxx5-vc9f/GHSA-v845-jxx5-vc9f.json" - } - } - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:N" - } - ], - "references": [ - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-v845-jxx5-vc9f" - }, - { - "type": "ADVISORY", - "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-43804" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/commit/01220354d389cd05474713f8c982d05c9b17aafb" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/commit/644124ecd0b6e417c527191f866daa05a5a2056d" - }, - { - "type": "WEB", - "url": "https://github.com/pypa/advisory-database/tree/main/vulns/urllib3/PYSEC-2023-192.yaml" - }, - { - "type": "PACKAGE", - "url": "https://github.com/urllib3/urllib3" - }, - { - "type": "WEB", - "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00012.html" - }, - { - "type": "WEB", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5F5CUBAN5XMEBVBZPHFITBLMJV5FIJJ5/" - }, - { - "type": "WEB", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I3PR7C6RJ6JUBQKIJ644DMIJSUP36VDY/" - }, - { - "type": "WEB", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NDAGZXYJ7H2G3SB47M453VQVNAWKAEJJ/" - } - ], - "database_specific": { - "cwe_ids": [ - "CWE-200" - ], - "github_reviewed": true, - "github_reviewed_at": "2023-10-02T23:27:05Z", - "nvd_published_at": "2023-10-04T17:15:10Z", - "severity": "MODERATE" - } - }, - { - "modified": "2023-10-10T14:28:19Z", - "published": "2023-10-04T17:15:00Z", - "schema_version": "1.6.0", - "id": "PYSEC-2023-192", - "aliases": [ - "CVE-2023-43804", - "GHSA-v845-jxx5-vc9f" - ], - "details": "urllib3 is a user-friendly HTTP client library for Python. urllib3 doesn't treat the `Cookie` HTTP header special or provide any helpers for managing cookies over HTTP, that is the responsibility of the user. However, it is possible for a user to specify a `Cookie` header and unknowingly leak information via HTTP redirects to a different origin if that user doesn't disable redirects explicitly. This issue has been patched in urllib3 version 1.26.17 or 2.0.5.", - "affected": [ - { - "package": { - "ecosystem": "PyPI", - "name": "urllib3", - "purl": "pkg:pypi/urllib3" - }, - "ranges": [ - { - "type": "GIT", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "644124ecd0b6e417c527191f866daa05a5a2056d" - }, - { - "fixed": "01220354d389cd05474713f8c982d05c9b17aafb" - } - ], - "repo": "https://github.com/urllib3/urllib3" - }, - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "2.0.0" - }, - { - "fixed": "2.0.6" - }, - { - "introduced": "0" - }, - { - "fixed": "1.26.17" - } - ] - } - ], - "versions": [ - "0.2", - "0.3", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0", - "1.0.1", - "1.0.2", - "1.1", - "1.10", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.11", - "1.12", - "1.13", - "1.13.1", - "1.14", - "1.15", - "1.15.1", - "1.16", - "1.17", - "1.18", - "1.18.1", - "1.19", - "1.19.1", - "1.2", - "1.2.1", - "1.2.2", - "1.20", - "1.21", - "1.21.1", - "1.22", - "1.23", - "1.24", - "1.24.1", - "1.24.2", - "1.24.3", - "1.25", - "1.25.1", - "1.25.10", - "1.25.11", - "1.25.2", - "1.25.3", - "1.25.4", - "1.25.5", - "1.25.6", - "1.25.7", - "1.25.8", - "1.25.9", - "1.26.0", - "1.26.1", - "1.26.10", - "1.26.11", - "1.26.12", - "1.26.13", - "1.26.14", - "1.26.15", - "1.26.16", - "1.26.2", - "1.26.3", - "1.26.4", - "1.26.5", - "1.26.6", - "1.26.7", - "1.26.8", - "1.26.9", - "1.3", - "1.4", - "1.5", - "1.6", - "1.7", - "1.7.1", - "1.8", - "1.8.2", - "1.8.3", - "1.9", - "1.9.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "database_specific": { - "source": "https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2023-192.yaml" - } - } - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N" - } - ], - "references": [ - { - "type": "FIX", - "url": "https://github.com/urllib3/urllib3/commit/644124ecd0b6e417c527191f866daa05a5a2056d" - }, - { - "type": "ADVISORY", - "url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-v845-jxx5-vc9f" - }, - { - "type": "FIX", - "url": "https://github.com/urllib3/urllib3/commit/01220354d389cd05474713f8c982d05c9b17aafb" - }, - { - "type": "WEB", - "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00012.html" - } - ] - }, - { - "modified": "2023-10-25T18:28:34Z", - "published": "2023-10-17T20:15:00Z", - "schema_version": "1.6.0", - "id": "PYSEC-2023-212", - "aliases": [ - "CVE-2023-45803", - "GHSA-g4mx-q9vg-27p4" - ], - "details": "urllib3 is a user-friendly HTTP client library for Python. urllib3 previously wouldn't remove the HTTP request body when an HTTP redirect response using status 301, 302, or 303 after the request had its method changed from one that could accept a request body (like `POST`) to `GET` as is required by HTTP RFCs. Although this behavior is not specified in the section for redirects, it can be inferred by piecing together information from different sections and we have observed the behavior in other major HTTP client implementations like curl and web browsers. Because the vulnerability requires a previously trusted service to become compromised in order to have an impact on confidentiality we believe the exploitability of this vulnerability is low. Additionally, many users aren't putting sensitive data in HTTP request bodies, if this is the case then this vulnerability isn't exploitable. Both of the following conditions must be true to be affected by this vulnerability: 1. Using urllib3 and submitting sensitive information in the HTTP request body (such as form data or JSON) and 2. The origin service is compromised and starts redirecting using 301, 302, or 303 to a malicious peer or the redirected-to service becomes compromised. This issue has been addressed in versions 1.26.18 and 2.0.7 and users are advised to update to resolve this issue. Users unable to update should disable redirects for services that aren't expecting to respond with redirects with `redirects=False` and disable automatic redirects with `redirects=False` and handle 301, 302, and 303 redirects manually by stripping the HTTP request body.\n", - "affected": [ - { - "package": { - "ecosystem": "PyPI", - "name": "urllib3", - "purl": "pkg:pypi/urllib3" - }, - "ranges": [ - { - "type": "GIT", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4e98d57809dacab1cbe625fddeec1a290c478ea9" - } - ], - "repo": "https://github.com/urllib3/urllib3" - }, - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "2.0.0" - }, - { - "fixed": "2.0.7" - }, - { - "introduced": "0" - }, - { - "fixed": "1.26.18" - } - ] - } - ], - "versions": [ - "0.2", - "0.3", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0", - "1.0.1", - "1.0.2", - "1.1", - "1.10", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.11", - "1.12", - "1.13", - "1.13.1", - "1.14", - "1.15", - "1.15.1", - "1.16", - "1.17", - "1.18", - "1.18.1", - "1.19", - "1.19.1", - "1.2", - "1.2.1", - "1.2.2", - "1.20", - "1.21", - "1.21.1", - "1.22", - "1.23", - "1.24", - "1.24.1", - "1.24.2", - "1.24.3", - "1.25", - "1.25.1", - "1.25.10", - "1.25.11", - "1.25.2", - "1.25.3", - "1.25.4", - "1.25.5", - "1.25.6", - "1.25.7", - "1.25.8", - "1.25.9", - "1.26.0", - "1.26.1", - "1.26.10", - "1.26.11", - "1.26.12", - "1.26.13", - "1.26.14", - "1.26.15", - "1.26.16", - "1.26.17", - "1.26.2", - "1.26.3", - "1.26.4", - "1.26.5", - "1.26.6", - "1.26.7", - "1.26.8", - "1.26.9", - "1.3", - "1.4", - "1.5", - "1.6", - "1.7", - "1.7.1", - "1.8", - "1.8.2", - "1.8.3", - "1.9", - "1.9.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "database_specific": { - "source": "https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2023-212.yaml" - } - } - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:A/AC:H/PR:H/UI:N/S:U/C:H/I:N/A:N" - } - ], - "references": [ - { - "type": "ADVISORY", - "url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-g4mx-q9vg-27p4" - }, - { - "type": "WEB", - "url": "https://www.rfc-editor.org/rfc/rfc9110.html#name-get" - }, - { - "type": "FIX", - "url": "https://github.com/urllib3/urllib3/commit/4e98d57809dacab1cbe625fddeec1a290c478ea9" - }, - { - "type": "ARTICLE", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PPDPLM6UUMN55ESPQWJFLLIZY4ZKCNRX/" - } - ] - } - ], - "groups": [ - { - "ids": [ - "GHSA-g4mx-q9vg-27p4", - "PYSEC-2023-212" - ] - }, - { - "ids": [ - "GHSA-v845-jxx5-vc9f", - "PYSEC-2023-192" - ] - } - ] - } -] \ No newline at end of file diff --git a/audits/linode-cli-requirements.audit.json b/audits/linode-cli-requirements.audit.json deleted file mode 100644 index aaee1072..00000000 --- a/audits/linode-cli-requirements.audit.json +++ /dev/null @@ -1,406 +0,0 @@ -[ - { - "package": { - "name": "urllib3", - "version": "2.0.6", - "ecosystem": "PyPI", - "commit": "" - }, - "vulnerabilities": [ - { - "modified": "2023-11-06T16:43:34Z", - "published": "2023-10-17T20:15:25Z", - "schema_version": "1.6.0", - "id": "GHSA-g4mx-q9vg-27p4", - "aliases": [ - "CVE-2023-45803" - ], - "summary": "urllib3's request body not stripped after redirect from 303 status changes request method to GET", - "details": "urllib3 previously wouldn't remove the HTTP request body when an HTTP redirect response using status 303 \"See Other\" after the request had its method changed from one that could accept a request body (like `POST`) to `GET` as is required by HTTP RFCs. Although the behavior of removing the request body is not specified in the section for redirects, it can be inferred by piecing together information from different sections and we have observed the behavior in other major HTTP client implementations like curl and web browsers.\n\nFrom [RFC 9110 Section 9.3.1](https://www.rfc-editor.org/rfc/rfc9110.html#name-get):\n\n> A client SHOULD NOT generate content in a GET request unless it is made directly to an origin server that has previously indicated, in or out of band, that such a request has a purpose and will be adequately supported.\n\n## Affected usages\n\nBecause the vulnerability requires a previously trusted service to become compromised in order to have an impact on confidentiality we believe the exploitability of this vulnerability is low. Additionally, many users aren't putting sensitive data in HTTP request bodies, if this is the case then this vulnerability isn't exploitable.\n\nBoth of the following conditions must be true to be affected by this vulnerability:\n\n* If you're using urllib3 and submitting sensitive information in the HTTP request body (such as form data or JSON)\n* The origin service is compromised and starts redirecting using 303 to a malicious peer or the redirected-to service becomes compromised.\n\n## Remediation\n\nYou can remediate this vulnerability with any of the following steps:\n\n* Upgrade to a patched version of urllib3 (v1.26.18 or v2.0.7)\n* Disable redirects for services that you aren't expecting to respond with redirects with `redirects=False`.\n* Disable automatic redirects with `redirects=False` and handle 303 redirects manually by stripping the HTTP request body.\n", - "affected": [ - { - "package": { - "ecosystem": "PyPI", - "name": "urllib3", - "purl": "pkg:pypi/urllib3" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "2.0.0" - }, - { - "fixed": "2.0.7" - } - ] - } - ], - "versions": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "database_specific": { - "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/10/GHSA-g4mx-q9vg-27p4/GHSA-g4mx-q9vg-27p4.json" - } - }, - { - "package": { - "ecosystem": "PyPI", - "name": "urllib3", - "purl": "pkg:pypi/urllib3" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "1.26.18" - } - ] - } - ], - "versions": [ - "0.2", - "0.3", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0", - "1.0.1", - "1.0.2", - "1.1", - "1.10", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.11", - "1.12", - "1.13", - "1.13.1", - "1.14", - "1.15", - "1.15.1", - "1.16", - "1.17", - "1.18", - "1.18.1", - "1.19", - "1.19.1", - "1.2", - "1.2.1", - "1.2.2", - "1.20", - "1.21", - "1.21.1", - "1.22", - "1.23", - "1.24", - "1.24.1", - "1.24.2", - "1.24.3", - "1.25", - "1.25.1", - "1.25.10", - "1.25.11", - "1.25.2", - "1.25.3", - "1.25.4", - "1.25.5", - "1.25.6", - "1.25.7", - "1.25.8", - "1.25.9", - "1.26.0", - "1.26.1", - "1.26.10", - "1.26.11", - "1.26.12", - "1.26.13", - "1.26.14", - "1.26.15", - "1.26.16", - "1.26.17", - "1.26.2", - "1.26.3", - "1.26.4", - "1.26.5", - "1.26.6", - "1.26.7", - "1.26.8", - "1.26.9", - "1.3", - "1.4", - "1.5", - "1.6", - "1.7", - "1.7.1", - "1.8", - "1.8.2", - "1.8.3", - "1.9", - "1.9.1" - ], - "database_specific": { - "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/10/GHSA-g4mx-q9vg-27p4/GHSA-g4mx-q9vg-27p4.json" - } - } - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:A/AC:H/PR:H/UI:N/S:U/C:H/I:N/A:N" - } - ], - "references": [ - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-g4mx-q9vg-27p4" - }, - { - "type": "ADVISORY", - "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-45803" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/commit/4e50fbc5db74e32cabd5ccc1ab81fc103adfe0b3" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/commit/4e98d57809dacab1cbe625fddeec1a290c478ea9" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/commit/b594c5ceaca38e1ac215f916538fb128e3526a36" - }, - { - "type": "WEB", - "url": "https://github.com/pypa/advisory-database/tree/main/vulns/urllib3/PYSEC-2023-212.yaml" - }, - { - "type": "PACKAGE", - "url": "https://github.com/urllib3/urllib3" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/releases/tag/1.26.18" - }, - { - "type": "WEB", - "url": "https://github.com/urllib3/urllib3/releases/tag/2.0.7" - }, - { - "type": "WEB", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4R2Y5XK3WALSR3FNAGN7JBYV2B343ZKB/" - }, - { - "type": "WEB", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5F5CUBAN5XMEBVBZPHFITBLMJV5FIJJ5/" - }, - { - "type": "WEB", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PPDPLM6UUMN55ESPQWJFLLIZY4ZKCNRX/" - }, - { - "type": "WEB", - "url": "https://www.rfc-editor.org/rfc/rfc9110.html#name-get" - } - ], - "database_specific": { - "cwe_ids": [ - "CWE-200" - ], - "github_reviewed": true, - "github_reviewed_at": "2023-10-17T20:15:25Z", - "nvd_published_at": "2023-10-17T20:15:10Z", - "severity": "MODERATE" - } - }, - { - "modified": "2023-10-25T18:28:34Z", - "published": "2023-10-17T20:15:00Z", - "schema_version": "1.6.0", - "id": "PYSEC-2023-212", - "aliases": [ - "CVE-2023-45803", - "GHSA-g4mx-q9vg-27p4" - ], - "details": "urllib3 is a user-friendly HTTP client library for Python. urllib3 previously wouldn't remove the HTTP request body when an HTTP redirect response using status 301, 302, or 303 after the request had its method changed from one that could accept a request body (like `POST`) to `GET` as is required by HTTP RFCs. Although this behavior is not specified in the section for redirects, it can be inferred by piecing together information from different sections and we have observed the behavior in other major HTTP client implementations like curl and web browsers. Because the vulnerability requires a previously trusted service to become compromised in order to have an impact on confidentiality we believe the exploitability of this vulnerability is low. Additionally, many users aren't putting sensitive data in HTTP request bodies, if this is the case then this vulnerability isn't exploitable. Both of the following conditions must be true to be affected by this vulnerability: 1. Using urllib3 and submitting sensitive information in the HTTP request body (such as form data or JSON) and 2. The origin service is compromised and starts redirecting using 301, 302, or 303 to a malicious peer or the redirected-to service becomes compromised. This issue has been addressed in versions 1.26.18 and 2.0.7 and users are advised to update to resolve this issue. Users unable to update should disable redirects for services that aren't expecting to respond with redirects with `redirects=False` and disable automatic redirects with `redirects=False` and handle 301, 302, and 303 redirects manually by stripping the HTTP request body.\n", - "affected": [ - { - "package": { - "ecosystem": "PyPI", - "name": "urllib3", - "purl": "pkg:pypi/urllib3" - }, - "ranges": [ - { - "type": "GIT", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4e98d57809dacab1cbe625fddeec1a290c478ea9" - } - ], - "repo": "https://github.com/urllib3/urllib3" - }, - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "2.0.0" - }, - { - "fixed": "2.0.7" - }, - { - "introduced": "0" - }, - { - "fixed": "1.26.18" - } - ] - } - ], - "versions": [ - "0.2", - "0.3", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0", - "1.0.1", - "1.0.2", - "1.1", - "1.10", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.11", - "1.12", - "1.13", - "1.13.1", - "1.14", - "1.15", - "1.15.1", - "1.16", - "1.17", - "1.18", - "1.18.1", - "1.19", - "1.19.1", - "1.2", - "1.2.1", - "1.2.2", - "1.20", - "1.21", - "1.21.1", - "1.22", - "1.23", - "1.24", - "1.24.1", - "1.24.2", - "1.24.3", - "1.25", - "1.25.1", - "1.25.10", - "1.25.11", - "1.25.2", - "1.25.3", - "1.25.4", - "1.25.5", - "1.25.6", - "1.25.7", - "1.25.8", - "1.25.9", - "1.26.0", - "1.26.1", - "1.26.10", - "1.26.11", - "1.26.12", - "1.26.13", - "1.26.14", - "1.26.15", - "1.26.16", - "1.26.17", - "1.26.2", - "1.26.3", - "1.26.4", - "1.26.5", - "1.26.6", - "1.26.7", - "1.26.8", - "1.26.9", - "1.3", - "1.4", - "1.5", - "1.6", - "1.7", - "1.7.1", - "1.8", - "1.8.2", - "1.8.3", - "1.9", - "1.9.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "database_specific": { - "source": "https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2023-212.yaml" - } - } - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:A/AC:H/PR:H/UI:N/S:U/C:H/I:N/A:N" - } - ], - "references": [ - { - "type": "ADVISORY", - "url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-g4mx-q9vg-27p4" - }, - { - "type": "WEB", - "url": "https://www.rfc-editor.org/rfc/rfc9110.html#name-get" - }, - { - "type": "FIX", - "url": "https://github.com/urllib3/urllib3/commit/4e98d57809dacab1cbe625fddeec1a290c478ea9" - }, - { - "type": "ARTICLE", - "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PPDPLM6UUMN55ESPQWJFLLIZY4ZKCNRX/" - } - ] - } - ], - "groups": [ - { - "ids": [ - "GHSA-g4mx-q9vg-27p4", - "PYSEC-2023-212" - ] - } - ] - } -] \ No newline at end of file diff --git a/audits/psutils-requirements.audit.json b/audits/psutils-requirements.audit.json index b05a9833..2fcbb9a5 100644 --- a/audits/psutils-requirements.audit.json +++ b/audits/psutils-requirements.audit.json @@ -8,7 +8,7 @@ }, "vulnerabilities": [ { - "modified": "2023-10-31T22:32:26Z", + "modified": "2023-11-09T05:29:46Z", "published": "2023-10-31T22:22:50Z", "schema_version": "1.6.0", "id": "GHSA-wjcc-cq79-p63f", @@ -103,7 +103,7 @@ ], "github_reviewed": true, "github_reviewed_at": "2023-10-31T22:22:50Z", - "nvd_published_at": null, + "nvd_published_at": "2023-10-31T16:15:09Z", "severity": "MODERATE" } } diff --git a/audits/recon-ng-requirements.audit.json b/audits/recon-ng-requirements.audit.json index aa84786d..5ef06a25 100644 --- a/audits/recon-ng-requirements.audit.json +++ b/audits/recon-ng-requirements.audit.json @@ -2478,7 +2478,7 @@ } }, { - "modified": "2023-11-01T18:30:03Z", + "modified": "2023-11-08T18:38:34Z", "published": "2023-10-25T18:17:00Z", "schema_version": "1.6.0", "id": "PYSEC-2023-221", @@ -2609,7 +2609,8 @@ "2.3.5", "2.3.6", "2.3.7", - "3.0.0" + "3.0.0", + "2.3.8" ], "database_specific": { "source": "https://github.com/pypa/advisory-database/blob/main/vulns/werkzeug/PYSEC-2023-221.yaml" diff --git a/requirements/ansible-requirements.txt b/requirements/ansible-requirements.txt index bf24752e..7a36943d 100644 --- a/requirements/ansible-requirements.txt +++ b/requirements/ansible-requirements.txt @@ -29,7 +29,7 @@ kerberos==1.3.1 keystoneauth1==5.3.0 kubernetes==28.1.0 msgpack==1.0.7 -ncclient==0.6.13 +ncclient==0.6.15 netaddr==0.9.0 netifaces==0.11.0 ntc-templates==4.0.1 diff --git a/requirements/awscli-requirements.txt b/requirements/awscli-requirements.txt index cd5e1c11..2d57677a 100644 --- a/requirements/awscli-requirements.txt +++ b/requirements/awscli-requirements.txt @@ -8,4 +8,4 @@ python-dateutil==2.8.2 ruamel-yaml==0.17.21 ruamel-yaml-clib==0.2.7 urllib3==1.26.18 -wcwidth==0.2.8 +wcwidth==0.2.9 diff --git a/requirements/awscli@1-requirements.txt b/requirements/awscli@1-requirements.txt index cb8a0d79..97349fe4 100644 --- a/requirements/awscli@1-requirements.txt +++ b/requirements/awscli@1-requirements.txt @@ -1,4 +1,4 @@ -botocore==1.31.70 +botocore==1.31.80 colorama==0.4.4 jmespath==1.0.1 pyasn1==0.5.0 diff --git a/requirements/black-requirements.txt b/requirements/black-requirements.txt index 35142375..a5546f78 100644 --- a/requirements/black-requirements.txt +++ b/requirements/black-requirements.txt @@ -1,4 +1,4 @@ -aiohttp==3.8.6 +aiohttp==3.9.0b0 aiosignal==1.3.1 async-timeout==4.0.3 attrs==23.1.0 diff --git a/requirements/dotdrop-requirements.txt b/requirements/dotdrop-requirements.txt index db8b5547..6be71548 100644 --- a/requirements/dotdrop-requirements.txt +++ b/requirements/dotdrop-requirements.txt @@ -1,11 +1,11 @@ -charset-normalizer==3.3.0 +charset-normalizer==3.3.2 distro==1.8.0 docopt==0.6.2 idna==3.4 jinja2==3.1.2 python-magic==0.4.27 requests==2.31.0 -ruamel-yaml==0.17.35 +ruamel-yaml==0.18.5 ruamel-yaml-clib==0.2.8 tomli-w==1.0.0 urllib3==2.0.7 diff --git a/requirements/fdroidserver-requirements.txt b/requirements/fdroidserver-requirements.txt index 7f4311a0..fdfb508c 100644 --- a/requirements/fdroidserver-requirements.txt +++ b/requirements/fdroidserver-requirements.txt @@ -3,18 +3,18 @@ apache-libcloud==3.8.0 args==0.1.0 asn1crypto==1.5.1 bcrypt==4.0.1 -charset-normalizer==3.2.0 +charset-normalizer==3.3.2 clint==0.5.1 colorama==0.4.6 -contourpy==1.0.7 -cycler==0.11.0 +contourpy==1.2.0 +cycler==0.12.1 defusedxml==0.7.1 -gitdb==4.0.10 -gitpython==3.1.34 +gitdb==4.0.11 +gitpython==3.1.40 idna==3.4 kiwisolver==1.4.5 -matplotlib==3.7.2 -networkx==3.1 +matplotlib==3.8.1 +networkx==3.2.1 paramiko==3.3.1 pyasn1==0.4.8 pyasn1-modules==0.2.8 @@ -25,7 +25,7 @@ python-dateutil==2.8.2 python-vagrant==1.0.0 qrcode==7.4.2 requests==2.31.0 -ruamel-yaml==0.17.32 -ruamel-yaml-clib==0.2.7 -smmap==5.0.0 -urllib3==2.0.4 +ruamel-yaml==0.18.5 +ruamel-yaml-clib==0.2.8 +smmap==5.0.1 +urllib3==2.0.7 diff --git a/requirements/graph-tool-requirements.txt b/requirements/graph-tool-requirements.txt index 6061c9b3..cbbe3d1e 100644 --- a/requirements/graph-tool-requirements.txt +++ b/requirements/graph-tool-requirements.txt @@ -2,7 +2,5 @@ contourpy==1.0.7 cycler==0.11.0 kiwisolver==1.4.4 matplotlib==3.7.1 -packaging==23.1 -pyparsing==3.1.0 python-dateutil==2.8.2 zstandard==0.21.0 diff --git a/requirements/huggingface-cli-requirements.txt b/requirements/huggingface-cli-requirements.txt index 8e18799a..41d5570d 100644 --- a/requirements/huggingface-cli-requirements.txt +++ b/requirements/huggingface-cli-requirements.txt @@ -1,6 +1,6 @@ -charset-normalizer==3.3.0 -filelock==3.12.4 -fsspec==2023.9.2 +charset-normalizer==3.3.2 +filelock==3.13.1 +fsspec==2023.10.0 idna==3.4 requests==2.31.0 tqdm==4.66.1 diff --git a/requirements/linode-cli-requirements.txt b/requirements/linode-cli-requirements.txt index 3e1fcef8..381b0ab5 100644 --- a/requirements/linode-cli-requirements.txt +++ b/requirements/linode-cli-requirements.txt @@ -1,8 +1,8 @@ -charset-normalizer==3.3.0 +charset-normalizer==3.3.2 idna==3.4 markdown-it-py==3.0.0 mdurl==0.1.2 openapi3==1.8.2 requests==2.31.0 rich==13.6.0 -urllib3==2.0.6 +urllib3==2.0.7 diff --git a/requirements/molecule-requirements.txt b/requirements/molecule-requirements.txt index 2dd118ee..6e6ce116 100644 --- a/requirements/molecule-requirements.txt +++ b/requirements/molecule-requirements.txt @@ -3,7 +3,7 @@ ansible-core==2.15.5 attrs==23.1.0 bracex==2.4 certifi==2023.7.22 -charset-normalizer==3.3.0 +charset-normalizer==3.3.1 click==8.1.7 click-help-colors==0.9.2 distro==1.8.0 @@ -12,7 +12,7 @@ docker-pycreds==0.4.0 enrich==1.2.7 idna==3.4 jinja2==3.1.2 -jsonschema==4.19.1 +jsonschema==4.19.2 jsonschema-specifications==2023.7.1 markdown-it-py==3.0.0 markupsafe==2.1.3 diff --git a/requirements/nbdime-requirements.txt b/requirements/nbdime-requirements.txt index 0113ceb4..49cd0d68 100644 --- a/requirements/nbdime-requirements.txt +++ b/requirements/nbdime-requirements.txt @@ -1,7 +1,7 @@ -charset-normalizer==3.3.0 +charset-normalizer==3.3.1 colorama==0.4.6 -gitdb==4.0.10 -gitpython==3.1.38 +gitdb==4.0.11 +gitpython==3.1.40 jupyter-server-mathjax==0.2.6 requests==2.31.0 smmap==5.0.1 diff --git a/requirements/ocrmypdf-requirements.txt b/requirements/ocrmypdf-requirements.txt index 0871fc7d..b4f928e8 100644 --- a/requirements/ocrmypdf-requirements.txt +++ b/requirements/ocrmypdf-requirements.txt @@ -1,7 +1,7 @@ -charset-normalizer==3.3.1 +charset-normalizer==3.3.2 markdown-it-py==3.0.0 mdurl==0.1.2 pdfminer-six==20221105 pluggy==1.3.0 -reportlab==4.0.6 +reportlab==4.0.7 rich==13.6.0 diff --git a/requirements/yamllint-requirements.txt b/requirements/yamllint-requirements.txt index 85502a07..2803a05c 100644 --- a/requirements/yamllint-requirements.txt +++ b/requirements/yamllint-requirements.txt @@ -1 +1 @@ -pathspec==0.11.1 +pathspec==0.11.2