summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-06-25 06:49:40 (GMT)
committerGitHub <noreply@github.com>2017-06-25 06:49:40 (GMT)
commit99e9eb6111ef6a11bfff358866c9f2b0c201ac08 (patch)
treef3dc284d8762d9fbebd0be694fc83f5266bbb90e /Misc/NEWS
parent4b1468f723491a6afc0506128b843d3e82771912 (diff)
downloadcpython-99e9eb6111ef6a11bfff358866c9f2b0c201ac08.zip
cpython-99e9eb6111ef6a11bfff358866c9f2b0c201ac08.tar.gz
cpython-99e9eb6111ef6a11bfff358866c9f2b0c201ac08.tar.bz2
[3.5] bpo-30746: Prohibited the '=' character in environment variable names (GH-2382) (#2392)
in `os.putenv()` and `os.spawn*()`.. (cherry picked from commit 77703942c5997dff00c48f10df1b29b11645624c)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b731792..4a8137f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -59,6 +59,9 @@ Extension Modules
Library
-------
+- bpo-30746: Prohibited the '=' character in environment variable names in
+ ``os.putenv()`` and ``os.spawn*()``.
+
- [Security] bpo-30730: Prevent environment variables injection in subprocess on
Windows. Prevent passing other environment variables and command arguments.