티스토리 수익 글 보기

티스토리 수익 글 보기

[3.0.x] Fixed CVE-2020-24584 — Fixed permission escalation in interm… · django/django@cdb367c · GitHub
Skip to content
/ django Public

Commit cdb367c

Browse files
committed
[3.0.x] Fixed CVE-2020-24584 — Fixed permission escalation in intermediate-level directories of the file system cache on Python 3.7+.
Backport of f56b57976133129b0b351a38bba4ac882badabf0 from master.
1 parent 08892bf commit cdb367c

File tree

4 files changed

+48
4
lines changed

4 files changed

+48
4
lines changed

django/core/cache/backends/filebased.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,13 @@ def _cull(self):
113113
self._delete(fname)
114114

115115
def _createdir(self):
116-
os.makedirs(self._dir, 0o700, exist_ok=True)
116+
# Set the umask because os.makedirs() doesn't apply the "mode" argument
117+
# to intermediate-level directories.
118+
old_umask = os.umask(0o077)
119+
try:
120+
os.makedirs(self._dir, 0o700, exist_ok=True)
121+
finally:
122+
os.umask(old_umask)
117123

118124
def _key_to_file(self, key, version=None):
119125
"""

docs/releases/2.2.16.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Django 2.2.16 release notes
44

55
*Expected September 1, 2020*
66

7-
Django 2.2.16 fixes a security issue and two data loss bugs in 2.2.15.
7+
Django 2.2.16 fixes two security issues and two data loss bugs in 2.2.15.
88

99
CVE-2020-24583: Incorrect permissions on intermediate-level directories on Python 3.7+
1010
======================================================================================
@@ -17,6 +17,13 @@ files and to intermediate-level collected static directories when using the
1717
You should review and manually fix permissions on existing intermediate-level
1818
directories.
1919

20+
CVE-2020-24584: Permission escalation in intermediate-level directories of the file system cache on Python 3.7+
21+
===============================================================================================================
22+
23+
On Python 3.7+, the intermediate-level directories of the file system cache had
24+
the system's standard umask rather than ``0o077`` (no group or others
25+
permissions).
26+
2027
Bugfixes
2128
========
2229

docs/releases/3.0.10.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Django 3.0.10 release notes
44

55
*Expected September 1, 2020*
66

7-
Django 3.0.10 fixes a security issue and two data loss bugs in 3.0.9.
7+
Django 3.0.10 fixes two security issues and two data loss bugs in 3.0.9.
88

99
CVE-2020-24583: Incorrect permissions on intermediate-level directories on Python 3.7+
1010
======================================================================================
@@ -17,6 +17,13 @@ files and to intermediate-level collected static directories when using the
1717
You should review and manually fix permissions on existing intermediate-level
1818
directories.
1919

20+
CVE-2020-24584: Permission escalation in intermediate-level directories of the file system cache on Python 3.7+
21+
===============================================================================================================
22+
23+
On Python 3.7+, the intermediate-level directories of the file system cache had
24+
the system's standard umask rather than ``0o077`` (no group or others
25+
permissions).
26+
2027
Bugfixes
2128
========
2229

tests/cache/tests.py

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
import pickle
77
import re
88
import shutil
9+
import sys
910
import tempfile
1011
import threading
1112
import time
1213
import unittest
13-
from unittest import mock
14+
from pathlib import Path
15+
from unittest import mock, skipIf
1416

1517
from django.conf import settings
1618
from django.core import management, signals
@@ -1443,6 +1445,28 @@ def test_get_ignores_enoent(self):
14431445
# Returns the default instead of erroring.
14441446
self.assertEqual(cache.get('foo', 'baz'), 'baz')
14451447

1448+
@skipIf(
1449+
sys.platform == 'win32',
1450+
'Windows only partially supports umasks and chmod.',
1451+
)
1452+
def test_cache_dir_permissions(self):
1453+
os.rmdir(self.dirname)
1454+
dir_path = Path(self.dirname) / 'nested' / 'filebasedcache'
1455+
for cache_params in settings.CACHES.values():
1456+
cache_params['LOCATION'] = dir_path
1457+
setting_changed.send(self.__class__, setting='CACHES', enter=False)
1458+
cache.set('foo', 'bar')
1459+
self.assertIs(dir_path.exists(), True)
1460+
tests = [
1461+
dir_path,
1462+
dir_path.parent,
1463+
dir_path.parent.parent,
1464+
]
1465+
for directory in tests:
1466+
with self.subTest(directory=directory):
1467+
dir_mode = directory.stat().st_mode & 0o777
1468+
self.assertEqual(dir_mode, 0o700)
1469+
14461470
def test_get_does_not_ignore_non_filenotfound_exceptions(self):
14471471
with mock.patch('builtins.open', side_effect=OSError):
14481472
with self.assertRaises(OSError):

0 commit comments

Comments
 (0)