Skip to content
play

GitHub Action

Run Scout-action

v2.4 Latest version

Run Scout-action

play

Run Scout-action

Run scout-action

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Run Scout-action

uses: CoinFabrik/[email protected]

Learn more about this action in CoinFabrik/scout-actions

Choose a version

Scout: Security Analysis Tool - Github action

Scout in a Dark Forest

Scout is an extensible open-source tool intended to assist ink! and Soroboan smart contract developers and auditors detect common security issues and deviations from best practices.

This tool will help developers write secure and more robust smart contracts.

Our interest in this project comes from our experience in manual auditing and our usage of comparable tools in other blockchains. To improve coverage and precision, we´ll persist in research efforts on static and dynamic analysis techniques.

How to integrate with Github Actions

Create .github/workflows/scout.yml:

name: Scout-actions
on: [push]
jobs:
  analyze:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: coinfabrik/[email protected]
        with:
          target: './target/Cargo.toml'
          scout_args: (scout arguments)
          markdown_output: (enable markdown output)

YML Description

  • name: Scout-actions: This is the name of the GitHub Action which will be viewed on the GitHub Actions dashboard.
  • on: [push]: This line specifies the event that will trigger the action. In this case, the GitHub Action fires whenever a push is made to the repository.
  • jobs: GitHub Actions can contain several jobs. In this case, only one job named analyze has been set up.
  • analyze: This is the name of the job.
  • runs-on: ubuntu-latest: This specifies the runtime environment for the job. Here, the job will run on the latest available Ubuntu version.
  • steps: This is a list of tasks to be carried out in the job. In this case, there are two tasks.
  • uses: actions/checkout@v2: The first task uses a GitHub Action called 'checkout@v2'. This is a predefined Action that allows GitHub Actions to work with a copy of your repository.
  • uses: coinfabrik/[email protected]: The second task uses the GitHub Action 'scout-actions@v1', a version specified by coinfabrik.
  • with and target: './target/Cargo.toml'**: Under the 'coinfabrik/[email protected]' task, an additional option with is configured, which sets a specific target for the action under with. In this case, the target is the file './target/Cargo.toml'. This toml file in the target directory likely has the dependencies and project configuration that will undergo analysis.
  • with/scout-args: allows you to specify custom arguments for scout. The default already is -v which makes scout verbose, you don't need to specify it again.
  • with/markdown_output: "true" or "false" makes scout save findings report in Markdown format on the github-workspace for later usage.

In short, this .yml file sets up a GitHub Action that activates on any push to the repository. When triggered, it will checkout the repository and then run the '[email protected]' Action on the './target/Cargo.toml' file.

Options

Key Description
target The path to the root of the project to be analyzed by Scout. It can be a path of Cargo.toml, and it defaults to the repo root.
scout-args Allows you to specify custom arguments for scout. The default is -v which makes scout verbose.
markdown-output This makes scout save findings report in Markdown format on the github-workspace for later usage.

Detectors

Detectors available for Scout Actions are the ones available for Scout in its ink! and Soroban versions.

Full example

name: scout-workflow
on: [push]

jobs:
  nuevo-test:
    runs-on: ubuntu-latest
    permissions:
      pull-requests: write
      contents: write
      repository-projects: write
    steps:
      - name: checkout
        uses: actions/checkout@v2

      - name: do scout
        uses: coinfabrik/[email protected]
        with:
          target: 'avoid-autokey-upgradable/avoid-autokey-upgradable-1/vulnerable-example/'
          markdown_output: "true"

      - uses: mshick/[email protected]
        with:
          message-path:  ${{ github.workspace }}/report.md

Acknowledgements

Scout is an open source vulnerability analyzer developed by CoinFabrik's Research and Development team.

We received support through grants from both the Web3 Foundation Grants Program, the Aleph Zero Ecosystem Funding Program and the Stellar Community Fund.

Grant Program Description
Web3 Foundation Proof of Concept: We collaborated with the Laboratory on Foundations and Tools for Software Engineering (LaFHIS) at the University of Buenos Aires to establish analysis techniques and tools for our detectors, as well as to create an initial list of vulnerability classes and code examples. View Grant | Application Form.

Prototype: We built a functioning prototype using linting detectors built with Dylint and expanded the list of vulnerability classes, detectors, and test cases. View Prototype | Application Form.
Aleph Zero We improved the precision and number of detectors for the tool with a multi-phase approach. This included a manual vulnerability analysis of projects within the Aleph Zero ecosystem, comprehensive testing of the tool on leading projects, and refining its detection accuracy.
Stellar Community Fund We added support for Stellar's smart contract language, Soroban. We included various output formats, such as an HTML report, improved the tool's precision and recall, and added a GitHub action to run the tool with pull requests.

About CoinFabrik

We - CoinFabrik - are a research and development company specialized in Web3, with a strong background in cybersecurity. Founded in 2014, we have worked on over 180 blockchain-related projects, EVM based and also for Solana, Algorand, Stellar and Polkadot. Beyond development, we offer security audits through a dedicated in-house team of senior cybersecurity professionals, currently working on code in Substrate, Solidity, Clarity, Rust, TEAL and Stellar Soroban.

Our team has an academic background in computer science and mathematics, with work experience focused on cybersecurity and software development, including academic publications, patents turned into products, and conference presentations. Furthermore, we have an ongoing collaboration on knowledge transfer and open-source projects with the University of Buenos Aires.

License

Scout is licensed and distributed under a MIT license. Contact us if you're looking for an exception to the terms.