-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
os.homedir() doesn't respect setuid #28281
Comments
I understand the expectation, but at the same time, I would expect the opposite behavior--that changing the uid does not affect the home directory. Other languages seem to bear this out. Here's Python being run initially as root and then changing to an unprivileged user with a different home directory: Python 2.7.10 (default, Feb 22 2019, 21:55:15)
[GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.37.14)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> from os.path import expanduser
>>> expanduser("~")
'/var/root'
>>> os.setuid(501)
>>> expanduser("~")
'/var/root' Perhaps relevant explanation about why |
if that's the case, at least the documentation on os.homedir() should be updated to be precise and reflect that; save some other coders some time (why didn't I think of the ~username trick...) |
Take a look to his PR #28401 |
Did this issue get resolved? |
The PR was merged so yes, this was indeed resolved. Closing, thanks for the ping. |
Expected os.homedir() to home directory of the current user as a string but when the current user changes via process.setuid() this directory still show the original user's home directory
The text was updated successfully, but these errors were encountered: