Approved changes feed: RSS · Atom

cpe:2.3:a:objectcomputing:micronaut:*:*:*:*:*:*:*:*

part: a version: * update: *

VendorObjectcomputing (eea4a29d-9364-50f6-9ab1-6766c396d9bb)
ProductMicronaut (813d7514-a6d3-56a8-9a2e-9beed04e223a)
Edition*
Language*
Software edition*
Target software*
Target hardware*
Other*
NotesImported from purl2cpe mapping

PURL mappings

PURLSourceLast updated
pkg:github/micronaut-projects/micronaut-core purl2cpe 2026-06-01 10:13:44.634315
pkg:maven/io.micronaut/micronaut-parent purl2cpe 2026-06-01 10:13:44.634317

Vulnerability references

IdentifiercpeApplicabilitySubmitteddb.gcve.eu detailsRationale
CVE:CVE-2026-33013 vulnerable 2026-06-08 07:57:18.462713 Micronaut vulnerable to DoS via crafted form-urlencoded body binding with descending array indices
Micronaut Framework is a JVM-based full stack Java framework designed for building modular, easily testable JVM applications. Versions prior to both 4.10.16 and 3.10.5 do not correctly handle descending array index order during form-urlencoded body binding in theJsonBeanPropertyBinder::expandArrayToThreshold, which allows remote attackers to cause a DoS (non-terminating loop, CPU exhaustion, and OutOfMemoryError) via crafted indexed form parameters (e.g., authors[1].name followed by authors[0].name). This issue has been fixed in versions 4.10.16 and 3.10.5.
Published: 2026-03-20T04:47:42.768Z
Updated: 2026-03-25T14:23:38.641Z
Reference links
Imported from gcve-enriched-dumps CVE data
CVE:CVE-2026-33012 vulnerable 2026-06-08 07:57:18.462283 Micronaut Framework vulnerable to a Denial of Service in HTML error response caching
HIGH (7.5)
Micronaut Framework is a JVM-based full stack Java framework designed for building modular, easily testable JVM applications. Versions 4.7.0 through 4.10.16 used an unbounded ConcurrentHashMap cache with no eviction policy in its DefaultHtmlErrorResponseBodyProvider. If the application throws an exception whose message may be influenced by an attacker, (for example, including request query value parameters) it could be used by remote attackers to cause an unbounded heap growth and OutOfMemoryError, leading to DoS. This issue has been fixed in version 4.10.7.
Published: 2026-03-20T04:43:07.809Z
Updated: 2026-03-20T16:02:36.357Z
Reference links
Imported from gcve-enriched-dumps CVE data
CVE:CVE-2024-23639 vulnerable 2026-06-08 06:29:40.069378 micronaut-core management endpoints vulnerable to drive-by localhost attack
MEDIUM (5.1)
Micronaut Framework is a modern, JVM-based, full stack Java framework designed for building modular, easily testable JVM applications with support for Java, Kotlin and the Groovy language. Enabled but unsecured management endpoints are susceptible to drive-by localhost attacks. While not typical of a production application, these attacks may have more impact on a development environment where such endpoints may be flipped on without much thought. A malicious/compromised website can make HTTP requests to `localhost`. Normally, such requests would trigger a CORS preflight check which would prevent the request; however, some requests are "simple" and do not require a preflight check. These endpoints, if enabled and not secured, are vulnerable to being triggered. Production environments typically disable unused endpoints and secure/restrict access to needed endpoints. A more likely victim is the developer in their local development host, who has enabled endpoints without security for the sake of easing development. This issue has been addressed in version 3.8.3. Users are advised to upgrade.
Published: 2024-02-09T00:15:34.496Z
Updated: 2024-08-01T23:06:25.336Z
Reference links
Imported from gcve-enriched-dumps CVE data
CVE:CVE-2022-21700 vulnerable 2026-06-08 05:40:02.028841 Memory leak in micronaut-core
MEDIUM (5.3)
Micronaut is a JVM-based, full stack Java framework designed for building JVM web applications with support for Java, Kotlin and the Groovy language. In affected versions sending an invalid Content Type header leads to memory leak in DefaultArgumentConversionContext as this type is erroneously used in static state. ### Impact Sending an invalid Content Type header leads to memory leak in `DefaultArgumentConversionContext` as this type is erroneously used in static state. ### Patches The problem is patched in Micronaut 3.2.7 and above. ### Workarounds The default content type binder can be replaced in an existing Micronaut application to mitigate the issue: ```java package example; import java.util.List; import io.micronaut.context.annotation.Replaces; import io.micronaut.core.convert.ConversionService; import io.micronaut.http.MediaType; import io.micronaut.http.bind.DefaultRequestBinderRegistry; import io.micronaut.http.bind.binders.RequestArgumentBinder; import jakarta.inject.Singleton; @Singleton @Replaces(DefaultRequestBinderRegistry.class) class FixedRequestBinderRegistry extends DefaultRequestBinderRegistry { public FixedRequestBinderRegistry(ConversionService conversionService, List<RequestArgumentBinder> binders) { super(conversionService, binders); } @Override protected void registerDefaultConverters(ConversionService<?> conversionService) { super.registerDefaultConverters(conversionService); conversionService.addConverter(CharSequence.class, MediaType.class, charSequence -> { try { return MediaType.of(charSequence); } catch (IllegalArgumentException e) { return null; } }); } } ``` ### References Commit that introduced the vulnerability https://github.com/micronaut-projects/micronaut-core/commit/b8ec32c311689667c69ae7d9f9c3b3a8abc96fe3 ### For more information If you have any questions or comments about this advisory: * Open an issue in [Micronaut Core](https://github.com/micronaut-projects/micronaut-core/issues) * Email us at [info@micronaut.io](mailto:info@micronaut.io)
Published: 2022-01-18T22:15:13.000Z
Updated: 2025-04-23T19:10:23.677Z
Reference links
Imported from gcve-enriched-dumps CVE data
CVE:CVE-2021-32769 vulnerable 2026-06-08 05:32:07.999517 Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') in micronaut-core
HIGH (7.5)
Micronaut is a JVM-based, full stack Java framework designed for building JVM applications. A path traversal vulnerability exists in versions prior to 2.5.9. With a basic configuration, it is possible to access any file from a filesystem, using "/../../" in the URL. This occurs because Micronaut does not restrict file access to configured paths. The vulnerability is patched in version 2.5.9. As a workaround, do not use `**` in mapping, use only `*`, which exposes only flat structure of a directory not allowing traversal. If using Linux, another workaround is to run micronaut in chroot.
Published: 2021-07-16T18:25:09.000Z
Updated: 2024-08-03T23:33:55.862Z
Reference links
Imported from gcve-enriched-dumps CVE data
CVE:CVE-2020-7611 vulnerable 2026-06-08 05:27:13.809131 db.gcve.eu details were skipped to keep the page responsive. Imported from gcve-enriched-dumps CVE data

Contribute

You can submit an edit proposal for this CPE entry or suggest a related product/vendor addition using the action button above.