From cd7b9177ea63aa74ad4112850f3b7a6dccd37d23 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 16 Mar 2022 19:35:59 +0100 Subject: [PATCH] .htaccess-dist deny access to some backup files this PR adds a filematch block to the distributed .htaccess file to deny access to backup files from emacs (~), vim (.swp) and other backup files (.bak). addressing #11350 --- .htaccess-dist | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.htaccess-dist b/.htaccess-dist index 3c90982515..c86b81b889 100644 --- a/.htaccess-dist +++ b/.htaccess-dist @@ -6,6 +6,7 @@ AddType application/x-java-archive .jar AddType audio/ogg .oga #AddHandler php53-cgi .php +# deny access to log files (friendica.log or php.out) #Apache 2.4 @@ -17,6 +18,18 @@ AddType audio/ogg .oga +# deny access to backup files + + + #Apache 2.4 + Require all denied + + + #Apache 2.2 + Deny from all + + + RewriteEngine on # Protect repository directory from browsing