You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/admin/sso/PRO__saml.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,20 @@ If no group with a matching name exists, DefectDojo will automatically create on
45
45
46
46
To activate group mapping, check the **Enable Group Mapping** checkbox at the bottom of the form.
47
47
48
+
## Cloud vs On-Premise Differences
49
+
50
+
DefectDojo Cloud does not have the same level of SAML customization as DefectDojo On-Prem. The only variables that can be set are through the UI. Here are some of the key differences:
51
+
52
+
| Capability | Cloud | On-Premise |
53
+
|---|---|---|
54
+
|**Username matching**| NameID only | NameID only (the `SAML_USE_NAME_ID_AS_USERNAME` env var applies to Open Source only, not Pro) |
55
+
|**SAML assertion encryption**| Not currently supported | Not currently supported |
56
+
|**SAML login logs**| Not available in the UI. Contact Support to request logs. | Available via application container logs (`docker logs dojo`) |
57
+
|**Configuration method**| Enterprise Settings UI only | Enterprise Settings UI, Django Admin, or Django Shell |
58
+
|**Environment variables**| Cannot be set by customers directly. Contact Support for changes. | Can be set via `dojo-compose-cli environment add`|
59
+
60
+
If you need to match users on an attribute other than NameID (such as `uid` or `email`), configure your Identity Provider to send the desired value as the NameID rather than adjusting DefectDojo settings.
61
+
48
62
## Additional Options
49
63
50
64
***Create Unknown User** — automatically create a new DefectDojo user if they are not found in the SAML response.
Copy file name to clipboardExpand all lines: docs/content/asset_modelling/hierarchy/PRO__assets_organizations.md
+18-1Lines changed: 18 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,24 @@ aliases:
8
8
---
9
9
DefectDojo Pro is extending the Product/Product Type object classes to provide greater flexibility with the data model.
10
10
11
-
Currently, this feature is in Beta. Pro users who are interested in opting in can do so by emailing [support@defectdojo.com](mailto:support@defectdojo.com).
11
+
Currently, this feature is in Beta.
12
+
13
+
## Enabling the Hierarchy Feature
14
+
15
+
Hierarchy features ship with new versions of DefectDojo Pro by default, but existing customers who wish to migrate these features can do so using the following methods
16
+
17
+
### Cloud Customers
18
+
19
+
The hierarchy feature and label changes must be enabled by DefectDojo Support. Email [support@defectdojo.com](mailto:support@defectdojo.com) with your instance URL and request:
20
+
21
+
1.**Asset Hierarchy** — enables parent/child relationships between Assets. Once enabled, the hierarchy can be viewed and managed from the **Product** tab in the navigation.
22
+
2.**Label Changes** (optional) — renames "Product Type" to "Organization" and "Product" to "Asset" throughout the UI. This is a separate step from enabling the hierarchy and can be requested at the same time or later.
23
+
24
+
Note that label changes are cosmetic only: API endpoints and field names remain unchanged, so existing automation will continue to work.
25
+
26
+
### On-Premise Customers
27
+
28
+
Contact Support for guidance on enabling these features via your instance configuration.
Copy file name to clipboardExpand all lines: docs/content/automation/api/api-v2-docs.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -264,6 +264,34 @@ A classic way of reimporting a scan is by specifying the ID of the test instead:
264
264
}
265
265
```
266
266
267
+
## Asynchronous Deletion Behavior
268
+
269
+
Deletions in DefectDojo (via both the API and UI) are processed **asynchronously** by Celery background workers. When you delete an Engagement, Test, or other object, the API or UI returns a success response immediately, but the actual deletion runs in the background.
270
+
271
+
This means:
272
+
- Objects may still appear in queries for a period of time after deletion is confirmed.
273
+
- Cascade deletions (e.g., deleting an Engagement also deletes its Tests and Findings) are processed as a chain of background tasks. Child objects are removed in dependency order: Findings, then Tests, then Engagements.
274
+
- For large Engagements with many Findings, this process can take several minutes to complete.
275
+
276
+
There is no need to build custom scripts to delete objects in dependency order. A single `DELETE` request on an Engagement will cascade to all child objects automatically. Simply allow time for the background tasks to complete.
277
+
278
+
## API Pagination Limits
279
+
280
+
DefectDojo Pro enforces a maximum page size of **250** results per API request. Setting `limit` higher than 250 may result in HTTP 502 errors due to query timeouts.
281
+
282
+
Open Source DefectDojo instances may also experience timeouts with very large page sizes depending on dataset size and server resources.
283
+
284
+
For large result sets, use pagination with a page size of 50-250 and add short delays between paginated requests to avoid saturating the worker pool.
285
+
286
+
## Large-Scale Import Best Practices
287
+
288
+
When importing scan results at scale (e.g., SBOM pipelines with thousands of components), consider the following:
289
+
290
+
-**Use `background_import=true`** for large payloads. Synchronous imports tie up a uwsgi worker for the duration of the import, which can degrade performance for all users.
291
+
-**Target payload sizes under 1 MB per import** where possible. Split large SBOMs into smaller files per product or component group.
292
+
-**Add delays between consecutive API calls** to avoid worker pool exhaustion, which causes HTTP 502 errors.
293
+
-**Use Reimport** (`/api/v2/reimport-scan/`) for recurring scans to update existing findings rather than creating duplicates.
294
+
267
295
## Using the Scan Completion Date (API: `scan_date`) field
268
296
269
297
DefectDojo offers a plethora of supported scanner reports, but not all of them contain the
| Community Edition | * [Jira](/issue_tracking/jira/os__jira_guide/)|
14
+
| Pro | * [Jira](/issue_tracking/jira/pro__jira_guide/)<br>*[Azure DevOps](/issue_tracking/pro_integration/integrations_toolreference/#azure-devops-boards)<br>*[GitHub](/issue_tracking/pro_integration/integrations_toolreference/#github)<br>*[GitLab Boards](/issue_tracking/pro_integration/integrations_toolreference/#gitlab)<br>*[ServiceNow](/issue_tracking/pro_integration/integrations_toolreference/#servicenow)|
15
15
16
16
17
17
When enabled, DefectDojo can create issues automatically, or selectively from Products or Engagement. As Findings are updated in DefectDojo—resolved, mitigated, or reactivated—the corresponding issues can be kept in sync, ensuring both systems reflect the current state of risk.
Jira Cloud Service Accounts (created via Atlassian's admin console) use a different API host than standard user accounts and are **not currently supported** by DefectDojo's Jira integration. Attempting to use a Service Account API token or OAuth 2.0 credentials from a Service Account will result in HTTP 403 errors.
61
+
62
+
To set up the Jira integration, create a standard Jira user account (with a valid email address) and generate an API token from that account. If you want to clearly identify issues created by DefectDojo, create a dedicated user named something like "DefectDojo" and use its API token for the integration.
63
+
58
64
## I can't find an Epic Name ID for my Space
59
65
Certain Spaces in Jira, such as Team-Managed Spaces, do not use Epics and therefore will not have an Epic Name ID. In this case, set Epic Name ID to 0 in DefectDojo.
Copy file name to clipboardExpand all lines: docs/content/issue_tracking/pro_integration/integrations.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ audience: pro
5
5
aliases:
6
6
- /en/share_your_findings/integrations
7
7
---
8
+
**Availability:** Integrations is currently in **Beta** and is only available for **Cloud-hosted** DefectDojo Pro instances. On-premise deployments do not yet have the required infrastructure to support Integrations. If you are an on-premise customer interested in this feature, please contact [support@defectdojo.com](mailto:support@defectdojo.com) for updates on availability.
9
+
8
10
DefectDojo Pro's Integrations let you push your Findings and Finding Groups to ticket tracking systems to easily integrate security remediation with your teams existing development workflow.
Copy file name to clipboardExpand all lines: docs/content/releases/pro/changelog.md
+19-5Lines changed: 19 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,20 @@ Here are the release notes for **DefectDojo Pro (Cloud Version)**. These release
10
10
11
11
For Open Source release notes, please see the [Releases page on GitHub](https://github.com/DefectDojo/django-DefectDojo/releases), or alternatively consult the Open Source [upgrade notes](/releases/os_upgrading/upgrading_guide/).
12
12
13
+
## Apr 2026: v2.57
14
+
15
+
### Apr 7, 2026: v2.57.0
16
+
17
+
***(Custom Enrichment)** On-prem administrators can now configure custom URLs for EPSS and KEV enrichment data sources under **Settings → Finding Enrichment Settings**. Each source (EPSS scores and CISA Known Exploited Vulnerabilities) can be independently enabled and pointed to an internal mirror or proxy. A **Test Configuration** button validates connectivity before saving. Findings with CVE IDs are automatically enriched with EPSS score/percentile and KEV status during enrichment runs.
18
+
***(Performance)** Optimized API response times across all endpoints with selective field loading and conditional prefetches.
19
+
***(Performance)** Improved Dashboard load times by eliminating redundant authorization queries and caching license lookups.
20
+
***(Performance)** Improved deduplication performance by batching duplicate marking and deferring large text fields.
21
+
***(Performance)** Improved false-positive history processing performance during async imports by using batch operations.
22
+
***(Pro UI)** Asset hierarchy filter dropdowns now only show relevant options (e.g., Parent filter shows only assets that have children).
23
+
***(Security)** Hardened container configurations for improved runtime security.
24
+
***(Universal Parser)** Added a list view and field mappings modal to the Pro UI for managing Universal Parser configurations.
25
+
***(Universal Parser)** Added support for 7 new fields: `file_path`, `component_name`, `component_version`, `line`, `steps_to_reproduce`, `severity_justification`, and CVSSv4 vectors.
26
+
13
27
## Mar 2026: v2.56
14
28
15
29
### Mar 30, 2026: v2.56.4
@@ -107,31 +121,31 @@ No significant UX changes.
107
121
108
122
## Dec 2025: v2.53
109
123
110
-
### Dec 29, 2025: v2.53.5
124
+
####Dec 29, 2025: v2.53.5
111
125
112
126
***(Pro UI)** Added Finding count columns to Engagement table.
113
127
***(Pro UI)** Enter/Return no longer automatically submits forms.
114
128
115
-
### Dec 22, 2025: v2.53.4
129
+
####Dec 22, 2025: v2.53.4
116
130
117
131
***(Pro UI)** Asset Hierarchy now uses separate tabs for Asset selection and for the rendered Asset tree:
118
132

119
133
120
-
### Dec 15, 2025: v2.53.3
134
+
####Dec 15, 2025: v2.53.3
121
135
122
136
*DefectDojo v2.53.2 does not have a corresponding Pro release.*
123
137
124
138
***(Connectors)** Support for private CA certificates has been added to Connectors to assist with connectivity.
125
139
126
-
### Dec 8, 2025: v2.53.1
140
+
####Dec 8, 2025: v2.53.1
127
141
128
142
***(Assets/Organizations)** Introduced overhaul to Products/Product Types, added the ability to create and diagram relationships between Assets. See [Assets/Organizations documentation](/asset_modelling/hierarchy/pro__assets_organizations/) for details, and information on opting in to the Beta.
129
143
***(Findings)** Added new KEV fields for ransomware, exploits, and date handling.
130
144
***(Pro UI)** Added Table Preferences menu, allowing you to store preset lists of columns for each table.
131
145
132
146

133
147
134
-
### Dec 1, 2025: v2.53.0
148
+
####Dec 1, 2025: v2.53.0
135
149
136
150
***(Pro UI)** Added Asset Hierarchy.
137
151
***(Priority)** Priority and Risk can now be overridden manually, or through Rules Engine.
Copy file name to clipboardExpand all lines: docs/content/supported_tools/parsers/api/sonarqube.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,23 @@ In `Add API Scan Configuration`
31
31
- If using SonarCloud, the organization ID can be used from step 1, but it
32
32
can be overridden by supplying a different organization ID in the `Service key 2` input field.
33
33
34
+
## Disabling Hotspot Imports
35
+
36
+
By default, the SonarQube API Import includes both security issues and security hotspots. To import only security issues and exclude hotspots, set the following environment variable on your DefectDojo instance:
37
+
38
+
```
39
+
DD_SONARQUBE_API_PARSER_HOTSPOTS=False
40
+
```
41
+
42
+
For on-premise installations using the dojo-compose-cli:
Note that this setting is instance-wide and affects all SonarQube API imports. There is currently no per-tool-configuration or per-import toggle for hotspots. If you need hotspots for some projects but not others, you will need to build a custom middleware to filter results before importing.
50
+
34
51
## Multiple SonarQube API Configurations
35
52
36
53
In the import or re-import dialog, you can select which `API Scan
0 commit comments