You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a sample base64-encoded .NET serialized object, often used as an indicator of compromise (IOC) in detection procedures. It represents a binary serialized payload that could contain embedded malicious code, such as a gadget chain for deserialization attacks. Use this pattern to search files or network captures for similar structures.
Parameters
Variable
Description
Example
None
This is a static example string; no variables to substitute
N/A
Usage
Embed this in detection rules (e.g., YARA signatures or regex searches) to identify serialized objects in files (.dat, .bin, .ser) or traffic. In the [[procedures/Detect-.NET-Serialization-Attacks]] procedure, reference it as a pattern in file scans to flag potential attack artifacts. Decode with tools like ysoserial.net for analysis, but avoid deserializing untrusted samples.
Detection
Search for the header 'AAEAAAD' in binary files or base64 traffic.
Monitor for deserialization errors in .NET app logs.
Use EDR tools to alert on processes accessing serialization libraries with this pattern.