Skip to content

Commit f37279c

Browse files
Merge remote-tracking branch 'origin/master'
2 parents 315ae87 + bd0f49f commit f37279c

File tree

4 files changed

+69
-4
lines changed

4 files changed

+69
-4
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
docs/_site/
2+
docs/.sass-cache/
3+
docs/.jekyll-metadata
4+
5+
# vscode
6+
.settings/
7+
target/
8+
.classpath
9+
.project

docs/.gitignore

-3
This file was deleted.

docs/_docs/FAQ.md

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
title: Frequently Asked Questions
3+
category: FAQ
4+
chapter: 10
5+
order:
6+
---
7+
8+
Frequently asked questions about Dependency Track functionality that may not be covered by the documentation. If you don't find an answer here, try reaching out to the Slack [channel](https://owasp.slack.com/archives/C6R3R32H4) related to dependency track.
9+
10+
#### Dependency Check and Dependency Track Comparison
11+
12+
This topic is heavily explained in the [Dependency Check Comparison](./../odt-odc-comparison/) to Dependency Track.
13+
14+
#### I expect to see vulnerable components but I don't
15+
16+
Most common reason: You have yet to enable the [Sonatype OSS Index Analyzer](./../datasources/ossindex/). It is not
17+
enabled by default but is necessary to scan dependencies represented by
18+
[Package URLs](./../terminology/#package-url-purl).
19+
20+
#### Why is Sonatype OSS Index Analyzer disabled by default?
21+
22+
Sonatype OSS Index Analyzer is disabled because you need an account and need to configure it first. See
23+
[Sonatype OSS Index Analyzer](./../datasources/ossindex/).
24+
25+
#### I have just enabled OSS Index Analyzer but still don't see results
26+
27+
The analyzers run asynchronously. After you enable an analyzer it is not immediately run.
28+
You have to wait some time until the analyzers are scheduled, currently this is 6 hours.
29+
You can also trigger the analysis of one project by re-uploading a BOM for the project.
30+
Restarting Dependency Track will not run the analyzers either, it will just reset the clock.
31+
32+
#### Why is the local NVD mirror not used?
33+
34+
The local NVD mirror is used for dependencies that are identified by a [CPE](./../terminology/#cpe). These are mostly
35+
components like operating systems, applications, and hardware. That's what CPE was designed to represent.
36+
[Package URLs](./../terminology/#package-url-purl) (PURL) on the other hand are designed to represent all kinds of software
37+
dependencies like packages, libraries, and frameworks. In the local mirror there is no mapping from the PURL to CPE/CVE.
38+
So the local mirror is used, but not for dependencies represented by PURL. Dependency Track will use the Analyzer best
39+
suited to analyze a given dependency.
40+
41+
#### I updated Dependency Track and now I can not upload Dependency-Check reports
42+
43+
Starting with Dependency Track v3.6.0 support for Dependency-Check XML reports was disabled by default. It was finally
44+
removed with v3.7.0. The fundamental concepts of Dependency-Check and Dependency Track are different, so the support
45+
was dropped. A comparison can be found in the [Dependency Check Comparison](./../odt-odc-comparison/).
46+
47+
#### Dependency Track crashes when run as a container
48+
49+
Make sure the container is allowed to allocate enough RAM. For memory requirements see
50+
[Deploying Docker Container](./../getting-started/deploy-docker/). A common source for limited memory is Docker for
51+
Windows's default memory limit of 2GB which is too less. You can change this in docker's settings.
52+
53+
#### Why is there a delay with LDAP synchronization?
54+
55+
For auto-provisioned accounts, LDAP synchronization is performed on-demand and utilizes the same async job scheduling queue that all other jobs use. If the system is busy processing other jobs (mirroring the NVD or processing lots of BOMs simultaneously for example), there might be a slight delay provisioning the account (which includes permission sync). If the LDAP account is manually created in DT, then synchronization has already happened and there shouldn’t be a delay.
56+
57+
#### Breaking changes with Java 11
58+
59+
Java 11 introduces breaking changes, which is the reason most organizations still use Java 8, and the reason why the DT Docker images still use Java 8 as well.

docs/_docs/terminology.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Terminology
33
category: Terminology
4-
chapter: 10
4+
chapter: 11
55
order:
66
---
77

0 commit comments

Comments
 (0)