como encontrar arquivos com permissões incorretas no unix?

13

Estou procurando uma maneira de pesquisar um diretório ou diretórios e listar todos os arquivos com permissões erradas para um diretório público.

    
por sal 30.07.2009 / 17:18

3 respostas

14

Sua pergunta pode ser colocada com mais clareza, esp. o que você quer dizer com "as permissões erradas" para um diretório público?

Supondo que você queira que os diretórios sejam 755 e os arquivos comuns sejam 644, eu faria assim:

$ find \! -perm 644 -type f -o \! -perm 755 -type d
    
por 02.08.2009 / 20:01
5

Isso funcionou para mim

find .  \! -perm +755

O sinalizador \! não significa e a opção -perm usa as opções chmod normais

    
por 30.07.2009 / 17:20
3

Tudo depende do que você considera 'permissão incorreta'. man find ajuda você a definir a maneira como você pode procurar arquivos / diretórios com permissão:

   -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.

    
por 30.07.2009 / 19:41