Created
April 3, 2019 12:36
-
-
Save corneliouzbett/a7935d450621794558ec630e5e7ff724 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def _warn_unsafe_extraction_path(path): | |
""" | |
If the default extraction path is overridden and set to an insecure | |
location, such as /tmp, it opens up an opportunity for an attacker to | |
replace an extracted file with an unauthorized payload. Warn the user | |
if a known insecure location is used. | |
See Distribute #375 for more details. | |
""" | |
if os.name == 'nt' and not path.startswith(os.environ['windir']): | |
# On Windows, permissions are generally restrictive by default | |
# and temp directories are not writable by other users, so | |
# bypass the warning. | |
return | |
mode = os.stat(path).st_mode | |
if mode & stat.S_IWOTH or mode & stat.S_IWGRP: | |
msg = ("%s is writable by group/others and vulnerable to attack " | |
"when " | |
"used with get_resource_filename. Consider a more secure " | |
"location (set with .set_extraction_path or the " | |
"PYTHON_EGG_CACHE environment variable)." % path) | |
warnings.warn(msg, UserWarning) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment