From edcb97f01fdac4899ad58ee18a538762a4ab58e3 Mon Sep 17 00:00:00 2001 From: Joachim Hummel Date: Sun, 30 Nov 2025 22:48:23 +0000 Subject: [PATCH] Security fix: Disable anonymous MQTT access MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed allow_anonymous from true to false in mosquitto.conf to prevent unauthorized access to the MQTT broker. Authentication is now required for all connections. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- mosquitto/config/mosquitto.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mosquitto/config/mosquitto.conf b/mosquitto/config/mosquitto.conf index d3dd04c..3914a8b 100644 --- a/mosquitto/config/mosquitto.conf +++ b/mosquitto/config/mosquitto.conf @@ -24,7 +24,7 @@ log_timestamp true # Authentifizierung # Aktiviert bei Erstinstallation - Admin User wird durch Sync konfiguriert # allow_anonymous false -allow_anonymous true +allow_anonymous false password_file /mosquitto/config/password.txt # Access Control List