The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsLearn about Deserialization of Untrusted Data vulnerabilities in an interactive lesson.
Start learningUpgrade org.apache.camel:camel-pqc to version 4.18.3, 4.21.0 or higher.
Affected versions of this package are vulnerable to Deserialization of Untrusted Data through the deserializeMetadata paths in AwsSecretsManagerKeyLifecycleManager, HashicorpVaultKeyLifecycleManager, and the legacy metadata migration path in FileBasedKeyLifecycleManager. An attacker can trigger arbitrary readObject() behavior by supplying crafted Base64-encoded serialized key metadata in the secret backend or legacy file format. When the PQC key lifecycle managers read metadata during normal key loading or migration, they deserialize attacker-controlled objects before any type check, so a malicious payload can execute in the application's process. This can lead to code execution in deployments that let an attacker write the camel-pqc metadata stored in HashiCorp Vault, AWS Secrets Manager, or legacy on-disk metadata files.
Notes
.key and .metadata files are still deserialized during migration, so a malicious on-disk payload only matters where operators preserve or import the old Java-serialized file format; deployments that already store PQC metadata as JSON are outside that path.KeyMetadata is wrapped inside the secret value as a metadata field, so the dangerous object graph sits in the inner payload rather than the secret envelope itself.Workarounds
camel-pqc key backend so only the application’s own identity can write the key metadata: use least-privilege HashiCorp Vault policies for the KV path, or limit AWS permissions to secretsmanager:PutSecretValue for the relevant secret. This prevents a less-trusted principal from planting crafted serialized metadata that would be deserialized during key loading.Serialization is a process of converting an object into a sequence of bytes which can be persisted to a disk or database or can be sent through streams. The reverse process of creating object from sequence of bytes is called deserialization. Serialization is commonly used for communication (sharing objects between multiple hosts) and persistence (store the object state in a file or a database). It is an integral part of popular protocols like Remote Method Invocation (RMI), Java Management Extension (JMX), Java Messaging System (JMS), Action Message Format (AMF), Java Server Faces (JSF) ViewState, etc.
Deserialization of untrusted data (CWE-502) is when the application deserializes untrusted data without sufficiently verifying that the resulting data will be valid, thus allowing the attacker to control the state or the flow of the execution.