hidepid
procfs
লিনাক্সে এখন hidepid
বিকল্পটি সমর্থন করে । থেকে 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.
সুতরাং, মাউন্ট /proc
সঙ্গে hidepid=2
লিনাক্স> 3.3 অন্যান্য ব্যবহারকারীর প্রসেস বিবরণ লুকাতে যথেষ্ট। উবুন্টু 12.04 ডিফল্টরূপে 3.2 দিয়ে আসে তবে আপনি আরও নতুন কার্নেল ইনস্টল করতে পারেন। উবুন্টু 14.04 এবং তার বেশি সহজেই এই প্রয়োজনীয়তার সাথে মেলে।
ACLs
প্রথম পদক্ষেপ হিসাবে, rwx
প্রতিটি হোম ডিরেক্টরি থেকে অন্যের জন্য অনুমতিগুলি সরান (এবং গোষ্ঠীগুলির জন্যও, যদি আপনার এটি প্রয়োজন হয়)। আমি অবশ্যই ধরে নিচ্ছি যে হোম ডিরেক্টরিগুলি থাকা ফোল্ডারে (গুলি) মূলের ব্যতীত অন্য কাউকে লেখার অনুমতি নেই।
তারপরে, ওয়েব সার্ভার এবং মেল সার্ভারের মতো পরিষেবাগুলি এসিএলগুলি ব্যবহার করে উপযুক্ত ডিরেক্টরিগুলিতে অ্যাক্সেস দেয়। উদাহরণস্বরূপ, ব্যবহারকারীর হোম পৃষ্ঠাগুলিতে ওয়েব সার্ভার প্রক্রিয়াটি অ্যাক্সেসের মঞ্জুরি দেওয়ার জন্য, ধরে নেওয়া www-data
হয় যে ব্যবহারকারী এবং ~/public_html
এটি হোম পৃষ্ঠাটি যেখানে রাখা হয়েছে:
setfacl u:www-data:X ~user
setfacl d:u:www-data:rX ~user/public_html
একইভাবে, মেল প্রক্রিয়া এবং মেলবক্স ডিরেক্টরিগুলির জন্য এসিএল যুক্ত করুন।
এসিএলগুলি কমপক্ষে উবুন্টু 14.04 এবং তদূর্ধ্বে ext4 এ ডিফল্টরূপে সক্ষম হয় are
/tmp
এবং umask
আর একটি সমস্যা হ'ল /tmp
। umask
ফাইলগুলি গ্রুপ-বা বিশ্ব-পঠনযোগ্য নয় এমনটি সেট করুন যাতে ব্যবহারকারীদের অস্থায়ী ফাইলগুলি অন্য ব্যবহারকারীদের কাছে অ্যাক্সেসযোগ্য না হয়।
এই তিনটি সেটিংসের সাহায্যে ব্যবহারকারীদের অন্য ব্যবহারকারীর ফাইলগুলি অ্যাক্সেস করতে বা তাদের প্রক্রিয়াগুলি পরীক্ষা করতে সক্ষম হওয়া উচিত নয়।