Linux – Server chmod logs

linuxlogging

Is there any way I can look up logs on chmod changes to files/directories on linux?

JS files on my server last night were getting Permission Denied errors losing sales. I'm in disagreement with how this happened with another developer and am trying to look up logs.

Best Answer

No, on a standard install chmods are not logged (unless, of course, they're executed via sudo). Your best bet would be an audit of .history and .bash_history files of the various accounts that have access to your system.

Related Topic