hidepid
procfs
trên Linux hiện hỗ trợ hidepid
tùy chọn. Từ man 5 proc
:
hidepid=n (since Linux 3.3)
This option controls who can access the information in
/proc/[pid] directories. The argument, n, is one of the
following values:
0 Everybody may access all /proc/[pid] directories. This is
the traditional behavior, and the default if this mount
option is not specified.
1 Users may not access files and subdirectories inside any
/proc/[pid] directories but their own (the /proc/[pid]
directories themselves remain visible). Sensitive files
such as /proc/[pid]/cmdline and /proc/[pid]/status are now
protected against other users. This makes it impossible to
learn whether any user is running a specific program (so
long as the program doesn't otherwise reveal itself by its
behavior).
2 As for mode 1, but in addition the /proc/[pid] directories
belonging to other users become invisible. This means that
/proc/[pid] entries can no longer be used to discover the
PIDs on the system. This doesn't hide the fact that a
process with a specific PID value exists (it can be learned
by other means, for example, by "kill -0 $PID"), but it
hides a process's UID and GID, which could otherwise be
learned by employing stat(2) on a /proc/[pid] directory.
This greatly complicates an attacker's task of gathering
information about running processes (e.g., discovering
whether some daemon is running with elevated privileges,
whether another user is running some sensitive program,
whether other users are running any program at all, and so
on).
gid=gid (since Linux 3.3)
Specifies the ID of a group whose members are authorized to
learn process information otherwise prohibited by hidepid
(ie/e/, users in this group behave as though /proc was mounted
with hidepid=0. This group should be used instead of approaches
such as putting nonroot users into the sudoers(5) file.
Vì vậy, gắn /proc
với hidepid=2
là đủ để che giấu các chi tiết của quá trình của người dùng khác trên Linux> 3.3. Ubuntu 12.04 đi kèm với 3.2 theo mặc định, nhưng bạn có thể cài đặt các hạt nhân mới hơn. Ubuntu 14.04 trở lên dễ dàng phù hợp với yêu cầu này.
ACL
Bước đầu tiên, loại bỏ rwx
quyền cho người khác khỏi mọi thư mục chính (và cho cả nhóm, nếu bạn yêu cầu). Tất nhiên, tôi giả sử rằng (các) thư mục chứa các thư mục chính không có quyền ghi cho bất kỳ ai ngoại trừ root.
Sau đó, cấp các dịch vụ như máy chủ web và máy chủ thư truy cập vào các thư mục phù hợp bằng ACL. Ví dụ: để cấp cho máy chủ web quyền truy cập vào trang chủ của người dùng, giả sử www-data
là người dùng và ~/public_html
là nơi lưu giữ trang chủ:
setfacl u:www-data:X ~user
setfacl d:u:www-data:rX ~user/public_html
Tương tự, thêm ACL cho các quy trình thư và thư mục hộp thư.
ACL được bật theo mặc định trên ext4 ít nhất là trên Ubuntu 14.04 trở lên.
/tmp
và umask
Một vấn đề khác là /tmp
. Đặt umask
sao cho các tệp không thể đọc được theo nhóm hoặc thế giới, để các tệp tạm thời của người dùng không thể truy cập được đối với người dùng khác.
Với ba cài đặt này, người dùng sẽ không thể truy cập các tệp của người dùng khác hoặc kiểm tra các quy trình của họ.