Dataset Viewer
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Protocol Buffers MFV PoC: C Stack Overflow via Deeply Nested Message
Vulnerability
When protobuf Python C extension has allow_oversize_protos=True (via _message.SetAllowOversizeProtos(True)),
the C++ recursion limit is set to INT_MAX. A deeply nested .pb message (~44,000 levels) causes
C stack overflow → SIGSEGV (SEGFAULT).
Reproduction
from google.protobuf.pyext import _message
_message.SetAllowOversizeProtos(True)
# Load malicious.pb → SIGSEGV
Files
malicious.pb— 170KB .pb file with 44,000 layers of nested messagesgen_poc.py— generator script
- Downloads last month
- 42