एक पुराने स्कूल शेल सर्वर पर उपयोगकर्ता पृथक्करण कैसे सुनिश्चित करें


9

मैं कुछ लोगों के लिए एक पुराना स्कूल शेल सर्वर चलाना चाहता हूं, यानी। एक जहां उपयोगकर्ताओं को ssh एक्सेस मिलती है, तो वे सॉफ्टवेयर (अपने या उपलब्ध) चला सकते हैं। मेरी चिंता उपयोगकर्ताओं के बीच उचित अलगाव है।

मैं नहीं चाहता कि वे एक-दूसरे की प्रक्रियाओं को देखें, एक-दूसरे की फाइलों तक पहुंचें (जब तक कि स्पष्ट रूप से अनुमति न दी गई हो), आदि। यह अच्छा होगा कि हर विशेषाधिकार के लिए बग को काटे नहीं जाएं या हर मामूली कर्नेल अपडेट के साथ सर्वर को पुनरारंभ करें। यह जगह में इन सुरक्षा उपायों के साथ सामान्य सेवाओं (जैसे वेब और मेल होस्टिंग) चलाने के विकल्प को बनाए रखने के लिए सही होगा।

दिन में वापस मैंने ग्राम का उपयोग किया लेकिन इसके लिए एक पुराने कर्नेल पर रहने और इसे स्वयं संकलन करने की परेशानी से निपटने की आवश्यकता है। क्या साझा सर्वर पर उपयोगकर्ता पृथक्करण सुनिश्चित करने का अधिक आधुनिक और अधिक उबंटू तरीका है?

शायद आप उस प्रभाव के लिए AppArmor के साथ कुछ कर सकते हैं? या शायद साझा किए गए वातावरणों के लिए पहले से कॉन्फ़िगर किए गए गुठली का भंडार है? या कंटेनर पर आधारित एक समाधान? ये हाल ही में प्रचलन में आए हैं।


जवाबों:


9

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 पर अन्य उपयोगकर्ताओं की प्रक्रियाओं का ब्यौरा छिपाने के लिए पर्याप्त है। Ubuntu 12.04 डिफ़ॉल्ट रूप से 3.2 के साथ आता है, लेकिन आप नए कर्नेल स्थापित कर सकते हैं। Ubuntu 14.04 और इसके बाद के संस्करण आसानी से इस आवश्यकता से मेल खाते हैं।

एसीएल

पहले चरण के रूप में, rwxहर घर निर्देशिका से दूसरों के लिए अनुमतियाँ निकालें (और यदि आवश्यक हो तो समूह के लिए भी)। मैं, निश्चित रूप से, कि फ़ोल्डर (ओं) को घर निर्देशिकाओं युक्त है रूट के अलावा किसी को लिखने की अनुमति नहीं है।

फिर, एसीएल का उपयोग करके उचित निर्देशिकाओं के लिए वेब सर्वर और मेल सर्वर पहुंच जैसी सेवाएं प्रदान करें। उदाहरण के लिए, उपयोगकर्ता के मुख पृष्ठ पर वेब सर्वर प्रक्रिया की पहुँच प्रदान करने के लिए, यह मानते हुए www-dataकि यह उपयोगकर्ता है और ~/public_htmlजहाँ होम पेज रखा गया है:

setfacl u:www-data:X ~user
setfacl d:u:www-data:rX ~user/public_html

इसी तरह, मेल प्रक्रियाओं और मेलबॉक्स निर्देशिकाओं के लिए ACLs जोड़ें।

ACL को डिफ़ॉल्ट रूप से ext4 पर कम से कम Ubuntu 14.04 और इसके बाद के संस्करण पर सक्षम किया जाता है।

/tmp तथा umask

एक और समस्या है /tmp। सेट करें umaskताकि फ़ाइलें समूह-या विश्व-पठनीय न हों, ताकि उपयोगकर्ताओं की अस्थायी फ़ाइलें अन्य उपयोगकर्ताओं के लिए सुलभ न हों।


इन तीन सेटिंग्स के साथ, उपयोगकर्ताओं को अन्य उपयोगकर्ताओं की फ़ाइलों तक पहुंचने या उनकी प्रक्रियाओं की जांच करने में सक्षम नहीं होना चाहिए।


2
/tmpपैकेज में रखी गई अलग-अलग फ़ाइलों के लिए एक विकल्प या इसके अलावा libpam-tmpdir: यह एक रूट-स्वामित्व वाली, गैर-विश्व-पठनीय निर्देशिका /tmp/userऔर उपयोगकर्ता के स्वामित्व वाली, गैर-विश्व-पठनीय, गैर-विश्व-ट्रैवर्सेबल निर्देशिकाओं /tmp/user/$UIDको प्रत्येक उपयोगकर्ता के लिए बनाता है (उनके पहले लॉग-इन) और TMP_DIRउत्तरार्द्ध को इंगित करने के लिए पर्यावरण चर सेट करता है । अधिकांश प्रोग्राम अच्छा खेलते हैं और $TMP_DIRयदि सेट है तो उनकी अस्थायी फ़ाइलों को अंदर रखें ।
डेविड फ़ॉस्टर
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.