-
Notifications
You must be signed in to change notification settings - Fork 1
fable security update #451
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
Open
gemal
wants to merge
11
commits into
main
Choose a base branch
from
fix16
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9b186a4
fable security update
gemal f33866a
fixes
gemal 4e14fae
update
gemal ee7c13c
more fixes
gemal 5c9417e
fixes
gemal affb3cb
fixes
gemal 3075f99
Update scorecard.yml
gemal ba688b8
Update ci.yml
gemal caf3984
x
gemal 8f1f804
Update eslint.config.js
gemal 32c9655
add test
gemal 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,26 @@ | ||
| name: Install and verify safe-chain | ||
| description: Installs safe-chain and verifies it is working correctly | ||
| description: Installs safe-chain (checksum-verified) and verifies it is working correctly | ||
|
|
||
| runs: | ||
| using: composite | ||
| steps: | ||
| - name: Install safe-chain | ||
| shell: bash | ||
| run: curl --fail --silent --show-error --retry 3 --location "https://github.com/AikidoSec/safe-chain/releases/download/${SAFECHAIN_VERSION}/install-safe-chain.sh" | sh -s -- --ci | ||
| run: | | ||
| SCRIPT="$(mktemp -d)/install-safe-chain.sh" | ||
| curl --fail --silent --show-error --retry 3 --location --output "$SCRIPT" \ | ||
| "https://github.com/AikidoSec/safe-chain/releases/download/${SAFECHAIN_VERSION}/install-safe-chain.sh" | ||
| echo "${SAFECHAIN_SHA256} ${SCRIPT}" | sha256sum --check --quiet | ||
| sh "$SCRIPT" --ci | ||
| rm -f "$SCRIPT" | ||
| env: | ||
| SAFECHAIN_VERSION: 1.5.11 | ||
| SAFECHAIN_VERSION: 1.5.12 | ||
| SAFECHAIN_SHA256: e40995d546160bf18788dbfc6e9a4a765152abeca92014adf85102cf6b13d890 | ||
| # https://github.com/AikidoSec/safe-chain/releases | ||
|
|
||
| - name: Test safe-chain | ||
| shell: bash | ||
| # this must fail if safe-chain is working | ||
| run: | | ||
| run: | # zizmor: ignore[adhoc-packages] | ||
| npm safe-chain-verify | ||
| ! npm install safe-chain-test | ||
| ! npm install --no-save safe-chain-test | ||
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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # npm security best practices | ||
| # Source: https://github.com/lirantal/npm-security-best-practices | ||
|
|
||
| # SECURITY: do not run any lifecycle scripts (postinstall) etc | ||
| ignore-scripts=true | ||
|
|
||
| # SECURITY: reject git-source dependencies (git+ssh:// etc) | ||
| allow-git=none | ||
|
|
||
| # SECURITY: block packages newer than X days | ||
| min-release-age=3 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Security Policy | ||
|
|
||
| ## Supported Versions | ||
|
|
||
| Only the latest published version is supported with security updates. | ||
|
|
||
| ## Reporting a Vulnerability | ||
|
|
||
| Please do not report security vulnerabilities through public GitHub issues. | ||
|
|
||
| Instead, use one of these channels: | ||
|
|
||
| - **GitHub private vulnerability reporting** (preferred): | ||
| [Report a vulnerability](https://github.com/gemal/node-has-exif-cli/security/advisories/new) | ||
| - **Email**: henrik@gemal.dk | ||
|
|
||
| Please include a description of the issue, steps to reproduce, and the | ||
| affected version. You can expect an initial response within a week. |
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.
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.
Uh oh!
There was an error while loading. Please reload this page.