Enable Supply Chain
If you haven’t already enabled Supply Chain:Sign in to Semgrep AppSec Platform.
Project directory structure
To scan your project with Supply Chain, it must use a supported package manager and supported file names. Supply Chain can correctly parse code files, manifest files, and lockfiles in subfolders as well. Code files that use the dependencies in the manifest file or lockfile must be nested in the same directory as the manifest file or lockfile. Manifest files and lockfiles must all use supported file names. In the following example, Supply Chain assumes that all code files using the dependencies inmy-project/running/lockfile.json are nested in my-project/running/ or deeper directories.
my-project/biking, Supply Chain does not associate them with the dependencies in my-project/running/lockfile.json. If there is another manifest file or lockfile in my-project/running, such as my-project/running/uphill/lockfile.json, then this overrides the original my-project/running/lockfile.json for all code files in my-project/running/uphill/ or deeper directories.
Scan frequency
You can modify your CI configuration so that Supply Chain scans your code at a specified frequency or whenever a specific event occurs, such as opening a pull request or merge request.Rule updates
Supply Chain frequently receives rule updates. To take advantage of these updates, adjust the frequency with which Supply Chain scans your codebase. If a rule is updated, findings generated against the revised rule are considered new findings, even if the previous version generated a finding. The new finding is not affected by any triage actions on findings related to the prior version of the rule. Because the finding is new, you’ll also receive notifications through the channels you’ve set up, such as Slack.Schedule scans
The following list includes resources to set up schedules for different CI providers:- Azure Pipelines
- Bitbucket Pipelines
- Buildkite
- CircleCI
- GitHub Actions (see the
schedulesection of the samplesemgrep.ymlconfiguration file) - GitLab CI/CD
- Jenkins
Event-triggered scans
You can configure your CI/CD system to trigger a Supply Chain scan whenever one of the following events occurs:| Event | Scope of scan | Dependency rule set |
|---|---|---|
| Pull request or merge request | Diff-aware scans | All dependency rules |
| Push or scheduled event, such as a cron job | Full scan | All dependency rules |
Run a scan using the CLI
You can start a stand-alone Supply Chain scan by running the following command in the CLI:- Additional finding details, such as whether the finding is always reachable or if it’s reachable if certain conditions are met, and its transitivity status
- Dependency search to view all of your project’s dependencies and their associated vulnerabilities
- License compliance to manage the dependencies used in your project based on their licenses
Scan a monorepo’s dependencies
Supply Chain supports the scanning of monorepos. As outlined in Project directory structure, findings are grouped by directory based on the or present in the monorepo.Dynamic Dependency Resolution (beta)
This feature is currently in beta. Please contact Semgrep Support for more information.
CLI Scans, including self-managed CI systems
- Ensure that the environment where you run Semgrep scans has installed all of the dependencies required to build your project, such as Java and Maven or Python and pip.
- Initiate a Semgrep scan, ensuring that you include the
--allow-local-buildsflag to enable Semgrep to invoke package managers on the system:For existing CI jobs, you might have to edit your configuration file to include this flag. The flag allows Semgrep to build the project, if needed, to dynamically resolve dependencies. Semgrep uses the build information included in thepom.xmlorbuild.gradlefile to determine the set of dependencies used by the project.
Semgrep Managed Scans
Configure private registry credentials in Settings > Integrations. Note that only Maven registries are currently supported for Managed Scans.
Contact Semgrep Support to enable Dynamic Dependency resolution for the necessary repositories.