Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't duplicate the UTC timezone suffix on dates #28

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions advisories/python/PSF-0000-CVE-2023-6597.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"aliases": [
"CVE-2023-6597"
],
"published": "2024-03-19T15:44:28.989ZZ",
"modified": "2024-04-03T15:06:30.430ZZ",
"published": "2024-03-19T15:44:28.989Z",
"modified": "2024-04-03T15:06:30.430Z",
"details": "An issue was found in the CPython `tempfile.TemporaryDirectory` class affecting versions 3.12.1, 3.11.7, 3.10.13, 3.9.18, and 3.8.18 and prior.\n\nThe tempfile.TemporaryDirectory class would dereference symlinks during cleanup of permissions-related errors. This means users which can run privileged programs are potentially able to modify permissions of files referenced by symlinks in some circumstances.\n",
"database_specific": {
"cwe_ids": []
Expand Down
4 changes: 2 additions & 2 deletions advisories/python/PSF-0000-CVE-2024-0450.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"aliases": [
"CVE-2024-0450"
],
"published": "2024-03-19T15:12:07.789ZZ",
"modified": "2024-04-03T14:56:18.250ZZ",
"published": "2024-03-19T15:12:07.789Z",
"modified": "2024-04-03T14:56:18.250Z",
"details": "An issue was found in the CPython `zipfile` module affecting versions 3.12.1, 3.11.7, 3.10.13, 3.9.18, and 3.8.18 and prior.\n\nThe zipfile module is vulnerable to \u201cquoted-overlap\u201d zip-bombs which exploit the zip format to create a zip-bomb with a high compression ratio. The fixed versions of CPython makes the zipfile module reject zip archives which overlap entries in the archive.\n\n",
"database_specific": {
"cwe_ids": []
Expand Down
4 changes: 2 additions & 2 deletions tools/import-from-cve.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def fetch_osv_from_cve(cve_id):
"schema_version": "1.5.0",
"id": osv_id,
"aliases": [cve_id],
"published": f"{cve_meta['datePublished']}Z",
"modified": f"{cve_meta['dateUpdated']}Z",
"published": f"{cve_meta['datePublished'].rstrip('Z')}Z",
"modified": f"{cve_meta['dateUpdated'].rstrip('Z')}Z",
"details": details,
"database_specific": {"cwe_ids": cwe_ids},
}
Expand Down
Loading