with one click
verify-pov
How to verify a candidate POV input using libCRS run-pov
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
How to verify a candidate POV input using libCRS run-pov
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | verify-pov |
| description | How to verify a candidate POV input using libCRS run-pov |
Test whether a candidate input crashes the harness. This runs inside the OSS-CRS target environment (JVM, ASAN, correct libraries).
# 1. Write candidate input to a file
python3 -c "import sys; sys.stdout.buffer.write(b'AAAA' * 50)" > /tmp/candidate.bin
# 2. Run against the harness on the original build (omit --rebuild-id)
libCRS run-pov /tmp/candidate.bin /tmp/run_001 \
--harness {harness}
# 3. Check result
cat /tmp/run_001/retcode
# non-zero = crash (valid POV)
# 0 = no crash
# 124 = timeout
# 4. Inspect crash details
cat /tmp/run_001/stderr.log # ASAN output, stack traces
cat /tmp/run_001/stdout.log # Program output, Java exceptions
Use different response directories for each candidate:
libCRS run-pov /tmp/candidate_1.bin /tmp/run_001 --harness {harness}
libCRS run-pov /tmp/candidate_2.bin /tmp/run_002 --harness {harness}
# Compare results
for d in /tmp/run_001 /tmp/run_002; do
echo "=== $d ==="
cat "$d/retcode"
head -5 "$d/stderr.log"
done
C/C++ (ASAN): Non-zero exit code + AddressSanitizer / SEGV / ABRT in stderr.
JVM (Jazzer): Non-zero exit code (often 77) + FuzzerSecurityIssueCritical or FuzzerSecurityIssueHigh in stdout. Jazzer hooks detect dangerous API calls (command injection, SQL injection, path traversal, etc.).
--rebuild-id for any submission check. That runs against the round's original pre-built target.--rebuild-id <id> only when testing a debug/instrumented build from apply-patch-build; crashes seen only there are not submittable.