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
AWS Security Hub Parser does import the affected service ARNs as hosts to DefectDojo. However, as ARNs contain invalid digits for hosts, the ARN is changed slightly. ":", " " & "/" are replaced by "_".
20
+
18
21
### Sample Scan Data
19
22
Sample scan data for testing purposes can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/awssecurityhub).
The structure of AWS Endpoints changed slightly. In the past ARNs of Services were imported with invalid digits leading to broken Endpoints.
11
+
The Endpoints thus changed slightly. ":", " " & "/" are replaced by "_".
12
+
13
+
An Migration is added as part of this release to avoid duplicates at the next import. It can take some time, depending on the amount of AWS Endpoints in the DB.
14
+
15
+
---
16
+
17
+
Check the [Release Notes](https://github.com/DefectDojo/django-DefectDojo/releases/tag/2.44.1) for the contents of the release.
self.assertEqual("This is a GuardDuty Finding\nAPIs commonly used in Discovery tactics were invoked by user AssumedRole : 123123123, under anomalous circumstances. Such activity is not typically seen from this user.\n**AWS Finding ARN:** arn:aws:guardduty:us-east-1:123456789012:detector/123456789/finding/2123123123123\n**SourceURL:** [https://us-east-1.console.aws.amazon.com/guardduty/home?region=us-east-1#/findings?macros=current&fId=2123123123123](https://us-east-1.console.aws.amazon.com/guardduty/home?region=us-east-1#/findings?macros=current&fId=2123123123123)\n**AwsAccountId:** 123456789012\n**Region:** us-east-1\n**Generator ID:** arn:aws:guardduty:us-east-1:123456789012:detector/123456789\n", finding.description)
0 commit comments