# DF-0058 — REPRODUCED (source-only, root-only kldload)

## Build
```sh
sh build.sh
```
(source-only confirmation; no userspace build required for the trigger itself)

## Run
```sh
sh run.sh
```

## Expected
none (root-only) on the unfixed kernel; after applying `fix.diff` the cited defect is closed.
This finding was verified by source-tracing `sys/kern/link_elf.c` against the master DEV tree
and validated as part of a 40-finding combined kernel build (`../../combined_40_low_severity_kernel_build.log`).

## Mechanism
link_elf_load_file section scan: symstrindex=shdr[i].sh_link (Elf64_Word) set with NO bounds check vs e_shnum. shdr[symstrindex].sh_size/sh_offset deref at :612/:620 is OOB if symstrindex >= e_shnum.
