Run multiple open source security static analysis tools without the added complexity with OSSAR (Open Source Static Analysis Runner).
Перейти к файлу
David Knise 7b8c5a9263 Add msca-actions-toolkit to committed node_modules 2021-02-20 20:42:00 -08:00
.gdn GitHub OSSAR Action initial commit. 2020-06-24 10:13:19 -07:00
.github/workflows Do not reference action.yml, just the folder 2020-11-20 14:19:24 -08:00
lib Update to depend on msca-actions-toolkit 2021-02-20 20:33:41 -08:00
node_modules Add msca-actions-toolkit to committed node_modules 2021-02-20 20:42:00 -08:00
policy GitHub OSSAR Action initial commit. 2020-06-24 10:13:19 -07:00
sample GitHub OSSAR Action initial commit. 2020-06-24 10:13:19 -07:00
src Update to depend on msca-actions-toolkit 2021-02-20 20:33:41 -08:00
.gitignore Ignore node_modules folder. 2020-11-18 08:52:19 -08:00
CODE_OF_CONDUCT.md Add Limitations to Readme and GitHub blurb in Security.md 2020-06-24 13:32:06 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md with specific build information. 2020-06-24 13:24:11 -07:00
LICENSE GitHub OSSAR Action initial commit. 2020-06-24 10:13:19 -07:00
README.md Move list of tools into the overview. 2021-02-04 08:16:50 -08:00
SECURITY.md Add Limitations to Readme and GitHub blurb in Security.md 2020-06-24 13:32:06 -07:00
action.yml Shorten action description for publishing validation. 2020-06-25 12:10:16 -07:00
build.proj Update to depend on msca-actions-toolkit 2021-02-20 20:33:41 -08:00
package-lock.json Add msca-actions-toolkit to committed node_modules 2021-02-20 20:42:00 -08:00
package.json Update to depend on msca-actions-toolkit 2021-02-20 20:33:41 -08:00
tsconfig.json Add msca-actions-toolkit to committed node_modules 2021-02-20 20:42:00 -08:00

README.md

github/ossar-action

OSSAR windows-latest
OSSAR ubuntu-latest

Run open source security static analysis tools without the added complexity with OSSAR (Open Source Static Analysis Runner).

Limitations

The OSSAR action is currently in beta and runs on the windows-latest queue, as well as Windows self hosted agents. ubuntu-latest support coming soon.

Overview

This action runs the Microsoft Security Code Analysis CLI for security analysis by:

  • Installing the Microsoft Security Code Analysis CLI
  • Installing the latest policy or referencing the local policy/github.gdnpolicy file
  • Installing the latest open source tools
  • Automatic or user-provided configuration of static analysis tools
  • Execution of a full suite of static analysis tools
  • Normalized processing of results into the SARIF format
  • Exports a single SARIF file which can be uploaded via the github/codeql-action/upload-sarif action

Open Source Tools

The following table documents what tools are currently run by this action (if applicable or configured) and the language(s) or artifact(s) they can analyze.

Name Analysis Coverage
Bandit python
BinSkim binary - Windows, ELF
ESlint JavaScript

To request a tool be integrated, please file a new a GitHub issue in this repo.

Usage

See action.yml

Basic

Run OSSAR with the default policy and recommended tools.

steps:
- uses: actions/checkout@v2
- name: Run OSSAR
  uses: github/ossar-action@v1
  id: ossar
- name: Upload results to Security tab
  uses: github/codeql-action/upload-sarif@v1
  with:
    sarif_file: ${{ steps.ossar.outputs.sarifFile }}

Note: The Microsoft Security Code Analysis CLI is built with dotnet v3.1.201. A version greater than or equal to v3.1.201 of dotnet must be installed on the runner in order to run this action. GitHub hosted runners already have a compatible version of dotnet installed. To ensure a compatible version of dotnet is installed on a self-hosted runner, please configure the actions/setup-dotnet action.

- uses: actions/setup-dotnet@v1
  with:
    dotnet-version: '3.1.x'

Upload Results to the Security tab

To upload results to the Security tab of your repo, run the github/codeql-action/upload-sarif action immediately after running OSSAR. OSSAR sets the action output variable sarifFile to the path of a single SARIF file that can be uploaded to this API.

- name: Upload results to Security tab
  uses: github/codeql-action/upload-sarif@v1
  with:
    sarif_file: ${{ steps.ossar.outputs.sarifFile }}

More Information

Please see the wiki tab for more information and the Frequently Asked Questions (FAQ) page.

Report Issues

Please file a GitHub issue in this repo. To help us investigate the issue, please include a description of the problem, a link to your workflow run (if public), and/or logs from the OSSAR's action output.

License

The scripts and documentation in this project are released under the MIT License

Contributing

Contributions are welcome! See the Contributor's Guide.