fix: neutralize workflow-command injection in info logs - #776
Merged
Conversation
core.info writes raw stdout, so inputs like message could inject ::stop-commands:: via a newline. Route info through safeInfo(). Co-authored-by: Cursor <cursoragent@cursor.com>
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (4)
📝 WalkthroughWalkthroughThe change adds ChangesLog Safety
Estimated code review effort: 3 (Moderate) | ~25 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
EndBug
marked this pull request as ready for review
August 16, 2026 23:28
EndBug
enabled auto-merge (squash)
August 16, 2026 23:38
Rebuild lib/ after overlapping ncc bundle changes and neutralize the new --pathspec-from-file error string. Co-authored-by: Cursor <cursoragent@cursor.com>
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
core.infowrites raw stdout, so user-controlled inputs (message, author,cwd, etc.) could inject GitHub Actions workflow commands via a newline (::stop-commands::,::error::, …).safeInfo(), which appliesneutralizeLogString()first. Git commit/author/cwd values are unchanged; only the log line is escaped.core.infowith ESLint, cover U+2028/U+2029, and add a regression test that the payload is escaped in stdout but kept raw in the commit.Test plan
npm test(78 tests, including the newline +::stop-commands::integration case)message: ${{ github.event.issue.title }}no longer emits a::command line when the title contains a newlineMade with Cursor
Summary by CodeRabbit
Bug Fixes
Tests