fix: wire VectorDBInjectionDetector into proxy + runtime audit#326
Merged
andres-linero merged 1 commit intomainfrom Mar 8, 2026
Merged
fix: wire VectorDBInjectionDetector into proxy + runtime audit#326andres-linero merged 1 commit intomainfrom
andres-linero merged 1 commit intomainfrom
Conversation
- `runtime/__init__.py`: export VectorDBInjectionDetector in __all__ - `proxy.py`: instantiate VectorDBInjectionDetector alongside ResponseInspector; check every tool response for cache poisoning with CRITICAL severity upgrade for confirmed vector tool names (similarity_search, retrieve, rag_query, etc.) - `AUDIT.md`: add full runtime/API/data-flow audit (Areas 4-6), mark O4 fixed
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
andres-linero
approved these changes
Mar 8, 2026
This was referenced Mar 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
VectorDBInjectionDetectorwas implemented and tested but never wired into the live proxy — it only existed as dead code at runtimeruntime/__init__.pyalso didn't export it, so external callers couldn't use itAUDIT.mdexpanded with full runtime/API/data-flow audit (Areas 4–6)Changes
src/agent_bom/runtime/__init__.pyVectorDBInjectionDetectorto imports and__all__src/agent_bom/proxy.pyVectorDBInjectionDetectoralongsideResponseInspectorvector_detector.check()on every tool response inrelay_server_to_client()cache_poison_*AUDIT.mdTest plan
tests/test_runtime_detectors.py— all 88 tests pass (VectorDBInjectionDetector already tested)tests/test_proxy.py— proxy relay tests passtests/test_proxy_metrics.py— metrics tests pass