-
Notifications
You must be signed in to change notification settings - Fork 9
t1412.4: Runtime content scanning for worker pipelines #3098
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
244af9d
feat: add runtime content scanning for worker pipelines (t1412.4)
marcusquinn 115284f
Merge remote-tracking branch 'origin/main' into feature/t1412.4-runti…
marcusquinn 688e2f0
fix: address CodeRabbit security findings in runtime content scanning
marcusquinn 075e66c
fix: address remaining review feedback on runtime content scanning
marcusquinn ea7ed57
fix: address final CodeRabbit review comments on runtime content scan…
marcusquinn bb0ce53
fix: replace fail-open || true with exit-status branching in dispatch…
marcusquinn ad671f4
fix: address remaining CodeRabbit review findings on runtime scanning
marcusquinn 4e81b52
fix: add structural pattern checks before keyword prefilter early return
marcusquinn 31d0823
fix: guard shift 2 args, disable fast-path for dynamic patterns, remo…
marcusquinn 15c3df2
fix: scan custom patterns against original message in Unicode retry path
marcusquinn 5b08dcf
fix: remove remaining stderr suppression from scan paths
marcusquinn 741b01f
fix: add log_warn function and remove remaining stderr suppression in…
marcusquinn 2ec7d6f
fix: add NFKC normalization regression tests and harden scan-disabled…
marcusquinn 68718bc
fix: escape all interpolated values in JSON fallback paths to prevent…
marcusquinn 47aa1de
fix: address critical CodeRabbit security findings in t1412.4
marcusquinn 208b7e0
test: add mathematical bold Unicode normalization regression test
marcusquinn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't make scanner unavailability a hard dispatch blocker.
This early return turns t1412.4 into enforcement, blocks otherwise runnable cron jobs, and skips the scoped-token cleanup path later in
main(). Thescan_exit >= 2branch below already has the right degraded-mode behavior: prepend an explicit trust warning and continue dispatching.Suggested fix
🤖 Prompt for AI Agents