检查Python中的文件是否为setuid root
我正在尝试检查Python 中的文件是否具有setuid 位。
统计文档提到了一个S_ISUID
函数,但它只能工作使用 os.chmod() ,而不是实际读取 setuid 位。它还列出了 S_IMODE
,但我不知道如何解释它。
如何轻松检查文件是否已设置为 setuid 根位?
I'm trying to check if a file has the setuid bit in Python.
The stat doc mentions a S_ISUID
function but it only works with os.chmod()
, not to actually read the setuid bit. It also lists S_IMODE
, but I have no idea how to interpret it.
How can I easily check if a file as the setuid root bit set?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
stat.S_ISUID 是“setuid”的模式位。您比较统计结果的模式以查看它是否包含该位:
stat.S_ISUID is the mode bit for 'setuid'. You compare the stat result's mode to see if it contains that bit: