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
We don't want to waste your time, so if you're unsure whether your hypothetical enhancement meets the criteria for approval, please file an issue to get pre-approval before beginning work on a PR.
4
+
Learn more here: https://github.com/DefectDojo/django-DefectDojo/blob/master/readme-docs/CONTRIBUTING.md#submission-pre-approval
5
5
6
6
**Description**
7
7
8
8
Describe the feature / bug fix implemented by this PR.
9
-
If this is a new parser, [the parser guide](https://documentation.defectdojo.com/contributing/how-to-write-a-parser/) may be worth (re)reading.
9
+
If this is a new parser, [the parser guide](https://docs.defectdojo.com/en/open_source/contributing/how-to-write-a-parser/) may be worth (re)reading.
DefectDojo Pro can pre-triage your Findings by Priority and Risk, allowing your team to identify and fix your most critical issues first.
22
+
See our [Finding Priority Guide](/en/working_with_findings/finding_priority/) for more details.
23
+
20
24
### Rules Engine
21
25
DefectDojo Pro's Rules Engine allows you to set up a script of automated bulk actions - no programming experience required.
22
26
Build custom workflows and bulk actions to handle Findings and other objects.
@@ -28,7 +32,7 @@ See our [Rules Engine Guide](/en/customize_dojo/rules_engine) for more info.
28
32
Generate [instant reports and metrics](../ui_pro_vs_os/#new-dashboards) to share the security posture of your apps and repos. Evaluate your security tools and your team's performance in addressing security issues.
29
33
30
34
### Deduplication Tuning
31
-
Fine-tune how DefectDojo identifies and manages duplicate findings with advanced deduplication settings. Adjust same-tool, cross-tool, and reimport deduplication for precision matching between all your chosen security tools and vulnerability findings.
35
+
Fine-tune how DefectDojo identifies and manages duplicate findings with advanced deduplication settings. Adjust same-tool, **cross-tool**, and reimport deduplication for precision matching between all your chosen security tools and vulnerability findings.
32
36
See our [Deduplication Tuning Guide](/en/working_with_findings/finding_deduplication/tune_deduplication/) for more information.
Copy file name to clipboardExpand all lines: docs/content/en/connecting_your_tools/parsers/file/burp_suite_dast.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,26 +1,26 @@
1
1
---
2
-
title: "Burp Enterprise Scan"
2
+
title: "Burp Suite DAST Scan (formerly known as Burp Enterprise)"
3
3
toc_hide: true
4
4
---
5
5
6
6
## Overview
7
-
The Burp Enterprise Scan parser processes HTML reports from Burp Enterprise Edition and imports the findings into DefectDojo. The parser extracts vulnerability details, severity ratings, descriptions, remediation steps, and other metadata from the HTML report.
7
+
The Burp Suite DAST Scan parser processes HTML reports from Burp Suite DAST and imports the findings into DefectDojo. The parser extracts vulnerability details, severity ratings, descriptions, remediation steps, and other metadata from the HTML report.
8
8
9
9
## Supported File Types
10
10
The parser accepts a Standard Report as an HTML file. To parse an XML file instead, use the [Burp XML parser](https://docs.defectdojo.com/en/connecting_your_tools/parsers/file/burp/).
11
11
12
-
See the Burp documentation for information on how to export a Standard Report: [PortSwigger Enterprise Edition Downloading reports](https://portswigger.net/burp/documentation/enterprise/work-with-scan-results/generate-reports)
12
+
See the Burp documentation for information on how to export a Standard Report: [Burp Suite DAST Downloading reports](https://portswigger.net/burp/documentation/dast/user-guide/work-with-scan-results/generate-reports)
13
13
14
14
## Standard Format HTML (Main Format)
15
15
16
16
### Total Fields in HTML
17
-
- Total data fields in Burp Enterprise Scan HTML output: 15
17
+
- Total data fields in Burp Suite DAST Scan HTML output: 15
18
18
- Total data fields parsed into DefectDojo finding: 13
19
19
- Total data fields NOT parsed: 2
20
20
21
21
### Standard Format Field Mapping Details
22
22
23
-
| Data Field # | Burp Enterprise Scan Data Field | DefectDojo Finding Field | Parser Line # | Notes |
23
+
| Data Field # | Burp Suite DAST Scan Data Field | DefectDojo Finding Field | Parser Line # | Notes |
Copy file name to clipboardExpand all lines: docs/content/en/open_source/contributing/how-to-write-a-parser.md
+1-6Lines changed: 1 addition & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -280,12 +280,7 @@ This ensures the file is closed at the end of the with statement, even if an exc
280
280
281
281
### Test database
282
282
283
-
To test your unit tests locally, you first need to grant some rights. Get your MySQL root password from the docker compose logs, login as root and issue the following commands:
284
-
285
-
{{< highlight mysql >}}
286
-
MYSQL> grant all privileges on test_defectdojo.* to defectdojo@'%';
287
-
MYSQL> flush privileges;
288
-
{{< /highlight >}}
283
+
Django uses a separate test database for running unit tests called `test_defectdojo`. It's automatically created and initialized with a basic set of test data.
0 commit comments