first commit

This commit is contained in:
2026-02-03 09:01:55 +01:00
commit 52e26e3989
114 changed files with 94751 additions and 0 deletions

36
forms/.htaccess Normal file
View File

@@ -0,0 +1,36 @@
# Schütze config.php und andere sensible Dateien
<Files "config.php">
Require all denied
</Files>
<Files "test-*.php">
Require all denied
</Files>
# Verhindere Directory Listing
Options -Indexes
# Blockiere Zugriff auf Backup-Dateien
<FilesMatch "\.(bak|backup|old|orig|save|swp|tmp)$">
Require all denied
</FilesMatch>
# Verhindere Zugriff auf versteckte Dateien
<FilesMatch "^\.">
Require all denied
</FilesMatch>
# PHP-Sicherheitseinstellungen
<IfModule mod_php7.c>
php_flag display_errors off
php_flag log_errors on
php_value upload_max_filesize 20M
php_value post_max_size 20M
</IfModule>
# Zusätzliche Sicherheits-Header
<IfModule mod_headers.c>
Header set X-Content-Type-Options "nosniff"
Header set X-Frame-Options "SAMEORIGIN"
Header set X-XSS-Protection "1; mode=block"
</IfModule>