Analyze the security posture of one or more GitHub Actions
Project description
asa
asa (actions-security-analzyer) is a tool to analyze the security posture of your GitHub Actions.
Installation
Make sure you have
$HOME/.local/bin
in your PATH
pip3 install actions-security-analzyer
Usage
asa --file action.yml
asa -d directory-with-actions/ --verbose
asa --file action.yml --ignore-warnings
asa --list-checks
Checks Performed by asa
-
Name:
check_for_3p_actions_without_hash
, Level:FAIL
- This check identifies any third-party GitHub Actions in use that have been referenced via a version number such as
v1.1
instead of commit SHA haah. Using a hash can help mitigate supply chain threats in a scenario where a threat actor has compromised the source repository where the 3P action lives.
- This check identifies any third-party GitHub Actions in use that have been referenced via a version number such as
-
Name:
check_for_allow_unsecure_commands
, Level:FAIL
- This check looks for the usage of environment variable called
ACTIONS_ALLOW_UNSECURE_COMMANDS
which allows for an Action to get access to dangerous commands (get-env
,add-path
) which can lead to code injection and credential thefts opportunities.
- This check looks for the usage of environment variable called
-
Name:
check_for_cache_action_usage
, Level:WARN
- This check finds any usage of GitHub's caching Action (
actions/cache
) which may result in sensitive information disclosure or cache poisoning.
- This check finds any usage of GitHub's caching Action (
-
Name:
check_for_dangerous_write_permissions
, Level:FAIL
- This check looks for write permissions granted to potentially dangerous scopes such as the
contents
scope which may allow an adversary write code into the target repository if they're able to compromise the workflow. It's also looks for usage of thewrite-all
which gives the action complete write access to all scopes.
- This check looks for write permissions granted to potentially dangerous scopes such as the
-
Name:
check_for_inline_script
, Level:WARN
- This check simply warns that you're using an inline script instead of GitHub Action. Inline scripts are susceptible to script injection attacks (another check covered by
asa
). It is recommended to write an action and pass any required context values as inputs to that action which removes script injection vector because action input are properly treated as arguments and are not evaluated as part of a script.
- This check simply warns that you're using an inline script instead of GitHub Action. Inline scripts are susceptible to script injection attacks (another check covered by
-
Name:
check_for_pull_request_target
, Level:FAIL
- This check looks for the usage of the dangerous event trigger
pull_request_target
which allows workflow executions to run in the context of the repository that defines the workflow, not the repository that the pull request originated from, potentially allowing a threat actor to gain access to a repositories sensitive secrets!
- This check looks for the usage of the dangerous event trigger
-
Name:
check_for_script_injection
, Level:FAIL
- This check looks for the most commonly known security risk to GitHub Action - script injection. Script injection occurs when an action directly includes (using the
${{ ... }}
syntax) a GitHub Context variable(s) in an inline script that can be controlled by an untrusted actor, resulting in command execution in the interpreted shell. These user-controllable parameters should be passed into an inline script as environment variables.
- This check looks for the most commonly known security risk to GitHub Action - script injection. Script injection occurs when an action directly includes (using the
-
Name:
check_for_self_hosted_runners
, Level:WARN
- This checks attempts to identify the usage of self-hosted runners. Self-hosted runners are dangerous because if the Action is compromised it may allow a threat actor to gain access to on premise environment or establish persistence mechanisms on a server you own/rent.
-
Name:
check_for_aws_configure_credentials_non_oidc
, Level:WARN
- This checks looks for the usage of AWS's
aws-actions/configure-aws-credentials
action and attempts to identify non-OIDC authentication parameters. Non-OIDC authentication types are less secure than OIDC because they require the creation of long-term credentials which can be compromised, however, OIDC tokens are short-lived and are usually scoped to only the permissions that are essential to a workflow and thus help reduce the attack surface.
- This checks looks for the usage of AWS's
References
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for actions_security_analyzer-1.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf0bc241f81526e41523afa2ca78a17f62b9304a5a0e72c906c55e849cba179c |
|
MD5 | 65b06694cdcd0689ee14d0f0dd92c6a7 |
|
BLAKE2b-256 | 14f2d86d8ae053b7e38fb8bf24641e255cd625956d0cfe01e898cd902a77cef0 |
Hashes for actions_security_analyzer-1.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a940f27a82ccf23eca00b557b78227932251fc9493037636f5b7d54688b5ae63 |
|
MD5 | fbf015c637f4a4f3af439fca4d7db987 |
|
BLAKE2b-256 | fd68998f866f1c4bee2744bcdb8fb633d367410c0946bb4e09cca01f5078e861 |