як знайти файли з неправильними дозволами на unix?


14

Я шукаю спосіб пошуку в каталозі чи каталогах та переліченні всіх файлів, які мають неправильні дозволи для публічного каталогу.

Відповіді:


15

Ваше питання могло б бути викладене чіткіше, особливо. що ви маєте на увазі під "неправильними дозволами" для публічного каталогу?

Припускаючи, що ви хочете, щоб каталоги були 755, а звичайні файли - 644, я б це робив так:

$ find \! -perm 644 -type f -o \! -perm 755 -type d

Що робить -о? Це означає щось на кшталт АБО?


3
У цьому конкретному випадку RTFM не є дуже корисною відповіддю, враховуючи різні рівні налаштувань знахідок; особливо незрозуміло намагатися з'ясувати, чи асоціюється -o з -типом або -perm.
Lighthart

Я дозволяю собі не погодитися. Питання було "Що означає -o? Чи означає це щось на зразок АБО?". На це чудово відповідає відповідна сторінка: "expr1 -o expr2 Або; expr2 не оцінюється, якщо expr1 є істинним."
0x89

Btw. ваше запитання щодо пріоритету обробляється в тому самому пункті довідкової сторінки: "ОПЕРАТОРИ, перераховані в порядку зменшення пріоритету" і "Два вирази підряд приймаються до об'єднаних" і "; expr2 не оцінюється, якщо expr1 є помилковий.").
0x89

5

Це працювало для мене

find .  \! -perm +755

В \!прапор кошти не та -permваріант використання нормальні варіанти CHMOD


3

Все залежить від того, що ви вважаєте "неправильним дозволом". man find допомагає вам, визначаючи спосіб, як можна шукати файли / dirs з наданим дозволом:

   -perm -mode
          All of the permission bits mode are set for the file.  Symbolic modes are
          accepted in this form, and this is usually the way in which would want to
          use them.  You must specify ‘u’, ‘g’ or ‘o’ if you use a  symbolic  mode.
          See the EXAMPLES section for some illustrative examples.

   -perm /mode
          Any of the permission bits mode are set for the file.  Symbolic modes are
          accepted in this form.  You must specify ‘u’, ‘g’ or ‘o’  if  you  use  a
          symbolic  mode.  See the EXAMPLES section for some illustrative examples.
          If no permission bits in mode are set, this test matches  any  file  (the
          idea here is to be consistent with the behaviour of -perm -000).

   -perm +mode
          Deprecated,  old  way  of  searching for files with any of the permission
          bits in mode set.  You should use -perm /mode instead. Trying to use  the
          ‘+’  syntax with symbolic modes will yield surprising results.  For exam‐
          ple, ‘+u+x’ is a valid symbolic mode (equivalent to +u,+x, i.e. 0111) and
          will  therefore  not be evaluated as -perm +mode but instead as the exact
          mode specifier -perm mode and so it matches files with exact  permissions
          0111  instead of files with any execute bit set.  If you found this para‐
          graph confusing, you’re not alone - just use -perm /mode.  This  form  of
          the -perm test is deprecated because the POSIX specification requires the
          interpretation of a leading ‘+’ as being part of a symbolic mode, and  so
          we switched to using ‘/’ instead.

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.