CWE
611
Advisory Published
Advisory Published
Updated

CVE-2023-41034: XEE

First published: Thu Aug 31 2023(Updated: )

### Impact `DDFFileParser` and `DefaultDDFFileValidator` (and so `ObjectLoader`) are vulnerable to [XXE Attacks](https://owasp.org/www-community/vulnerabilities/XML_External_Entity_(XXE)_Processing). [DDF file](https://github.com/eclipse-leshan/leshan/wiki/Adding-new-objects#the-lwm2m-model) is a LWM2M format used to store LWM2M object description. Leshan users are impacted only if they parse untrusted DDF files (e.g. if they let external users provide their own model), in that case they MUST upgrade to fixed version. If you parse only trusted DDF file and validate only with trusted xml schema, upgrading is not mandatory. ### Patches This is fixed in **v1.5.0** and **2.0.0-M13**. ### Workarounds No easy way. Eventually writing your own `DDFFileParser`/`DefaultDDFFileValidator` (and so `ObjectLoader`) creating a `DocumentBuilderFactory` with : ```java // For DDFFileParser DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true); factory.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true); // Disable DTDs factory.setXIncludeAware(false); // Disable XML Inclusions factory.setExpandEntityReferences(false); // disable expand entity reference nodes // For DefaultDDFFileValidator SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true); factory.setProperty(XMLConstants.ACCESS_EXTERNAL_DTD, ""); factory.setProperty(XMLConstants.ACCESS_EXTERNAL_SCHEMA, ""); ``` ### References - https://owasp.org/www-community/vulnerabilities/XML_External_Entity_(XXE)_Processing - https://cheatsheetseries.owasp.org/cheatsheets/XML_External_Entity_Prevention_Cheat_Sheet.html - https://semgrep.dev/docs/cheat-sheets/java-xxe/ - https://community.veracode.com/s/article/Java-Remediation-Guidance-for-XXE

Credit: security-advisories@github.com security-advisories@github.com

Affected SoftwareAffected VersionHow to fix
maven/org.eclipse.leshan:leshan-core>=2.0.0-M1<2.0.0-M13
2.0.0-M13
maven/org.eclipse.leshan:leshan-core<1.5.0
1.5.0
Eclipse Leshan<1.5.0
Eclipse Leshan=2.0.0-milestone1
Eclipse Leshan=2.0.0-milestone10
Eclipse Leshan=2.0.0-milestone11
Eclipse Leshan=2.0.0-milestone12
Eclipse Leshan=2.0.0-milestone2
Eclipse Leshan=2.0.0-milestone3
Eclipse Leshan=2.0.0-milestone4
Eclipse Leshan=2.0.0-milestone5
Eclipse Leshan=2.0.0-milestone6
Eclipse Leshan=2.0.0-milestone7
Eclipse Leshan=2.0.0-milestone8
Eclipse Leshan=2.0.0-milestone9

Never miss a vulnerability like this again

Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.

Frequently Asked Questions

  • What is CVE-2023-41034?

    CVE-2023-41034 is a vulnerability in Eclipse Leshan, a device management server and client Java implementation.

  • What is the impact of CVE-2023-41034?

    CVE-2023-41034 allows for XXE (XML External Entity) attacks which can lead to unauthorized data disclosure and server-side request forgery.

  • Is there a fix for CVE-2023-41034?

    Yes, upgrading to version 2.0.0-M13 or higher for Leshan Core resolves the vulnerability.

  • What is the severity of CVE-2023-41034?

    CVE-2023-41034 has a severity rating of 9.8 (Critical).

  • Where can I find more information about CVE-2023-41034?

    You can find more information about CVE-2023-41034 on the Eclipse Leshan GitHub repository and the associated security advisories.

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.
© 2024 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203