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.

OpenVINO IR (.xml/.bin) Integer Overflow PoC

CWE-190/CWE-125: offset+size overflow in xml_deserialize_util.cpp -> OOB READ

Bug

XML <data offset="..." size="..."> attributes: offset+size overflows size_t, bounds check passes. Pointer goes OOB.

4 instances:

  1. Main constant path (line 895) -> SEGV
  2. String tensor path (line 828) -> heap-buffer-overflow READ
  3. shape_size unsafe multiply (line 904) -> validation bypass (safe version exists but unused!)
  4. Preprocessing mean path (input_model.cpp:136) -> same pattern

OpenVINO HAS shape_size_safe() and mul_overflow() but doesn't use them in the IR deserializer.

Build & Run

g++ -std=c++17 -fsanitize=address -g -O0 -o harness harness.cpp
./harness          # offset+size overflow -> SEGV
./harness variant2 # offset+size -> heap-buffer-overflow
./harness shape    # shape_size overflow (validation bypass)
Downloads last month
30