CVE-2026-44091
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedAn unauthenticated remote attacker can post a malicious ID to the MQTT Broker results in the creation of a new configuration entry in the system configuration. This may lead to integrity and availability loss.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · moderate confidenceThis vulnerability allows unauthenticated remote attackers to send specially crafted MQTT messages containing malicious IDs to the broker. The broker improperly processes these messages, resulting in unauthorized creation of new configuration entries in the system's configuration store. This allows attackers to modify system behavior, leading to integrity compromise through unauthorized configuration changes and potential availability disruption.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- None
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Verify MQTT broker authentication is enabledCheck your MQTT broker configuration file (e.g., mosquitto.conf, emqx.conf, or broker-specific config) for authentication settings. Look for 'allow_anonymous', 'password_file', or authentication plugins. Run: grep -i 'allow_anonymous' /etc/mosquitto/mosquitto.conf or equivalent for your broker.Affected if allow_anonymous is set to true or no authentication mechanism is configured
-
Identify if MQTT port is exposed to untrusted networksCheck firewall rules or network ACLs. Run: netstat -tlnp | grep -E '1883|8883' or check cloud security groups. Determine if the MQTT port is accessible from IP addresses outside your trusted network.Affected if MQTT port 1883 (or 8883 for TLS) is open to 0.0.0.0/0 or untrusted IP ranges
-
Review broker logs for unauthenticated connection attemptsExamine MQTT broker logs (typically in /var/log/mosquitto/, /var/log/emqx/, or journalctl -u mosquitto). Search for connection events from unknown clients: grep -i 'connection' /var/log/mosquitto/mosquitto.log | head -100Affected if Logs show connections from client IDs you do not recognize or connections without authentication credentials
-
Inspect for unauthorized configuration entriesReview your broker's configuration persistence (retained messages, $SYS topics, or any configuration stores). For persistent clients, query the broker's client database or check retained message topics: mosquitto_sub -t '#' -v -C 1 (with appropriate credentials)Affected if There are retained messages or configuration entries with client IDs or topics that were not created by your authorized systems
-
Check for unexpected client IDs in the brokerUse broker management tools to list connected or registered clients. For Mosquitto: mosquitto_ctrl -u admin -P password brokers local clients. Compare against your known authorized clients and services.Affected if Client IDs exist that correspond to systems or devices you did not register
-
Verify input validation on configuration-related MQTT messagesReview your application code or broker ACL policies that process MQTT messages for configuration changes. Check if there are ACL rules limiting which topics clients can publish to. Run: grep -i 'acl' /etc/mosquitto/mosquitto.confAffected if No ACL policies exist or configuration topics are writable by anonymous clients
Your environment is affected if the MQTT broker allows anonymous connections and is accessible from untrusted networks, or if unauthorized configuration entries exist in the broker's client database or retained messages.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
From vendor dataImplement authentication and authorization on the MQTT broker, apply input validation and sanitization on all MQTT message payloads before processing, and restrict network access to the broker to prevent unauthenticated access.
- Consultation4.0 h
- Implementation6.0 h
- Testing4.0 h
- Review / QA3.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $4,832.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-44091 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-44091 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data