Deserialization security
Skill ShieldNet-360/secure-vibe/skills/deserialization-security
SecureVibe — prevention-first security for AI-written code. Signed SKILL.md knowledge that makes AI coding assistants write secure code at generation time, plus a deterministic CI gate. Offline · keyless · Ed25519-signed. By ShieldNet360.
npx -y skills add ShieldNet-360/secure-vibe --skill deserialization-securityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Block unsafe deserialization across Java, Python, .NET, PHP, Ruby, Node.js — gadget chains, type allowlisting, safer alternatives
SKILL.md
7.5 KB, as published. Nobody here has run it
Deserialization Security
Rules (for AI agents)
ALWAYS
- Prefer structural, schema-validated formats (JSON with a JSON Schema validator, Protobuf, FlatBuffers, MessagePack with an explicit type map) over polymorphic native serializers. The trade-off "save 10 lines of mapping code" is never worth the RCE primitive.
- When a polymorphic deserializer is unavoidable, configure a strict
type allowlist at the framework level (Jackson
PolymorphicTypeValidator, fastjson safeMode, .NETKnownTypeAttribute, XStreamWhitelist). The default of "any class" is the source of every modern Java deserialization CVE. - Sign and authenticate any cookie or token that carries serialized data with a fresh random key (HMAC-SHA-256, minimum). Never deserialize before HMAC verification.
- Run deserialization code paths under the minimum capabilities the format
needs (no filesystem, no network, no subprocess, no reflection) — e.g.
Java
ObjectInputFilterpatterns; Python in a constrained namespace. - Treat any of the following functions as "untrusted-input deserialization
primitives": Java
ObjectInputStream.readObject, Jackson withenableDefaultTyping, SnakeYAMLYaml.load(), XStreamfromXML, Pythonpickle.load(s)/cPickle/dill/joblib.load,yaml.load(default Loader),numpy.load(allow_pickle=True),torch.load, PHPunserialize, .NETBinaryFormatter/ObjectStateFormatter/NetDataContractSerializer/LosFormatter, RubyMarshal.load/YAML.load(Psych ≤ 3.0). Adding one of these to a request-handling code path requires explicit security review.
NEVER
- Pass untrusted bytes to any of the primitives above without an HMAC-authenticated wrapper. Even with a wrapper, prefer a non-polymorphic format.
- Use Java
JacksonwithobjectMapper.enableDefaultTyping()or@JsonTypeInfo(use = Id.CLASS). The default ofLAMINAR_INTERNAL_DEFAULTproduces a class-id gadget chain (ysoserial / marshalsec). - Use
SnakeYAML new Yaml()without explicitly specifying aSafeConstructor(orConstructorwith an allowlist). The default constructor is the source of common Java YAML RCE CVEs. - Use Python
pickle.loadson data from a network socket, a database column, a Redis cache key, or anywhere that crosses a trust boundary. No amount of validation makes pickle safe. - Use Python
yaml.load(data)(withoutLoader=yaml.SafeLoader). PyYAML changed the default in 6.0 to fail loudly — older code paths still ship the unsafe default. - Use Python
torch.load(path)on a downloaded checkpoint withoutweights_only=True(PyTorch ≥ 2.6 defaults to True; older versions reach pickle and execute arbitrary code). - Use PHP
unserialize()on cookie / POST / GET data. PHP serialized format has a long history of magic-method gadget chains (__wakeup,__destruct,__toString). - Use .NET
BinaryFormatter,NetDataContractSerializer,ObjectStateFormatter,LosFormatterfor any input crossing a trust boundary. Microsoft marksBinaryFormatteras obsolete and unsafe. - Trust the contents of a Ruby
Marshal.loadfrom anywhere outside the same process. Same restriction forYAML.loadon older Psych.
KNOWN FALSE POSITIVES
- Internal RPC where both sides are operator-controlled, the data is authenticated end-to-end (mTLS + HMAC), and the format choice is pragmatic (e.g. Java services using ObjectInputStream over a TLS+mTLS-only socket may be acceptable in some legacy stacks).
- Build-time / configuration-time deserialization of files that ship in the repository (pickle test fixtures, etc.) — but mark them clearly and never load them from a download.
- Cryptographically-authenticated session formats like Rails' default signed-cookie sessions are intended use of Marshal, but only because the HMAC gates the deserialization.
Context (for humans)
Deserialization vulnerabilities are the single most reliable RCE
primitive in modern enterprise stacks. The economics are simple: when
the serializer allows arbitrary class instantiation, the codebase has
already imported thousands of classes — many of which have side-effects
in their readObject, __reduce__, __wakeup, Read* callbacks. A
gadget chain combines these side-effects into RCE.
ysoserial (Java), ysoserial.net (.NET), marshalsec (Java), and the Python pickle gadget catalogs are mature tooling. Every "is this exploitable?" question is "yes, with the gadgets already on your classpath."
The fix is not to filter — it is to use a format that doesn't permit arbitrary class instantiation in the first place. Most modern services ship signed JWTs / JSON over mTLS. Where a polymorphic format is unavoidable, type-allowlist + HMAC are non-negotiable.
Verify & lock (triaging a finding)
A scanner/review hit is a candidate, not a confirmed bug. Confirm it, fix it, then lock it so it can't come back.
- Confirm it's real (probe the suspect input). Feed the deserializer a crafted
payload whose gadget fires a benign canary — e.g. a pickle/PHP object whose
__reduce__/__wakeup/__destruct(or a JavareadObject/ SnakeYAML!!javax.../ .NET gadget) touches a marker file or sleeps a fixed interval. Send it through the actual sink (pickle.loads,yaml.load,ObjectInputStream,unserialize,BinaryFormatter,Marshal.load). Real if the canary fires (file appears, request hangs) — arbitrary class instantiation is reachable. False positive if the path is HMAC-gated before deserialize, uses a SafeLoader/weights_only=True/strict type-allowlist, or only loads repo-shipped build fixtures (per KNOWN FALSE POSITIVES). - Fix, then lock with a regression test (unit or integration — dev's call):
swap to a non-polymorphic/schema-validated format, or a safe loader plus type
allowlist (
SafeConstructor,PolymorphicTypeValidator,weights_only=True) and HMAC-verify before any decode. Assert the canary payload is rejected (raises / returns no object, canary never fires) and a legitimate payload still loads into the expected type. Commit it to CI so the guard can't be silently dropped in a later refactor.
References
rules/unsafe_deserializers.json- OWASP Deserialization Cheat Sheet.
- CWE-502.
- ysoserial.
- ysoserial.net.
- marshalsec.