/ Published in: Apache
use this to find all files/folders which have been given 777 (write all) permissions on a linux server
Expand |
Embed | Plain Text
find / -perm 777 -type d
You need to login to post a comment.
fillyouin on 10/12/10
3 people have marked this snippet as a favorite
bindaskhan2004hotmailcom
kubaitis
MicronXD
use this to find all files/folders which have been given 777 (write all) permissions on a linux server
find / -perm 777 -type d
You need to login to post a comment.