Meeting Notes
OpenSSF Cyber Reasoning Systems Special Interest Group
Agenda
- New APIs for CRS Development
- AIxCC CRS Integration Progress
1. New API: download-source Refactor (#133)
Breaking Change
Old API → New API:
| Old | New |
|---|---|
download-source target <dst> | download-source fuzz-proj <dst> |
download-source repo <dst> | download-source target-source <dst> |
download_source() returns Path | returns None |
1. New API: Source Provenance
fuzz-proj — oss-fuzz integration (oss-fuzz/projects/<target>/)

1. New API: Source Provenance (cont.)
target-source — project repo (from --target-source-path or Dockerfile WORKDIR)

1. New API: Invocation (via libCRS)
# Copy fuzz project files (from oss-fuzz/projects/<target>/)
libCRS download-source fuzz-proj /work/project
# Copy target source tree (for patch generation, analysis, etc.)
libCRS download-source target-source /work/src
1. New API: Builder Sidecar (#162)
Replaces long-running builder sidecar server with ephemeral containers launched per build from a snapshot image.
New libCRS Commands
libCRS apply-patch-build <patch> <out> [--builder BUILDER]
libCRS apply-patch-test <patch> [--builder BUILDER]
libCRS run-pov <pov> <harness> [--rebuild-id ID] [--builder RUNNER]
libCRS download-build-output <src> <dst> [--rebuild-id ID] [--builder BUILDER]
1. New API: Builder Sidecar (cont.)
Enabling Incremental Builds
--incremental-buildpassed to bothoss-crs build-targetandoss-crs runbuild-target --incremental-build→ creates a snapshot Docker image of the compiled targetrun --incremental-build→ ephemeral containers launch per patch from the snapshot- Without the flag → each rebuild starts fresh from the base image
Why Use It?
- ✅ Much faster patch-rebuild and test cycles — no full recompile from scratch per patch
- ⚠️ Risk of breakage if build commands break on reruns
1. New API: Builder Sidecar Architecture
flowchart LR
subgraph crs["CRS Resources"]
CRS["CRS (patcher)"]
end
subgraph infra["OSS-CRS Infra Resources"]
direction TB
BW["Builder Web-Server (Docker socket)"]
RW["Runner Web-Server (Docker socket)"]
end
subgraph ephemeral["CRS Resources (ephemeral)"]
direction TB
EB["Builder Container"]
ER["Runner Container"]
end
CRS -->|"apply-patch-build / apply-patch-test"| BW
CRS -->|"run-pov"| RW
BW -->|"docker run"| EB
RW -->|"docker run"| ER
2. AIxCC CRS Integration Progress
Completed this period
- Shellphish
- Theori
- Fuzzing Brain
In Progress
- 42-b3yond-6ug
2. AIxCC CRS Integration Progress (cont.)
Next Steps
- CRS verification (some sort of quality baseline for registering)
Q&A / Discussion
Refer to Cyber Reasoning Systems bi-weekly meeting notes.