Find all files on server with 777 permissions

48

12

I'm looking for a Linux command to go through all the directories on my server and find all files with 777 permission. The output would be a list of all those files with full path.

bartclaeys

Posted 2009-11-15T22:53:51.977

Reputation:

Answers

62

Use find:

find / -type f -perm 0777

jheddings

Posted 2009-11-15T22:53:51.977

Reputation: 751

16

And if you like to find all files without Permission 0777 then just enter a ! before the perm, e.g.

find / -type f ! -perm 0777

Kai

Posted 2009-11-15T22:53:51.977

Reputation: 161

9

You can also change the permissions or ownership of all those files resulting from the find execution using the -exec option to avoid change them manually. Exempli gratia: In a web server you could need to grant the group to write files:

find / -type f -perm 0777 -exec chmod 775 {} \; -exec chgrp -R www {} \;

altmas5

Posted 2009-11-15T22:53:51.977

Reputation: 310

1Be very very careful doing this - always worth using -exec ls first in order to see what the effect of your command will do. Find is super powerful and will often find things you didn't expect it to. – John Hunt – 2017-03-24T11:24:48.033

It's true. My command should be used once you know which files will result from the search. – altmas5 – 2017-04-05T17:25:06.453

8

it's as easy as:

find / -perm 0777

if you only want to match files, use this instead:

find / -type f -perm 0777

knittl

Posted 2009-11-15T22:53:51.977

Reputation: 3 452