# ================================================================ # Honeypot folder access protection # Blocks web access to honeypot log and strike files # ================================================================ Order allow,deny Deny from all # Deny access to the main honeypot log Require all denied # Deny access to all strike files (MD5 hash .txt files) Require all denied # Optional: deny access to any hidden file starting with dot Require all denied # Prevent directory listing Options -Indexes # ================================================================ # End of honeypot .htaccess # ================================================================