Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
1–10 of 317 posts
Re: Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
#2Re: Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
#3Re: Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
#4Maybe GitHub should have some kind of security setting a repo owner can make that locks-down things like old tags so after a certain time they can't be changed.
Re: Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
#5StepSecurity Harden-Runner detected this security incident by continuously monitoring outbound network calls from GitHub Actions workflows and generating a baseline of expected behaviors. When the compromised tj-actions/changed-files Action was executed, Harden-Runner flagged it due to an unexpected endpoint appearing in the network traffic—an anomaly that deviated from the established baseline. You can checkout the project here: https://github.com/step-security/harden-runner
Re: Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
#6Time and time again, they either get hijacked and malicious code added, or the dev themselves suddenly decides to betray everyone's trust and inject malicious code (see: Moq), or they sell out to some company that changes the license to one where you have to pay hundreds of dollars to keep using it (e.g. the recent FluentAssertions debacle), or one of those happens to any of the packages' hundreds of dependencies.
Just take a look at eslint's dependency tree: https://npmgraph.js.org/?q=eslint
Can you really say you trust all of these?
Re: Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
#7Semver notation rather than branches or tags is a great solution to this problem. Specify the version that want, let the package manager resolve it, and then periodically update all of your packages. It would also improve build stability.
Re: Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
#8In recent years, it's started to feel like you can't trust third-party dependencies and extensions at all anymore. I no longer install npm packages that have more than a few transitive dependencies, and I've started to refrain from installing vscode or chrome extensions altogether. Time and time again, they either get hijacked and malicious code added, or the dev themselves suddenly decides to betray everyone's trust…
Re: Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
#9Re: Tj-actions/changed-files GitHub Action Compromised – used by over 23K repos
#10In recent years, it's started to feel like you can't trust third-party dependencies and extensions at all anymore. I no longer install npm packages that have more than a few transitive dependencies, and I've started to refrain from installing vscode or chrome extensions altogether. Time and time again, they either get hijacked and malicious code added, or the dev themselves suddenly decides to betray everyone's trust…
And if you turn on devDependencies (top right), it goes from 85 to 1263.