Views
No views yet
.model artifacts that demonstrate a native parser abort in CNTK model deserialization.
The PoC does not execute code, persist state, access credentials, or make network calls; it only demonstrates a local process abort from a malformed model artifact.protobuf_len_ff_abort.model is a 544-byte CNTK v2 model mutated at byte offset 3.
The seed control model returns a catchable CNTK error through CNTK_LoadModel, but the malformed artifact aborts the process with free(): invalid pointer before CNTK_LoadModel can return a clean status.2.7.post2 produced exit status 134 through a shell timeout wrapper, and -6 / SIGABRT through direct Python subprocess execution..model)2.7.post2CNTK_LoadModelartifacts/protobuf_len_ff_abort.model
e4134ae05d70dac404ae6c008c339d3383852b70c786506e606ecd62f0eb2540artifacts/seed_control.model
e5d4249a9f5da52dbb486eb9d3d8d8dd6349e30551d59ed127784fab8fb0082d3 from 0x11 to 0xff.1data = bytearray(seed.read_bytes())
2data[3] = 0xff
3out.write_bytes(data)src/make_parser_crash_candidate.py.src/load_cntk_model.cpp.
Then run:1python verify_cntk_parser_abort.py --harness /path/to/load_cntk_model \
2 --cntk-lib /path/to/cntk/libs \
3 --openmpi-lib /path/to/openmpi/usr/lib \
4 --openmpi-extra-lib /path/to/openmpi/usr/lib/x86_64-linux-gnuseed_control.model returns 1 with a clean CNTK status/description.protobuf_len_ff_abort.model terminates with SIGABRT (-6) or shell status 134 and prints free(): invalid pointer.2.7.post271133245e10cdc1eca0b44b5fe241b2c97d0c16b8e12425896541a94ab1b55890.8.8evidence/parser_crash_repro_3x.txt: three repeated shell-wrapper runs, all rc 134.evidence/parser_seed_control.txt: seed control returns a catchable CNTK plugin-load error.evidence/parser_crash_control.txt: primary artifact aborts with free(): invalid pointer.evidence/mutation_probe_summary.txt: bounded mutation probe over 1096 variants; 1034 clean loader errors, 62 native signals/aborts, 0 timeouts.0.8.8 reports zero issues, scans zero files, and skips the .model artifact as unsupported.
This is supporting scanner/runtime mismatch evidence only; the primary impact is the native parser abort in CNTK.