UNIX ACL

Creator
Creator
Alan JoAlan Jo
Created
Created
2024 Mar 15 5:28
Editor
Editor
Alan JoAlan Jo
Edited
Edited
2024 Apr 22 13:4

User id (UID) zero indicates the root/super user

12 permission bits for each file, logically grouped into 4 sets of three bits each
Each
INode
stores the attributes, permissions, and disk block locations of the object's data.

First 3 bits

  • SUID - SetUID bit for only security managing program to force escalating process to privileged
  • SGID - Set Group ID and similar to SUID (Not that important)
  • Sticky Bit - 과거에는 메모리에 프로그램을 유지하기 위해 사용되었지만, 현재는 주로 디렉터리에 적용되어 Sticky Bit가 설정된 디렉터리에서는 파일의 소유자나 root만 해당 파일을 삭제하거나 이름을 변경할 수 있다. like /tmp (Not that important)
Next 9 bits per 3 bits (read, write, execution)
 
 
 
 
 

Recommendations