From 635f8e3cd24ababa3024b895bd4126450b90f14f Mon Sep 17 00:00:00 2001 From: onli Date: Mon, 5 Aug 2024 14:03:11 +0200 Subject: [PATCH] Protect bundled-libs by banning PHP access --- .gitignore | 2 +- bundled-libs/.htaccess | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 bundled-libs/.htaccess diff --git a/.gitignore b/.gitignore index 7190b43c9..ede3efad8 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,7 @@ plugins/additional_plugins* # ide / dev stuff .cvsignore -.htaccess* +/.htaccess *.db private/* archives/* diff --git a/bundled-libs/.htaccess b/bundled-libs/.htaccess new file mode 100644 index 000000000..4b869d688 --- /dev/null +++ b/bundled-libs/.htaccess @@ -0,0 +1,7 @@ +# BEGIN s9y + + + deny from all + + +# END s9y