diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2024-07-22 11:04:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-22 11:04:08 (GMT) |
commit | dc93d1125f594ac7aece98558eaf33d09c348519 (patch) | |
tree | db2bc23e9e74df4a9ce22a872c2825418597f57b /Misc/NEWS.d | |
parent | cad11a2bdceb6d4683ae5654ce555cdf5f191217 (diff) | |
download | cpython-dc93d1125f594ac7aece98558eaf33d09c348519.zip cpython-dc93d1125f594ac7aece98558eaf33d09c348519.tar.gz cpython-dc93d1125f594ac7aece98558eaf33d09c348519.tar.bz2 |
gh-121957: Emit audit events for `python -i` and `python -m asyncio` (GH-121958)
Relatedly, emit the `cpython.run_startup` event from the Python version of
`PYTHONSTARTUP` handling.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Security/2024-07-18-13-17-47.gh-issue-121957.QemKLU.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2024-07-18-13-17-47.gh-issue-121957.QemKLU.rst b/Misc/NEWS.d/next/Security/2024-07-18-13-17-47.gh-issue-121957.QemKLU.rst new file mode 100644 index 0000000..49ccc5e --- /dev/null +++ b/Misc/NEWS.d/next/Security/2024-07-18-13-17-47.gh-issue-121957.QemKLU.rst @@ -0,0 +1,3 @@ +Fixed missing audit events around interactive use of Python, now also +properly firing for ``python -i``, as well as for ``python -m asyncio``. The +events in question are ``cpython.run_stdin`` and ``cpython.run_startup``. |