开发者

Protect logfiles for php applications

开发者 https://www.devze.com 2023-04-06 18:13 出处:网络
I log sensitive information in a a log file lets call it \"mylogfile.log\". This file should in no circumstances be access f开发者_JAVA技巧rom the outside/web.

I log sensitive information in a a log file lets call it "mylogfile.log". This file should in no circumstances be access f开发者_JAVA技巧rom the outside/web.

I already protect it by using a .htaccess file but what i would like some extra safeguard like using a fileextension that is protected by the system. Is there any such?

The reason for the extra security is that this webapp is distrubuted to clients that could change or remove the .htaccess file. Also .htaccess override needs to be enabled in Apache.


You should put it outside of the document root.

If /var/www/your-site.com/public matches the URI your-site.com (public/index.html --> your-site.com/index.html etc), then log files will not be readable if you place them in /var/www/your-site.com/logs

When distributing an app like this, I would always make sure that you, given your limited and controlled space, do not use your "base folder" as the document root of the webserver, just to get some privacy around it.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号