Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,15 @@ Using Software Composition Analysis provides organizations with the following be

Datadog SCA uses a curated proprietary database. The database is sourced from Open Source Vulnerabilities (OSV), National Vulnerability Database (NVD), GitHub advisories, and other language ecosystem advisories, as well as Datadog's own Security Research team's findings. There is a maximum of 2 hours between when a new vulnerability is published and when it appears in Datadog, with emerging vulnerabilities typically appearing in Datadog within minutes.

## Set up Software Composition Analysis
## SCA language support

{{% security-products/sca-supported-lang %}}
Software Composition Analysis (SCA) supports the following languages:

{{< partial name="code_security/sca-lang-support.html" >}}

For steps on setting up SCA for your language, see [Set up SCA][15].

## Set up SCA

SCA supports both static and runtime dependency detection:
- For **static detection**, you can scan your repositories from your CI/CD pipelines or directly from Datadog's infrastructure. See [static setup][1] to get started.
Expand Down Expand Up @@ -119,4 +125,5 @@ The Vulnerability Explorer offers remediation recommendations for detected vulne
[11]: https://app.datadoghq.com/security/appsec/vm/library
[12]: https://app.datadoghq.com/ci/code-analysis
[13]: /security/code_security/software_composition_analysis/setup_static/#upload-third-party-sbom-to-datadog
[14]: /security/code_security/software_composition_analysis/library_inventory
[14]: /security/code_security/software_composition_analysis/library_inventory
[15]: /security/code_security/software_composition_analysis/#set-up-sca
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Datadog SCA scans libraries in the following languages and **requires** a lockfi
| Python | poetry | `poetry.lock` |
| Python | UV | `uv.lock` |
| Ruby | bundler | `Gemfile.lock` |
| Rust | Cargo | `cargo.lock` |

The following sections describe ways to configure SCA for your repositories.

Expand Down
67 changes: 67 additions & 0 deletions layouts/partials/code_security/sca-lang-support.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{{ $dot := . }}
<div class="code-analysis-supported-languages">
<div class="container cards-dd">
<div class="row justify-content-center">
<div class="col">
<a class="card h-100" href="#set-up-sca">
<div class="card-body text-center py-2 px-1 d-flex justify-content-center align-items-center">
{{ partial "img.html" (dict "root" . "src" "integrations_logos/python_avatar.svg" "class" "img-fluid" "alt" "python" "width" "50") }}
</div>
</a>
</div>
<div class="col">
<a class="card h-100" href="#set-up-sca">
<div class="card-body text-center py-2 px-1 d-flex justify-content-center align-items-center">
{{ partial "img.html" (dict "root" . "src" "integrations_logos/javascript_large.png" "class" "img-fluid" "alt" "javascript" "width" "50") }}
</div>
</a>
</div>
<div class="col">
<a class="card h-100" href="#set-up-sca">
<div class="card-body text-center py-2 px-1 d-flex justify-content-center align-items-center">
{{ partial "img.html" (dict "root" . "src" "integrations_logos/java_avatar.svg" "class" "img-fluid" "alt" "java" "width" "50") }}
</div>
</a>
</div>
<div class="col">
<a class="card h-100" href="#set-up-sca">
<div class="card-body text-center py-2 px-1 d-flex justify-content-center align-items-center">
{{ partial "img.html" (dict "root" . "src" "integrations_logos/dotnet_avatar.svg" "class" "img-fluid" "alt" "c sharp" "width" "50") }}
</div>
</a>
</div>
</div>
</br>
<div class="row justify-content-center">
<div class="col">
<a class="card h-100" href="#set-up-sca">
<div class="card-body text-center py-2 px-1 d-flex justify-content-center align-items-center">
{{ partial "img.html" (dict "root" . "src" "integrations_logos/golang-avatar.png" "class" "img-fluid" "alt" "go" "width" "60") }}
</div>
</a>
</div>
<div class="col">
<a class="card h-100" href="#set-up-sca">
<div class="card-body text-center py-2 px-1 d-flex justify-content-center align-items-center">
{{ partial "img.html" (dict "root" . "src" "integrations_logos/ruby_avatar.svg" "class" "img-fluid" "alt" "ruby" "width" "50") }}
</div>
</a>
</div>
<div class="col">
<a class="card h-100" href="#set-up-sca">
<div class="card-body text-center py-2 px-1 d-flex justify-content-center align-items-center">
{{ partial "img.html" (dict "root" . "src" "integrations_logos/php_opcache.png" "class" "img-fluid" "alt" "php" "width" "80") }}
</div>
</a>
</div>
<div class="col">
<a class="card h-100" href="#set-up-sca">
<div class="card-body text-center py-2 px-1 d-flex justify-content-center align-items-center">
{{ partial "img.html" (dict "root" . "src" "integrations_logos/rust.png" "class" "img-fluid" "alt" "php" "width" "80") }}
</div>
</a>
</div>
</div>
</div>
</div>
&nbsp;
Loading