LiveActive security incident?Get immediate response
CVE Record

CVE-2021-37632: Deserialization of Untrusted Data in com.supermartijn642.configlib.ConfigSyncPacket

SuperMartijn642's Config Lib is a library used by a number of mods for the game Minecraft. The versions of SuperMartijn642's Config Lib between 1.0.4 and 1.0.8 are affected by a vulnerability and can be exploited on both servers and clients. Using SuperMartijn642's Config Lib, servers will send a packet to clients with the server's config values. In order to read `enum` values from the packet data, `ObjectInputStream#readObject` is used. `ObjectInputStream#readObject` will instantiate a class based on the input data. Since, the packet data is not validated before `ObjectInputStream#readObject` is called, an attacker can instantiate any class by sending a malicious packet. If a suitable class is found, the vulnerability can lead to a number of exploits, including remote code execution. Although the vulnerable packet is typically only send from server to client, it can theoretically also be send from client to server. This means both clients and servers running SuperMartijn642's Config Lib between 1.0.4 and 1.0.8 are vulnerable. The vulnerability has been patched in SuperMartijn642's Config lib 1.0.9. Both, players and server owners, should update to 1.0.9 or higher.

HighCVSS 8.1Not KEV-listedUpdated
Glexia's TakeAutomated analysishigh

Security readout for executives and security teams

Plain-English summary

This vulnerability affects a Minecraft mod library that synchronizes server configuration to clients. Malicious packet data may cause unsafe Java deserialization. If the right supporting classes are present, impact can include remote code execution. Both players and server owners using affected Config Lib versions should prioritize updating.

Executive priority

Prioritize remediation for public or community Minecraft servers and distributed client modpacks. The issue can potentially reach remote code execution, but available sources do not confirm active exploitation. Updating the library is the named remediation.

Technical view

CVE-2021-37632 is CWE-502 deserialization of untrusted data in ConfigSyncPacket. The library used ObjectInputStream.readObject for enum values without validating packet data, allowing attacker-controlled class instantiation. Sources state the packet is normally server-to-client but could theoretically be client-to-server. Patch is SuperMartijn642's Config Lib 1.0.9.

Likely exposure

Exposure is limited to Minecraft clients or servers running SuperMartijn642's Config Lib in the affected range. The bundle has inconsistent version notation: narrative says 1.0.4 to 1.0.8, while structured data says >=1.0.4, <1.0.8.

Exploitation context

No KEV listing or cited source confirms active exploitation. The CVSS score is 8.1 with network attack vector and high confidentiality, integrity, and availability impact, but attack complexity is high. Practical impact depends on receiving a malicious packet and the presence of suitable classes.

Researcher notes

Focus review on packet handling paths around ConfigSyncPacket and unsafe ObjectInputStream.readObject use. Avoid assuming exploitability without environment-specific classpath analysis. The public bundle does not provide exploit details, observed attacks, or compensating controls beyond upgrading.

Mitigation direction

  • Update SuperMartijn642's Config Lib to version 1.0.9 or higher.
  • Inventory Minecraft clients and servers for bundled or direct Config Lib versions.
  • Check modpacks for transitive inclusion of the affected library.
  • Follow the GitHub advisory for any vendor-specific upgrade guidance.

Validation and detection

  • Confirm installed Config Lib versions on servers and client modpacks.
  • Treat version 1.0.8 exposure cautiously until verified against vendor advisory details.
  • Verify updated deployments load Config Lib 1.0.9 or higher.
  • Review logs for unexpected disconnects or packet handling errors if available.
Prepared
Confidence
high
Sources
3

Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.

Potential ATT&CK relevance

Conservative CVE-to-ATT&CK context

These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.

ATT&CK lookup starting points

Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.

cwe · medium confidence lookup

CWE-502: Code execution behavior lookup

Code execution and unsafe deserialization weaknesses often justify reviewing execution behavior and process telemetry. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.

Open ATT&CK lookup
description · low confidence lookup

Execution behavior lookup

The CVE wording references code or command execution, so execution technique review may help defensive triage. This is a Glexia inferred lookup path, not an official MITRE, ATT&CK, or CVE Program mapping.

Open ATT&CK lookup
cve · low confidence lookup

CVE-2021-37632 mapping review

Open the CVE-to-ATT&CK bridge for reviewed, inferred, or future official mappings tied to this CVE.

Open ATT&CK lookup
Vulnerability profileCVE Program record
Severity
High
CVSS
8.1 (3.1)
Known Exploited
No
Published

Vector: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H

Official CVE source material

CNA and ADP enrichment extracted from CVE v5

These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.

1CVSS vectors
0Timeline events
0ADP providers
2Source links

CVSS vector scores

1 official score

We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.

ScoreVersionSeverityVectorExploitImpactSource
8.1CVSS 3.1HighCVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H2.25.9Primary CVE score

Vulnerability scoring details

Base CVSS 3.1 score

8.1High
CVSS 3.1 vector shape for CVE-2021-37632Attack VectorAttack ComplexityPrivileges RequiredUser InteractionScopeConfidentiality ImpactIntegrity ImpactAvailability Impact

Vector: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H

Attack Vector
NetworkAdjacentLocalPhysical
Attack Complexity
LowHigh
Privileges Required
NoneLowHigh
User Interaction
NoneRequired
Scope
ChangedUnchanged
Confidentiality Impact
HighLowNone
Integrity Impact
HighLowNone
Availability Impact
HighLowNone
Affected products

Products and packages named in the record

VendorProductVersion / packageStatus
SuperMartijn642SuperMartijn642sConfigLib>= 1.0.4, < 1.0.8Listed
Weakness

CWE details

CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.

CWE-502 · source CWE mapping

Deserialization of Untrusted Data

Deserialization of Untrusted Data represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.