-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update tj-actions/changed-files action to v36 [SECURITY] #153
Update tj-actions/changed-files action to v36 [SECURITY] #153
Conversation
Current Aviator status
This PR was merged manually (without Aviator). Merging manually can negatively impact the performance of the queue. Consider using Aviator next time.
See the real-time status of this PR on the
Aviator webapp.
Use the Aviator Chrome Extension
to see the status of your PR within GitHub.
|
Unable to locate .performanceTestingBot config file |
Micro-Learning Topic: OS command injection (Detected by phrase)Matched on "command injection"In many situations, applications will rely on OS provided functions, scripts, macros and utilities instead of reimplementing them in code. While functions would typically be accessed through a native interface library, the remaining three OS provided features will normally be invoked via the command line or launched as a process. If unsafe inputs are used to construct commands or arguments, it may allow arbitrary OS operations to be performed that can compromise the server. Try a challenge in Secure Code WarriorHelpful references
|
This PR has Quantification details
Why proper sizing of changes matters
Optimal pull request sizes drive a better predictable PR flow as they strike a
What can I do to optimize my changes
How to interpret the change counts in git diff output
Was this comment helpful? 👍 :ok_hand: :thumbsdown: (Email) |
Important Auto Review SkippedBot user detected. To trigger a single review, invoke the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChat with CodeRabbit Bot (
|
Hi there! 👋 Thanks for opening a PR. 🎉 To get the most out of Senior Dev, please sign up in our Web App, connect your GitHub account, and add/join your organization AdamOswald. After that, you will receive code reviews beginning on your next opened PR. 🚀 |
Thanks for opening this Pull Request!
|
View changes in DiffLens |
This PR contains the following updates:
v35
->v36
GitHub Vulnerability Alerts
CVE-2023-51664
Summary
The
tj-actions/changed-files
workflow allows for command injection in changed filenames, allowing an attacker to execute arbitrary code and potentially leak secrets.Details
The
changed-files
action returns a list of files changed in a commit or pull request which provides anescape_json
input enabled by default, only escapes"
for JSON values.This could potentially allow filenames that contain special characters such as
;
and ` (backtick) which can be used by an attacker to take over the GitHub Runner if the output value is used in a raw fashion (thus being directly replaced before execution) inside arun
block. By running custom commands an attacker may be able to steal secrets such asGITHUB_TOKEN
if triggered on other events thanpull_request
. For example onpush
.Proof of Concept
$(whoami).txt
which is a valid filename.List all changed files
step below.Example output:
Impact
This issue may lead to arbitrary command execution in the GitHub Runner.
Resolution
A new
safe_output
input would be enabled by default and return filename paths escaping special characters like ;, ` (backtick), $, (), etc for bash environments.A safe recommendation of using environment variables to store unsafe outputs.
Resources
Release Notes
tj-actions/changed-files (tj-actions/changed-files)
v36
Compare Source
Changes in v36.4.1
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.4.1
Changes in v36.4.0
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.4.0
Changes in v36.3.0
🚀 New Features
files_yaml
,files_yaml_from_source_file
this enables creating filters using YAML.Example
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.3.0
Changes in v36.2.1
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.2.1
Changes in v36.2.0
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.2.0
Changes in v36.1.0
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.1.0
Changes in v36.0.18
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.18
Changes in v36.0.17
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.17
Changes in v36.0.16
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.16
Changes in v36.0.15
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.15
Changes in v36.0.14
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.14
Changes in v36.0.13
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.13
Changes in v36.0.12
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.12
Changes in v36.0.11
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.11
Changes in v36.0.10
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.10
Changes in v36.0.9
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.9
Changes in v36.0.8
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.8
Changes in v36.0.7
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.7
Changes in v36.0.6
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.6
Changes in v36.0.5
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.5
Changes in v36.0.4
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.4
Changes in v36.0.3
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.3
Changes in v36.0.2
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.2
Changes in v36.0.1
What's Changed
Full Changelog: tj-actions/changed-files@v36...v36.0.1
Changes in v36.0.0
🚀 Announcing v36: Major Performance Improvements and Enhanced Functionality!
We're thrilled to announce the release of v36! This new version brings a lot of exciting improvements and sets the stage for even more progress in the future.
We've made a major upgrade from a composite action to a javascript action, which brings a number of benefits, including:
**.js
would match all .js filesAnd that's just the beginning! We've also made some important changes to our inputs and outputs:
🔥🔥 BREAKING CHANGES 🔥 🔥
Inputs
json_raw_format
: We've changed this input toescape_json
, which returns unescaped values when set tofalse
.match_directories
: We've removed this input, but you can still get matching directories by settingdir_names
totrue
.diff_relative
: This input now has a default value oftrue
.files_from_source_file_separator
: We've added this input to enable using a custom separator to split filenames passed via thefiles_from_source_file
input.files_ignore_from_source_file_separator
: We've also added this input with a similar use case for thefiles_ignore_from_source_file
input.Outputs
any_(changed|modified|deleted)
: This output now always returns either atrue
orfalse
as opposed to an empty string when there are no patterns.only_(changed|modified|deleted)
: Similar changes also apply here, which now return either atrue
orfalse
.Versioning
[...]-sec
tags will no longer be created going forward, with the introduction of this new design.We're excited about all of these changes and can't wait for you to try them out. As always, if you have any questions or feedback, please don't hesitate to reach out!
Full Changelog: tj-actions/changed-files@v35...v36.0.0
Configuration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.