fix: prevent local root exploit via directory hijacking#1042
Merged
ComixHe merged 1 commit intolinuxdeepin:masterfrom Mar 4, 2026
Merged
fix: prevent local root exploit via directory hijacking#1042ComixHe merged 1 commit intolinuxdeepin:masterfrom
ComixHe merged 1 commit intolinuxdeepin:masterfrom
Conversation
Rewrite newPwdChangerX to fix critical vulnerability where chown() on .Xauthority in unprivileged-controlled directory allowed local root exploit. Use random directories, file descriptors, O_EXCL, and O_NOFOLLOW to prevent TOCTOU and symlink attacks. Pms: BUG-349987 Signed-off-by: ComixHe <heyuming@deepin.org>
deepin pr auto review这份代码审查主要针对 以下是关于语法逻辑、代码质量、代码性能和代码安全的详细审查意见: 1. 代码安全这是本次修改中表现最突出的部分,改进非常显著。
2. 代码质量
3. 代码性能
4. 语法逻辑
总结与建议这段代码的修改质量非常高,主要目标是提升安全性(防止 TOCTOU 和符号链接攻击),同时也优化了性能(减少进程创建)。 主要改进建议:
总体而言,这是一次非常专业的代码重构,显著提升了系统的安全性和健壮性。 |
fly602
approved these changes
Mar 4, 2026
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: ComixHe, fly602 The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rewrite newPwdChangerX to fix critical vulnerability where chown() on .Xauthority in unprivileged-controlled directory allowed local root exploit. Use random directories, file descriptors, O_EXCL, and O_NOFOLLOW to prevent TOCTOU and symlink attacks.