SiteShadow
Back to vulnerability library

CWE-611 XXE

What this means

SiteShadow flagged XML parsing that may allow external entities or unsafe DTD features. That can cause the parser to fetch local files or make network requests during parsing.

Why it matters

XXE can expose files or internal services.

Safer examples

1) Disable DTDs / external entities

Use parser settings that disable DTD processing and external entity resolution (exact API depends on language/library).

2) Prefer safer data formats

If you control the protocol, prefer JSON/protobuf over XML for untrusted inputs.

3) Use hardened XML libraries

Many ecosystems have "secure by default" XML parsers or hardening wrappers.

How SiteShadow detects it (high level)

References

---

← Back to Vulnerability Library

Request access View coverage