diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-01-23 04:00:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 04:00:23 (GMT) |
commit | 51c3e28c8a163e58dc753765e3cc51d5a717e70d (patch) | |
tree | 3d207f1694b3e4f43d63f74842468b0b79ee05c3 /Misc | |
parent | b0898f4aa90d9397e23aef98a2d6b82445ee7455 (diff) | |
download | cpython-51c3e28c8a163e58dc753765e3cc51d5a717e70d.zip cpython-51c3e28c8a163e58dc753765e3cc51d5a717e70d.tar.gz cpython-51c3e28c8a163e58dc753765e3cc51d5a717e70d.tar.bz2 |
bpo-46474: Avoid REDoS in EntryPoint.pattern (sync with importlib_metadata 4.10.1) (GH-30803)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-01-22-14-49-10.bpo-46474.eKQhvx.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-01-22-14-49-10.bpo-46474.eKQhvx.rst b/Misc/NEWS.d/next/Library/2022-01-22-14-49-10.bpo-46474.eKQhvx.rst new file mode 100644 index 0000000..156b7de --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-01-22-14-49-10.bpo-46474.eKQhvx.rst @@ -0,0 +1,2 @@ +In ``importlib.metadata.EntryPoint.pattern``, avoid potential REDoS by +limiting ambiguity in consecutive whitespace. |