-
+
{% if eng.name %}
{{ eng.name }}
{% else %}
@@ -1040,25 +1040,25 @@
$(document).on('keypress', null, 'e', function () {
window.location.assign('{% url 'edit_engagement' eng.id %}');
});
-
+
$(document).on('keypress', null, 'a', function () {
window.location.assign('{% url 'add_tests' eng.id %}');
});
-
+
$(document).on('keypress', null, 'i', function () {
window.location.assign('{% url 'import_scan_results' eng.id %}');
});
-
+
$("a[data-toggle='collapse']").on('click', function () {
var i = $($(this).find('i').get(0));
i.toggleClass('glyphicon-chevron-up').toggleClass('glyphicon-chevron-down');
});
-
+
//Ensures dropdown has proper zindex
$('.table-responsive').on('show.bs.dropdown', function () {
$('.table-responsive').css( "overflow", "inherit" );
});
-
+
$('.table-responsive').on('hide.bs.dropdown', function () {
$('.table-responsive').css( "overflow", "auto" );
})
@@ -1067,15 +1067,15 @@
var terms = '';
if ($.cookie('highlight')) {
terms = $.cookie('highlight').split(' ');
-
+
for (var i = 0; i < terms.length; i++) {
$('body').highlight(terms[i]);
}
}
-
+
$('input#simple_search').val(terms);
}
-
+
$('#shareQuestionnaireModal').on('show.bs.modal', function (event) {
var button = $(event.relatedTarget) // Button that triggered the modal
var path = button.data('whatever') // Extract info from data-* attributes
@@ -1088,8 +1088,8 @@
modal.find('p#questionnaireURL').text('Questionnaire URL: ' + host + path)
})
});
-
+
{% include 'dojo/snippets/risk_acceptance_actions_snippet_js.html' %}
-
+
{% endblock %}
diff --git a/unittests/test_jira_import_and_pushing_api.py b/unittests/test_jira_import_and_pushing_api.py
index 57017442dd1..fab0a07ba9d 100644
--- a/unittests/test_jira_import_and_pushing_api.py
+++ b/unittests/test_jira_import_and_pushing_api.py
@@ -1,5 +1,6 @@
# from unittest import skip
import logging
+from unittest.mock import patch
from crum import impersonate
from django.urls import reverse
@@ -70,7 +71,6 @@ def setUp(self):
self.testuser = User.objects.get(username="admin")
self.testuser.usercontactinfo.block_execution = True
self.testuser.usercontactinfo.save()
-
token = Token.objects.get(user=self.testuser)
self.client = APIClient()
self.client.credentials(HTTP_AUTHORIZATION="Token " + token.key)
@@ -321,7 +321,7 @@ def add_risk_acceptance(self, eid, data_risk_accceptance, fid=None):
self.assertEqual(302, response.status_code, response.content[:1000])
return response
- def test_import_grouped_reopen_expired_sla(self):
+ def test_import_grouped_reopen_expired_risk_acceptance(self):
# steps
# import scan, make sure they are in grouped JIRA
# risk acceptance all the grouped findings, make sure they are closed in JIRA
@@ -374,6 +374,59 @@ def test_import_grouped_reopen_expired_sla(self):
# by asserting full cassette is played we know all calls to JIRA have been made as expected
self.assert_cassette_played()
+ @patch("dojo.decorators.we_want_async", return_value=False)
+ def test_import_grouped_reopen_expired_risk_acceptance_with_finding_sync(self, mock):
+ # steps
+ # import scan, make sure they are in grouped JIRA
+ # risk acceptance all the grouped findings, make sure they are closed in JIRA
+ # expire risk acceptance on all grouped findings, make sure they are open in JIRA
+ JIRA_Instance.objects.update(finding_jira_sync=True)
+
+ import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type="NPM Audit Scan", group_by="component_name+component_version", push_to_jira=True, verified=True)
+ test_id = import0["test"]
+ self.assert_jira_issue_count_in_test(test_id, 0)
+ self.assert_jira_group_issue_count_in_test(test_id, 3)
+ findings = self.get_test_findings_api(test_id)
+ finding_id = findings["results"][0]["id"]
+
+ ra_data = {
+ "name": "Accept: Unit test",
+ "accepted_findings": [],
+ "recommendation": "A",
+ "recommendation_details": "recommendation 1",
+ "decision": "A",
+ "decision_details": "it has been decided!",
+ "accepted_by": "pointy haired boss",
+ "owner": 1,
+ "expiration_date": "2024-12-31",
+ "reactivate_expired": True,
+ }
+
+ for finding in findings["results"]:
+ ra_data["accepted_findings"].append(finding["id"])
+
+ pre_jira_status = self.get_jira_issue_status(finding_id)
+
+ response = self.add_risk_acceptance(1, data_risk_accceptance=ra_data)
+ self.assertEqual("/engagement/1", response.url)
+
+ # we don't do any explicit push to JIRA here as it should happen automatically
+
+ post_jira_status = self.get_jira_issue_status(finding_id)
+ self.assertNotEqual(pre_jira_status, post_jira_status)
+
+ pre_jira_status = post_jira_status
+ ra = Risk_Acceptance.objects.last()
+ ra_helper.expire_now(ra)
+
+ # we don't do any explicit push to JIRA here as it should happen automatically
+
+ post_jira_status = self.get_jira_issue_status(finding_id)
+ self.assertNotEqual(pre_jira_status, post_jira_status)
+
+ # by asserting full cassette is played we know all calls to JIRA have been made as expected
+ self.assert_cassette_played()
+
def test_import_with_groups_twice_push_to_jira(self):
import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type="NPM Audit Scan", group_by="component_name+component_version", push_to_jira=True, verified=True)
test_id = import0["test"]
diff --git a/unittests/vcr/jira/JIRAImportAndPushTestApi.test_import_grouped_reopen_expired_sla.yaml b/unittests/vcr/jira/JIRAImportAndPushTestApi.test_import_grouped_reopen_expired_risk_acceptance.yaml
similarity index 78%
rename from unittests/vcr/jira/JIRAImportAndPushTestApi.test_import_grouped_reopen_expired_sla.yaml
rename to unittests/vcr/jira/JIRAImportAndPushTestApi.test_import_grouped_reopen_expired_risk_acceptance.yaml
index efae9501238..712788dc889 100644
--- a/unittests/vcr/jira/JIRAImportAndPushTestApi.test_import_grouped_reopen_expired_sla.yaml
+++ b/unittests/vcr/jira/JIRAImportAndPushTestApi.test_import_grouped_reopen_expired_risk_acceptance.yaml
@@ -13,17 +13,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:32:42.492+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:19.998+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - 8b7ceb9b-52f5-4c96-bbb9-f0559a5c77fa
+ - ac760755-9098-474c-bdc0-c7adf51880d4
Atl-Traceid:
- - 8b7ceb9b52f54c96bbb9f0559a5c77fa
+ - ac7607559098474cbdc0c7adf51880d4
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -33,7 +33,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:42 GMT
+ - Thu, 03 Jul 2025 17:36:20 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -43,7 +43,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=105,atl-edge;dur=98,atl-edge-internal;dur=14,atl-edge-upstream;dur=85,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="yEUTWhSqLho-68BPRIJfwZTbRm0zLLlZBtkt3ijeqoqMYIC3EjJa9Q==",cdn-downstream-fbl;dur=109
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=144,atl-edge;dur=136,atl-edge-internal;dur=15,atl-edge-upstream;dur=121,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="8hkq17EXB4BujVIjGexZgKASKsWF0b855KSzzoGkJmKEKHJQh3w7Gw==",cdn-downstream-fbl;dur=148
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -53,15 +53,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 2f7b5be8899520ed019685dc425dc306.cloudfront.net (CloudFront)
+ - 1.1 45f8047ab98fa87807d2f5362a7fb75c.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - yEUTWhSqLho-68BPRIJfwZTbRm0zLLlZBtkt3ijeqoqMYIC3EjJa9Q==
+ - 8hkq17EXB4BujVIjGexZgKASKsWF0b855KSzzoGkJmKEKHJQh3w7Gw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - 7eda89e064906b3d0ff46e27df193880
+ - 4cc6275ce30bdcff516a148afb427d82
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -85,7 +85,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -95,13 +95,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - 506593d4-1e35-44a1-b9f8-da716b87c088
+ - ab9e93e9-cd71-40cb-94ec-ceadabfb6c3f
Atl-Traceid:
- - 506593d41e3544a1b9f8da716b87c088
+ - ab9e93e9cd7140cb94ecceadabfb6c3f
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -111,7 +111,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:42 GMT
+ - Thu, 03 Jul 2025 17:36:20 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -121,7 +121,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="X5_XsBmjLGvyiqNFd09egWqna-k5QAzxEIK2Uo9dZVvfgyuWLH8Q0Q==",cdn-downstream-fbl;dur=329,cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=20,cdn-upstream-fbl;dur=327,atl-edge;dur=295,atl-edge-internal;dur=18,atl-edge-upstream;dur=280,atl-edge-pop;desc="aws-eu-central-1"
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=354,atl-edge;dur=346,atl-edge-internal;dur=15,atl-edge-upstream;dur=331,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="UTaOh6mXhl4ih9OT_6cI8vK40wwKxlgaK-DcSV8SJfvoIQ-mRbVwAQ==",cdn-downstream-fbl;dur=357
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -131,18 +131,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 74511018c757716e70d811d8214e45e0.cloudfront.net (CloudFront)
+ - 1.1 e086ec27af2d3105a1a9fa7efa1be454.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - X5_XsBmjLGvyiqNFd09egWqna-k5QAzxEIK2Uo9dZVvfgyuWLH8Q0Q==
+ - UTaOh6mXhl4ih9OT_6cI8vK40wwKxlgaK-DcSV8SJfvoIQ-mRbVwAQ==
X-Amz-Cf-Pop:
- AMS1-P1
X-Arequestid:
- - 904498294f39f30b614669fa3e0bd063
+ - b9febb4258bfd40504fbc982a2f224d0
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -156,20 +156,20 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -177,11 +177,11 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
- Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n *Due
- Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -189,7 +189,7 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "High"}}}'
headers:
Accept:
@@ -201,21 +201,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3511'
+ - '3537'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: POST
uri: https://defectdojo.atlassian.net/rest/api/2/issue
response:
body:
- string: '{"id":"19657","key":"NTEST-2985","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657"}'
+ string: '{"id":"20651","key":"NTEST-3073","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651"}'
headers:
Atl-Request-Id:
- - 171e15c8-ed6e-4de0-a2ce-72b7e91c2db8
+ - 1d8751b1-7492-43cc-a6d8-6be1fb0bd142
Atl-Traceid:
- - 171e15c8ed6e4de0a2ce72b7e91c2db8
+ - 1d8751b1749243cca6d86be1fb0bd142
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -223,7 +223,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:43 GMT
+ - Thu, 03 Jul 2025 17:36:21 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -233,7 +233,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=719,atl-edge;dur=711,atl-edge-internal;dur=16,atl-edge-upstream;dur=696,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="A1qsp1GD37LwH9_KZhnFdfvJFvOyqLdEelzrXwdhQasK3hA8rBpUjw==",cdn-downstream-fbl;dur=723
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=721,atl-edge;dur=714,atl-edge-internal;dur=15,atl-edge-upstream;dur=699,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="emAruhPxqhXwD6m9bQVp-RFoFHD_H9kmWtO8t_QiuJ7Amcj3c13Q3Q==",cdn-downstream-fbl;dur=725
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -243,15 +243,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 97eaba44803576cf9f5d9993fc05ccee.cloudfront.net (CloudFront)
+ - 1.1 ef674a9df28e4fc8d944ae07304fa954.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - A1qsp1GD37LwH9_KZhnFdfvJFvOyqLdEelzrXwdhQasK3hA8rBpUjw==
+ - emAruhPxqhXwD6m9bQVp-RFoFHD_H9kmWtO8t_QiuJ7Amcj3c13Q3Q==
X-Amz-Cf-Pop:
- AMS1-P1
X-Arequestid:
- - ec38b8c35de3ef66e2f12a39346da420
+ - fc01cf4ea98000a8d0944648a032e2df
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -275,31 +275,30 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:43.686+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:21.232+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:43.415+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:20.997+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -307,11 +306,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -319,16 +318,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 1da2924b-c462-4141-80f1-fb3d086d61a2
+ - 6c6f67b4-023a-419e-8ea2-c16de98796e6
Atl-Traceid:
- - 1da2924bc462414180f1fb3d086d61a2
+ - 6c6f67b4023a419e8ea2c16de98796e6
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -338,7 +337,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:44 GMT
+ - Thu, 03 Jul 2025 17:36:21 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -348,7 +347,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=239,atl-edge;dur=231,atl-edge-internal;dur=17,atl-edge-upstream;dur=215,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="I3DPnTZq0u_2zT-WtnzfJ6Qu_r4jDE2l4UuKfbFJP5g9RaEoyODAtg==",cdn-downstream-fbl;dur=243
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=252,atl-edge;dur=223,atl-edge-internal;dur=20,atl-edge-upstream;dur=204,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="IpscAgrqRDloLLGmiN81sJbDGUTifqWZU0z-9WR0D9ZNUM5lCF4Y4Q==",cdn-downstream-fbl;dur=257
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -358,15 +357,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 5e1e1cde81deec56515dcc5317501fe8.cloudfront.net (CloudFront)
+ - 1.1 38ff23673937c3eba42a4eefb2007078.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - I3DPnTZq0u_2zT-WtnzfJ6Qu_r4jDE2l4UuKfbFJP5g9RaEoyODAtg==
+ - IpscAgrqRDloLLGmiN81sJbDGUTifqWZU0z-9WR0D9ZNUM5lCF4Y4Q==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - ab8b81d71dd2dc35746048fd09be8bbb
+ - b99ddebcbae26a3dfa4cd1850bf24f9b
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -390,31 +389,30 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:43.686+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:21.232+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:43.415+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:20.997+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -422,11 +420,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -434,16 +432,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - bfe994b1-ef64-4be9-b4d4-2478dd285397
+ - 91ff8f4c-9948-4fc9-b518-b2c503691825
Atl-Traceid:
- - bfe994b1ef644be9b4d42478dd285397
+ - 91ff8f4c99484fc9b518b2c503691825
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -453,7 +451,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:44 GMT
+ - Thu, 03 Jul 2025 17:36:21 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -463,7 +461,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=211,atl-edge;dur=204,atl-edge-internal;dur=23,atl-edge-upstream;dur=181,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="Vxah-6qOGj90-f1ItyhV4qGCRTpZqTPDcHhFnjH1wJbvXZC7TND7lQ==",cdn-downstream-fbl;dur=216
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=189,atl-edge;dur=182,atl-edge-internal;dur=16,atl-edge-upstream;dur=165,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="tqctPE2mj14WtkFRYJa9H25wtnxrkHajvmjpsTHWskQBpP-IGKU01g==",cdn-downstream-fbl;dur=195
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -473,15 +471,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 b6cf988ed9428ad8492255f2faaacfdc.cloudfront.net (CloudFront)
+ - 1.1 b3ca057e9cdd89c43806ec06db3b4046.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - Vxah-6qOGj90-f1ItyhV4qGCRTpZqTPDcHhFnjH1wJbvXZC7TND7lQ==
+ - tqctPE2mj14WtkFRYJa9H25wtnxrkHajvmjpsTHWskQBpP-IGKU01g==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS1-P2
X-Arequestid:
- - 7bb6bc5eb7e0ceb143ca7c6e51197e56
+ - af127cb5b38acc8411c5c77eef5b23f3
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -505,17 +503,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:32:44.563+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:22.115+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - 7aa54057-fe92-45af-9d98-14851b00216d
+ - 091c8ef7-a593-486e-ab95-97dea903d979
Atl-Traceid:
- - 7aa54057fe9245af9d9814851b00216d
+ - 091c8ef7a593486eab9597dea903d979
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -525,7 +523,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:44 GMT
+ - Thu, 03 Jul 2025 17:36:22 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -535,7 +533,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=120,atl-edge;dur=112,atl-edge-internal;dur=15,atl-edge-upstream;dur=98,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="HEkp-3LVuBmS_zc5ZUwHyco8AbHyv-Fnt0c7R4i6an6Yr1jU99aI9g==",cdn-downstream-fbl;dur=124
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=8,cdn-upstream-fbl;dur=116,atl-edge;dur=85,atl-edge-internal;dur=15,atl-edge-upstream;dur=71,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="K51bSsiXanpDY4IKaHjxmWWpUGhOzLBDfsuT7LNdZU7Vqu50zZUcBw==",cdn-downstream-fbl;dur=120
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -545,15 +543,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 37bca31d9c7de06b67b2363770e065b4.cloudfront.net (CloudFront)
+ - 1.1 4a345f25fcb995602afaf132ccf353de.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - HEkp-3LVuBmS_zc5ZUwHyco8AbHyv-Fnt0c7R4i6an6Yr1jU99aI9g==
+ - K51bSsiXanpDY4IKaHjxmWWpUGhOzLBDfsuT7LNdZU7Vqu50zZUcBw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - ef56006a63a98b3027482c23c64edfb3
+ - 6eae7d2c62a6d73893a1e0a778957f06
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -577,7 +575,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -587,13 +585,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - f8b3c4ad-3bd2-49bc-8e5d-3ba90e259a21
+ - bfa1b5af-c6f1-4c19-8ee5-085cc24859fe
Atl-Traceid:
- - f8b3c4ad3bd249bc8e5d3ba90e259a21
+ - bfa1b5afc6f14c198ee5085cc24859fe
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -603,7 +601,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:44 GMT
+ - Thu, 03 Jul 2025 17:36:22 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -613,7 +611,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=310,atl-edge;dur=302,atl-edge-internal;dur=16,atl-edge-upstream;dur=287,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="HyYbASngiqGupICliBXehphJTXP-RAZRoKyb4uIFZqManhMt-fF_7w==",cdn-downstream-fbl;dur=314
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=375,atl-edge;dur=367,atl-edge-internal;dur=15,atl-edge-upstream;dur=352,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="wlMPuuUHvS-m56RpH-s58KorarhmX3QMWyYr22wY_Fw-Pvuytyvzqg==",cdn-downstream-fbl;dur=381
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -623,18 +621,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 9500c58b11c15528d15f2ca9add5bc00.cloudfront.net (CloudFront)
+ - 1.1 abf5199c76a5a64063b4cf8863f823aa.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - HyYbASngiqGupICliBXehphJTXP-RAZRoKyb4uIFZqManhMt-fF_7w==
+ - wlMPuuUHvS-m56RpH-s58KorarhmX3QMWyYr22wY_Fw-Pvuytyvzqg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS1-P2
X-Arequestid:
- - 6d267b29388ad341951c86d959b5fea0
+ - 8ad7f94aa87df9de2b9eaee3e65d8e77
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -648,29 +646,29 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
- [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932] in [Security
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367] in [Security
How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Active,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
- < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -695,13 +693,13 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
(Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
< 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
- 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect Dojo link:* http://localhost:8080/finding/295
- (295)\n*Severity:* Medium\n *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -726,7 +724,7 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "High"}}}'
headers:
Accept:
@@ -738,21 +736,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '6981'
+ - '7007'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: POST
uri: https://defectdojo.atlassian.net/rest/api/2/issue
response:
body:
- string: '{"id":"19658","key":"NTEST-2986","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658"}'
+ string: '{"id":"20652","key":"NTEST-3074","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652"}'
headers:
Atl-Request-Id:
- - 21a9cb3c-5e26-4f86-a7a8-cbea22ff6a6c
+ - 2b0a6158-0818-4e75-8b42-cb8e2d7a7ba4
Atl-Traceid:
- - 21a9cb3c5e264f86a7a8cbea22ff6a6c
+ - 2b0a615808184e758b42cb8e2d7a7ba4
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -760,7 +758,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:45 GMT
+ - Thu, 03 Jul 2025 17:36:23 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -770,7 +768,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=732,atl-edge;dur=725,atl-edge-internal;dur=16,atl-edge-upstream;dur=709,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="qkdrGM5OdRWisxIdwVUqJTwVEdjZaFoCG08zxiznY12o_s7kgmtJuw==",cdn-downstream-fbl;dur=737
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=708,atl-edge;dur=700,atl-edge-internal;dur=15,atl-edge-upstream;dur=685,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="3sZqElCKwzz4WmQ7O4X0t4-dmBL8lsJnXlCK0ssC_t8WxUIRMSXvOg==",cdn-downstream-fbl;dur=712
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -780,15 +778,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 b0062bb33b961b53be87d688f2bdd9f8.cloudfront.net (CloudFront)
+ - 1.1 7f0813b44b225b7cfed233d5c2caab52.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - qkdrGM5OdRWisxIdwVUqJTwVEdjZaFoCG08zxiznY12o_s7kgmtJuw==
+ - 3sZqElCKwzz4WmQ7O4X0t4-dmBL8lsJnXlCK0ssC_t8WxUIRMSXvOg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - 288aaee26d4dbb9714f9565334096416
+ - 4432b1189afb247ec7dca84be41b4b40
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -812,40 +810,39 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:32:45.768+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:23.280+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:45.520+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:23.072+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Active,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
- < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -870,14 +867,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -902,16 +899,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 9816b64a-1658-4a5a-b3ed-11d4cb8ce420
+ - 9e1f83df-6a29-49ae-b929-d17d7c529d69
Atl-Traceid:
- - 9816b64a16584a5ab3ed11d4cb8ce420
+ - 9e1f83df6a2949aeb929d17d7c529d69
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -921,7 +918,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:46 GMT
+ - Thu, 03 Jul 2025 17:36:23 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -931,7 +928,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=246,atl-edge;dur=239,atl-edge-internal;dur=16,atl-edge-upstream;dur=223,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="2ctVPhZ70l8ZUPQq0iqdKxVYqPufcV0aWc5Dp7b6g0n31eMnUGuRyQ==",cdn-downstream-fbl;dur=249
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=184,atl-edge;dur=177,atl-edge-internal;dur=16,atl-edge-upstream;dur=160,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="c6D5MIuf2Czia0W1-qy7RF9WwOHoH9fTKS1R2cAtkNEGbUlZIbXpmA==",cdn-downstream-fbl;dur=189
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -941,15 +938,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 9835af751c15612a813bbc131d2ce1e6.cloudfront.net (CloudFront)
+ - 1.1 1b575b46b9e4dd6b829accb4ea728b00.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 2ctVPhZ70l8ZUPQq0iqdKxVYqPufcV0aWc5Dp7b6g0n31eMnUGuRyQ==
+ - c6D5MIuf2Czia0W1-qy7RF9WwOHoH9fTKS1R2cAtkNEGbUlZIbXpmA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS1-P2
X-Arequestid:
- - d24c1fbd43cdb19683de4467d7fce3fe
+ - def93e618efcd374d660f56c86cc1ea0
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -973,40 +970,39 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:32:45.768+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:23.280+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:45.520+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:23.072+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Active,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
- < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -1031,14 +1027,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -1063,16 +1059,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 6484acbe-c652-40ff-98c2-dd9366b41542
+ - 39638a67-693b-43a0-b857-a76414d378eb
Atl-Traceid:
- - 6484acbec65240ff98c2dd9366b41542
+ - 39638a67693b43a0b857a76414d378eb
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -1082,7 +1078,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:46 GMT
+ - Thu, 03 Jul 2025 17:36:23 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -1092,7 +1088,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=258,atl-edge;dur=251,atl-edge-internal;dur=28,atl-edge-upstream;dur=223,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="G5a_NY1Nbv8cjJWS6Dq4Uk0ladBkmRIx_sGiX2TftKaGAMn1Y1iyLA==",cdn-downstream-fbl;dur=263
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=216,atl-edge;dur=208,atl-edge-internal;dur=14,atl-edge-upstream;dur=194,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="qqLiPbtnKxbSjfuoJRwoCeZm_08fJv-QvI5QfV45_6vrbp4o9JaIQA==",cdn-downstream-fbl;dur=221
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -1102,15 +1098,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 29676c2ee539645954aa742bde1ce894.cloudfront.net (CloudFront)
+ - 1.1 dc216c6741e47caf45c9d347f1061c8e.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - G5a_NY1Nbv8cjJWS6Dq4Uk0ladBkmRIx_sGiX2TftKaGAMn1Y1iyLA==
+ - qqLiPbtnKxbSjfuoJRwoCeZm_08fJv-QvI5QfV45_6vrbp4o9JaIQA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - 0636250464db62a3f3db69f6ec76cbb3
+ - 37d1c7c1e87f198c9add86fff2f3a885
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -1134,17 +1130,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:32:46.706+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:24.218+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - fe0cce79-ff61-42a5-9c5e-67d9f50cf152
+ - 2b513d3f-4fb3-4ed5-9ed2-54cce2386e66
Atl-Traceid:
- - fe0cce79ff6142a59c5e67d9f50cf152
+ - 2b513d3f4fb34ed59ed254cce2386e66
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -1154,7 +1150,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:46 GMT
+ - Thu, 03 Jul 2025 17:36:24 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -1164,7 +1160,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=114,atl-edge;dur=106,atl-edge-internal;dur=16,atl-edge-upstream;dur=90,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="di01vUgZ7oSspvTfn3FfzYECnQu8Cb47sRoSJaeED1zX7NXyZGxnaA==",cdn-downstream-fbl;dur=118
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=158,atl-edge;dur=150,atl-edge-internal;dur=14,atl-edge-upstream;dur=136,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="s1wz5XtgYCDHzvAJ8US4B7ljVGEqMdH3lBDWoZcaBLuRo00Eeye9fg==",cdn-downstream-fbl;dur=163
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -1174,15 +1170,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 490623df85c571a18ba7da1511cc969e.cloudfront.net (CloudFront)
+ - 1.1 e94fc0df161940e9096df2b4fe60d4f8.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - di01vUgZ7oSspvTfn3FfzYECnQu8Cb47sRoSJaeED1zX7NXyZGxnaA==
+ - s1wz5XtgYCDHzvAJ8US4B7ljVGEqMdH3lBDWoZcaBLuRo00Eeye9fg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - 1a6c55739fe02541d0300d2e1bf3145d
+ - babc1cb7da6845775c5e90f854735846
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -1206,7 +1202,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -1216,13 +1212,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - 875bb0b4-0e95-40bf-9dae-de15b94156f3
+ - 5d5ee9e6-ca0c-4e93-afb8-3731084e7cc5
Atl-Traceid:
- - 875bb0b40e9540bf9daede15b94156f3
+ - 5d5ee9e6ca0c4e93afb83731084e7cc5
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -1232,7 +1228,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:47 GMT
+ - Thu, 03 Jul 2025 17:36:24 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -1242,7 +1238,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=266,atl-edge;dur=259,atl-edge-internal;dur=16,atl-edge-upstream;dur=243,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="Q1cdkkbpNpB3W2uVVV8c0i25KLABxIMyf9AUku4B6Gtrsyrf0x0WmQ==",cdn-downstream-fbl;dur=270
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=227,atl-edge;dur=219,atl-edge-internal;dur=13,atl-edge-upstream;dur=206,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="ch11mYWo72zOeywB1A6AFkZvZRLufRZySrT3f8w7YFf5OZCJ1-9FtA==",cdn-downstream-fbl;dur=231
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -1252,18 +1248,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 acee7e60faaea7b7699fe033930a0164.cloudfront.net (CloudFront)
+ - 1.1 70edb33d401d701d341a00ffeb978b84.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - Q1cdkkbpNpB3W2uVVV8c0i25KLABxIMyf9AUku4B6Gtrsyrf0x0WmQ==
+ - ch11mYWo72zOeywB1A6AFkZvZRLufRZySrT3f8w7YFf5OZCJ1-9FtA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - 7e9f12b2dcd9c7a1f75d57339bec5ce6
+ - d88f435fac54d9035962cd1b95873d46
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -1277,25 +1273,25 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: fresh:0.3.0", "description": "\n\n\n\n\n\n\nA group
of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
- [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/933] in [Security
+ [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/368] in [Security
How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- Medium *Due Date:* Aug. 22, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version ||
+ Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
- Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]\n*Defect
- Dojo link:* http://localhost:8080/finding/294 (294)\n*Severity:* Medium\n *Due
- Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
versions of `fresh` are vulnerable to regular expression denial of service when
parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "Medium"}}}'
headers:
Accept:
@@ -1307,21 +1303,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2139'
+ - '2160'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: POST
uri: https://defectdojo.atlassian.net/rest/api/2/issue
response:
body:
- string: '{"id":"19659","key":"NTEST-2987","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659"}'
+ string: '{"id":"20653","key":"NTEST-3075","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653"}'
headers:
Atl-Request-Id:
- - 6af21b20-7b77-46d8-9c78-aa8caddacaaf
+ - 2fbe8e33-0b7a-46e2-815b-23a75671db7d
Atl-Traceid:
- - 6af21b207b7746d89c78aa8caddacaaf
+ - 2fbe8e330b7a46e2815b23a75671db7d
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -1329,7 +1325,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:47 GMT
+ - Thu, 03 Jul 2025 17:36:25 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -1339,7 +1335,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=689,atl-edge;dur=682,atl-edge-internal;dur=15,atl-edge-upstream;dur=666,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="NXsSjZzmw7MVs4F8CKYQe_MJBjUvGYK-VgSVBGHl7Hv_-tlHxIn1Hg==",cdn-downstream-fbl;dur=692
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=580,atl-edge;dur=572,atl-edge-internal;dur=15,atl-edge-upstream;dur=557,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="4_UvbyJ3a3ubURn0QeCiWAKwtlKdAZdfzd7lWCY1wzqL8WTY4AReMQ==",cdn-downstream-fbl;dur=584
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -1349,15 +1345,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 29676c2ee539645954aa742bde1ce894.cloudfront.net (CloudFront)
+ - 1.1 5fee70391560223c206b9f4887737d74.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - NXsSjZzmw7MVs4F8CKYQe_MJBjUvGYK-VgSVBGHl7Hv_-tlHxIn1Hg==
+ - 4_UvbyJ3a3ubURn0QeCiWAKwtlKdAZdfzd7lWCY1wzqL8WTY4AReMQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - eb0660e378a56c6cc901dfddbd0a57ac
+ - 5460d8a5e1fc5012593d256135597e1a
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -1381,45 +1377,44 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19659","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659","key":"NTEST-2987","fields":{"statuscategorychangedate":"2025-05-24T12:32:47.782+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20653","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653","key":"NTEST-3075","fields":{"statuscategorychangedate":"2025-07-03T19:36:25.109+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:47.431+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ev:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:47.516+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:24.883+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rj:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:24.967+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/933]
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/368]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- Medium *Due Date:* Aug. 22, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
- Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]\n*Defect
- Dojo link:* http://localhost:8080/finding/294 (294)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
versions of `fresh` are vulnerable to regular expression denial of service
when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 000db031-b068-46d6-9030-49c68f8df78f
+ - a3cb133e-45e5-4985-af19-573eb42c5d04
Atl-Traceid:
- - 000db031b06846d6903049c68f8df78f
+ - a3cb133e45e54985af19573eb42c5d04
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -1429,7 +1424,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:48 GMT
+ - Thu, 03 Jul 2025 17:36:25 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -1439,7 +1434,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=228,atl-edge;dur=221,atl-edge-internal;dur=19,atl-edge-upstream;dur=202,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="D6lLiCKYJmscehQEI4iwDoo-03A3JdbvvvbIuiX9sQLSXwQ0ZdbT4w==",cdn-downstream-fbl;dur=232
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=238,atl-edge;dur=230,atl-edge-internal;dur=15,atl-edge-upstream;dur=216,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="dH71-5InFXrFRdWhi2pfPFrnXwfDfbc_QedaFGHfRBdpIWi4Ozn_eA==",cdn-downstream-fbl;dur=243
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -1449,15 +1444,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 acee7e60faaea7b7699fe033930a0164.cloudfront.net (CloudFront)
+ - 1.1 a4f5633e78f92f983940236e96220232.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - D6lLiCKYJmscehQEI4iwDoo-03A3JdbvvvbIuiX9sQLSXwQ0ZdbT4w==
+ - dH71-5InFXrFRdWhi2pfPFrnXwfDfbc_QedaFGHfRBdpIWi4Ozn_eA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - 4e7e076f4f873203461148ff4bc8091b
+ - 64f1be4589e257098cbd03b169b51a2f
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -1481,45 +1476,44 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19659
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20653
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19659","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659","key":"NTEST-2987","fields":{"statuscategorychangedate":"2025-05-24T12:32:47.782+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20653","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653","key":"NTEST-3075","fields":{"statuscategorychangedate":"2025-07-03T19:36:25.109+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:47.431+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ev:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:47.516+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:24.883+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rj:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:24.967+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/933]
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/368]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- Medium *Due Date:* Aug. 22, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
- Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]\n*Defect
- Dojo link:* http://localhost:8080/finding/294 (294)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
versions of `fresh` are vulnerable to regular expression denial of service
when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - c7303887-6dc1-4ef4-b580-295d41e20775
+ - a96ebd4b-74ad-4fe4-ace2-cd395de6751c
Atl-Traceid:
- - c73038876dc14ef4b580295d41e20775
+ - a96ebd4b74ad4fe4ace2cd395de6751c
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -1529,7 +1523,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:48 GMT
+ - Thu, 03 Jul 2025 17:36:25 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -1539,7 +1533,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=202,atl-edge;dur=194,atl-edge-internal;dur=19,atl-edge-upstream;dur=176,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="SIeB-sbfC1fywYHdlRU1JQsFICPgzK_DJ42IrtL-H-tp5rpMWah8Zw==",cdn-downstream-fbl;dur=206
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=258,atl-edge;dur=250,atl-edge-internal;dur=15,atl-edge-upstream;dur=236,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="rf2hdmsDNKLnyQ54Hv46Ztoz453JdbGfL8IbRbx_KLXoAZYBPIDzmA==",cdn-downstream-fbl;dur=262
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -1549,15 +1543,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 1a89beee9d72657437f5e91f57220804.cloudfront.net (CloudFront)
+ - 1.1 428178e04c8c5f5460c3935b1e7203be.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - SIeB-sbfC1fywYHdlRU1JQsFICPgzK_DJ42IrtL-H-tp5rpMWah8Zw==
+ - rf2hdmsDNKLnyQ54Hv46Ztoz453JdbGfL8IbRbx_KLXoAZYBPIDzmA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - 5236761d2149ff08cb6ce8e3659377f7
+ - 2626630d2d3329bb051d0f7c494bf2d3
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -1570,14 +1564,14 @@ interactions:
- request:
body: '{"description": "Event test_added has occurred.", "title": "Test created
for Security How-to: 1st Quarter Engagement: NPM Audit Scan", "user": null,
- "url_ui": "http://localhost:8080/test/104", "url_api": "http://localhost:8080/api/v2/tests/104/",
+ "url_ui": "http://localhost:8080/test/90", "url_api": "http://localhost:8080/api/v2/tests/90/",
"product_type": {"name": "ebooks", "id": 2, "url_ui": "http://localhost:8080/product/type/2",
"url_api": "http://localhost:8080/api/v2/product_types/2/"}, "product": {"name":
"Security How-to", "id": 2, "url_ui": "http://localhost:8080/product/2", "url_api":
"http://localhost:8080/api/v2/products/2/"}, "engagement": {"name": "1st Quarter
Engagement", "id": 1, "url_ui": "http://localhost:8080/engagement/1", "url_api":
"http://localhost:8080/api/v2/engagements/1/"}, "test": {"title": null, "id":
- 104, "url_ui": "http://localhost:8080/test/104", "url_api": "http://localhost:8080/api/v2/tests/104/"}}'
+ 90, "url_ui": "http://localhost:8080/test/90", "url_api": "http://localhost:8080/api/v2/tests/90/"}}'
headers:
Accept:
- application/json
@@ -1588,11 +1582,11 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '849'
+ - '844'
Content-Type:
- application/json
User-Agent:
- - DefectDojo-2.46.2
+ - DefectDojo-2.48.0-dev
X-DefectDojo-Event:
- test_added
X-DefectDojo-Instance:
@@ -1604,24 +1598,24 @@ interactions:
string: "{\n \"args\": {},\n \"headers\": {\n \"Accept\": [\n \"application/json\"\n
\ ],\n \"Accept-Encoding\": [\n \"gzip, deflate\"\n ],\n \"Auth\":
[\n \"Token xxx\"\n ],\n \"Connection\": [\n \"keep-alive\"\n
- \ ],\n \"Content-Length\": [\n \"849\"\n ],\n \"Content-Type\":
+ \ ],\n \"Content-Length\": [\n \"844\"\n ],\n \"Content-Type\":
[\n \"application/json\"\n ],\n \"Host\": [\n \"webhook.endpoint:8080\"\n
- \ ],\n \"User-Agent\": [\n \"DefectDojo-2.46.2\"\n ],\n \"X-Defectdojo-Event\":
+ \ ],\n \"User-Agent\": [\n \"DefectDojo-2.48.0-dev\"\n ],\n \"X-Defectdojo-Event\":
[\n \"test_added\"\n ],\n \"X-Defectdojo-Instance\": [\n \"http://localhost:8080\"\n
- \ ]\n },\n \"method\": \"POST\",\n \"origin\": \"10.250.1.6:42498\",\n
+ \ ]\n },\n \"method\": \"POST\",\n \"origin\": \"10.250.1.6:52728\",\n
\ \"url\": \"http://webhook.endpoint:8080/post\",\n \"data\": \"{\\\"description\\\":
\\\"Event test_added has occurred.\\\", \\\"title\\\": \\\"Test created for
Security How-to: 1st Quarter Engagement: NPM Audit Scan\\\", \\\"user\\\":
- null, \\\"url_ui\\\": \\\"http://localhost:8080/test/104\\\", \\\"url_api\\\":
- \\\"http://localhost:8080/api/v2/tests/104/\\\", \\\"product_type\\\": {\\\"name\\\":
+ null, \\\"url_ui\\\": \\\"http://localhost:8080/test/90\\\", \\\"url_api\\\":
+ \\\"http://localhost:8080/api/v2/tests/90/\\\", \\\"product_type\\\": {\\\"name\\\":
\\\"ebooks\\\", \\\"id\\\": 2, \\\"url_ui\\\": \\\"http://localhost:8080/product/type/2\\\",
\\\"url_api\\\": \\\"http://localhost:8080/api/v2/product_types/2/\\\"}, \\\"product\\\":
{\\\"name\\\": \\\"Security How-to\\\", \\\"id\\\": 2, \\\"url_ui\\\": \\\"http://localhost:8080/product/2\\\",
\\\"url_api\\\": \\\"http://localhost:8080/api/v2/products/2/\\\"}, \\\"engagement\\\":
{\\\"name\\\": \\\"1st Quarter Engagement\\\", \\\"id\\\": 1, \\\"url_ui\\\":
\\\"http://localhost:8080/engagement/1\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/engagements/1/\\\"},
- \\\"test\\\": {\\\"title\\\": null, \\\"id\\\": 104, \\\"url_ui\\\": \\\"http://localhost:8080/test/104\\\",
- \\\"url_api\\\": \\\"http://localhost:8080/api/v2/tests/104/\\\"}}\",\n \"files\":
+ \\\"test\\\": {\\\"title\\\": null, \\\"id\\\": 90, \\\"url_ui\\\": \\\"http://localhost:8080/test/90\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/tests/90/\\\"}}\",\n \"files\":
{},\n \"form\": {},\n \"json\": {\n \"description\": \"Event test_added
has occurred.\",\n \"engagement\": {\n \"id\": 1,\n \"name\":
\"1st Quarter Engagement\",\n \"url_api\": \"http://localhost:8080/api/v2/engagements/1/\",\n
@@ -1631,11 +1625,11 @@ interactions:
\ },\n \"product_type\": {\n \"id\": 2,\n \"name\": \"ebooks\",\n
\ \"url_api\": \"http://localhost:8080/api/v2/product_types/2/\",\n \"url_ui\":
\"http://localhost:8080/product/type/2\"\n },\n \"test\": {\n \"id\":
- 104,\n \"title\": null,\n \"url_api\": \"http://localhost:8080/api/v2/tests/104/\",\n
- \ \"url_ui\": \"http://localhost:8080/test/104\"\n },\n \"title\":
+ 90,\n \"title\": null,\n \"url_api\": \"http://localhost:8080/api/v2/tests/90/\",\n
+ \ \"url_ui\": \"http://localhost:8080/test/90\"\n },\n \"title\":
\"Test created for Security How-to: 1st Quarter Engagement: NPM Audit Scan\",\n
- \ \"url_api\": \"http://localhost:8080/api/v2/tests/104/\",\n \"url_ui\":
- \"http://localhost:8080/test/104\",\n \"user\": null\n }\n}\n"
+ \ \"url_api\": \"http://localhost:8080/api/v2/tests/90/\",\n \"url_ui\":
+ \"http://localhost:8080/test/90\",\n \"user\": null\n }\n}\n"
headers:
Access-Control-Allow-Credentials:
- 'true'
@@ -1644,7 +1638,7 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Sat, 24 May 2025 10:32:46 GMT
+ - Thu, 03 Jul 2025 17:36:25 GMT
Transfer-Encoding:
- chunked
status:
@@ -1653,32 +1647,32 @@ interactions:
- request:
body: '{"description": "Event scan_added has occurred.", "title": "Created/Updated
5 findings for Security How-to: 1st Quarter Engagement: NPM Audit Scan", "user":
- null, "url_ui": "http://localhost:8080/test/104", "url_api": "http://localhost:8080/api/v2/tests/104/",
+ null, "url_ui": "http://localhost:8080/test/90", "url_api": "http://localhost:8080/api/v2/tests/90/",
"product_type": {"name": "ebooks", "id": 2, "url_ui": "http://localhost:8080/product/type/2",
"url_api": "http://localhost:8080/api/v2/product_types/2/"}, "product": {"name":
"Security How-to", "id": 2, "url_ui": "http://localhost:8080/product/2", "url_api":
"http://localhost:8080/api/v2/products/2/"}, "engagement": {"name": "1st Quarter
Engagement", "id": 1, "url_ui": "http://localhost:8080/engagement/1", "url_api":
"http://localhost:8080/api/v2/engagements/1/"}, "test": {"title": null, "id":
- 104, "url_ui": "http://localhost:8080/test/104", "url_api": "http://localhost:8080/api/v2/tests/104/"},
- "finding_count": 5, "findings": {"new": [{"id": 292, "title": "2222Regular Expression
- Denial of Service - (Negotiator, <= 0.6.0)", "severity": "High", "url_ui": "http://localhost:8080/finding/292",
- "url_api": "http://localhost:8080/api/v2/findings/292/"}, {"id": 293, "title":
+ 90, "url_ui": "http://localhost:8080/test/90", "url_api": "http://localhost:8080/api/v2/tests/90/"},
+ "finding_count": 5, "findings": {"new": [{"id": 233, "title": "2222Regular Expression
+ Denial of Service - (Negotiator, <= 0.6.0)", "severity": "High", "url_ui": "http://localhost:8080/finding/233",
+ "url_api": "http://localhost:8080/api/v2/findings/233/"}, {"id": 234, "title":
"Remote Code Execution - (Pg, < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7
|| >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5
|| >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2)",
- "severity": "High", "url_ui": "http://localhost:8080/finding/293", "url_api":
- "http://localhost:8080/api/v2/findings/293/"}, {"id": 291, "title": "Regular
+ "severity": "High", "url_ui": "http://localhost:8080/finding/234", "url_api":
+ "http://localhost:8080/api/v2/findings/234/"}, {"id": 232, "title": "Regular
Expression Denial of Service - (Negotiator, <= 0.6.0)", "severity": "Medium",
- "url_ui": "http://localhost:8080/finding/291", "url_api": "http://localhost:8080/api/v2/findings/291/"},
- {"id": 294, "title": "Regular Expression Denial of Service - (Fresh, < 0.5.2)",
- "severity": "Medium", "url_ui": "http://localhost:8080/finding/294", "url_api":
- "http://localhost:8080/api/v2/findings/294/"}, {"id": 295, "title": "2222Remote
+ "url_ui": "http://localhost:8080/finding/232", "url_api": "http://localhost:8080/api/v2/findings/232/"},
+ {"id": 235, "title": "Regular Expression Denial of Service - (Fresh, < 0.5.2)",
+ "severity": "Medium", "url_ui": "http://localhost:8080/finding/235", "url_api":
+ "http://localhost:8080/api/v2/findings/235/"}, {"id": 236, "title": "2222Remote
Code Execution - (Pg, < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >=
5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 ||
>= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2)",
- "severity": "Medium", "url_ui": "http://localhost:8080/finding/295", "url_api":
- "http://localhost:8080/api/v2/findings/295/"}], "reactivated": [], "mitigated":
+ "severity": "Medium", "url_ui": "http://localhost:8080/finding/236", "url_api":
+ "http://localhost:8080/api/v2/findings/236/"}], "reactivated": [], "mitigated":
[], "untouched": []}}'
headers:
Accept:
@@ -1690,11 +1684,11 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2378'
+ - '2373'
Content-Type:
- application/json
User-Agent:
- - DefectDojo-2.46.2
+ - DefectDojo-2.48.0-dev
X-DefectDojo-Event:
- scan_added
X-DefectDojo-Instance:
@@ -1706,85 +1700,84 @@ interactions:
string: "{\n \"args\": {},\n \"headers\": {\n \"Accept\": [\n \"application/json\"\n
\ ],\n \"Accept-Encoding\": [\n \"gzip, deflate\"\n ],\n \"Auth\":
[\n \"Token xxx\"\n ],\n \"Connection\": [\n \"keep-alive\"\n
- \ ],\n \"Content-Length\": [\n \"2378\"\n ],\n \"Content-Type\":
+ \ ],\n \"Content-Length\": [\n \"2373\"\n ],\n \"Content-Type\":
[\n \"application/json\"\n ],\n \"Host\": [\n \"webhook.endpoint:8080\"\n
- \ ],\n \"User-Agent\": [\n \"DefectDojo-2.46.2\"\n ],\n \"X-Defectdojo-Event\":
+ \ ],\n \"User-Agent\": [\n \"DefectDojo-2.48.0-dev\"\n ],\n \"X-Defectdojo-Event\":
[\n \"scan_added\"\n ],\n \"X-Defectdojo-Instance\": [\n \"http://localhost:8080\"\n
- \ ]\n },\n \"method\": \"POST\",\n \"origin\": \"10.250.1.6:42508\",\n
+ \ ]\n },\n \"method\": \"POST\",\n \"origin\": \"10.250.1.6:52740\",\n
\ \"url\": \"http://webhook.endpoint:8080/post\",\n \"data\": \"{\\\"description\\\":
\\\"Event scan_added has occurred.\\\", \\\"title\\\": \\\"Created/Updated
5 findings for Security How-to: 1st Quarter Engagement: NPM Audit Scan\\\",
- \\\"user\\\": null, \\\"url_ui\\\": \\\"http://localhost:8080/test/104\\\",
- \\\"url_api\\\": \\\"http://localhost:8080/api/v2/tests/104/\\\", \\\"product_type\\\":
+ \\\"user\\\": null, \\\"url_ui\\\": \\\"http://localhost:8080/test/90\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/tests/90/\\\", \\\"product_type\\\":
{\\\"name\\\": \\\"ebooks\\\", \\\"id\\\": 2, \\\"url_ui\\\": \\\"http://localhost:8080/product/type/2\\\",
\\\"url_api\\\": \\\"http://localhost:8080/api/v2/product_types/2/\\\"}, \\\"product\\\":
{\\\"name\\\": \\\"Security How-to\\\", \\\"id\\\": 2, \\\"url_ui\\\": \\\"http://localhost:8080/product/2\\\",
\\\"url_api\\\": \\\"http://localhost:8080/api/v2/products/2/\\\"}, \\\"engagement\\\":
{\\\"name\\\": \\\"1st Quarter Engagement\\\", \\\"id\\\": 1, \\\"url_ui\\\":
\\\"http://localhost:8080/engagement/1\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/engagements/1/\\\"},
- \\\"test\\\": {\\\"title\\\": null, \\\"id\\\": 104, \\\"url_ui\\\": \\\"http://localhost:8080/test/104\\\",
- \\\"url_api\\\": \\\"http://localhost:8080/api/v2/tests/104/\\\"}, \\\"finding_count\\\":
- 5, \\\"findings\\\": {\\\"new\\\": [{\\\"id\\\": 292, \\\"title\\\": \\\"2222Regular
+ \\\"test\\\": {\\\"title\\\": null, \\\"id\\\": 90, \\\"url_ui\\\": \\\"http://localhost:8080/test/90\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/tests/90/\\\"}, \\\"finding_count\\\":
+ 5, \\\"findings\\\": {\\\"new\\\": [{\\\"id\\\": 233, \\\"title\\\": \\\"2222Regular
Expression Denial of Service - (Negotiator, <= 0.6.0)\\\", \\\"severity\\\":
- \\\"High\\\", \\\"url_ui\\\": \\\"http://localhost:8080/finding/292\\\", \\\"url_api\\\":
- \\\"http://localhost:8080/api/v2/findings/292/\\\"}, {\\\"id\\\": 293, \\\"title\\\":
+ \\\"High\\\", \\\"url_ui\\\": \\\"http://localhost:8080/finding/233\\\", \\\"url_api\\\":
+ \\\"http://localhost:8080/api/v2/findings/233/\\\"}, {\\\"id\\\": 234, \\\"title\\\":
\\\"Remote Code Execution - (Pg, < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0
< 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >=
6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
|| >= 7.1.0 < 7.1.2)\\\", \\\"severity\\\": \\\"High\\\", \\\"url_ui\\\":
- \\\"http://localhost:8080/finding/293\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/findings/293/\\\"},
- {\\\"id\\\": 291, \\\"title\\\": \\\"Regular Expression Denial of Service
+ \\\"http://localhost:8080/finding/234\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/findings/234/\\\"},
+ {\\\"id\\\": 232, \\\"title\\\": \\\"Regular Expression Denial of Service
- (Negotiator, <= 0.6.0)\\\", \\\"severity\\\": \\\"Medium\\\", \\\"url_ui\\\":
- \\\"http://localhost:8080/finding/291\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/findings/291/\\\"},
- {\\\"id\\\": 294, \\\"title\\\": \\\"Regular Expression Denial of Service
+ \\\"http://localhost:8080/finding/232\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/findings/232/\\\"},
+ {\\\"id\\\": 235, \\\"title\\\": \\\"Regular Expression Denial of Service
- (Fresh, < 0.5.2)\\\", \\\"severity\\\": \\\"Medium\\\", \\\"url_ui\\\":
- \\\"http://localhost:8080/finding/294\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/findings/294/\\\"},
- {\\\"id\\\": 295, \\\"title\\\": \\\"2222Remote Code Execution - (Pg, < 2.11.2
+ \\\"http://localhost:8080/finding/235\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/findings/235/\\\"},
+ {\\\"id\\\": 236, \\\"title\\\": \\\"2222Remote Code Execution - (Pg, < 2.11.2
|| >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 <
6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0
< 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2)\\\", \\\"severity\\\": \\\"Medium\\\",
- \\\"url_ui\\\": \\\"http://localhost:8080/finding/295\\\", \\\"url_api\\\":
- \\\"http://localhost:8080/api/v2/findings/295/\\\"}], \\\"reactivated\\\":
+ \\\"url_ui\\\": \\\"http://localhost:8080/finding/236\\\", \\\"url_api\\\":
+ \\\"http://localhost:8080/api/v2/findings/236/\\\"}], \\\"reactivated\\\":
[], \\\"mitigated\\\": [], \\\"untouched\\\": []}}\",\n \"files\": {},\n
\ \"form\": {},\n \"json\": {\n \"description\": \"Event scan_added has
occurred.\",\n \"engagement\": {\n \"id\": 1,\n \"name\": \"1st
Quarter Engagement\",\n \"url_api\": \"http://localhost:8080/api/v2/engagements/1/\",\n
\ \"url_ui\": \"http://localhost:8080/engagement/1\"\n },\n \"finding_count\":
5,\n \"findings\": {\n \"mitigated\": [],\n \"new\": [\n {\n
- \ \"id\": 292,\n \"severity\": \"High\",\n \"title\":
+ \ \"id\": 233,\n \"severity\": \"High\",\n \"title\":
\"2222Regular Expression Denial of Service - (Negotiator, <= 0.6.0)\",\n \"url_api\":
- \"http://localhost:8080/api/v2/findings/292/\",\n \"url_ui\": \"http://localhost:8080/finding/292\"\n
- \ },\n {\n \"id\": 293,\n \"severity\": \"High\",\n
+ \"http://localhost:8080/api/v2/findings/233/\",\n \"url_ui\": \"http://localhost:8080/finding/233\"\n
+ \ },\n {\n \"id\": 234,\n \"severity\": \"High\",\n
\ \"title\": \"Remote Code Execution - (Pg, < 2.11.2 || >= 3.0.0 <
3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0
< 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >=
- 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2)\",\n \"url_api\": \"http://localhost:8080/api/v2/findings/293/\",\n
- \ \"url_ui\": \"http://localhost:8080/finding/293\"\n },\n
- \ {\n \"id\": 291,\n \"severity\": \"Medium\",\n \"title\":
+ 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2)\",\n \"url_api\": \"http://localhost:8080/api/v2/findings/234/\",\n
+ \ \"url_ui\": \"http://localhost:8080/finding/234\"\n },\n
+ \ {\n \"id\": 232,\n \"severity\": \"Medium\",\n \"title\":
\"Regular Expression Denial of Service - (Negotiator, <= 0.6.0)\",\n \"url_api\":
- \"http://localhost:8080/api/v2/findings/291/\",\n \"url_ui\": \"http://localhost:8080/finding/291\"\n
- \ },\n {\n \"id\": 294,\n \"severity\": \"Medium\",\n
+ \"http://localhost:8080/api/v2/findings/232/\",\n \"url_ui\": \"http://localhost:8080/finding/232\"\n
+ \ },\n {\n \"id\": 235,\n \"severity\": \"Medium\",\n
\ \"title\": \"Regular Expression Denial of Service - (Fresh, < 0.5.2)\",\n
- \ \"url_api\": \"http://localhost:8080/api/v2/findings/294/\",\n \"url_ui\":
- \"http://localhost:8080/finding/294\"\n },\n {\n \"id\":
- 295,\n \"severity\": \"Medium\",\n \"title\": \"2222Remote
+ \ \"url_api\": \"http://localhost:8080/api/v2/findings/235/\",\n \"url_ui\":
+ \"http://localhost:8080/finding/235\"\n },\n {\n \"id\":
+ 236,\n \"severity\": \"Medium\",\n \"title\": \"2222Remote
Code Execution - (Pg, < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 ||
>= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5
|| >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 <
- 7.1.2)\",\n \"url_api\": \"http://localhost:8080/api/v2/findings/295/\",\n
- \ \"url_ui\": \"http://localhost:8080/finding/295\"\n }\n ],\n
+ 7.1.2)\",\n \"url_api\": \"http://localhost:8080/api/v2/findings/236/\",\n
+ \ \"url_ui\": \"http://localhost:8080/finding/236\"\n }\n ],\n
\ \"reactivated\": [],\n \"untouched\": []\n },\n \"product\":
{\n \"id\": 2,\n \"name\": \"Security How-to\",\n \"url_api\":
\"http://localhost:8080/api/v2/products/2/\",\n \"url_ui\": \"http://localhost:8080/product/2\"\n
\ },\n \"product_type\": {\n \"id\": 2,\n \"name\": \"ebooks\",\n
\ \"url_api\": \"http://localhost:8080/api/v2/product_types/2/\",\n \"url_ui\":
\"http://localhost:8080/product/type/2\"\n },\n \"test\": {\n \"id\":
- 104,\n \"title\": null,\n \"url_api\": \"http://localhost:8080/api/v2/tests/104/\",\n
- \ \"url_ui\": \"http://localhost:8080/test/104\"\n },\n \"title\":
+ 90,\n \"title\": null,\n \"url_api\": \"http://localhost:8080/api/v2/tests/90/\",\n
+ \ \"url_ui\": \"http://localhost:8080/test/90\"\n },\n \"title\":
\"Created/Updated 5 findings for Security How-to: 1st Quarter Engagement:
- NPM Audit Scan\",\n \"url_api\": \"http://localhost:8080/api/v2/tests/104/\",\n
- \ \"url_ui\": \"http://localhost:8080/test/104\",\n \"user\": null\n
- \ }\n}\n"
+ NPM Audit Scan\",\n \"url_api\": \"http://localhost:8080/api/v2/tests/90/\",\n
+ \ \"url_ui\": \"http://localhost:8080/test/90\",\n \"user\": null\n }\n}\n"
headers:
Access-Control-Allow-Credentials:
- 'true'
@@ -1793,7 +1786,7 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- - Sat, 24 May 2025 10:32:46 GMT
+ - Thu, 03 Jul 2025 17:36:25 GMT
Transfer-Encoding:
- chunked
status:
@@ -1813,17 +1806,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:32:48.768+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:26.202+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - c76cb2b1-0145-45d3-8493-179574767ec7
+ - aa630114-cb4e-481b-ad41-29e25154a0ea
Atl-Traceid:
- - c76cb2b1014545d38493179574767ec7
+ - aa630114cb4e481bad4129e25154a0ea
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -1833,7 +1826,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:48 GMT
+ - Thu, 03 Jul 2025 17:36:26 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -1843,7 +1836,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=107,atl-edge;dur=99,atl-edge-internal;dur=14,atl-edge-upstream;dur=85,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="DybEwp8lrOnQ3vTOwl6yC7dvG084F77MHGqtSiWd_kUZxLX2--vOLQ==",cdn-downstream-fbl;dur=110
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=115,atl-edge;dur=82,atl-edge-internal;dur=15,atl-edge-upstream;dur=68,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="dPHfYkoif7SQKXOQ271G042aDO9RrfBlM0CfWcYdNqP73sPvEzKJyQ==",cdn-downstream-fbl;dur=120
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -1853,15 +1846,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 b26a5eb677aed7368a2c7fd7f1d673dc.cloudfront.net (CloudFront)
+ - 1.1 432282689bafd802e8ec9636c256a3b0.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - DybEwp8lrOnQ3vTOwl6yC7dvG084F77MHGqtSiWd_kUZxLX2--vOLQ==
+ - dPHfYkoif7SQKXOQ271G042aDO9RrfBlM0CfWcYdNqP73sPvEzKJyQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - 6d7f14ff04f9e411765cf2c13f211c68
+ - 7bdec5759b55720911d6ccf69cdca398
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -1885,31 +1878,30 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:43.686+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:21.232+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:43.415+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:20.997+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -1917,11 +1909,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -1929,16 +1921,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 8baa060f-90b9-4528-8d9c-893e3a433ad1
+ - 420c3db8-303b-4831-a6fd-6bc1780dde37
Atl-Traceid:
- - 8baa060f90b945288d9c893e3a433ad1
+ - 420c3db8303b4831a6fd6bc1780dde37
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -1948,7 +1940,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:49 GMT
+ - Thu, 03 Jul 2025 17:36:26 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -1958,7 +1950,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=238,atl-edge;dur=230,atl-edge-internal;dur=15,atl-edge-upstream;dur=215,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="einOInktVcXdEwWV6yeS90Ak7fhYGnG2IYJJTi8367vW1rrMDRc-7Q==",cdn-downstream-fbl;dur=242
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=152,atl-edge;dur=144,atl-edge-internal;dur=17,atl-edge-upstream;dur=128,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="YV31jQOtBbcdGuZR2p51PiDsKF9t0n1bAqKlC3U_VIHVgm-CpNYtQQ==",cdn-downstream-fbl;dur=157
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -1968,15 +1960,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 cf45fdeb5348a5648604f5f9e4f2b8a8.cloudfront.net (CloudFront)
+ - 1.1 c26e94322027d14813c3c25e1b340274.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - einOInktVcXdEwWV6yeS90Ak7fhYGnG2IYJJTi8367vW1rrMDRc-7Q==
+ - YV31jQOtBbcdGuZR2p51PiDsKF9t0n1bAqKlC3U_VIHVgm-CpNYtQQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - 8d375c8a0f8e30bb612a526fcd0528d6
+ - 8cd93c41ccd62ad3c6cb104c70664db0
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2000,17 +1992,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:32:49.563+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:26.793+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - fc01ea8e-d8da-4572-b9f7-afb86f04dabe
+ - 3e994b39-edc4-43ee-9e0e-88fd42b9bf28
Atl-Traceid:
- - fc01ea8ed8da4572b9f7afb86f04dabe
+ - 3e994b39edc443ee9e0e88fd42b9bf28
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2020,7 +2012,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:49 GMT
+ - Thu, 03 Jul 2025 17:36:26 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2030,7 +2022,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=115,atl-edge;dur=107,atl-edge-internal;dur=14,atl-edge-upstream;dur=93,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="kp7v1ZVdrOxeRj-Cj-PfaVtTJnr9vSpguzjztFyKJ7nxOwsEBD9H-g==",cdn-downstream-fbl;dur=119
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=102,atl-edge;dur=93,atl-edge-internal;dur=13,atl-edge-upstream;dur=80,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="9eMZht7RWeGO79nVBqv1m5nvnuHcFXH18gsWvcUabvzEsCZG7BZMKg==",cdn-downstream-fbl;dur=106
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2040,15 +2032,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 b6cf988ed9428ad8492255f2faaacfdc.cloudfront.net (CloudFront)
+ - 1.1 ca0e18fe48e6994b3446a58a1e05c1ce.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - kp7v1ZVdrOxeRj-Cj-PfaVtTJnr9vSpguzjztFyKJ7nxOwsEBD9H-g==
+ - 9eMZht7RWeGO79nVBqv1m5nvnuHcFXH18gsWvcUabvzEsCZG7BZMKg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - 11b64c66d57a275a6f3fa58626dd2f75
+ - 452e0806542bea8b8c65b8cf4c94fc83
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2072,31 +2064,30 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:43.686+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:21.232+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:43.415+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:20.997+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2104,11 +2095,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2116,16 +2107,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - b7345a24-de44-491a-bfc1-e847ddda3af4
+ - bbcd57bd-50cf-44ad-b999-858730662a34
Atl-Traceid:
- - b7345a24de44491abfc1e847ddda3af4
+ - bbcd57bd50cf44adb999858730662a34
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2135,7 +2126,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:49 GMT
+ - Thu, 03 Jul 2025 17:36:27 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2145,7 +2136,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=242,atl-edge;dur=234,atl-edge-internal;dur=15,atl-edge-upstream;dur=220,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="CK4_NVUZ0PinhxVxcYDm4ZOhd5OUQRPAUKblhy-3Y7_cMziebAuz4A==",cdn-downstream-fbl;dur=245
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=186,atl-edge;dur=178,atl-edge-internal;dur=16,atl-edge-upstream;dur=163,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="MATGVtDkzWyjX4FLiIK15LO10CkQD3v205w3Hr0kbyP3iEYiIcd9rQ==",cdn-downstream-fbl;dur=192
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2155,15 +2146,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 a8b68315e1e2575143f97748ffbb29a0.cloudfront.net (CloudFront)
+ - 1.1 40fb5e8791e3cb1337e56d76d11ee8fa.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - CK4_NVUZ0PinhxVxcYDm4ZOhd5OUQRPAUKblhy-3Y7_cMziebAuz4A==
+ - MATGVtDkzWyjX4FLiIK15LO10CkQD3v205w3Hr0kbyP3iEYiIcd9rQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P3
X-Arequestid:
- - baea1c405cf998e8a88184e262b7cb40
+ - 3e0c416ea88141c54b7032722c3ccdb4
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2187,7 +2178,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -2197,13 +2188,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - 47afe3ab-433a-4f16-ac1e-0df1bc301c0d
+ - 0049a7d9-c236-417c-a8ed-6927cc5848bc
Atl-Traceid:
- - 47afe3ab433a4f16ac1e0df1bc301c0d
+ - 0049a7d9c236417ca8ed6927cc5848bc
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2213,7 +2204,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:50 GMT
+ - Thu, 03 Jul 2025 17:36:27 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2223,7 +2214,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=287,atl-edge;dur=280,atl-edge-internal;dur=17,atl-edge-upstream;dur=263,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="OJBJMMo7vgurDUsbchJLYOWzUIe62QfAB6iy8fgy7nz-c40RjA0vwg==",cdn-downstream-fbl;dur=291
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=330,atl-edge;dur=323,atl-edge-internal;dur=15,atl-edge-upstream;dur=308,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="_WDIZK2tt952VOls5IZbjxQGarMqaUxrVwn-rnpcGtqt0rdFRlnZyA==",cdn-downstream-fbl;dur=335
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2233,18 +2224,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 490623df85c571a18ba7da1511cc969e.cloudfront.net (CloudFront)
+ - 1.1 e086ec27af2d3105a1a9fa7efa1be454.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - OJBJMMo7vgurDUsbchJLYOWzUIe62QfAB6iy8fgy7nz-c40RjA0vwg==
+ - _WDIZK2tt952VOls5IZbjxQGarMqaUxrVwn-rnpcGtqt0rdFRlnZyA==
X-Amz-Cf-Pop:
- AMS1-P1
X-Arequestid:
- - 771a931de620c854f929cac935475cc4
+ - 6a1ec7f9c22d25964a94b5976ab3979f
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2258,20 +2249,20 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Inactive,
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]\n*Defect
- Dojo link:* http://localhost:8080/finding/292 (292)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2279,11 +2270,11 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
- Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n *Due
- Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2291,7 +2282,7 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "Lowest"}}, "update": {}}'
headers:
Accept:
@@ -2303,21 +2294,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3552'
+ - '3579'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
string: ''
headers:
Atl-Request-Id:
- - 0f19d758-54dd-41f0-8f8d-c7153700347f
+ - 9969d8fb-b70a-47ff-bfb4-09d15a560d34
Atl-Traceid:
- - 0f19d75854dd41f08f8dc7153700347f
+ - 9969d8fbb70a47ffbfb409d15a560d34
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2325,7 +2316,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:51 GMT
+ - Thu, 03 Jul 2025 17:36:28 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2335,7 +2326,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=669,atl-edge;dur=660,atl-edge-internal;dur=16,atl-edge-upstream;dur=645,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="8aWfIykGlQJMftzWTRR852cowP9SZgzrMURsy25KfcfsaqDumqIy6Q==",cdn-downstream-fbl;dur=673
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=447,atl-edge;dur=438,atl-edge-internal;dur=15,atl-edge-upstream;dur=423,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="JEVEkIJhqey7XPA2rw0Br95JNisyYi3czxoZNhJtsKghmSlbwYrVPw==",cdn-downstream-fbl;dur=452
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2343,15 +2334,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 cf45fdeb5348a5648604f5f9e4f2b8a8.cloudfront.net (CloudFront)
+ - 1.1 fabf8b14862325981b1496bd502a7818.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 8aWfIykGlQJMftzWTRR852cowP9SZgzrMURsy25KfcfsaqDumqIy6Q==
+ - JEVEkIJhqey7XPA2rw0Br95JNisyYi3czxoZNhJtsKghmSlbwYrVPw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS1-P2
X-Arequestid:
- - f47e38e8b63cad0e39beb7c83a463778
+ - 7ce0bc9147579fd830b0efbf92d15d16
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2375,31 +2366,30 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:43.686+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:21.232+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:50.689+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:27.824+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Inactive,
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]\n*Defect
- Dojo link:* http://localhost:8080/finding/292 (292)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2407,11 +2397,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2419,16 +2409,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 4dbe7465-6a82-4601-ad6d-3c57d9bf311a
+ - 5ddda81c-5c39-4c7f-bd8f-cc6dd11bf749
Atl-Traceid:
- - 4dbe74656a824601ad6d3c57d9bf311a
+ - 5ddda81c5c394c7fbd8fcc6dd11bf749
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2438,7 +2428,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:51 GMT
+ - Thu, 03 Jul 2025 17:36:28 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2448,7 +2438,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=245,atl-edge;dur=237,atl-edge-internal;dur=16,atl-edge-upstream;dur=220,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="jq2VGmZgGRFyi0PY8GZ-e1Ps6DpdOvP_njMdXkfGTW9XAYQ8LZbAsA==",cdn-downstream-fbl;dur=249
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=187,atl-edge;dur=160,atl-edge-internal;dur=15,atl-edge-upstream;dur=145,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="Cl1hH_lBIoGG7CpwgGT1tnEmMakGJ7LT5YweuKO6vB7YpcPJG5PTJA==",cdn-downstream-fbl;dur=192
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2458,15 +2448,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 a4583a5b47f0a64ec35be32f95ac1b46.cloudfront.net (CloudFront)
+ - 1.1 c38563a65534cacc21516bd5450b0818.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - jq2VGmZgGRFyi0PY8GZ-e1Ps6DpdOvP_njMdXkfGTW9XAYQ8LZbAsA==
+ - Cl1hH_lBIoGG7CpwgGT1tnEmMakGJ7LT5YweuKO6vB7YpcPJG5PTJA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS1-P2
X-Arequestid:
- - 5ccf5b9b4f6631c49fd7a7680b69dc0b
+ - 8b79f05a17f262d9691acd3b85ec667f
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2492,17 +2482,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: POST
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/transitions
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/transitions
response:
body:
string: ''
headers:
Atl-Request-Id:
- - b7d4d8ba-81da-4d1b-8914-760741e1757b
+ - 2278fde1-9a80-46ba-995c-b1427084688f
Atl-Traceid:
- - b7d4d8ba81da4d1b8914760741e1757b
+ - 2278fde19a8046ba995cb1427084688f
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2510,7 +2500,7 @@ interactions:
Content-Type:
- text/html;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:51 GMT
+ - Thu, 03 Jul 2025 17:36:28 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2520,7 +2510,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=481,atl-edge;dur=473,atl-edge-internal;dur=15,atl-edge-upstream;dur=458,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="EXAjKn-wRy5jQl-XDXyeRWZfdAaXuV7kD5va71EnQuimwWDQv6ee2A==",cdn-downstream-fbl;dur=485
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=448,atl-edge;dur=440,atl-edge-internal;dur=16,atl-edge-upstream;dur=424,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="fQgw-qjcLGV9Up7HIRvAb-2E0Fdm2lvDLuOXLAm0x3SkXfB3v4OBqQ==",cdn-downstream-fbl;dur=452
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2528,15 +2518,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 acee7e60faaea7b7699fe033930a0164.cloudfront.net (CloudFront)
+ - 1.1 32301bfd0e3b06c528ccd8abdb13411e.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - EXAjKn-wRy5jQl-XDXyeRWZfdAaXuV7kD5va71EnQuimwWDQv6ee2A==
+ - fQgw-qjcLGV9Up7HIRvAb-2E0Fdm2lvDLuOXLAm0x3SkXfB3v4OBqQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - 29aaa30494a1b650bf00c088dd96c534
+ - bc7a4c009750842a6c1c6d4a68757867
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2560,17 +2550,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:32:52.248+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:29.135+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - 7be62e0c-c584-4ee3-aaa1-75b5eb48a1be
+ - ba53f1f8-0ba9-4f34-8ac1-57fca77d8f4f
Atl-Traceid:
- - 7be62e0cc5844ee3aaa175b5eb48a1be
+ - ba53f1f80ba94f348ac157fca77d8f4f
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2580,7 +2570,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:52 GMT
+ - Thu, 03 Jul 2025 17:36:29 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2590,7 +2580,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=118,atl-edge;dur=110,atl-edge-internal;dur=14,atl-edge-upstream;dur=97,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="wjEpK8ptu1BMwPlm16dn-M3utDzNkmwcGNWLa6qa0SV7xqe0EsogYw==",cdn-downstream-fbl;dur=123
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=114,atl-edge;dur=84,atl-edge-internal;dur=13,atl-edge-upstream;dur=71,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="WHfuFQO6cx4hkouuBYRBht8SsanvpWzgGq7X94xcvtLSWb7Bdha7Vg==",cdn-downstream-fbl;dur=118
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2600,15 +2590,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 cf45fdeb5348a5648604f5f9e4f2b8a8.cloudfront.net (CloudFront)
+ - 1.1 3f24561b20ab2825cb11ac40fc1c2434.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - wjEpK8ptu1BMwPlm16dn-M3utDzNkmwcGNWLa6qa0SV7xqe0EsogYw==
+ - WHfuFQO6cx4hkouuBYRBht8SsanvpWzgGq7X94xcvtLSWb7Bdha7Vg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - 886c7cffb5e1b1d55b7385692d10c212
+ - 1bae7a67184116c9fd66a2eb9c8705f3
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2632,30 +2622,29 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:51.688+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:28.580+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:51.661+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_8370_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:51.688+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:28.553+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_7670_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:28.580+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Inactive,
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]\n*Defect
- Dojo link:* http://localhost:8080/finding/292 (292)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2663,11 +2652,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2675,16 +2664,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 3aaa8424-2df7-4ebf-97b9-9ab6a4066d5e
+ - b07aa582-5034-42ce-b25c-09c6af77cb2c
Atl-Traceid:
- - 3aaa84242df74ebf97b99ab6a4066d5e
+ - b07aa582503442ceb25c09c6af77cb2c
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2694,7 +2683,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:52 GMT
+ - Thu, 03 Jul 2025 17:36:29 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2704,7 +2693,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=273,atl-edge;dur=265,atl-edge-internal;dur=15,atl-edge-upstream;dur=251,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="3XqlbVKMFI0DDK1GTjuARYeO9_AMgY-nj12tzUhsHbE_p37lzUumsw==",cdn-downstream-fbl;dur=277
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=238,atl-edge;dur=231,atl-edge-internal;dur=14,atl-edge-upstream;dur=216,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="EfpRl5lJaWviijgDQhJVAUGKqom2NfVXpb1yKqextVrFg5vvVgo_pw==",cdn-downstream-fbl;dur=243
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2714,15 +2703,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 b6cf988ed9428ad8492255f2faaacfdc.cloudfront.net (CloudFront)
+ - 1.1 d86b0ef5c17f755a14a26fbae67aba4e.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 3XqlbVKMFI0DDK1GTjuARYeO9_AMgY-nj12tzUhsHbE_p37lzUumsw==
+ - EfpRl5lJaWviijgDQhJVAUGKqom2NfVXpb1yKqextVrFg5vvVgo_pw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - 8a885e9bee01c69934bc2f0b2f78b0ff
+ - d917393cd8e6057e7df4a9b24dfa5711
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2746,7 +2735,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -2756,13 +2745,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - 2e8cc28d-98ca-4288-ab0e-0987f56df416
+ - 503baf08-6d57-4e18-8104-c409f4dd43cd
Atl-Traceid:
- - 2e8cc28d98ca4288ab0e0987f56df416
+ - 503baf086d574e188104c409f4dd43cd
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2772,7 +2761,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:52 GMT
+ - Thu, 03 Jul 2025 17:36:29 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2782,7 +2771,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=280,atl-edge;dur=273,atl-edge-internal;dur=15,atl-edge-upstream;dur=258,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="2jprA7gDkhGiMmv8dmsn9liyHZbw54jgGRufrp9w_dbiQz0lWYc8sQ==",cdn-downstream-fbl;dur=284
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=241,atl-edge;dur=233,atl-edge-internal;dur=16,atl-edge-upstream;dur=217,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="rRx-so6X8UX0i-KvSEd3iw5vErkFDPgln93GGRrK48r201IKnEmWvA==",cdn-downstream-fbl;dur=246
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2792,18 +2781,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 ef674a9df28e4fc8d944ae07304fa954.cloudfront.net (CloudFront)
+ - 1.1 134cb849e01fafad6f264ff9633b073e.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 2jprA7gDkhGiMmv8dmsn9liyHZbw54jgGRufrp9w_dbiQz0lWYc8sQ==
+ - rRx-so6X8UX0i-KvSEd3iw5vErkFDPgln93GGRrK48r201IKnEmWvA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - a661d14b950ff21d6b9981800fc98763
+ - 1cdbd376262886217545353cc6d65423
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2817,20 +2806,20 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Inactive,
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]\n*Defect
- Dojo link:* http://localhost:8080/finding/292 (292)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2838,11 +2827,11 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
- Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n *Due
- Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2850,7 +2839,7 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "Lowest"}}, "update": {}}'
headers:
Accept:
@@ -2862,21 +2851,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3552'
+ - '3579'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
string: ''
headers:
Atl-Request-Id:
- - e04deab4-e4c1-4574-9e35-08a9c526c8dc
+ - 97bde23e-a86d-4c4f-98dd-90ace329cb6a
Atl-Traceid:
- - e04deab4e4c145749e3508a9c526c8dc
+ - 97bde23ea86d4c4f98dd90ace329cb6a
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2884,7 +2873,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:53 GMT
+ - Thu, 03 Jul 2025 17:36:30 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -2894,7 +2883,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=255,atl-edge;dur=246,atl-edge-internal;dur=14,atl-edge-upstream;dur=232,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="_q-aouaPc9ld_NAndeA5KVROKKF0KCULSFaw8ZDhohexu7me55W1ew==",cdn-downstream-fbl;dur=259
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=277,atl-edge;dur=269,atl-edge-internal;dur=15,atl-edge-upstream;dur=254,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="iyWTB-AuK81GK8PFyVq5-yKHr9hghcg8VVF0WPuvyqwS2szx-7Plqg==",cdn-downstream-fbl;dur=283
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -2902,15 +2891,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 9835af751c15612a813bbc131d2ce1e6.cloudfront.net (CloudFront)
+ - 1.1 a66afeef05dba31abba2c6cbc2eaa73c.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - _q-aouaPc9ld_NAndeA5KVROKKF0KCULSFaw8ZDhohexu7me55W1ew==
+ - iyWTB-AuK81GK8PFyVq5-yKHr9hghcg8VVF0WPuvyqwS2szx-7Plqg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - 9c92a6e0f60a33b3ee346fded32db266
+ - 15a47dab147d92f23507ed69c0fbd2a5
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -2934,30 +2923,29 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:51.688+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:28.580+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:51.661+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_8370_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:51.688+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:28.553+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_7670_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:28.580+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Inactive,
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]\n*Defect
- Dojo link:* http://localhost:8080/finding/292 (292)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2965,11 +2953,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -2977,16 +2965,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 28d4889b-4f85-4ef9-9782-9af3434697ec
+ - 909a24e9-56c3-45dd-857f-07c978e93dff
Atl-Traceid:
- - 28d4889b4f854ef997829af3434697ec
+ - 909a24e956c345dd857f07c978e93dff
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -2996,7 +2984,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:53 GMT
+ - Thu, 03 Jul 2025 17:36:30 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3006,7 +2994,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=213,atl-edge;dur=205,atl-edge-internal;dur=15,atl-edge-upstream;dur=190,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="_yfth3qE9IZO1wW1RZpmnrsTkI_m7yDzmEgS4iYzYIHT3hdU2UeZ1A==",cdn-downstream-fbl;dur=216
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=212,atl-edge;dur=205,atl-edge-internal;dur=16,atl-edge-upstream;dur=189,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="du5YFjLmZmOubiKfPqC9jHb9TQh4av-nZFFotan10aQoacuWoeu4yg==",cdn-downstream-fbl;dur=217
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3016,15 +3004,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 9500c58b11c15528d15f2ca9add5bc00.cloudfront.net (CloudFront)
+ - 1.1 13a0a1a7b326f5c854b35536576cfe0e.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - _yfth3qE9IZO1wW1RZpmnrsTkI_m7yDzmEgS4iYzYIHT3hdU2UeZ1A==
+ - du5YFjLmZmOubiKfPqC9jHb9TQh4av-nZFFotan10aQoacuWoeu4yg==
X-Amz-Cf-Pop:
- AMS1-P1
X-Arequestid:
- - ec7288b98f4dbd4250cbedc92d029805
+ - d3e3998eb1864498fb29393204dde9ba
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3048,17 +3036,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:32:53.907+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:30.756+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - db972f3b-f758-4789-8c8c-4886f6498c28
+ - ca998499-99ac-4519-8f74-30f00f636e9f
Atl-Traceid:
- - db972f3bf75847898c8c4886f6498c28
+ - ca99849999ac45198f7430f00f636e9f
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -3068,7 +3056,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:53 GMT
+ - Thu, 03 Jul 2025 17:36:30 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3078,7 +3066,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=117,atl-edge;dur=109,atl-edge-internal;dur=17,atl-edge-upstream;dur=93,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="fWB60bmyts2K67z1UznMvnr-BBuvBIK1859NRD40F6W5U0_nzqldvQ==",cdn-downstream-fbl;dur=120
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=96,atl-edge;dur=88,atl-edge-internal;dur=13,atl-edge-upstream;dur=75,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="x7XcBEOPpy9GAdnEr2JGbjC99qylwDFVj3COaXHsP9G-xe58vPENyw==",cdn-downstream-fbl;dur=101
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3088,15 +3076,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 29d6db1b5ecb170f22487453430df556.cloudfront.net (CloudFront)
+ - 1.1 37bca31d9c7de06b67b2363770e065b4.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - fWB60bmyts2K67z1UznMvnr-BBuvBIK1859NRD40F6W5U0_nzqldvQ==
+ - x7XcBEOPpy9GAdnEr2JGbjC99qylwDFVj3COaXHsP9G-xe58vPENyw==
X-Amz-Cf-Pop:
- AMS1-P1
X-Arequestid:
- - 12c09bc77e814e89243d12930691c3fb
+ - 99257c33220f78f5ea4b3069687a6239
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3120,40 +3108,39 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:32:45.768+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:23.280+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:45.520+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:23.072+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Active,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
- < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -3178,14 +3165,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -3210,16 +3197,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 9df9a1d4-6e63-46de-b221-d6de73a3d935
+ - 477bb94e-fed7-4d0a-ac44-ca1a79ae2c6b
Atl-Traceid:
- - 9df9a1d46e6346deb221d6de73a3d935
+ - 477bb94efed74d0aac44ca1a79ae2c6b
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -3229,7 +3216,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:54 GMT
+ - Thu, 03 Jul 2025 17:36:31 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3239,7 +3226,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=230,atl-edge;dur=222,atl-edge-internal;dur=16,atl-edge-upstream;dur=206,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="u2D6J10La_j4z2vrboWJ4fPg6Wzkx4QfzddO2SpJfZ3kbabzeSJ1qw==",cdn-downstream-fbl;dur=234
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=188,atl-edge;dur=180,atl-edge-internal;dur=15,atl-edge-upstream;dur=165,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="pol_PCda931BNVBye6uMLUXgfZAtWsEOB3f1MLXuBRNw_DVOdyxvHw==",cdn-downstream-fbl;dur=192
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3249,15 +3236,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 447163709b16a97083db09f6ac040b38.cloudfront.net (CloudFront)
+ - 1.1 c3919dfed58c39e6da91faec1344110c.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - u2D6J10La_j4z2vrboWJ4fPg6Wzkx4QfzddO2SpJfZ3kbabzeSJ1qw==
+ - pol_PCda931BNVBye6uMLUXgfZAtWsEOB3f1MLXuBRNw_DVOdyxvHw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P3
X-Arequestid:
- - 03ccb8ddea9b02c53af11da8402eadd8
+ - d4df24b842178e62d9622c4b653267f3
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3281,7 +3268,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -3291,13 +3278,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - 66721af3-ea9c-4c84-b922-ba4b1b3ca0a1
+ - b2c4fd84-859c-4371-9cde-8837b781ad57
Atl-Traceid:
- - 66721af3ea9c4c84b922ba4b1b3ca0a1
+ - b2c4fd84859c43719cde8837b781ad57
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -3307,7 +3294,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:54 GMT
+ - Thu, 03 Jul 2025 17:36:31 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3317,7 +3304,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="K40z73ZYajvAKnTWeIpFci5eaN-x7Ak5ApgqkwCRxMgc7eXEDR1ljw==",cdn-downstream-fbl;dur=325,cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=20,cdn-upstream-fbl;dur=323,atl-edge;dur=294,atl-edge-internal;dur=13,atl-edge-upstream;dur=281,atl-edge-pop;desc="aws-eu-central-1"
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=264,atl-edge;dur=257,atl-edge-internal;dur=15,atl-edge-upstream;dur=242,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="Orf9M0kibB8DrgrUy8oT3gEWpi0OJylOhFY4zez5FZgZneWn0FDAXA==",cdn-downstream-fbl;dur=268
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3327,18 +3314,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 447163709b16a97083db09f6ac040b38.cloudfront.net (CloudFront)
+ - 1.1 0f3cf20f6db29b970aa67df851b05904.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - K40z73ZYajvAKnTWeIpFci5eaN-x7Ak5ApgqkwCRxMgc7eXEDR1ljw==
+ - Orf9M0kibB8DrgrUy8oT3gEWpi0OJylOhFY4zez5FZgZneWn0FDAXA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - b46cc7666d0999993dcace9049bd361e
+ - b4f960e91af417d1f807511e40efac12
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3352,29 +3339,29 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
- [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932] in [Security
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367] in [Security
How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote Code
Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect Dojo
- link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due Date:*
- June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect Dojo
+ link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due Date:*
+ Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -3399,13 +3386,13 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
(Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
< 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
- 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect Dojo link:* http://localhost:8080/finding/295
- (295)\n*Severity:* Medium\n *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -3430,7 +3417,7 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "Lowest"}}, "update": {}}'
headers:
Accept:
@@ -3442,21 +3429,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '7022'
+ - '7049'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
string: ''
headers:
Atl-Request-Id:
- - f5499702-c675-45ab-a53d-b09fae9b23a2
+ - 99d0fa00-f561-4061-b99d-ebbbbddde8f7
Atl-Traceid:
- - f5499702c67545aba53db09fae9b23a2
+ - 99d0fa00f5614061b99debbbbddde8f7
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -3464,7 +3451,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:55 GMT
+ - Thu, 03 Jul 2025 17:36:31 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3474,7 +3461,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=523,atl-edge;dur=515,atl-edge-internal;dur=15,atl-edge-upstream;dur=499,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="QcuoiKQ9r6AvZ8m45uN0jzOPdYzvmXCWHSq2UeMo4Y0880rSmTYSlg==",cdn-downstream-fbl;dur=528
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=465,atl-edge;dur=456,atl-edge-internal;dur=16,atl-edge-upstream;dur=441,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="RKcpw5Pb-QNr4ID1VWUoQNavHnXSv-pNKNDSNBbmUxnD_reeMD2U4Q==",cdn-downstream-fbl;dur=470
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3482,15 +3469,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 29d6db1b5ecb170f22487453430df556.cloudfront.net (CloudFront)
+ - 1.1 416dae0837568c2bb7cea7ae5c6bba22.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - QcuoiKQ9r6AvZ8m45uN0jzOPdYzvmXCWHSq2UeMo4Y0880rSmTYSlg==
+ - RKcpw5Pb-QNr4ID1VWUoQNavHnXSv-pNKNDSNBbmUxnD_reeMD2U4Q==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - f58aca927e5a19e4d3da5fcbf05f6d81
+ - c54faa82d37fd8113cf7557607491f07
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3514,40 +3501,39 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:32:45.768+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:23.280+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:55.035+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:31.706+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -3572,14 +3558,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -3604,16 +3590,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 3d23ff05-68d0-4508-9088-22b19605e786
+ - 2b8042e5-1b61-402c-8657-30e1757f7af8
Atl-Traceid:
- - 3d23ff0568d04508908822b19605e786
+ - 2b8042e51b61402c865730e1757f7af8
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -3623,7 +3609,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:55 GMT
+ - Thu, 03 Jul 2025 17:36:32 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3633,7 +3619,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="DdDMkogzgbwjLAtiUhApjvIwbhmYIIX1jeC1YUY9ftWjW92oVezyog==",cdn-downstream-fbl;dur=254,cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=21,cdn-upstream-fbl;dur=251,atl-edge;dur=222,atl-edge-internal;dur=18,atl-edge-upstream;dur=205,atl-edge-pop;desc="aws-eu-central-1"
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=187,atl-edge;dur=179,atl-edge-internal;dur=16,atl-edge-upstream;dur=163,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="o-iJv2o53bDDq7A3zpVbSE1mgqkmlj6TOZ0No0-BMwRX6KHnjplP8w==",cdn-downstream-fbl;dur=192
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3643,15 +3629,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 6750d77433312fa1bf305e9ae7af80ae.cloudfront.net (CloudFront)
+ - 1.1 d120748dba94009201c8a9c5c612c7fc.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - DdDMkogzgbwjLAtiUhApjvIwbhmYIIX1jeC1YUY9ftWjW92oVezyog==
+ - o-iJv2o53bDDq7A3zpVbSE1mgqkmlj6TOZ0No0-BMwRX6KHnjplP8w==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - c99a118040a8984e3ea36fe2333fecce
+ - a81773a42bedc73eedde164ae9d0b571
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3677,17 +3663,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: POST
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/transitions
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/transitions
response:
body:
string: ''
headers:
Atl-Request-Id:
- - aeb20620-afff-4c32-8803-6ea679783543
+ - 773af05c-46f9-43b7-bd35-8c740f665ed0
Atl-Traceid:
- - aeb20620afff4c3288036ea679783543
+ - 773af05c46f943b7bd358c740f665ed0
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -3695,7 +3681,7 @@ interactions:
Content-Type:
- text/html;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:56 GMT
+ - Thu, 03 Jul 2025 17:36:32 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3705,7 +3691,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=480,atl-edge;dur=472,atl-edge-internal;dur=15,atl-edge-upstream;dur=457,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="8pvWQjP8coBFb-YMPEhOEYvtLc-a9QudMzvQ5pTLl7XbRcu10CJL7Q==",cdn-downstream-fbl;dur=483
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=444,atl-edge;dur=436,atl-edge-internal;dur=15,atl-edge-upstream;dur=422,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="9C_S801la8wnS17ZeafIRCvyNHzT35rTexVbr0DI0Ibp-TNA89YIrw==",cdn-downstream-fbl;dur=449
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3713,15 +3699,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 f89ae7540cfd7be6febf2f3e1ef03e18.cloudfront.net (CloudFront)
+ - 1.1 0f98b23785e0aac311e2d09ea5460eb8.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 8pvWQjP8coBFb-YMPEhOEYvtLc-a9QudMzvQ5pTLl7XbRcu10CJL7Q==
+ - 9C_S801la8wnS17ZeafIRCvyNHzT35rTexVbr0DI0Ibp-TNA89YIrw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - 96547dcc8ea3b3ef5dbec3c996f6bdc7
+ - af79a9bdde1236a6f791184c35fee8ce
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3745,17 +3731,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:32:56.573+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:33.038+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - f0ad1681-d5bc-4852-8a23-5d4d33d2448d
+ - c15ac52a-59c4-46f4-8f20-d4c66cf9a2b6
Atl-Traceid:
- - f0ad1681d5bc48528a235d4d33d2448d
+ - c15ac52a59c446f48f20d4c66cf9a2b6
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -3765,7 +3751,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:56 GMT
+ - Thu, 03 Jul 2025 17:36:33 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3775,7 +3761,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=153,atl-edge;dur=146,atl-edge-internal;dur=16,atl-edge-upstream;dur=131,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="K5GUOfSr24_7dcm8PdY2hP97HIY_9njMbudnE5FlZ82hAbbDvQPtoQ==",cdn-downstream-fbl;dur=158
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=150,atl-edge;dur=142,atl-edge-internal;dur=13,atl-edge-upstream;dur=129,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="I4XzENltlHIaxjy9KLYIgm3LLkK2ixaucxwwKBiMVxw9c_5WLCn52w==",cdn-downstream-fbl;dur=154
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3785,15 +3771,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 f89ae7540cfd7be6febf2f3e1ef03e18.cloudfront.net (CloudFront)
+ - 1.1 428178e04c8c5f5460c3935b1e7203be.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - K5GUOfSr24_7dcm8PdY2hP97HIY_9njMbudnE5FlZ82hAbbDvQPtoQ==
+ - I4XzENltlHIaxjy9KLYIgm3LLkK2ixaucxwwKBiMVxw9c_5WLCn52w==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - 7bbd3d9e7130e1abd28b61a6482a1506
+ - 1d59f158fcc19a8525cff21c85a6e83b
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3817,45 +3803,44 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19659
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20653
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19659","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659","key":"NTEST-2987","fields":{"statuscategorychangedate":"2025-05-24T12:32:47.782+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20653","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653","key":"NTEST-3075","fields":{"statuscategorychangedate":"2025-07-03T19:36:25.109+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:47.431+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ev:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:47.516+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:24.883+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rj:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:24.967+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/933]
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/368]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- Medium *Due Date:* Aug. 22, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
- Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]\n*Defect
- Dojo link:* http://localhost:8080/finding/294 (294)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
versions of `fresh` are vulnerable to regular expression denial of service
when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - b8a40e14-cbf4-440c-8761-3c03a37737b0
+ - 910d7809-d36e-4b03-8a3c-963b91379abd
Atl-Traceid:
- - b8a40e14cbf4440c87613c03a37737b0
+ - 910d7809d36e4b038a3c963b91379abd
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -3865,7 +3850,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:58 GMT
+ - Thu, 03 Jul 2025 17:36:33 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3875,7 +3860,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=235,atl-edge;dur=227,atl-edge-internal;dur=19,atl-edge-upstream;dur=208,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="AwdRWQzBMmEwta6Cx06lHtxkCUu_15NWlLkggS00NZmUR49aGtwqcw==",cdn-downstream-fbl;dur=238
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=197,atl-edge;dur=167,atl-edge-internal;dur=15,atl-edge-upstream;dur=152,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="iEzmzyVTdxoHqvTfqXLEnDtVLc5ta9p_5-K_b7RHzlf9nRDXJ-DzeQ==",cdn-downstream-fbl;dur=204
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3885,15 +3870,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 e086ec27af2d3105a1a9fa7efa1be454.cloudfront.net (CloudFront)
+ - 1.1 d0ade5b002ae847eefd25c219f24b24c.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - AwdRWQzBMmEwta6Cx06lHtxkCUu_15NWlLkggS00NZmUR49aGtwqcw==
+ - iEzmzyVTdxoHqvTfqXLEnDtVLc5ta9p_5-K_b7RHzlf9nRDXJ-DzeQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - cc0b7f90e491e22132e7c49bae5f49e6
+ - c69c2b284b47727a4ccdb1fd9a18bed2
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3917,7 +3902,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -3927,13 +3912,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - cfd4c705-f1ad-4904-b289-a7f1f5e0c6a6
+ - 72474330-e608-43cc-9546-9ca45c87f33d
Atl-Traceid:
- - cfd4c705f1ad4904b289a7f1f5e0c6a6
+ - 72474330e60843cc95469ca45c87f33d
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -3943,7 +3928,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:58 GMT
+ - Thu, 03 Jul 2025 17:36:33 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -3953,7 +3938,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=269,atl-edge;dur=259,atl-edge-internal;dur=18,atl-edge-upstream;dur=243,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="1fMK6dS062yf0OjBBNGg1Vp9HOc_EAx8lk1wZW7BRoy9wG0bCRZwIQ==",cdn-downstream-fbl;dur=272
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=313,atl-edge;dur=305,atl-edge-internal;dur=17,atl-edge-upstream;dur=288,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="0GdFRUTBwZLK5D5ExtzllkpAZDCGuOrVNDtrp92j0mi6gLWPUUWVBg==",cdn-downstream-fbl;dur=317
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -3963,18 +3948,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 1a89beee9d72657437f5e91f57220804.cloudfront.net (CloudFront)
+ - 1.1 9a04c6aa4d3f25ed242a525a7658d9ac.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 1fMK6dS062yf0OjBBNGg1Vp9HOc_EAx8lk1wZW7BRoy9wG0bCRZwIQ==
+ - 0GdFRUTBwZLK5D5ExtzllkpAZDCGuOrVNDtrp92j0mi6gLWPUUWVBg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - c8dd3640e3f3861f165a70a00a3dc589
+ - 0a96ae809e185c3501725c9380b56534
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -3988,25 +3973,25 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: fresh:0.3.0", "description": "\n\n\n\n\n\n\nA group
of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
- [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/933] in [Security
+ [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/368] in [Security
How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- Medium *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Regular Expression
- Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]\n*Defect
- Dojo link:* http://localhost:8080/finding/294 (294)\n*Severity:* Medium\n *Due
- Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
versions of `fresh` are vulnerable to regular expression denial of service when
parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "Lowest"}}, "update": {}}'
headers:
Accept:
@@ -4018,21 +4003,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2161'
+ - '2183'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19659
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20653
response:
body:
string: ''
headers:
Atl-Request-Id:
- - b7df9378-d79f-4ee5-a5d5-51acd2fcaa2f
+ - 6e28e0ba-c579-45f9-b211-937a4f755950
Atl-Traceid:
- - b7df9378d79f4ee5a5d551acd2fcaa2f
+ - 6e28e0bac57945f9b211937a4f755950
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -4040,7 +4025,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:59 GMT
+ - Thu, 03 Jul 2025 17:36:34 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -4050,7 +4035,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=452,atl-edge;dur=444,atl-edge-internal;dur=18,atl-edge-upstream;dur=427,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="FDiwbhKRH-sVrzUKsjIx1g_gE9JyVWclEZyedGQtPwxNFsIAjWYDAA==",cdn-downstream-fbl;dur=456
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=506,atl-edge;dur=477,atl-edge-internal;dur=16,atl-edge-upstream;dur=461,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="PYnPlEwTtpRBaVWiRlYuZusf3AaiyXFLf_QeQJdfHcEsnlSksvQCwQ==",cdn-downstream-fbl;dur=511
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -4058,15 +4043,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 0e12b175c31e0e750266df78bf0e1068.cloudfront.net (CloudFront)
+ - 1.1 a752e456797165fcc0a1e5de08b5353c.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - FDiwbhKRH-sVrzUKsjIx1g_gE9JyVWclEZyedGQtPwxNFsIAjWYDAA==
+ - PYnPlEwTtpRBaVWiRlYuZusf3AaiyXFLf_QeQJdfHcEsnlSksvQCwQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P3
X-Arequestid:
- - f40f85c6e2136ef479d6171cc6d0a8cd
+ - 54133009c5080270930fff44e48f22cc
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -4090,45 +4075,44 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19659
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20653
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19659","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659","key":"NTEST-2987","fields":{"statuscategorychangedate":"2025-05-24T12:32:47.782+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20653","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653","key":"NTEST-3075","fields":{"statuscategorychangedate":"2025-07-03T19:36:25.109+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:47.431+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ev:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:58.771+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:24.883+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rj:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:34.058+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/933]
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/368]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- Medium *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]\n*Defect
- Dojo link:* http://localhost:8080/finding/294 (294)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
versions of `fresh` are vulnerable to regular expression denial of service
when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 69f1596f-1f62-4d3a-bdc3-5ec62e954724
+ - 437946b5-9f6a-4f97-b4cd-53ce071c3adc
Atl-Traceid:
- - 69f1596f1f624d3abdc35ec62e954724
+ - 437946b59f6a4f97b4cd53ce071c3adc
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -4138,7 +4122,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:59 GMT
+ - Thu, 03 Jul 2025 17:36:34 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -4148,7 +4132,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=217,atl-edge;dur=210,atl-edge-internal;dur=17,atl-edge-upstream;dur=193,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="A1LAcjRnUboh6NU_FvaOIDskXzwrEhXs9NZRoWB0z0Qw-hMGpECgiA==",cdn-downstream-fbl;dur=221
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=177,atl-edge;dur=169,atl-edge-internal;dur=15,atl-edge-upstream;dur=154,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="uofVU5OPxffFwDMs189VzqKxMNItBJW51p4F-R6BUlVHVKp_ScOZFQ==",cdn-downstream-fbl;dur=182
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -4158,15 +4142,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 e4bbc916b7f96771ed58c0d668318acc.cloudfront.net (CloudFront)
+ - 1.1 c3d7a569db567dde78a645781f9949a2.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - A1LAcjRnUboh6NU_FvaOIDskXzwrEhXs9NZRoWB0z0Qw-hMGpECgiA==
+ - uofVU5OPxffFwDMs189VzqKxMNItBJW51p4F-R6BUlVHVKp_ScOZFQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - 0dcdf375b2d06fa7f2d8842e07079d53
+ - abcd380fd5da8433d558216ab07b3543
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -4192,17 +4176,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: POST
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/transitions
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/transitions
response:
body:
string: ''
headers:
Atl-Request-Id:
- - f621a8d8-d380-481a-8f15-53ca29235593
+ - b4c6d689-2b3d-4dbe-8413-9840fbc39a46
Atl-Traceid:
- - f621a8d8d380481a8f1553ca29235593
+ - b4c6d6892b3d4dbe84139840fbc39a46
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -4210,7 +4194,7 @@ interactions:
Content-Type:
- text/html;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:32:59 GMT
+ - Thu, 03 Jul 2025 17:36:35 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -4220,7 +4204,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=455,atl-edge;dur=448,atl-edge-internal;dur=16,atl-edge-upstream;dur=432,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="8_TYgm-GBxvm79N15HmIbcLXqBbNsb72Mm6kkofLQATSqeKi97K2_w==",cdn-downstream-fbl;dur=459
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=492,atl-edge;dur=483,atl-edge-internal;dur=16,atl-edge-upstream;dur=468,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="Wqy0h6VPtNyLH8xo4qyayPtSzGCT0RYg5wrIk7ffnq1IMpRLp8Dvkw==",cdn-downstream-fbl;dur=497
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -4228,15 +4212,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 19f569e782b5b925c41d8bc4e292cc7a.cloudfront.net (CloudFront)
+ - 1.1 3c5b664ba8ab85923bc039b2acf98430.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 8_TYgm-GBxvm79N15HmIbcLXqBbNsb72Mm6kkofLQATSqeKi97K2_w==
+ - Wqy0h6VPtNyLH8xo4qyayPtSzGCT0RYg5wrIk7ffnq1IMpRLp8Dvkw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P2
X-Arequestid:
- - bfb8f2f571e66d45eaee48ab628a8a95
+ - 4b6649b57e6c09bc248d7f802fe3a8ce
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -4260,17 +4244,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:33:00.117+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:35.408+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - a386eb3d-887b-487c-b6cf-371883080b4e
+ - cd6b9149-e45a-438c-bcef-4362421c7561
Atl-Traceid:
- - a386eb3d887b487cb6cf371883080b4e
+ - cd6b9149e45a438cbcef4362421c7561
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -4280,7 +4264,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:00 GMT
+ - Thu, 03 Jul 2025 17:36:35 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -4290,7 +4274,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=126,atl-edge;dur=118,atl-edge-internal;dur=17,atl-edge-upstream;dur=101,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="i-wK0lL8qbG5BFntjwIE5UEpuytTK3yF7GMizi9QXuUpX4f0yuuQhw==",cdn-downstream-fbl;dur=131
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=97,atl-edge;dur=90,atl-edge-internal;dur=14,atl-edge-upstream;dur=76,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="j8yQ3-dGvaWFJySt3D5bfNCkNk0HiY2-9daH8mQWdYen-vw5lOLBnA==",cdn-downstream-fbl;dur=102
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -4300,15 +4284,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 74511018c757716e70d811d8214e45e0.cloudfront.net (CloudFront)
+ - 1.1 b7f8e0880cd5f19b3036b75b021c1c76.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - i-wK0lL8qbG5BFntjwIE5UEpuytTK3yF7GMizi9QXuUpX4f0yuuQhw==
+ - j8yQ3-dGvaWFJySt3D5bfNCkNk0HiY2-9daH8mQWdYen-vw5lOLBnA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - edd03f3fe529c90396bd7bc00a81724a
+ - bda55dcba4b49d8a5dba525f32f68910
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -4332,39 +4316,38 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:32:55.912+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:32.498+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:55.886+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10493_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:55.911+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:32.470+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_9520_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:32.497+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -4389,14 +4372,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -4421,16 +4404,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - fa5b6cdc-8cd7-4838-bd44-ec16813498f6
+ - 17e50e31-1129-42d4-80e9-79f93d062956
Atl-Traceid:
- - fa5b6cdc8cd74838bd44ec16813498f6
+ - 17e50e31112942d480e979f93d062956
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -4440,7 +4423,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:00 GMT
+ - Thu, 03 Jul 2025 17:36:35 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -4450,7 +4433,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=239,atl-edge;dur=232,atl-edge-internal;dur=16,atl-edge-upstream;dur=215,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="DN9JZqcHmjQ8circGXrVSJd06G-4d57_wZWbVVgILZ1LV684t9t6KA==",cdn-downstream-fbl;dur=243
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=188,atl-edge;dur=179,atl-edge-internal;dur=16,atl-edge-upstream;dur=165,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="uJ-vQMtdwIQkvBtHf5oIKLN09VLMUpbiHhvjfOopzSSA-7zx3Aud-g==",cdn-downstream-fbl;dur=192
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -4460,15 +4443,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 acee7e60faaea7b7699fe033930a0164.cloudfront.net (CloudFront)
+ - 1.1 eb78cbb81a4ab555c78ae1168deff6e2.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - DN9JZqcHmjQ8circGXrVSJd06G-4d57_wZWbVVgILZ1LV684t9t6KA==
+ - uJ-vQMtdwIQkvBtHf5oIKLN09VLMUpbiHhvjfOopzSSA-7zx3Aud-g==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - 4c6fe513943248971c12300b09e7b7a4
+ - 95c7fede4dacb555381d84dad24ef251
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -4492,7 +4475,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -4502,13 +4485,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - a63d9b19-7dea-4fcc-a0cb-78e2d3180d4e
+ - 12efa4fb-fcbe-4b42-a7ee-4e3ede4d09ee
Atl-Traceid:
- - a63d9b197dea4fcca0cb78e2d3180d4e
+ - 12efa4fbfcbe4b42a7ee4e3ede4d09ee
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -4518,7 +4501,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:00 GMT
+ - Thu, 03 Jul 2025 17:36:36 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -4528,7 +4511,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=224,atl-edge;dur=216,atl-edge-internal;dur=17,atl-edge-upstream;dur=200,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="MbowLFwKqcEHbgYTHObaqfEnoG5CKRLRYSwvgdxzI7ZPOhdpZXYIeA==",cdn-downstream-fbl;dur=228
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=321,atl-edge;dur=291,atl-edge-internal;dur=15,atl-edge-upstream;dur=276,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="lM4eIWkYphXFmk60srJJVArlKJbNh2ii9DZbULvkuW3RV72X5BpLJA==",cdn-downstream-fbl;dur=325
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -4538,18 +4521,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 ca1ae3b3ff3d7a9e41b26e307972401e.cloudfront.net (CloudFront)
+ - 1.1 e2415f0dddb9778029172ab73eec1388.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - MbowLFwKqcEHbgYTHObaqfEnoG5CKRLRYSwvgdxzI7ZPOhdpZXYIeA==
+ - lM4eIWkYphXFmk60srJJVArlKJbNh2ii9DZbULvkuW3RV72X5BpLJA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - ba3da200c25bfd3b8696c382da3b870a
+ - 05d3804ddbc7b8daaea26c6d2b624c91
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -4563,29 +4546,29 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
- [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932] in [Security
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367] in [Security
How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote Code
Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect Dojo
- link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due Date:*
- June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect Dojo
+ link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due Date:*
+ Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -4610,13 +4593,13 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
(Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
< 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
- 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect Dojo link:* http://localhost:8080/finding/295
- (295)\n*Severity:* Medium\n *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -4641,7 +4624,7 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "Lowest"}}, "update": {}}'
headers:
Accept:
@@ -4653,21 +4636,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '7022'
+ - '7049'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
string: ''
headers:
Atl-Request-Id:
- - a7095686-8676-4453-a30b-f021bc4ae3e1
+ - e96f6ec7-40e7-4cf8-b054-a5a0fb33f068
Atl-Traceid:
- - a709568686764453a30bf021bc4ae3e1
+ - e96f6ec740e74cf8b054a5a0fb33f068
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -4675,7 +4658,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:01 GMT
+ - Thu, 03 Jul 2025 17:36:36 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -4685,7 +4668,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=308,atl-edge;dur=301,atl-edge-internal;dur=16,atl-edge-upstream;dur=284,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="ML7W1tclLMCk_OwF1Rnw-aOOefQE-QBPM3ITWmP9YqoJz4eY-AzNUQ==",cdn-downstream-fbl;dur=313
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=226,atl-edge;dur=218,atl-edge-internal;dur=16,atl-edge-upstream;dur=202,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="KPNQ048m_HxkBN1oCbChGlfcgFm9Q3-NLGy3IYmebn6ZuxdZQItP2Q==",cdn-downstream-fbl;dur=231
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -4693,15 +4676,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 13a0a1a7b326f5c854b35536576cfe0e.cloudfront.net (CloudFront)
+ - 1.1 7785d4956cb908a17db2e556c11a4ea4.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - ML7W1tclLMCk_OwF1Rnw-aOOefQE-QBPM3ITWmP9YqoJz4eY-AzNUQ==
+ - KPNQ048m_HxkBN1oCbChGlfcgFm9Q3-NLGy3IYmebn6ZuxdZQItP2Q==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - cefeab2dcf6e35c2f67999fb862be0aa
+ - cd28eda038f889dca818e20835f491ee
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -4725,39 +4708,38 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:32:55.912+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:32.498+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:55.886+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10493_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:55.911+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:32.470+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_9520_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:32.497+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -4782,14 +4764,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -4814,16 +4796,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 2de2e843-af30-4bc6-bdf8-df4f0cfa7d9b
+ - 0044d9a2-5513-4de8-935d-80f6b94de820
Atl-Traceid:
- - 2de2e843af304bc6bdf8df4f0cfa7d9b
+ - 0044d9a255134de8935d80f6b94de820
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -4833,7 +4815,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:01 GMT
+ - Thu, 03 Jul 2025 17:36:36 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -4843,7 +4825,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=240,atl-edge;dur=232,atl-edge-internal;dur=16,atl-edge-upstream;dur=217,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="6Vj3auUDL4DLYSzZT4aPBgdBQQxxj7dbb2OC_uDkjfEQUcfSSz2UFQ==",cdn-downstream-fbl;dur=244
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=161,atl-edge;dur=153,atl-edge-internal;dur=13,atl-edge-upstream;dur=140,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="QYPQfItcgXZaNWubnp86GjXe4fD0Lk7E6IE1N3OKRhxjefz2cmBKQw==",cdn-downstream-fbl;dur=165
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -4853,15 +4835,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 37bca31d9c7de06b67b2363770e065b4.cloudfront.net (CloudFront)
+ - 1.1 1d14130822f7563ef82bba830d521f72.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 6Vj3auUDL4DLYSzZT4aPBgdBQQxxj7dbb2OC_uDkjfEQUcfSSz2UFQ==
+ - QYPQfItcgXZaNWubnp86GjXe4fD0Lk7E6IE1N3OKRhxjefz2cmBKQw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P3
X-Arequestid:
- - 78d6116aa2bbc8bdca6d3ff30b1c5115
+ - 378350166bfb9b6717280364dcd9eeea
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -4885,17 +4867,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:33:01.741+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:36.930+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - 396d7aab-0f4b-42ac-85c1-165a22773e50
+ - 45aaddf7-5cc7-427e-aa7b-a2461407bc43
Atl-Traceid:
- - 396d7aab0f4b42ac85c1165a22773e50
+ - 45aaddf75cc7427eaa7ba2461407bc43
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -4905,7 +4887,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:01 GMT
+ - Thu, 03 Jul 2025 17:36:36 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -4915,7 +4897,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=110,atl-edge;dur=102,atl-edge-internal;dur=15,atl-edge-upstream;dur=88,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="4a1M649IwStfZPXvsXxmN_WPGuSBsqxOLpMVNf0rTR2EsLyDafRASw==",cdn-downstream-fbl;dur=114
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=117,atl-edge;dur=86,atl-edge-internal;dur=15,atl-edge-upstream;dur=71,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="Q_Dpp5WW3cUdwSbcNVtMvFAjGjpGiTgZKwIeaLcblQJtXKqUz3VJ0A==",cdn-downstream-fbl;dur=122
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -4925,15 +4907,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 e4bbc916b7f96771ed58c0d668318acc.cloudfront.net (CloudFront)
+ - 1.1 77774663cd471a2b20da2890eff7e1a0.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 4a1M649IwStfZPXvsXxmN_WPGuSBsqxOLpMVNf0rTR2EsLyDafRASw==
+ - Q_Dpp5WW3cUdwSbcNVtMvFAjGjpGiTgZKwIeaLcblQJtXKqUz3VJ0A==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - 4a9ecebed1b6fe38eaf5112587ed2290
+ - 3931b3ce5e4fc4a6daa83f867f05949f
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -4957,30 +4939,29 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:51.688+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:28.580+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:51.661+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_8370_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:51.688+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:28.553+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_7670_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:28.580+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Inactive,
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]\n*Defect
- Dojo link:* http://localhost:8080/finding/292 (292)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -4988,11 +4969,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5000,16 +4981,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 2fc974d9-8ee6-4ec3-8459-6cb5cec136da
+ - 1a8c17cb-645a-49c0-b377-402819a3689b
Atl-Traceid:
- - 2fc974d98ee64ec384596cb5cec136da
+ - 1a8c17cb645a49c0b377402819a3689b
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5019,7 +5000,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:02 GMT
+ - Thu, 03 Jul 2025 17:36:37 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5029,7 +5010,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=226,atl-edge;dur=219,atl-edge-internal;dur=18,atl-edge-upstream;dur=201,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="7_9egGU-ESNBp5BbBkwbC6hzhGt6sU-8ih8XA2qhf-33uOWq3uLF9Q==",cdn-downstream-fbl;dur=230
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=165,atl-edge;dur=157,atl-edge-internal;dur=16,atl-edge-upstream;dur=142,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="BjqQ4IxYQu7dVL0ziHZalQMM0HQ-Rd0ufElJd0h6OBDj_Rdy0mUOvw==",cdn-downstream-fbl;dur=170
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5039,15 +5020,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 13a0a1a7b326f5c854b35536576cfe0e.cloudfront.net (CloudFront)
+ - 1.1 1e22254f0abea6547aaa07a03d921130.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 7_9egGU-ESNBp5BbBkwbC6hzhGt6sU-8ih8XA2qhf-33uOWq3uLF9Q==
+ - BjqQ4IxYQu7dVL0ziHZalQMM0HQ-Rd0ufElJd0h6OBDj_Rdy0mUOvw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - 14a077706d664840827434ffb69657d2
+ - 11fc693220e888f31de56cc24645f067
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5071,17 +5052,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:33:02.594+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:37.642+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - c6c0f872-b885-4454-bfc4-2eb139598d4e
+ - 6dc7cdcb-3040-4a1d-b2ea-affc548ae0ce
Atl-Traceid:
- - c6c0f872b8854454bfc42eb139598d4e
+ - 6dc7cdcb30404a1db2eaaffc548ae0ce
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5091,7 +5072,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:02 GMT
+ - Thu, 03 Jul 2025 17:36:37 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5101,7 +5082,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=108,atl-edge;dur=100,atl-edge-internal;dur=14,atl-edge-upstream;dur=85,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="oJvMcsgykb0MJ3Vg9abH6gooFL7cn2C22LAqveHLD0jvO3Wf5liaCg==",cdn-downstream-fbl;dur=111
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=93,atl-edge;dur=85,atl-edge-internal;dur=14,atl-edge-upstream;dur=71,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="gIWlHIturIhceE9u8n7neWdDxqElVVENchLfc0O0HaM1FwKBDMQYKg==",cdn-downstream-fbl;dur=102
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5111,15 +5092,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 37bca31d9c7de06b67b2363770e065b4.cloudfront.net (CloudFront)
+ - 1.1 a4ca822be9cc438f72a2d23c1e665d80.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - oJvMcsgykb0MJ3Vg9abH6gooFL7cn2C22LAqveHLD0jvO3Wf5liaCg==
+ - gIWlHIturIhceE9u8n7neWdDxqElVVENchLfc0O0HaM1FwKBDMQYKg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS1-P2
X-Arequestid:
- - 0259ad1a998f9108fe9a0220d2ccc6d6
+ - a2167710263f26fb748e8451ef92a6cf
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5143,30 +5124,29 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:51.688+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:28.580+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:51.661+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_8370_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:51.688+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:28.553+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_7670_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:28.580+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Inactive,
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]\n*Defect
- Dojo link:* http://localhost:8080/finding/292 (292)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5174,11 +5154,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5186,16 +5166,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 7873b321-7639-4843-86a2-0cc158f1f85f
+ - 969407fe-5997-4b6c-b4aa-ba2cca5e5891
Atl-Traceid:
- - 7873b3217639484386a20cc158f1f85f
+ - 969407fe59974b6cb4aaba2cca5e5891
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5205,7 +5185,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:02 GMT
+ - Thu, 03 Jul 2025 17:36:37 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5215,7 +5195,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=241,atl-edge;dur=233,atl-edge-internal;dur=16,atl-edge-upstream;dur=218,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="wtxjKoku7CuiHs4aG4gc3SbNI7usR0VK9bKvuccARaQ2HHZUr0aNFg==",cdn-downstream-fbl;dur=245
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=218,atl-edge;dur=188,atl-edge-internal;dur=15,atl-edge-upstream;dur=173,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="vsWQplKga5QFA5cX98qcm_TjjrjXUqFTKeZY4ZcSOJ2dK0yU2OpXNg==",cdn-downstream-fbl;dur=222
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5225,15 +5205,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 d0b402ca7e5fc6514bdd05f23e206b58.cloudfront.net (CloudFront)
+ - 1.1 58b391c0bc32913049841b1b8cd9053a.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - wtxjKoku7CuiHs4aG4gc3SbNI7usR0VK9bKvuccARaQ2HHZUr0aNFg==
+ - vsWQplKga5QFA5cX98qcm_TjjrjXUqFTKeZY4ZcSOJ2dK0yU2OpXNg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P2
X-Arequestid:
- - 947b6aa8598010be45abac7a0bbd97f3
+ - 54a987b72e86eb83f87593f60e55ef19
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5257,7 +5237,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -5267,13 +5247,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - bac94b4d-3c35-4991-aa8a-a59ad51ae029
+ - bea9451d-80a8-4510-b04f-d88afcab7872
Atl-Traceid:
- - bac94b4d3c354991aa8aa59ad51ae029
+ - bea9451d80a84510b04fd88afcab7872
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5283,7 +5263,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:03 GMT
+ - Thu, 03 Jul 2025 17:36:38 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5293,7 +5273,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=235,atl-edge;dur=228,atl-edge-internal;dur=15,atl-edge-upstream;dur=213,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="Rd1IPb-aXzkvGr-aftrgJX_wbbaZ7UUN0Icji5CBD7QM-_Pe1RIYXA==",cdn-downstream-fbl;dur=239
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=288,atl-edge;dur=281,atl-edge-internal;dur=16,atl-edge-upstream;dur=265,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="y0DixhCWE7_mqMZJC-9M0dMRhZZVHx-ZeRWWrtga6yd6_RGlT2dExw==",cdn-downstream-fbl;dur=293
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5303,18 +5283,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 a4583a5b47f0a64ec35be32f95ac1b46.cloudfront.net (CloudFront)
+ - 1.1 c88ca2a75ca16a71cee4beefb2f6e6b8.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - Rd1IPb-aXzkvGr-aftrgJX_wbbaZ7UUN0Icji5CBD7QM-_Pe1RIYXA==
+ - y0DixhCWE7_mqMZJC-9M0dMRhZZVHx-ZeRWWrtga6yd6_RGlT2dExw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - d7b8fb8cd745115b9a7bd3812aad16db
+ - e769aca89a79ff2988ec2605828e0805
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5328,20 +5308,20 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5349,11 +5329,11 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
- Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n *Due
- Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5361,7 +5341,7 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "High"}}, "update": {}}'
headers:
Accept:
@@ -5373,21 +5353,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3525'
+ - '3551'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
string: ''
headers:
Atl-Request-Id:
- - 4f32e322-28cc-46db-88e8-6e43899854c6
+ - d8f3709a-7e02-4dce-ab0f-f3786dd446c6
Atl-Traceid:
- - 4f32e32228cc46db88e86e43899854c6
+ - d8f3709a7e024dceab0ff3786dd446c6
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5395,7 +5375,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:03 GMT
+ - Thu, 03 Jul 2025 17:36:38 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5405,7 +5385,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=474,atl-edge;dur=465,atl-edge-internal;dur=15,atl-edge-upstream;dur=450,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="1MtLGOtK4waTPfHlpYeix7_3-OIfzMl1CXjHbXnO6VsPZ16PnYtQyg==",cdn-downstream-fbl;dur=478
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=438,atl-edge;dur=430,atl-edge-internal;dur=15,atl-edge-upstream;dur=415,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="YrE36s0J1m17QRzNqjynUMOTcLczoQs3RqA8Pbx2zwKugc6EZrg6JA==",cdn-downstream-fbl;dur=445
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5413,15 +5393,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 74511018c757716e70d811d8214e45e0.cloudfront.net (CloudFront)
+ - 1.1 012634059e5295fc11d3d3daf0b68c7e.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 1MtLGOtK4waTPfHlpYeix7_3-OIfzMl1CXjHbXnO6VsPZ16PnYtQyg==
+ - YrE36s0J1m17QRzNqjynUMOTcLczoQs3RqA8Pbx2zwKugc6EZrg6JA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P2
X-Arequestid:
- - aa54e7a20a0b5dd312d09f536ca4901b
+ - 2e62429507eb9e89f504b895da99dc8b
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5445,30 +5425,29 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:32:51.688+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:28.580+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:51.661+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_8370_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:33:03.604+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:28.553+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_7670_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:38.665+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5476,11 +5455,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5488,16 +5467,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 958b67cc-1997-4cb5-a3e4-ecdaf11b9b7f
+ - edd15940-3ab5-4028-becd-6e1097a3c756
Atl-Traceid:
- - 958b67cc19974cb5a3e4ecdaf11b9b7f
+ - edd159403ab54028becd6e1097a3c756
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5507,7 +5486,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:04 GMT
+ - Thu, 03 Jul 2025 17:36:39 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5517,7 +5496,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=271,atl-edge;dur=264,atl-edge-internal;dur=17,atl-edge-upstream;dur=247,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="nY1jt-mJctg9p5zX5j1xVmDIr7lDTOLlo1GBXwuvMMwwAZHDk5dGMA==",cdn-downstream-fbl;dur=276
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=176,atl-edge;dur=168,atl-edge-internal;dur=16,atl-edge-upstream;dur=152,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="T1S4bruZRkX8pk8LuHDpwTQbg9pq-0XYMK3iRddP36gkIIV7LaAiNw==",cdn-downstream-fbl;dur=204
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5527,15 +5506,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 18c617ef1621da46798c2b8cbc1c808c.cloudfront.net (CloudFront)
+ - 1.1 77774663cd471a2b20da2890eff7e1a0.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - nY1jt-mJctg9p5zX5j1xVmDIr7lDTOLlo1GBXwuvMMwwAZHDk5dGMA==
+ - T1S4bruZRkX8pk8LuHDpwTQbg9pq-0XYMK3iRddP36gkIIV7LaAiNw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - 4aa29935db6ae49ab03b4d9db8b2d21e
+ - 99719683857dcaa84523737569fec968
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5561,17 +5540,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: POST
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/transitions
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/transitions
response:
body:
string: ''
headers:
Atl-Request-Id:
- - 90f0c177-3789-42e0-94ca-a8ac3ea6b030
+ - 828cb8ba-85a3-4e31-80bb-890abf5cb9e5
Atl-Traceid:
- - 90f0c177378942e094caa8ac3ea6b030
+ - 828cb8ba85a34e3180bb890abf5cb9e5
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5579,7 +5558,7 @@ interactions:
Content-Type:
- text/html;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:04 GMT
+ - Thu, 03 Jul 2025 17:36:39 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5589,7 +5568,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=464,atl-edge;dur=456,atl-edge-internal;dur=20,atl-edge-upstream;dur=437,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="xh9wkgflU2GbMzVwzzSU4Ou2On4DgFSDbqH2HByPo_fp7kJpL4CcdA==",cdn-downstream-fbl;dur=468
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=412,atl-edge;dur=403,atl-edge-internal;dur=15,atl-edge-upstream;dur=388,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="jBzbLlqhBy78Jy8LS-25DZYMTkjmg1wcJZZ_ohCzVaThCw89C60qDA==",cdn-downstream-fbl;dur=416
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5597,15 +5576,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 490623df85c571a18ba7da1511cc969e.cloudfront.net (CloudFront)
+ - 1.1 20048fca6de376fc3e9a3975b6f01be4.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - xh9wkgflU2GbMzVwzzSU4Ou2On4DgFSDbqH2HByPo_fp7kJpL4CcdA==
+ - jBzbLlqhBy78Jy8LS-25DZYMTkjmg1wcJZZ_ohCzVaThCw89C60qDA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P2
X-Arequestid:
- - f2710652bd4b94b9b8139c19651f34aa
+ - 73f79622b1bf17840583608b133b92c2
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5629,17 +5608,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:33:04.968+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:39.900+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - 198f461a-cba2-4dd2-ba6c-7e3bee6eb8a2
+ - 6a6ac03a-47b5-4182-b086-cc476303fb15
Atl-Traceid:
- - 198f461acba24dd2ba6c7e3bee6eb8a2
+ - 6a6ac03a47b54182b086cc476303fb15
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5649,7 +5628,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:04 GMT
+ - Thu, 03 Jul 2025 17:36:39 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5659,7 +5638,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=112,atl-edge;dur=103,atl-edge-internal;dur=16,atl-edge-upstream;dur=87,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="csgbe8Xu2qCaUSJmxQG0bLZWsN4ATUiJnermQwFagShEE6wV5FE7oA==",cdn-downstream-fbl;dur=116
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=92,atl-edge;dur=84,atl-edge-internal;dur=15,atl-edge-upstream;dur=70,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="ysERTddwt5no4a57eLxpYi45TFwqPlJnWICi66VPS3FHTw2SJG6CFg==",cdn-downstream-fbl;dur=96
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5669,15 +5648,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 a8b68315e1e2575143f97748ffbb29a0.cloudfront.net (CloudFront)
+ - 1.1 d1867b092f625a3679893299e10edaee.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - csgbe8Xu2qCaUSJmxQG0bLZWsN4ATUiJnermQwFagShEE6wV5FE7oA==
+ - ysERTddwt5no4a57eLxpYi45TFwqPlJnWICi66VPS3FHTw2SJG6CFg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - 0ed549584628cfdcd429696eb2ef2241
+ - 6211042abb98b7a6bc85be95325519fd
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5701,31 +5680,30 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:33:04.446+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:39.484+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:33:04.445+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:39.483+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5733,11 +5711,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5745,16 +5723,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 2a0317e7-a82d-4c37-84d3-53c741fad131
+ - 16c7d31d-29b7-400e-98bd-9afdaeb30bf9
Atl-Traceid:
- - 2a0317e7a82d4c3784d353c741fad131
+ - 16c7d31d29b7400e98bd9afdaeb30bf9
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5764,7 +5742,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:05 GMT
+ - Thu, 03 Jul 2025 17:36:40 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5774,7 +5752,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=207,atl-edge;dur=200,atl-edge-internal;dur=16,atl-edge-upstream;dur=184,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="lYVtqBuvnVJTGSpeE38315DTudKzpNa3Myp-Bx18Bfp22Mygu72XpA==",cdn-downstream-fbl;dur=211
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=164,atl-edge;dur=156,atl-edge-internal;dur=14,atl-edge-upstream;dur=142,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="7KKfHBADrVa7DUC1EKkuPYWGUBM2t_PSAzqUZr7SiwL60R4PG4eYJQ==",cdn-downstream-fbl;dur=168
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5784,15 +5762,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 13a0a1a7b326f5c854b35536576cfe0e.cloudfront.net (CloudFront)
+ - 1.1 459ec09472abb8544521a9b5cc6706ce.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - lYVtqBuvnVJTGSpeE38315DTudKzpNa3Myp-Bx18Bfp22Mygu72XpA==
+ - 7KKfHBADrVa7DUC1EKkuPYWGUBM2t_PSAzqUZr7SiwL60R4PG4eYJQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - 99709fa330e1564ea4cc47978fb2e14d
+ - 0f3001355539ab3896f3f0504e2bb473
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5816,7 +5794,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -5826,13 +5804,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - bd9825cc-f8a6-4924-971c-29a5f4e9d581
+ - 5ef4f565-7b30-4fef-948b-aae487acd5f4
Atl-Traceid:
- - bd9825ccf8a64924971c29a5f4e9d581
+ - 5ef4f5657b304fef948baae487acd5f4
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5842,7 +5820,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:05 GMT
+ - Thu, 03 Jul 2025 17:36:40 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5852,7 +5830,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="eEeFSr8J2DCgTDz8ZxfdHk6yCnFE8r5PXAvY1WndmPxy0TSIxibhog==",cdn-downstream-fbl;dur=317,cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=21,cdn-upstream-fbl;dur=314,atl-edge;dur=285,atl-edge-internal;dur=21,atl-edge-upstream;dur=264,atl-edge-pop;desc="aws-eu-central-1"
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=247,atl-edge;dur=239,atl-edge-internal;dur=15,atl-edge-upstream;dur=223,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="OljwwbvmrFzp-ykw5zT6hxT8inEs8Qy-LlSI3kqvjUqrU6xppC9H8g==",cdn-downstream-fbl;dur=251
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5862,18 +5840,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 c337a55bb25a3540411fbbf6c8ad1b46.cloudfront.net (CloudFront)
+ - 1.1 dd5c8f1bc8fe255b1a3166b5a036fe2c.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - eEeFSr8J2DCgTDz8ZxfdHk6yCnFE8r5PXAvY1WndmPxy0TSIxibhog==
+ - OljwwbvmrFzp-ykw5zT6hxT8inEs8Qy-LlSI3kqvjUqrU6xppC9H8g==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - b2c7c1a48f9417bf038ed22b38de9670
+ - 16be8f927577c53cdb40fa5975194828
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -5887,20 +5865,20 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5908,11 +5886,11 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
- Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n *Due
- Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -5920,7 +5898,7 @@ interactions:
value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "High"}}, "update": {}}'
headers:
Accept:
@@ -5932,21 +5910,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3525'
+ - '3551'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
string: ''
headers:
Atl-Request-Id:
- - da9b96d5-df36-4923-8651-9974363fe99f
+ - d45767b3-7225-41af-ba66-52220af224e0
Atl-Traceid:
- - da9b96d5df36492386519974363fe99f
+ - d45767b3722541afba6652220af224e0
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -5954,7 +5932,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:06 GMT
+ - Thu, 03 Jul 2025 17:36:40 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -5964,7 +5942,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=291,atl-edge;dur=283,atl-edge-internal;dur=15,atl-edge-upstream;dur=269,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="5Ebwo1tXp0Iw2-zNx2-vgEyAFKtXydPLh72e7BxnZKRRWmdRRo0aZA==",cdn-downstream-fbl;dur=295
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=267,atl-edge;dur=259,atl-edge-internal;dur=15,atl-edge-upstream;dur=245,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="jpggb7eTxT21OLyFgibPfXuJRgvVYgUBzli8yfbPxrOBtR_ud0SYsQ==",cdn-downstream-fbl;dur=272
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -5972,15 +5950,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)
+ - 1.1 77774663cd471a2b20da2890eff7e1a0.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 5Ebwo1tXp0Iw2-zNx2-vgEyAFKtXydPLh72e7BxnZKRRWmdRRo0aZA==
+ - jpggb7eTxT21OLyFgibPfXuJRgvVYgUBzli8yfbPxrOBtR_ud0SYsQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - 7cf8736dfa2b7a15beb1d0d01b82cfdc
+ - df6345f250bb73eea79843141561bc07
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6004,31 +5982,30 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:33:04.446+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:39.484+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:33:04.445+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:39.483+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -6036,11 +6013,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -6048,16 +6025,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 87948b11-cf91-40ac-90a1-dcae8536dd18
+ - 740138a9-93e0-4a00-b76a-d0875561da2f
Atl-Traceid:
- - 87948b11cf9140ac90a1dcae8536dd18
+ - 740138a993e04a00b76ad0875561da2f
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -6067,7 +6044,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:06 GMT
+ - Thu, 03 Jul 2025 17:36:41 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -6077,7 +6054,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=274,atl-edge;dur=266,atl-edge-internal;dur=16,atl-edge-upstream;dur=250,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="DBNtkgo8rfxYJ2llYYOsf2E82on4hL6Ca6Lwz5wwEYSwn5oa_y-bHg==",cdn-downstream-fbl;dur=279
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=179,atl-edge;dur=171,atl-edge-internal;dur=17,atl-edge-upstream;dur=154,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="k56g0oKnZQuosaHWLYHtlh2M4MH3tzvUPB6nIxPnNOHodKnV5fzwHg==",cdn-downstream-fbl;dur=184
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -6087,15 +6064,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 cf45fdeb5348a5648604f5f9e4f2b8a8.cloudfront.net (CloudFront)
+ - 1.1 5bf4ed1052f9d87875430429ad189f42.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - DBNtkgo8rfxYJ2llYYOsf2E82on4hL6Ca6Lwz5wwEYSwn5oa_y-bHg==
+ - k56g0oKnZQuosaHWLYHtlh2M4MH3tzvUPB6nIxPnNOHodKnV5fzwHg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P3
X-Arequestid:
- - 417b87bb48e8a8b43ff43f6e72015204
+ - 0d00848d7acf3affc9f39158b1476016
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6119,17 +6096,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:33:06.690+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:41.360+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - b6ea1944-bc8f-4802-8b98-d0e99d28785b
+ - 1aea49fb-d2e1-438d-9d01-9a8029c73609
Atl-Traceid:
- - b6ea1944bc8f48028b98d0e99d28785b
+ - 1aea49fbd2e1438d9d019a8029c73609
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -6139,7 +6116,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:06 GMT
+ - Thu, 03 Jul 2025 17:36:41 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -6149,7 +6126,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=112,atl-edge;dur=104,atl-edge-internal;dur=16,atl-edge-upstream;dur=90,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="A9uH3eD85T5kLY2zK8qYy6_tVs5ejfJ3I2BvHceIM9t4cESjk2SeDQ==",cdn-downstream-fbl;dur=116
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=91,atl-edge;dur=83,atl-edge-internal;dur=14,atl-edge-upstream;dur=70,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="J03lzWWpHEV3lAP5ebcgrsJ7-mZbZPx3EMaySMgrRE8H2Dr9sBi5Jg==",cdn-downstream-fbl;dur=96
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -6159,15 +6136,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 34833e1e6b760bb81603c4fa1e0bb5d6.cloudfront.net (CloudFront)
+ - 1.1 95ff0d830848b741160e24f658d880e8.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - A9uH3eD85T5kLY2zK8qYy6_tVs5ejfJ3I2BvHceIM9t4cESjk2SeDQ==
+ - J03lzWWpHEV3lAP5ebcgrsJ7-mZbZPx3EMaySMgrRE8H2Dr9sBi5Jg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - e0d2585d7aaf02027a22a1877314e8ce
+ - f5be1f28bf7d79a6cb4aa2b7870ef630
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6191,39 +6168,38 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:32:55.912+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:32.498+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:55.886+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10493_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:55.911+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:32.470+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_9520_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:32.497+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
Verified, Risk Accepted|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Inactive,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -6248,14 +6224,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -6280,16 +6256,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - a3ce2a9f-f010-4263-b384-5eb70821cfc8
+ - 30336c5a-fc94-4353-a4e7-a5173462bfe6
Atl-Traceid:
- - a3ce2a9ff0104263b3845eb70821cfc8
+ - 30336c5afc944353a4e7a5173462bfe6
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -6299,7 +6275,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:06 GMT
+ - Thu, 03 Jul 2025 17:36:41 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -6309,7 +6285,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=200,atl-edge;dur=192,atl-edge-internal;dur=15,atl-edge-upstream;dur=177,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="7pMBMLaN_qSXUZrVblizSbbUcNqsBwvW5uS5O-_ztJsMRerWPBAdcA==",cdn-downstream-fbl;dur=207
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=166,atl-edge;dur=158,atl-edge-internal;dur=17,atl-edge-upstream;dur=140,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="7jlefc_dds8ReB46KXhwu289xNNOZYs0tBQ1aQlp7S7-8X4KVevvfQ==",cdn-downstream-fbl;dur=171
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -6319,15 +6295,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)
+ - 1.1 f75afc04e5fb2b66fe286e4f840886c6.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 7pMBMLaN_qSXUZrVblizSbbUcNqsBwvW5uS5O-_ztJsMRerWPBAdcA==
+ - 7jlefc_dds8ReB46KXhwu289xNNOZYs0tBQ1aQlp7S7-8X4KVevvfQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - 15a9b8190963cc54b66fc2e477d77645
+ - 7d00ca62e5514e3fc54a6fd3385ba33e
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6351,7 +6327,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -6361,13 +6337,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - f9996b5c-d0bc-460a-8931-084196348710
+ - ea11897d-e0ca-4a4e-ae2b-2f838ec4fc6d
Atl-Traceid:
- - f9996b5cd0bc460a8931084196348710
+ - ea11897de0ca4a4eae2b2f838ec4fc6d
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -6377,7 +6353,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:07 GMT
+ - Thu, 03 Jul 2025 17:36:41 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -6387,7 +6363,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=261,atl-edge;dur=254,atl-edge-internal;dur=14,atl-edge-upstream;dur=240,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="6tsHryx0TisRR-FRKP3OUsr5BPRpjO06c4urTQPz0MGNaAYtc1JWrg==",cdn-downstream-fbl;dur=266
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=300,atl-edge;dur=291,atl-edge-internal;dur=16,atl-edge-upstream;dur=276,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="PL_--dSkbd3YqsYsEkKNWss44sB295S0a9F0L2Pat3O-OA9m4N15UQ==",cdn-downstream-fbl;dur=303
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -6397,18 +6373,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 e4bbc916b7f96771ed58c0d668318acc.cloudfront.net (CloudFront)
+ - 1.1 552fc57e69ec905c4246244771e7453a.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 6tsHryx0TisRR-FRKP3OUsr5BPRpjO06c4urTQPz0MGNaAYtc1JWrg==
+ - PL_--dSkbd3YqsYsEkKNWss44sB295S0a9F0L2Pat3O-OA9m4N15UQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - bf049b69c371bcd30a3b7cbc5f91141c
+ - 08fe320fc1316ef474271b9dca48444c
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6422,29 +6398,29 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
- [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932] in [Security
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367] in [Security
How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Active,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
- < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -6469,13 +6445,13 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
(Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
< 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
- 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect Dojo link:* http://localhost:8080/finding/295
- (295)\n*Severity:* Medium\n *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -6500,7 +6476,7 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "High"}}, "update": {}}'
headers:
Accept:
@@ -6512,21 +6488,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '6995'
+ - '7021'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
string: ''
headers:
Atl-Request-Id:
- - cb297080-325d-4563-bc5f-bfb9fc76063a
+ - 0acaee20-b04d-4e07-97b1-6ec22b72eef2
Atl-Traceid:
- - cb297080325d4563bc5fbfb9fc76063a
+ - 0acaee20b04d4e0797b16ec22b72eef2
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -6534,7 +6510,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:07 GMT
+ - Thu, 03 Jul 2025 17:36:42 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -6544,7 +6520,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=496,atl-edge;dur=487,atl-edge-internal;dur=15,atl-edge-upstream;dur=472,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="aVPheABAeI6rt3jEEzouTkndSRZBHMvrsgGOFlDnFv8yOKRLlr5XEA==",cdn-downstream-fbl;dur=499
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=476,atl-edge;dur=468,atl-edge-internal;dur=16,atl-edge-upstream;dur=452,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="0_iJgiFZs0Knuv1jtvEUjTG9SPNiXl2gHzt3frHGTGzfRDRswMiFUQ==",cdn-downstream-fbl;dur=483
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -6552,15 +6528,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 b26a5eb677aed7368a2c7fd7f1d673dc.cloudfront.net (CloudFront)
+ - 1.1 cf45fdeb5348a5648604f5f9e4f2b8a8.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - aVPheABAeI6rt3jEEzouTkndSRZBHMvrsgGOFlDnFv8yOKRLlr5XEA==
+ - 0_iJgiFZs0Knuv1jtvEUjTG9SPNiXl2gHzt3frHGTGzfRDRswMiFUQ==
X-Amz-Cf-Pop:
- AMS1-P1
X-Arequestid:
- - 2f90241b4e82161b41a03c831ec87093
+ - a7d303042ac367f9cc414a577f271af7
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6584,39 +6560,38 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:32:55.912+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:32.498+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:55.886+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10493_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:33:07.678+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:32.470+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_9520_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:42.371+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Active,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
- < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -6641,14 +6616,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -6673,16 +6648,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - c9b18710-34e3-4f9d-9354-b5df703caef8
+ - 8ba6eee7-a97a-47be-b03b-17707c17c411
Atl-Traceid:
- - c9b1871034e34f9d9354b5df703caef8
+ - 8ba6eee7a97a47beb03b17707c17c411
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -6692,7 +6667,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:08 GMT
+ - Thu, 03 Jul 2025 17:36:42 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -6702,7 +6677,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="SL4j_L0Ss24cN9iHQDTR9wtI4MnK4tCDxa6iPw_x128Mb0IoVYb3Zg==",cdn-downstream-fbl;dur=266,cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=20,cdn-upstream-fbl;dur=262,atl-edge;dur=233,atl-edge-internal;dur=17,atl-edge-upstream;dur=216,atl-edge-pop;desc="aws-eu-central-1"
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=262,atl-edge;dur=254,atl-edge-internal;dur=16,atl-edge-upstream;dur=238,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="UT08evVkDp-rrw-fUllAYpextS-XKap6E1JXzcAci1_kUVHSWuwiIw==",cdn-downstream-fbl;dur=265
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -6712,15 +6687,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 e086ec27af2d3105a1a9fa7efa1be454.cloudfront.net (CloudFront)
+ - 1.1 f75afc04e5fb2b66fe286e4f840886c6.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - SL4j_L0Ss24cN9iHQDTR9wtI4MnK4tCDxa6iPw_x128Mb0IoVYb3Zg==
+ - UT08evVkDp-rrw-fUllAYpextS-XKap6E1JXzcAci1_kUVHSWuwiIw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - 35818adbb8b27ba09897b53b512dfb4c
+ - edef7297b5d677a4a1b29a3839ef81b1
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6746,17 +6721,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: POST
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/transitions
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/transitions
response:
body:
string: ''
headers:
Atl-Request-Id:
- - 63ad15bb-9659-434b-bc51-1e87f99d8e46
+ - a22a2ae5-a4f0-43e5-bb2b-cf23d0f7ced2
Atl-Traceid:
- - 63ad15bb9659434bbc511e87f99d8e46
+ - a22a2ae5a4f043e5bb2bcf23d0f7ced2
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -6764,7 +6739,7 @@ interactions:
Content-Type:
- text/html;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:08 GMT
+ - Thu, 03 Jul 2025 17:36:43 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -6774,7 +6749,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=583,atl-edge;dur=575,atl-edge-internal;dur=16,atl-edge-upstream;dur=560,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="feU6iRq1cpTaa20WHwpP1KgNVUgH6udQ1zfpp65KIDfIo7MC0DJ6Mw==",cdn-downstream-fbl;dur=587
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=358,atl-edge;dur=349,atl-edge-internal;dur=15,atl-edge-upstream;dur=334,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="GeqvSUVoMtYCoshEVzYE0tTIL6yBiJKfCsIfFTbrbwCYx7rtFN6q-Q==",cdn-downstream-fbl;dur=364
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -6782,15 +6757,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 5e1e1cde81deec56515dcc5317501fe8.cloudfront.net (CloudFront)
+ - 1.1 c27d2e9d4c6e59d1b92ac8671f0bfb9c.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - feU6iRq1cpTaa20WHwpP1KgNVUgH6udQ1zfpp65KIDfIo7MC0DJ6Mw==
+ - GeqvSUVoMtYCoshEVzYE0tTIL6yBiJKfCsIfFTbrbwCYx7rtFN6q-Q==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - d25d33fdd3f29d872b342d9f4a332a88
+ - 4da53a772c138f176d498dabb468622d
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6814,17 +6789,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:33:09.262+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:43.584+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - 4975ed42-ac31-4b76-8425-fceb34d6f1d1
+ - 719d4a04-102d-4dbd-a543-63780a8414fa
Atl-Traceid:
- - 4975ed42ac314b768425fceb34d6f1d1
+ - 719d4a04102d4dbda54363780a8414fa
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -6834,7 +6809,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:09 GMT
+ - Thu, 03 Jul 2025 17:36:43 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -6844,7 +6819,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=109,atl-edge;dur=101,atl-edge-internal;dur=16,atl-edge-upstream;dur=86,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="uTebj4Y25BJoeRoKPKwuAxXJ2OmSD5V4Dg2jWji_DtIXFuzToXJiTg==",cdn-downstream-fbl;dur=113
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=97,atl-edge;dur=89,atl-edge-internal;dur=19,atl-edge-upstream;dur=71,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="jqFrI__yVYn8Pvy79d_CpNpEgPLMkLrf2gZRb4bGlxalc5XmBsh0Pw==",cdn-downstream-fbl;dur=101
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -6854,15 +6829,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 c337a55bb25a3540411fbbf6c8ad1b46.cloudfront.net (CloudFront)
+ - 1.1 c42cd753c9927a74eed5ac8cd899bf30.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - uTebj4Y25BJoeRoKPKwuAxXJ2OmSD5V4Dg2jWji_DtIXFuzToXJiTg==
+ - jqFrI__yVYn8Pvy79d_CpNpEgPLMkLrf2gZRb4bGlxalc5XmBsh0Pw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - a6fbaa8d5cdca75c649515a17383fdbc
+ - 8a23c3aad42794ac5281e34d98b4d134
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6886,44 +6861,43 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19659
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20653
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19659","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659","key":"NTEST-2987","fields":{"statuscategorychangedate":"2025-05-24T12:32:59.589+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20653","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653","key":"NTEST-3075","fields":{"statuscategorychangedate":"2025-07-03T19:36:34.932+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:59.565+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:47.431+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_12158_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ev:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:32:59.589+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:34.901+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:24.883+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10048_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rj:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:34.931+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/933]
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/368]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- Medium *Due Date:* None \n\nFindings matching the Active, and Severity criteria:\n||
- Severity || CVE || CWE || Component || Version || Title || Status ||\n\nFindings
- *not* matching the Active, and Severity criteria:\n|| Severity || CVE || CWE
- || Component || Version || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]|Inactive,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Inactive,
Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]\n*Defect
- Dojo link:* http://localhost:8080/finding/294 (294)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
versions of `fresh` are vulnerable to regular expression denial of service
when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - fbf6e310-c24a-49d5-9f72-fad867fb1527
+ - b2b1c717-f3d5-4c55-b4f9-ffa723c9d9c0
Atl-Traceid:
- - fbf6e310c24a49d59f72fad867fb1527
+ - b2b1c717f3d54c55b4f9ffa723c9d9c0
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -6933,7 +6907,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:09 GMT
+ - Thu, 03 Jul 2025 17:36:43 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -6943,7 +6917,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=256,atl-edge;dur=248,atl-edge-internal;dur=16,atl-edge-upstream;dur=232,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="DOarNquDhhPJGns1SlvGfxTFrzvG2alK7_oGvYSu5eC6DO9uAQ-9kA==",cdn-downstream-fbl;dur=260
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=215,atl-edge;dur=187,atl-edge-internal;dur=14,atl-edge-upstream;dur=172,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="Am6TuTpLS2RAKFIRpGYkSoSxYgCvWQFgBnPFLntdiQXvmOn6r9--yA==",cdn-downstream-fbl;dur=221
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -6953,15 +6927,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 4ab1227a56c7dfaf7a8f7750683df1be.cloudfront.net (CloudFront)
+ - 1.1 a4ca822be9cc438f72a2d23c1e665d80.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - DOarNquDhhPJGns1SlvGfxTFrzvG2alK7_oGvYSu5eC6DO9uAQ-9kA==
+ - Am6TuTpLS2RAKFIRpGYkSoSxYgCvWQFgBnPFLntdiQXvmOn6r9--yA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS1-P2
X-Arequestid:
- - 0494209c188f38fa97b85c8581c527dc
+ - 704923ad77f6e68bbff4e6fd27297059
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -6985,7 +6959,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -6995,13 +6969,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - 736f8b0f-a8b8-4500-b06b-e8bd30e2c247
+ - 2b7b5913-bb81-4845-b163-d0de8d46a59a
Atl-Traceid:
- - 736f8b0fa8b84500b06be8bd30e2c247
+ - 2b7b5913bb814845b163d0de8d46a59a
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7011,7 +6985,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:09 GMT
+ - Thu, 03 Jul 2025 17:36:44 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7021,7 +6995,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=275,atl-edge;dur=268,atl-edge-internal;dur=18,atl-edge-upstream;dur=250,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="TkPkfkPpYwGSICxipZvSM7BR88P4g5aa14bIIvLbdBg5FzmIbpaLLQ==",cdn-downstream-fbl;dur=279
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=249,atl-edge;dur=241,atl-edge-internal;dur=16,atl-edge-upstream;dur=226,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="bjW9-hDsqFeU9WloxsmaA3AmcW8mgGR0VUnR8NHMDzfC1I4WJvVfog==",cdn-downstream-fbl;dur=254
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7031,18 +7005,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 447163709b16a97083db09f6ac040b38.cloudfront.net (CloudFront)
+ - 1.1 8662e3c152f0b241b5d273e9b0c8f9fc.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - TkPkfkPpYwGSICxipZvSM7BR88P4g5aa14bIIvLbdBg5FzmIbpaLLQ==
+ - bjW9-hDsqFeU9WloxsmaA3AmcW8mgGR0VUnR8NHMDzfC1I4WJvVfog==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS1-P2
X-Arequestid:
- - 1a7f8fcced432454c526abb3bbaae49a
+ - 046faca7908c1deb67429f6af63b75e3
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -7056,25 +7030,25 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: fresh:0.3.0", "description": "\n\n\n\n\n\n\nA group
of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
- [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/933] in [Security
+ [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/368] in [Security
How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- Medium *Due Date:* Aug. 22, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version ||
+ Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
- Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]\n*Defect
- Dojo link:* http://localhost:8080/finding/294 (294)\n*Severity:* Medium\n *Due
- Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
versions of `fresh` are vulnerable to regular expression denial of service when
parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2 or
- later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n*Reporter:*
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "Medium"}}, "update": {}}'
headers:
Accept:
@@ -7086,21 +7060,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2153'
+ - '2174'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19659
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20653
response:
body:
string: ''
headers:
Atl-Request-Id:
- - 63211710-27af-438b-9837-323897f82ea1
+ - 69316347-58d4-443c-aac3-ee71328f1f82
Atl-Traceid:
- - 6321171027af438b9837323897f82ea1
+ - 6931634758d4443caac3ee71328f1f82
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7108,7 +7082,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:10 GMT
+ - Thu, 03 Jul 2025 17:36:44 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7118,7 +7092,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="z9x_xcNl6vllitj5VMGCjC2sJug43FvWNYRh88IwdChsLEn0zxU_5Q==",cdn-downstream-fbl;dur=524,cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=19,cdn-upstream-fbl;dur=522,atl-edge;dur=494,atl-edge-internal;dur=17,atl-edge-upstream;dur=478,atl-edge-pop;desc="aws-eu-central-1"
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=498,atl-edge;dur=490,atl-edge-internal;dur=15,atl-edge-upstream;dur=475,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="Pyx7iQhIdjlQbBpVUgR_Zk4ejPsiKxo2kMzNj2BTMMGu_eztZ74DOw==",cdn-downstream-fbl;dur=503
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7126,15 +7100,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 74511018c757716e70d811d8214e45e0.cloudfront.net (CloudFront)
+ - 1.1 916d412afdd39cf0d9689036f0f43bb4.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - z9x_xcNl6vllitj5VMGCjC2sJug43FvWNYRh88IwdChsLEn0zxU_5Q==
+ - Pyx7iQhIdjlQbBpVUgR_Zk4ejPsiKxo2kMzNj2BTMMGu_eztZ74DOw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - 2713a4be18445213e42ee4ab365a2ff6
+ - 2c6c5182f6b966f8afc561d26c690e2d
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -7158,44 +7132,43 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19659
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20653
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19659","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659","key":"NTEST-2987","fields":{"statuscategorychangedate":"2025-05-24T12:32:59.589+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20653","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653","key":"NTEST-3075","fields":{"statuscategorychangedate":"2025-07-03T19:36:34.932+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
- has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-05-24T12:32:59.565+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:47.431+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_12158_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ev:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:33:10.388+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:36:34.901+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:24.883+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10048_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rj:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:44.587+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/933]
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/368]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- Medium *Due Date:* Aug. 22, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
- Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
- Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/294]\n*Defect
- Dojo link:* http://localhost:8080/finding/294 (294)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
versions of `fresh` are vulnerable to regular expression denial of service
when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19659/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20653/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - e9d4a7d4-9eb6-48c6-ac64-03e0eb09544e
+ - f0d6790e-0c73-49fb-9fd5-8692e175d876
Atl-Traceid:
- - e9d4a7d49eb648c6ac6403e0eb09544e
+ - f0d6790e0c7349fb9fd58692e175d876
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7205,7 +7178,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:10 GMT
+ - Thu, 03 Jul 2025 17:36:45 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7215,7 +7188,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="8GECAzq5mfZQSx4kmKCFKrpGlDSNllPcUKBo53v9NpJX5aSiW2CXXA==",cdn-downstream-fbl;dur=233,cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=18,cdn-upstream-fbl;dur=231,atl-edge;dur=205,atl-edge-internal;dur=16,atl-edge-upstream;dur=189,atl-edge-pop;desc="aws-eu-central-1"
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=177,atl-edge;dur=170,atl-edge-internal;dur=15,atl-edge-upstream;dur=155,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="sqUroK48OLwE0v1Y79J2DnxvXl63XyFB0EM0Uz7cvkQMYu8eMK61fw==",cdn-downstream-fbl;dur=182
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7225,15 +7198,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 490623df85c571a18ba7da1511cc969e.cloudfront.net (CloudFront)
+ - 1.1 80779e7124f8d44ce2216c35ac5328a8.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - 8GECAzq5mfZQSx4kmKCFKrpGlDSNllPcUKBo53v9NpJX5aSiW2CXXA==
+ - sqUroK48OLwE0v1Y79J2DnxvXl63XyFB0EM0Uz7cvkQMYu8eMK61fw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS1-P2
X-Arequestid:
- - bb9c3fa6d9130fa52428dd1ffbe2ed03
+ - 4bc4582274fc5dba965046174caceeec
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -7259,17 +7232,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: POST
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2987/transitions
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3075/transitions
response:
body:
string: ''
headers:
Atl-Request-Id:
- - b1d59398-babf-4d06-95ad-8f03b064c0c5
+ - 49cf51ac-4fe2-4c2d-8ee2-e0d2ae95ebf0
Atl-Traceid:
- - b1d59398babf4d0695ad8f03b064c0c5
+ - 49cf51ac4fe24c2d8ee2e0d2ae95ebf0
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7277,7 +7250,7 @@ interactions:
Content-Type:
- text/html;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:11 GMT
+ - Thu, 03 Jul 2025 17:36:45 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7287,7 +7260,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=432,atl-edge;dur=424,atl-edge-internal;dur=15,atl-edge-upstream;dur=408,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="g46LT86wUATi_P7AiXe3JW4TkMBi3urjkwFLKYgYCUYM91kdcPUmTg==",cdn-downstream-fbl;dur=435
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=380,atl-edge;dur=372,atl-edge-internal;dur=15,atl-edge-upstream;dur=357,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="z5F9Fh5HP7NhhudzhfJSyKB353kNKrTPr_dOorp9luGXP29nB4-RHA==",cdn-downstream-fbl;dur=384
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7295,15 +7268,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 0e12b175c31e0e750266df78bf0e1068.cloudfront.net (CloudFront)
+ - 1.1 c42cd753c9927a74eed5ac8cd899bf30.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - g46LT86wUATi_P7AiXe3JW4TkMBi3urjkwFLKYgYCUYM91kdcPUmTg==
+ - z5F9Fh5HP7NhhudzhfJSyKB353kNKrTPr_dOorp9luGXP29nB4-RHA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - 0e8c3fbc831fd5f2f430d1cd84781140
+ - a01fac483bda2cf1e2ae8d6b0f384268
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -7327,17 +7300,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:33:11.723+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:45.774+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - 38608283-f39b-4d3d-bcec-a347d734d04b
+ - a080a7cc-3505-4317-8556-1e0a05a0f187
Atl-Traceid:
- - 38608283f39b4d3dbceca347d734d04b
+ - a080a7cc3505431785561e0a05a0f187
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7347,7 +7320,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:11 GMT
+ - Thu, 03 Jul 2025 17:36:45 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7357,7 +7330,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=109,atl-edge;dur=101,atl-edge-internal;dur=16,atl-edge-upstream;dur=86,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="PLtsiIRF2uOEnQtJ1XNYZ2x3didWBQwKdmn8qsIaoBKUL0A6MHpM-A==",cdn-downstream-fbl;dur=112
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=102,atl-edge;dur=79,atl-edge-internal;dur=15,atl-edge-upstream;dur=64,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="MdZlfgv1VaGRyw_jiLBLZ0Wio78wWJxtuuxRg5C9Ua8s1OuAM5wM2Q==",cdn-downstream-fbl;dur=108
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7367,15 +7340,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 29d6db1b5ecb170f22487453430df556.cloudfront.net (CloudFront)
+ - 1.1 70d3812e62d49cd4dca6f1dcec98b050.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - PLtsiIRF2uOEnQtJ1XNYZ2x3didWBQwKdmn8qsIaoBKUL0A6MHpM-A==
+ - MdZlfgv1VaGRyw_jiLBLZ0Wio78wWJxtuuxRg5C9Ua8s1OuAM5wM2Q==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P3
X-Arequestid:
- - de276df6522aae8fa356a8f848b2588d
+ - 33e64342b89cf448429a3a8ea9a27289
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -7399,40 +7372,39 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:33:08.536+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:43.141+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:33:08.535+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:43.140+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Active,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
- < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -7457,14 +7429,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -7489,16 +7461,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - d718e9e8-b24f-43c1-a17b-c66df3968fdc
+ - 6d951ed7-e482-4fe6-b743-25ba09483f9e
Atl-Traceid:
- - d718e9e8b24f43c1a17bc66df3968fdc
+ - 6d951ed7e4824fe6b74325ba09483f9e
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7508,7 +7480,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:12 GMT
+ - Thu, 03 Jul 2025 17:36:46 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7518,7 +7490,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=229,atl-edge;dur=222,atl-edge-internal;dur=15,atl-edge-upstream;dur=207,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="i1TFeQB7Efc7lju3icDpUkvkLUIihk6Y56S5XjxiC2kpY9nRP5LlqA==",cdn-downstream-fbl;dur=232
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=158,atl-edge;dur=150,atl-edge-internal;dur=15,atl-edge-upstream;dur=135,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="e4_QP7It1CDXUrkRglPSLvfusqA0dL92OISi_i58K5IgiIaePtlV6Q==",cdn-downstream-fbl;dur=162
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7528,15 +7500,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 1a89beee9d72657437f5e91f57220804.cloudfront.net (CloudFront)
+ - 1.1 e94fc0df161940e9096df2b4fe60d4f8.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - i1TFeQB7Efc7lju3icDpUkvkLUIihk6Y56S5XjxiC2kpY9nRP5LlqA==
+ - e4_QP7It1CDXUrkRglPSLvfusqA0dL92OISi_i58K5IgiIaePtlV6Q==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - a25006ba77818fa787b1bcfebd7f600c
+ - f1501a0e37f5a92c02d7f89665415672
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -7560,7 +7532,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
response:
@@ -7570,13 +7542,13 @@ interactions:
Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
- Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
headers:
Atl-Request-Id:
- - 6bc88de4-5e12-460b-8508-96717f74accb
+ - b7192dea-2e75-4132-a49e-aebf7e4bad96
Atl-Traceid:
- - 6bc88de45e12460b850896717f74accb
+ - b7192dea2e754132a49eaebf7e4bad96
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7586,7 +7558,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:12 GMT
+ - Thu, 03 Jul 2025 17:36:46 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7596,7 +7568,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=282,atl-edge;dur=274,atl-edge-internal;dur=17,atl-edge-upstream;dur=257,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="gSm7AGulANSC9Hg50-IPeAub7cgUF4F9Xd6ncRk2S_9qFcnEoUwjxA==",cdn-downstream-fbl;dur=285
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=268,atl-edge;dur=260,atl-edge-internal;dur=16,atl-edge-upstream;dur=244,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="KBWkL522WGWNP-5iQUAVej9eQalelJc3KcmZp99zI9Lld2w7guWaCQ==",cdn-downstream-fbl;dur=273
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7606,18 +7578,18 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 b26a5eb677aed7368a2c7fd7f1d673dc.cloudfront.net (CloudFront)
+ - 1.1 a1794152acd53f12f14f902d8899b420.cloudfront.net (CloudFront)
Warning:
- 'The issue create meta endpoint has been deprecated. (Deprecation start date:
June 03, 2024)'
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - gSm7AGulANSC9Hg50-IPeAub7cgUF4F9Xd6ncRk2S_9qFcnEoUwjxA==
+ - KBWkL522WGWNP-5iQUAVej9eQalelJc3KcmZp99zI9Lld2w7guWaCQ==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P5
X-Arequestid:
- - 109b2be9c7e9967847401628558e32e7
+ - 2394267b49b367cf32d9275e6391a159
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -7631,29 +7603,29 @@ interactions:
body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
"summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
- [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932] in [Security
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367] in [Security
How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Active,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
- < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -7678,13 +7650,13 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
(Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
< 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
- 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect Dojo link:* http://localhost:8080/finding/295
- (295)\n*Severity:* Medium\n *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs when
@@ -7709,7 +7681,7 @@ interactions:
or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
- impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n", "priority": {"name": "High"}}, "update": {}}'
headers:
Accept:
@@ -7721,21 +7693,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '6995'
+ - '7021'
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: PUT
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
string: ''
headers:
Atl-Request-Id:
- - 31ffe26a-5753-4347-a809-8465fc8e45c9
+ - 55e65431-a948-4106-8748-69a2de551ff1
Atl-Traceid:
- - 31ffe26a57534347a8098465fc8e45c9
+ - 55e65431a9484106874869a2de551ff1
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7743,7 +7715,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:12 GMT
+ - Thu, 03 Jul 2025 17:36:46 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7753,7 +7725,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=261,atl-edge;dur=253,atl-edge-internal;dur=18,atl-edge-upstream;dur=235,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="L_e7I5yCMTrEUneQd-8QKdcFSjnRqvPCzBnpErPsJi6FdXuE7Hv_cg==",cdn-downstream-fbl;dur=265
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=243,atl-edge;dur=234,atl-edge-internal;dur=16,atl-edge-upstream;dur=218,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="oxoVBVn_0MuVWghKYjIqGn1bZ3Y2f41eFITfkNEkPNTA3ACjIFsJRg==",cdn-downstream-fbl;dur=248
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7761,15 +7733,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 ca1ae3b3ff3d7a9e41b26e307972401e.cloudfront.net (CloudFront)
+ - 1.1 551a3a9c2bf1e2158a9f24897afe2b8c.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - L_e7I5yCMTrEUneQd-8QKdcFSjnRqvPCzBnpErPsJi6FdXuE7Hv_cg==
+ - oxoVBVn_0MuVWghKYjIqGn1bZ3Y2f41eFITfkNEkPNTA3ACjIFsJRg==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P1
X-Arequestid:
- - 168739b021004661a2dfcb1a7052c776
+ - 80b4c1b3d9f52a535443b2330b40c946
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -7793,40 +7765,39 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19658
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20652
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19658","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658","key":"NTEST-2986","fields":{"statuscategorychangedate":"2025-05-24T12:33:08.536+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20652","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652","key":"NTEST-3074","fields":{"statuscategorychangedate":"2025-07-03T19:36:43.141+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:45.418+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010en:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:33:08.535+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:22.977+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011rb:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:43.140+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/932]
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/367]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]|Active,
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
- < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
- < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/293]\n*Defect
- Dojo link:* http://localhost:8080/finding/293 (293)\n*Severity:* High\n *Due
- Date:* June 23, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -7851,14 +7822,14 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
- (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
< 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
- 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/295]\n*Defect
- Dojo link:* http://localhost:8080/finding/295 (295)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
\n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
versions of `pg` contain a remote code execution vulnerability that occurs
@@ -7883,16 +7854,16 @@ interactions:
Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
- that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n*Reporter:*
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2986/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19658/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3074/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20652/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 2c437c8e-6f12-4518-8a8e-96124957b58a
+ - 0d159fe9-2057-4c99-8ec0-e95ca554d30e
Atl-Traceid:
- - 2c437c8e6f1245188a8e96124957b58a
+ - 0d159fe920574c998ec0e95ca554d30e
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7902,7 +7873,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:13 GMT
+ - Thu, 03 Jul 2025 17:36:46 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7912,7 +7883,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=217,atl-edge;dur=209,atl-edge-internal;dur=16,atl-edge-upstream;dur=194,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="RqicB-gsezm0pilgkiPTulNQLIOyzpJuqkPOKfzy7D3lDciit84BFw==",cdn-downstream-fbl;dur=221
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=178,atl-edge;dur=170,atl-edge-internal;dur=17,atl-edge-upstream;dur=153,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="dWSTeS2tKBUu_xAy1IbS0LCSRCoaM274E8SPxtmG454jCqsGSLICDw==",cdn-downstream-fbl;dur=182
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7922,15 +7893,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 acee7e60faaea7b7699fe033930a0164.cloudfront.net (CloudFront)
+ - 1.1 77774663cd471a2b20da2890eff7e1a0.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - RqicB-gsezm0pilgkiPTulNQLIOyzpJuqkPOKfzy7D3lDciit84BFw==
+ - dWSTeS2tKBUu_xAy1IbS0LCSRCoaM274E8SPxtmG454jCqsGSLICDw==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P4
X-Arequestid:
- - fa24ff484c3170fe0abcb9f4b27b20ae
+ - 34a6e17428c766f3712d3d1aa14aa996
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -7954,17 +7925,17 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
response:
body:
- string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100283,"buildDate":"2025-05-22T15:20:46.000+0200","serverTime":"2025-05-24T12:33:13.285+0200","scmInfo":"09e6132c00c64e0fa0d67a2cb4c3c6fb8573a034","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:36:47.160+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
headers:
Atl-Request-Id:
- - e3529727-df31-4208-8114-b45178f5b040
+ - f6840897-e468-488e-b79e-bf426ba09f7e
Atl-Traceid:
- - e3529727df3142088114b45178f5b040
+ - f6840897e468488eb79ebf426ba09f7e
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -7974,7 +7945,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:13 GMT
+ - Thu, 03 Jul 2025 17:36:47 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -7984,7 +7955,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=113,atl-edge;dur=105,atl-edge-internal;dur=12,atl-edge-upstream;dur=92,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="FvICC65lNzshNyNlxaHt-nrMWJvypoiD54LdDJxd39fChzwp_2o_NA==",cdn-downstream-fbl;dur=117
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=110,atl-edge;dur=81,atl-edge-internal;dur=12,atl-edge-upstream;dur=69,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="Amxa_MLLZExJfHQiEwpgKbXUwFKW83WrzGu50iTP962mbJq3IIlI5A==",cdn-downstream-fbl;dur=113
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -7994,15 +7965,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 9835af751c15612a813bbc131d2ce1e6.cloudfront.net (CloudFront)
+ - 1.1 11e924fe383f6400148d019b996a5864.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - FvICC65lNzshNyNlxaHt-nrMWJvypoiD54LdDJxd39fChzwp_2o_NA==
+ - Amxa_MLLZExJfHQiEwpgKbXUwFKW83WrzGu50iTP962mbJq3IIlI5A==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P6
X-Arequestid:
- - 6da49b7123b105423b934aaae50a63de
+ - 2d629a2a9108be27149dacce3e9b32e7
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
@@ -8026,31 +7997,30 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - python-requests/2.32.3
+ - python-requests/2.32.4
method: GET
- uri: https://defectdojo.atlassian.net/rest/api/2/issue/19657
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20651
response:
body:
- string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"19657","self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657","key":"NTEST-2985","fields":{"statuscategorychangedate":"2025-05-24T12:33:04.446+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20651","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651","key":"NTEST-3073","fields":{"statuscategorychangedate":"2025-07-03T19:36:39.484+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
- Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-05-24T12:32:43.318+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10018":{"hasEpicLinkFieldDependency":false,"showField":false,"nonEditableReason":{"reason":"PLUGIN_LICENSE_ERROR","message":"The
- Parent Link is only available to Jira Premium users."}},"customfield_10019":"0|i010ef:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-05-24T12:33:04.445+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:36:20.910+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011r3:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:36:39.483+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
- Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/931]
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/366]
in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
- / [NPM Audit Scan|http://localhost:8080/test/104]\n\nh2. Summary\n*Severity:*
- High *Due Date:* June 23, 2025 \n\nFindings matching the Active, and Severity
- criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
- ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/292]|Active,
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
- Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]|Active,
- Verified|\n\nFindings *not* matching the Active, and Severity criteria:\n||
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
- 0.6.0)|http://localhost:8080/finding/292]\n*Defect Dojo link:* http://localhost:8080/finding/292
- (292)\n*Severity:* High\n *Due Date:* June 23, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
\n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -8058,11 +8028,11 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
- of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/291]\n*Defect
- Dojo link:* http://localhost:8080/finding/291 (291)\n*Severity:* Medium\n
- *Due Date:* Aug. 22, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
\n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
versions of `negotiator` are vulnerable to regular expression denial of service
@@ -8070,16 +8040,16 @@ interactions:
header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
- or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n*Reporter:*
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
[(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
- Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-2985/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/19657/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3073/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20651/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
headers:
Atl-Request-Id:
- - 739d8433-f3fe-4b01-a7f6-3a53b29f6f26
+ - 41d1a5fd-d178-43ee-bd0f-19643554e205
Atl-Traceid:
- - 739d8433f3fe4b01a7f63a53b29f6f26
+ - 41d1a5fdd17843eebd0f19643554e205
Cache-Control:
- no-cache, no-store, no-transform
Connection:
@@ -8089,7 +8059,7 @@ interactions:
Content-Type:
- application/json;charset=UTF-8
Date:
- - Sat, 24 May 2025 10:33:13 GMT
+ - Thu, 03 Jul 2025 17:36:47 GMT
Nel:
- '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
"endpoint-1"}'
@@ -8099,7 +8069,7 @@ interactions:
Server:
- AtlassianEdge
Server-Timing:
- - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=216,atl-edge;dur=208,atl-edge-internal;dur=17,atl-edge-upstream;dur=192,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="sJw_vskszjNxgmTfOw_i0G4CWsGkOMI9JPRQpK294lDqwzJz3OW22w==",cdn-downstream-fbl;dur=220
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=208,atl-edge;dur=181,atl-edge-internal;dur=16,atl-edge-upstream;dur=165,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="DAH-pGaneNsbk8Pk2hVpVTvygw-MWdQqdk-962QtbdsaY5cOJE5RqA==",cdn-downstream-fbl;dur=213
Strict-Transport-Security:
- max-age=63072000; includeSubDomains; preload
Timing-Allow-Origin:
@@ -8109,15 +8079,15 @@ interactions:
Vary:
- Accept-Encoding
Via:
- - 1.1 74511018c757716e70d811d8214e45e0.cloudfront.net (CloudFront)
+ - 1.1 3201e5fb77f9faaa881f4f324226564a.cloudfront.net (CloudFront)
X-Aaccountid:
- 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
X-Amz-Cf-Id:
- - sJw_vskszjNxgmTfOw_i0G4CWsGkOMI9JPRQpK294lDqwzJz3OW22w==
+ - DAH-pGaneNsbk8Pk2hVpVTvygw-MWdQqdk-962QtbdsaY5cOJE5RqA==
X-Amz-Cf-Pop:
- - AMS1-P1
+ - AMS58-P3
X-Arequestid:
- - 7b4d25e0adaa7fa5aae839a1e173f2ae
+ - 36e0994812834d13a44c8c54535498b3
X-Cache:
- Miss from cloudfront
X-Content-Type-Options:
diff --git a/unittests/vcr/jira/JIRAImportAndPushTestApi.test_import_grouped_reopen_expired_risk_acceptance_with_finding_sync.yaml b/unittests/vcr/jira/JIRAImportAndPushTestApi.test_import_grouped_reopen_expired_risk_acceptance_with_finding_sync.yaml
new file mode 100644
index 00000000000..8dc9ff96ded
--- /dev/null
+++ b/unittests/vcr/jira/JIRAImportAndPushTestApi.test_import_grouped_reopen_expired_risk_acceptance_with_finding_sync.yaml
@@ -0,0 +1,8104 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:34:46.517+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - dcb6a679-0a08-4cdb-bb4d-137a2b43b630
+ Atl-Traceid:
+ - dcb6a6790a084cdbbb4d137a2b43b630
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:46 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=283,atl-edge;dur=254,atl-edge-internal;dur=14,atl-edge-upstream;dur=241,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="ZWLKUVwZajYNH0jSDy2FMQyCussaFUV_CTqUykb_uLfJnpzB8rdyyQ==",cdn-downstream-fbl;dur=288
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 0f98b23785e0aac311e2d09ea5460eb8.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - ZWLKUVwZajYNH0jSDy2FMQyCussaFUV_CTqUykb_uLfJnpzB8rdyyQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 74643911cb48903013bc1ad7e381b56e
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 1ff021a9-4800-4f93-b24c-c08b55d6053c
+ Atl-Traceid:
+ - 1ff021a948004f93b24cc08b55d6053c
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:46 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=366,atl-edge;dur=336,atl-edge-internal;dur=15,atl-edge-upstream;dur=321,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="iNw_BLQcDpkaUzk79pQJB4jvUSy0etKpdNIlZq0Jxsi2hZVq4BS4Jg==",cdn-downstream-fbl;dur=370
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 0bdea9339f79fea2216fd97b3f7856f2.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - iNw_BLQcDpkaUzk79pQJB4jvUSy0etKpdNIlZq0Jxsi2hZVq4BS4Jg==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - b0fc8e740f164f473167aad1313a2d81
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "High"}}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '3537'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: POST
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue
+ response:
+ body:
+ string: '{"id":"20648","key":"NTEST-3070","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648"}'
+ headers:
+ Atl-Request-Id:
+ - 6b7c1188-15ae-45e8-bf0c-98dc5dfc7013
+ Atl-Traceid:
+ - 6b7c118815ae45e8bf0c98dc5dfc7013
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:47 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=646,atl-edge;dur=616,atl-edge-internal;dur=16,atl-edge-upstream;dur=600,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="d0R-sa6xtBuBiEMmLFCuPtdv8Xm5SpvsC0Set5yRlgR8Q9pBE0oPEw==",cdn-downstream-fbl;dur=651
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 5bf4ed1052f9d87875430429ad189f42.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - d0R-sa6xtBuBiEMmLFCuPtdv8Xm5SpvsC0Set5yRlgR8Q9pBE0oPEw==
+ X-Amz-Cf-Pop:
+ - AMS58-P3
+ X-Arequestid:
+ - 6c8d1c148db62c1f7d8aa2c3c0c7e879
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:47.677+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:47.473+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - a2333ce6-138d-4564-8325-b961b77ecbbd
+ Atl-Traceid:
+ - a2333ce6138d45648325b961b77ecbbd
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:48 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=285,atl-edge;dur=257,atl-edge-internal;dur=14,atl-edge-upstream;dur=243,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="eNGfkOUeN2rDJXU3Vq1EIU-Z3JixiVyp817lIp3IJzwPD2Ncr8OP-Q==",cdn-downstream-fbl;dur=290
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 447163709b16a97083db09f6ac040b38.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - eNGfkOUeN2rDJXU3Vq1EIU-Z3JixiVyp817lIp3IJzwPD2Ncr8OP-Q==
+ X-Amz-Cf-Pop:
+ - AMS1-P1
+ X-Arequestid:
+ - c51755a3c941cf91c3a67bfe339a5296
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:47.677+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:47.473+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 71e1478d-09e3-411d-9d72-72c08c8ce223
+ Atl-Traceid:
+ - 71e1478d09e3411d9d7272c08c8ce223
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:48 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=241,atl-edge;dur=214,atl-edge-internal;dur=16,atl-edge-upstream;dur=198,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="H9mrsdP-08FEpO54VVwLnm9EIMyzLTIbRhYKKYxX8YpsBebPbhk6ag==",cdn-downstream-fbl;dur=248
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 adf2154fc698566cbee2ffdab8c37922.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - H9mrsdP-08FEpO54VVwLnm9EIMyzLTIbRhYKKYxX8YpsBebPbhk6ag==
+ X-Amz-Cf-Pop:
+ - AMS1-P2
+ X-Arequestid:
+ - 3987efd4a75c86a32d2d45d198e174c4
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:34:48.699+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - a99f4d8a-a5dd-41d7-8672-22d587ebb433
+ Atl-Traceid:
+ - a99f4d8aa5dd41d7867222d587ebb433
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:48 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=88,atl-edge;dur=80,atl-edge-internal;dur=14,atl-edge-upstream;dur=67,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="pOmk3O0XIXn1UFsyr6Gg31a6TqxnjKypYun_6V5wojyUJ5nV7JU4BA==",cdn-downstream-fbl;dur=93
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 6f348d610065e2c8eb4f3a0d2f7caa8e.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - pOmk3O0XIXn1UFsyr6Gg31a6TqxnjKypYun_6V5wojyUJ5nV7JU4BA==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - 3fefb679749764893905b4b790e46100
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 360807bc-e1c7-45fb-aeee-592559efc935
+ Atl-Traceid:
+ - 360807bce1c745fbaeee592559efc935
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:49 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=310,atl-edge;dur=281,atl-edge-internal;dur=15,atl-edge-upstream;dur=266,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="vcZ1lB1q1Bkc-fQZDyIPvlDfFUjByRJE28ZldRo6oyxC2VxK_owBSg==",cdn-downstream-fbl;dur=315
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 ae0d2a327c332a4081a71ea179abdd70.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - vcZ1lB1q1Bkc-fQZDyIPvlDfFUjByRJE28ZldRo6oyxC2VxK_owBSg==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - ba8ed83afd144b24e3439442df361c1d
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
+ Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361] in [Security
+ How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
+ Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
+ 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
+ 6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
+ (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
+ < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
+ 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "High"}}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '7007'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: POST
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue
+ response:
+ body:
+ string: '{"id":"20649","key":"NTEST-3071","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649"}'
+ headers:
+ Atl-Request-Id:
+ - d937b416-4367-49f2-83d4-3bb92deb15fc
+ Atl-Traceid:
+ - d937b416436749f283d43bb92deb15fc
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:49 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=643,atl-edge;dur=615,atl-edge-internal;dur=17,atl-edge-upstream;dur=599,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="k_NxfNBCX_l5-N9ws9bvkNxnI03EwM-SMl8xWxicDkIt_DihdtX1eg==",cdn-downstream-fbl;dur=648
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 7ce9bf658969fea1ceecfa00e5239dd6.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - k_NxfNBCX_l5-N9ws9bvkNxnI03EwM-SMl8xWxicDkIt_DihdtX1eg==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - 46645bf50a847299f38fb0618a08d26e
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:34:49.784+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:49.619+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
+ Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
+ 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
+ 6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - bca9d568-99c7-4224-9ec7-db7bf2c4fbc5
+ Atl-Traceid:
+ - bca9d56899c742249ec7db7bf2c4fbc5
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:50 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=227,atl-edge;dur=200,atl-edge-internal;dur=15,atl-edge-upstream;dur=185,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="55p0-Jvjx1O0mwG-qN0cjUAOmpEGlVAnKQ5iFcR_PcaIDm9eMAnskQ==",cdn-downstream-fbl;dur=232
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 cda23f0bbfe83784416efeada1ac1cf8.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 55p0-Jvjx1O0mwG-qN0cjUAOmpEGlVAnKQ5iFcR_PcaIDm9eMAnskQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - 04187595c40a8f73135194c511839a9e
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:34:49.784+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:49.619+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
+ Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
+ 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
+ 6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 374e5e13-6f15-4af7-bc8b-a117f7bb41e8
+ Atl-Traceid:
+ - 374e5e136f154af7bc8ba117f7bb41e8
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:50 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=190,atl-edge;dur=183,atl-edge-internal;dur=14,atl-edge-upstream;dur=168,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="rRpbaPmeXaHqf2cokFRCP7-9R0pAQ0AsYUZZkatRO1RE1u5TVwWIqA==",cdn-downstream-fbl;dur=195
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 9c7ba0aaf8652834e3f6b51b901da726.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - rRpbaPmeXaHqf2cokFRCP7-9R0pAQ0AsYUZZkatRO1RE1u5TVwWIqA==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - 2bc677aa10f1ccfb479ee1a2b3d9a452
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:34:50.696+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - cd3260eb-2de1-4e7a-95e5-7893bc30201d
+ Atl-Traceid:
+ - cd3260eb2de14e7a95e57893bc30201d
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:50 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=172,atl-edge;dur=143,atl-edge-internal;dur=15,atl-edge-upstream;dur=127,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="xfaGrv9s44y0t426Tvs2lIlx5uU0gyMeSrrzUlJiYXpTbF_74_YxTg==",cdn-downstream-fbl;dur=175
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 2f7b5be8899520ed019685dc425dc306.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - xfaGrv9s44y0t426Tvs2lIlx5uU0gyMeSrrzUlJiYXpTbF_74_YxTg==
+ X-Amz-Cf-Pop:
+ - AMS1-P1
+ X-Arequestid:
+ - dd1149674d686927e7420c437da901d7
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 63a6bc9b-19b2-4b63-8602-0b189fd87fe3
+ Atl-Traceid:
+ - 63a6bc9b19b24b6386020b189fd87fe3
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:51 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=290,atl-edge;dur=283,atl-edge-internal;dur=16,atl-edge-upstream;dur=267,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="vbUqeFjEa9bsrbgTYJURLl_QNSVKkeorhWFbCw0suIaC9F6AXgHsXA==",cdn-downstream-fbl;dur=295
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 5869d8337913ed7453262c3cf9c9a9e6.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - vbUqeFjEa9bsrbgTYJURLl_QNSVKkeorhWFbCw0suIaC9F6AXgHsXA==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - c2bf49758ea7862210667049edf8b173
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: fresh:0.3.0", "description": "\n\n\n\n\n\n\nA group
+ of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
+ [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/362] in [Security
+ How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version ||
+ Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
+ File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
+ versions of `fresh` are vulnerable to regular expression denial of service when
+ parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
+ Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "Medium"}}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2160'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: POST
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue
+ response:
+ body:
+ string: '{"id":"20650","key":"NTEST-3072","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650"}'
+ headers:
+ Atl-Request-Id:
+ - f877bece-989d-4e81-ac77-d395fa51e6a5
+ Atl-Traceid:
+ - f877bece989d4e81ac77d395fa51e6a5
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:51 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=653,atl-edge;dur=645,atl-edge-internal;dur=15,atl-edge-upstream;dur=630,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="R5emmhDjOVTZ3smoj7zAZWXzMrmVguDMba5LAzp2TYQf3n-OO6H4fQ==",cdn-downstream-fbl;dur=657
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 a44309111e5e1050ff485adaa4681ad0.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - R5emmhDjOVTZ3smoj7zAZWXzMrmVguDMba5LAzp2TYQf3n-OO6H4fQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - 3a06923b9f7a9be48782677134748672
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20650","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650","key":"NTEST-3072","fields":{"statuscategorychangedate":"2025-07-03T19:34:51.745+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:51.511+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qv:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:51.585+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/362]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
+ File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
+ versions of `fresh` are vulnerable to regular expression denial of service
+ when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
+ Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 477fd8d8-3ff9-479d-866c-8c5065f5f067
+ Atl-Traceid:
+ - 477fd8d83ff9479d866c8c5065f5f067
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:52 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=194,atl-edge;dur=186,atl-edge-internal;dur=15,atl-edge-upstream;dur=171,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="-O0Y5f8HyFaSwEKk6xCByailcQzwrwaNddaOj3-06iswn65PSRIc5w==",cdn-downstream-fbl;dur=198
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 480845f7432fb94c1c6d81f7845a67fe.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - -O0Y5f8HyFaSwEKk6xCByailcQzwrwaNddaOj3-06iswn65PSRIc5w==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 1f06d20f63f3b3ca2f3ce065afb55a13
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20650
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20650","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650","key":"NTEST-3072","fields":{"statuscategorychangedate":"2025-07-03T19:34:51.745+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:51.511+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qv:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:51.585+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/362]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
+ File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
+ versions of `fresh` are vulnerable to regular expression denial of service
+ when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
+ Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - f5c0e126-927c-43c8-a789-74fd3c391479
+ Atl-Traceid:
+ - f5c0e126927c43c8a78974fd3c391479
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:52 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=188,atl-edge;dur=160,atl-edge-internal;dur=16,atl-edge-upstream;dur=145,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="zmYQn_PwfxDHB4P_Os2QK3JcfTqVHROacfLHLUFz7Fal0vIeQ23xLg==",cdn-downstream-fbl;dur=192
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 c88ca2a75ca16a71cee4beefb2f6e6b8.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - zmYQn_PwfxDHB4P_Os2QK3JcfTqVHROacfLHLUFz7Fal0vIeQ23xLg==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - 6fadd6cda075dc3853ab8b0109c9dece
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"description": "Event test_added has occurred.", "title": "Test created
+ for Security How-to: 1st Quarter Engagement: NPM Audit Scan", "user": null,
+ "url_ui": "http://localhost:8080/test/90", "url_api": "http://localhost:8080/api/v2/tests/90/",
+ "product_type": {"name": "ebooks", "id": 2, "url_ui": "http://localhost:8080/product/type/2",
+ "url_api": "http://localhost:8080/api/v2/product_types/2/"}, "product": {"name":
+ "Security How-to", "id": 2, "url_ui": "http://localhost:8080/product/2", "url_api":
+ "http://localhost:8080/api/v2/products/2/"}, "engagement": {"name": "1st Quarter
+ Engagement", "id": 1, "url_ui": "http://localhost:8080/engagement/1", "url_api":
+ "http://localhost:8080/api/v2/engagements/1/"}, "test": {"title": null, "id":
+ 90, "url_ui": "http://localhost:8080/test/90", "url_api": "http://localhost:8080/api/v2/tests/90/"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Auth:
+ - Token xxx
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '844'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - DefectDojo-2.48.0-dev
+ X-DefectDojo-Event:
+ - test_added
+ X-DefectDojo-Instance:
+ - http://localhost:8080
+ method: POST
+ uri: http://webhook.endpoint:8080/post
+ response:
+ body:
+ string: "{\n \"args\": {},\n \"headers\": {\n \"Accept\": [\n \"application/json\"\n
+ \ ],\n \"Accept-Encoding\": [\n \"gzip, deflate\"\n ],\n \"Auth\":
+ [\n \"Token xxx\"\n ],\n \"Connection\": [\n \"keep-alive\"\n
+ \ ],\n \"Content-Length\": [\n \"844\"\n ],\n \"Content-Type\":
+ [\n \"application/json\"\n ],\n \"Host\": [\n \"webhook.endpoint:8080\"\n
+ \ ],\n \"User-Agent\": [\n \"DefectDojo-2.48.0-dev\"\n ],\n \"X-Defectdojo-Event\":
+ [\n \"test_added\"\n ],\n \"X-Defectdojo-Instance\": [\n \"http://localhost:8080\"\n
+ \ ]\n },\n \"method\": \"POST\",\n \"origin\": \"10.250.1.6:45498\",\n
+ \ \"url\": \"http://webhook.endpoint:8080/post\",\n \"data\": \"{\\\"description\\\":
+ \\\"Event test_added has occurred.\\\", \\\"title\\\": \\\"Test created for
+ Security How-to: 1st Quarter Engagement: NPM Audit Scan\\\", \\\"user\\\":
+ null, \\\"url_ui\\\": \\\"http://localhost:8080/test/90\\\", \\\"url_api\\\":
+ \\\"http://localhost:8080/api/v2/tests/90/\\\", \\\"product_type\\\": {\\\"name\\\":
+ \\\"ebooks\\\", \\\"id\\\": 2, \\\"url_ui\\\": \\\"http://localhost:8080/product/type/2\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/product_types/2/\\\"}, \\\"product\\\":
+ {\\\"name\\\": \\\"Security How-to\\\", \\\"id\\\": 2, \\\"url_ui\\\": \\\"http://localhost:8080/product/2\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/products/2/\\\"}, \\\"engagement\\\":
+ {\\\"name\\\": \\\"1st Quarter Engagement\\\", \\\"id\\\": 1, \\\"url_ui\\\":
+ \\\"http://localhost:8080/engagement/1\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/engagements/1/\\\"},
+ \\\"test\\\": {\\\"title\\\": null, \\\"id\\\": 90, \\\"url_ui\\\": \\\"http://localhost:8080/test/90\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/tests/90/\\\"}}\",\n \"files\":
+ {},\n \"form\": {},\n \"json\": {\n \"description\": \"Event test_added
+ has occurred.\",\n \"engagement\": {\n \"id\": 1,\n \"name\":
+ \"1st Quarter Engagement\",\n \"url_api\": \"http://localhost:8080/api/v2/engagements/1/\",\n
+ \ \"url_ui\": \"http://localhost:8080/engagement/1\"\n },\n \"product\":
+ {\n \"id\": 2,\n \"name\": \"Security How-to\",\n \"url_api\":
+ \"http://localhost:8080/api/v2/products/2/\",\n \"url_ui\": \"http://localhost:8080/product/2\"\n
+ \ },\n \"product_type\": {\n \"id\": 2,\n \"name\": \"ebooks\",\n
+ \ \"url_api\": \"http://localhost:8080/api/v2/product_types/2/\",\n \"url_ui\":
+ \"http://localhost:8080/product/type/2\"\n },\n \"test\": {\n \"id\":
+ 90,\n \"title\": null,\n \"url_api\": \"http://localhost:8080/api/v2/tests/90/\",\n
+ \ \"url_ui\": \"http://localhost:8080/test/90\"\n },\n \"title\":
+ \"Test created for Security How-to: 1st Quarter Engagement: NPM Audit Scan\",\n
+ \ \"url_api\": \"http://localhost:8080/api/v2/tests/90/\",\n \"url_ui\":
+ \"http://localhost:8080/test/90\",\n \"user\": null\n }\n}\n"
+ headers:
+ Access-Control-Allow-Credentials:
+ - 'true'
+ Access-Control-Allow-Origin:
+ - '*'
+ Content-Type:
+ - application/json; charset=utf-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:52 GMT
+ Transfer-Encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"description": "Event scan_added has occurred.", "title": "Created/Updated
+ 5 findings for Security How-to: 1st Quarter Engagement: NPM Audit Scan", "user":
+ null, "url_ui": "http://localhost:8080/test/90", "url_api": "http://localhost:8080/api/v2/tests/90/",
+ "product_type": {"name": "ebooks", "id": 2, "url_ui": "http://localhost:8080/product/type/2",
+ "url_api": "http://localhost:8080/api/v2/product_types/2/"}, "product": {"name":
+ "Security How-to", "id": 2, "url_ui": "http://localhost:8080/product/2", "url_api":
+ "http://localhost:8080/api/v2/products/2/"}, "engagement": {"name": "1st Quarter
+ Engagement", "id": 1, "url_ui": "http://localhost:8080/engagement/1", "url_api":
+ "http://localhost:8080/api/v2/engagements/1/"}, "test": {"title": null, "id":
+ 90, "url_ui": "http://localhost:8080/test/90", "url_api": "http://localhost:8080/api/v2/tests/90/"},
+ "finding_count": 5, "findings": {"new": [{"id": 233, "title": "2222Regular Expression
+ Denial of Service - (Negotiator, <= 0.6.0)", "severity": "High", "url_ui": "http://localhost:8080/finding/233",
+ "url_api": "http://localhost:8080/api/v2/findings/233/"}, {"id": 234, "title":
+ "Remote Code Execution - (Pg, < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7
+ || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5
+ || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2)",
+ "severity": "High", "url_ui": "http://localhost:8080/finding/234", "url_api":
+ "http://localhost:8080/api/v2/findings/234/"}, {"id": 232, "title": "Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)", "severity": "Medium",
+ "url_ui": "http://localhost:8080/finding/232", "url_api": "http://localhost:8080/api/v2/findings/232/"},
+ {"id": 235, "title": "Regular Expression Denial of Service - (Fresh, < 0.5.2)",
+ "severity": "Medium", "url_ui": "http://localhost:8080/finding/235", "url_api":
+ "http://localhost:8080/api/v2/findings/235/"}, {"id": 236, "title": "2222Remote
+ Code Execution - (Pg, < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >=
+ 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 ||
+ >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2)",
+ "severity": "Medium", "url_ui": "http://localhost:8080/finding/236", "url_api":
+ "http://localhost:8080/api/v2/findings/236/"}], "reactivated": [], "mitigated":
+ [], "untouched": []}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Auth:
+ - Token xxx
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2373'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - DefectDojo-2.48.0-dev
+ X-DefectDojo-Event:
+ - scan_added
+ X-DefectDojo-Instance:
+ - http://localhost:8080
+ method: POST
+ uri: http://webhook.endpoint:8080/post
+ response:
+ body:
+ string: "{\n \"args\": {},\n \"headers\": {\n \"Accept\": [\n \"application/json\"\n
+ \ ],\n \"Accept-Encoding\": [\n \"gzip, deflate\"\n ],\n \"Auth\":
+ [\n \"Token xxx\"\n ],\n \"Connection\": [\n \"keep-alive\"\n
+ \ ],\n \"Content-Length\": [\n \"2373\"\n ],\n \"Content-Type\":
+ [\n \"application/json\"\n ],\n \"Host\": [\n \"webhook.endpoint:8080\"\n
+ \ ],\n \"User-Agent\": [\n \"DefectDojo-2.48.0-dev\"\n ],\n \"X-Defectdojo-Event\":
+ [\n \"scan_added\"\n ],\n \"X-Defectdojo-Instance\": [\n \"http://localhost:8080\"\n
+ \ ]\n },\n \"method\": \"POST\",\n \"origin\": \"10.250.1.6:45506\",\n
+ \ \"url\": \"http://webhook.endpoint:8080/post\",\n \"data\": \"{\\\"description\\\":
+ \\\"Event scan_added has occurred.\\\", \\\"title\\\": \\\"Created/Updated
+ 5 findings for Security How-to: 1st Quarter Engagement: NPM Audit Scan\\\",
+ \\\"user\\\": null, \\\"url_ui\\\": \\\"http://localhost:8080/test/90\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/tests/90/\\\", \\\"product_type\\\":
+ {\\\"name\\\": \\\"ebooks\\\", \\\"id\\\": 2, \\\"url_ui\\\": \\\"http://localhost:8080/product/type/2\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/product_types/2/\\\"}, \\\"product\\\":
+ {\\\"name\\\": \\\"Security How-to\\\", \\\"id\\\": 2, \\\"url_ui\\\": \\\"http://localhost:8080/product/2\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/products/2/\\\"}, \\\"engagement\\\":
+ {\\\"name\\\": \\\"1st Quarter Engagement\\\", \\\"id\\\": 1, \\\"url_ui\\\":
+ \\\"http://localhost:8080/engagement/1\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/engagements/1/\\\"},
+ \\\"test\\\": {\\\"title\\\": null, \\\"id\\\": 90, \\\"url_ui\\\": \\\"http://localhost:8080/test/90\\\",
+ \\\"url_api\\\": \\\"http://localhost:8080/api/v2/tests/90/\\\"}, \\\"finding_count\\\":
+ 5, \\\"findings\\\": {\\\"new\\\": [{\\\"id\\\": 233, \\\"title\\\": \\\"2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)\\\", \\\"severity\\\":
+ \\\"High\\\", \\\"url_ui\\\": \\\"http://localhost:8080/finding/233\\\", \\\"url_api\\\":
+ \\\"http://localhost:8080/api/v2/findings/233/\\\"}, {\\\"id\\\": 234, \\\"title\\\":
+ \\\"Remote Code Execution - (Pg, < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0
+ < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >=
+ 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2)\\\", \\\"severity\\\": \\\"High\\\", \\\"url_ui\\\":
+ \\\"http://localhost:8080/finding/234\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/findings/234/\\\"},
+ {\\\"id\\\": 232, \\\"title\\\": \\\"Regular Expression Denial of Service
+ - (Negotiator, <= 0.6.0)\\\", \\\"severity\\\": \\\"Medium\\\", \\\"url_ui\\\":
+ \\\"http://localhost:8080/finding/232\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/findings/232/\\\"},
+ {\\\"id\\\": 235, \\\"title\\\": \\\"Regular Expression Denial of Service
+ - (Fresh, < 0.5.2)\\\", \\\"severity\\\": \\\"Medium\\\", \\\"url_ui\\\":
+ \\\"http://localhost:8080/finding/235\\\", \\\"url_api\\\": \\\"http://localhost:8080/api/v2/findings/235/\\\"},
+ {\\\"id\\\": 236, \\\"title\\\": \\\"2222Remote Code Execution - (Pg, < 2.11.2
+ || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 <
+ 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0
+ < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2)\\\", \\\"severity\\\": \\\"Medium\\\",
+ \\\"url_ui\\\": \\\"http://localhost:8080/finding/236\\\", \\\"url_api\\\":
+ \\\"http://localhost:8080/api/v2/findings/236/\\\"}], \\\"reactivated\\\":
+ [], \\\"mitigated\\\": [], \\\"untouched\\\": []}}\",\n \"files\": {},\n
+ \ \"form\": {},\n \"json\": {\n \"description\": \"Event scan_added has
+ occurred.\",\n \"engagement\": {\n \"id\": 1,\n \"name\": \"1st
+ Quarter Engagement\",\n \"url_api\": \"http://localhost:8080/api/v2/engagements/1/\",\n
+ \ \"url_ui\": \"http://localhost:8080/engagement/1\"\n },\n \"finding_count\":
+ 5,\n \"findings\": {\n \"mitigated\": [],\n \"new\": [\n {\n
+ \ \"id\": 233,\n \"severity\": \"High\",\n \"title\":
+ \"2222Regular Expression Denial of Service - (Negotiator, <= 0.6.0)\",\n \"url_api\":
+ \"http://localhost:8080/api/v2/findings/233/\",\n \"url_ui\": \"http://localhost:8080/finding/233\"\n
+ \ },\n {\n \"id\": 234,\n \"severity\": \"High\",\n
+ \ \"title\": \"Remote Code Execution - (Pg, < 2.11.2 || >= 3.0.0 <
+ 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0
+ < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >=
+ 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2)\",\n \"url_api\": \"http://localhost:8080/api/v2/findings/234/\",\n
+ \ \"url_ui\": \"http://localhost:8080/finding/234\"\n },\n
+ \ {\n \"id\": 232,\n \"severity\": \"Medium\",\n \"title\":
+ \"Regular Expression Denial of Service - (Negotiator, <= 0.6.0)\",\n \"url_api\":
+ \"http://localhost:8080/api/v2/findings/232/\",\n \"url_ui\": \"http://localhost:8080/finding/232\"\n
+ \ },\n {\n \"id\": 235,\n \"severity\": \"Medium\",\n
+ \ \"title\": \"Regular Expression Denial of Service - (Fresh, < 0.5.2)\",\n
+ \ \"url_api\": \"http://localhost:8080/api/v2/findings/235/\",\n \"url_ui\":
+ \"http://localhost:8080/finding/235\"\n },\n {\n \"id\":
+ 236,\n \"severity\": \"Medium\",\n \"title\": \"2222Remote
+ Code Execution - (Pg, < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 ||
+ >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5
+ || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 <
+ 7.1.2)\",\n \"url_api\": \"http://localhost:8080/api/v2/findings/236/\",\n
+ \ \"url_ui\": \"http://localhost:8080/finding/236\"\n }\n ],\n
+ \ \"reactivated\": [],\n \"untouched\": []\n },\n \"product\":
+ {\n \"id\": 2,\n \"name\": \"Security How-to\",\n \"url_api\":
+ \"http://localhost:8080/api/v2/products/2/\",\n \"url_ui\": \"http://localhost:8080/product/2\"\n
+ \ },\n \"product_type\": {\n \"id\": 2,\n \"name\": \"ebooks\",\n
+ \ \"url_api\": \"http://localhost:8080/api/v2/product_types/2/\",\n \"url_ui\":
+ \"http://localhost:8080/product/type/2\"\n },\n \"test\": {\n \"id\":
+ 90,\n \"title\": null,\n \"url_api\": \"http://localhost:8080/api/v2/tests/90/\",\n
+ \ \"url_ui\": \"http://localhost:8080/test/90\"\n },\n \"title\":
+ \"Created/Updated 5 findings for Security How-to: 1st Quarter Engagement:
+ NPM Audit Scan\",\n \"url_api\": \"http://localhost:8080/api/v2/tests/90/\",\n
+ \ \"url_ui\": \"http://localhost:8080/test/90\",\n \"user\": null\n }\n}\n"
+ headers:
+ Access-Control-Allow-Credentials:
+ - 'true'
+ Access-Control-Allow-Origin:
+ - '*'
+ Content-Type:
+ - application/json; charset=utf-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:52 GMT
+ Transfer-Encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:34:52.731+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - f8acf1b0-dd9f-458f-8b17-1211933904e0
+ Atl-Traceid:
+ - f8acf1b0dd9f458f8b171211933904e0
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:52 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=94,atl-edge;dur=86,atl-edge-internal;dur=13,atl-edge-upstream;dur=73,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="Eo3Qfhk6wnacAQrP5fhjTMmCn6ass3-z1kovO83SriJ8xfcZqBkpMg==",cdn-downstream-fbl;dur=99
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 6592b72953c66e8c26c29c332cf2edf0.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - Eo3Qfhk6wnacAQrP5fhjTMmCn6ass3-z1kovO83SriJ8xfcZqBkpMg==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 7498f705ee95f4a08ef352611c5d27ad
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:47.677+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:47.473+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - cc96e97d-a140-4656-aa75-1ebcf1dee703
+ Atl-Traceid:
+ - cc96e97da1404656aa751ebcf1dee703
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:53 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=215,atl-edge;dur=208,atl-edge-internal;dur=14,atl-edge-upstream;dur=194,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="TJ4U5EO9yVgDw-aQSMGB58CXr2GCMOxZvhdq0SFKgymNPRvDhbubEA==",cdn-downstream-fbl;dur=221
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 77774663cd471a2b20da2890eff7e1a0.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - TJ4U5EO9yVgDw-aQSMGB58CXr2GCMOxZvhdq0SFKgymNPRvDhbubEA==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 75a87c308d3426ca8da178eab74802a3
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:34:53.233+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - ade34d58-11b1-4120-8454-5e28f9dfa8bc
+ Atl-Traceid:
+ - ade34d5811b1412084545e28f9dfa8bc
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:53 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=103,atl-edge;dur=95,atl-edge-internal;dur=21,atl-edge-upstream;dur=75,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="XYjzLIunY04tluetqt8f-Ya6QGSFFfRU-_E0VMYCAYWrE3OD5Vg5sA==",cdn-downstream-fbl;dur=107
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 c27d2e9d4c6e59d1b92ac8671f0bfb9c.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - XYjzLIunY04tluetqt8f-Ya6QGSFFfRU-_E0VMYCAYWrE3OD5Vg5sA==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - a580b44a8295b4a03bc4d48415986d9b
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:47.677+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:47.473+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - ee13990e-d6fa-4c60-94db-d649fb9a704b
+ Atl-Traceid:
+ - ee13990ed6fa4c6094dbd649fb9a704b
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:53 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=202,atl-edge;dur=171,atl-edge-internal;dur=14,atl-edge-upstream;dur=157,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="KkJdYdFB_ILegdECPpLuU3mWKQCdURTBFPpJu0BuPpEXFYH0ycKd1A==",cdn-downstream-fbl;dur=205
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 0be6ab2f92b7567e05a874f049abbbe6.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - KkJdYdFB_ILegdECPpLuU3mWKQCdURTBFPpJu0BuPpEXFYH0ycKd1A==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - b2a10a094e7b365373fd993685db38cc
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 5d2156a4-6b5b-45be-9fcf-75adc5b21652
+ Atl-Traceid:
+ - 5d2156a46b5b45be9fcf75adc5b21652
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:53 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=273,atl-edge;dur=265,atl-edge-internal;dur=16,atl-edge-upstream;dur=249,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="a1VD6Sxf-7IHFsGVuasinRVzK_s0yDnEBBDjOJSv1EyMk39AbEOaDg==",cdn-downstream-fbl;dur=278
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 eb5552d4fb69ca0d0578ffa97b7b08fa.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - a1VD6Sxf-7IHFsGVuasinRVzK_s0yDnEBBDjOJSv1EyMk39AbEOaDg==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - 2a8ee724ff01c779f88275a022f4c5f5
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "High"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '3568'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - ff800518-ef2b-44d6-b970-3ae819b352be
+ Atl-Traceid:
+ - ff800518ef2b44d6b9703ae819b352be
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:55 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=469,atl-edge;dur=459,atl-edge-internal;dur=17,atl-edge-upstream;dur=442,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="Zz63rulPyoCUsC2m4_3zDVwiTKHjP8u-uVyGVyr20h3FqH9ycMc-Cw==",cdn-downstream-fbl;dur=476
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 9bc84c94880403a2bdfe0bc8f1800e4e.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - Zz63rulPyoCUsC2m4_3zDVwiTKHjP8u-uVyGVyr20h3FqH9ycMc-Cw==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 47e0100159585401620b3d434d0fe9f3
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:47.677+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:55.280+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 6542227e-1110-44c1-a856-6aa1b257ef70
+ Atl-Traceid:
+ - 6542227e111044c1a8566aa1b257ef70
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:55 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="-zJVVPGfAa8HO1RlhswqjzKVOKjpZRPTQvvDTcMoB5upIUDzdHJoPA==",cdn-downstream-fbl;dur=221,cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=22,cdn-upstream-fbl;dur=218,atl-edge;dur=187,atl-edge-internal;dur=16,atl-edge-upstream;dur=172,atl-edge-pop;desc="aws-eu-central-1"
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 64e65d847e47fbcbf4dc70bc1c185676.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - -zJVVPGfAa8HO1RlhswqjzKVOKjpZRPTQvvDTcMoB5upIUDzdHJoPA==
+ X-Amz-Cf-Pop:
+ - AMS58-P3
+ X-Arequestid:
+ - 033e4b300eb521f89b59ceada7cf5709
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:34:55.971+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - 99b338b7-3563-40cb-936e-eabca2bbcd9a
+ Atl-Traceid:
+ - 99b338b7356340cb936eeabca2bbcd9a
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:55 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=93,atl-edge;dur=85,atl-edge-internal;dur=14,atl-edge-upstream;dur=71,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="gwD95y5BJdsM5Ee5hGoXCOAI_epxQubb8QtKlFEWneLMXIdiHWlbzQ==",cdn-downstream-fbl;dur=98
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 eb78cbb81a4ab555c78ae1168deff6e2.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - gwD95y5BJdsM5Ee5hGoXCOAI_epxQubb8QtKlFEWneLMXIdiHWlbzQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 77b302a5b35deb0c7a2d2966be9a0275
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:47.677+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:55.280+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 3f85dfc5-2a5e-40b3-a5c5-73d119296404
+ Atl-Traceid:
+ - 3f85dfc52a5e40b3a5c573d119296404
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:56 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=151,atl-edge;dur=143,atl-edge-internal;dur=16,atl-edge-upstream;dur=126,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="UXzOFmlOveyyzgSUC02Ch5xpltg5vlfZhR8QANaGNz9JjB-bZUzIRQ==",cdn-downstream-fbl;dur=158
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 416dae0837568c2bb7cea7ae5c6bba22.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - UXzOFmlOveyyzgSUC02Ch5xpltg5vlfZhR8QANaGNz9JjB-bZUzIRQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - 85ac0e688a079287adba3acda2984050
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 9d2adb7c-f141-45cb-980d-47ffe2abe4e7
+ Atl-Traceid:
+ - 9d2adb7cf14145cb980d47ffe2abe4e7
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:56 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=321,atl-edge;dur=313,atl-edge-internal;dur=16,atl-edge-upstream;dur=297,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="R8uD3msxuEDLxHoXaOflWoDH_FdGKNNrsRSX5Df6ocnXfUs1d6a9qg==",cdn-downstream-fbl;dur=325
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 7785d4956cb908a17db2e556c11a4ea4.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - R8uD3msxuEDLxHoXaOflWoDH_FdGKNNrsRSX5Df6ocnXfUs1d6a9qg==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 1bfea1f8da8351fb2607dd4efac9d7df
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
+ Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "Lowest"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '3579'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 49b9104b-f719-4fd1-9b47-7e02b9bb3eb2
+ Atl-Traceid:
+ - 49b9104bf7194fd19b477e02b9bb3eb2
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:57 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=464,atl-edge;dur=455,atl-edge-internal;dur=14,atl-edge-upstream;dur=440,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="lfz3dlfGcnvc5B9CpH87JokD7u2sU9UPJFkKVezndirwRgMfJOtCRA==",cdn-downstream-fbl;dur=472
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 8bb90d44758ce70476efdf577c8bd268.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - lfz3dlfGcnvc5B9CpH87JokD7u2sU9UPJFkKVezndirwRgMfJOtCRA==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - 3e79c5402f58258ea211af0284aadad9
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:47.677+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:56.963+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
+ Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - f8bcb72c-517d-40a3-8876-6f343a834dd7
+ Atl-Traceid:
+ - f8bcb72c517d40a388766f343a834dd7
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:57 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=185,atl-edge;dur=158,atl-edge-internal;dur=15,atl-edge-upstream;dur=143,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="xTV8RjmSKo4s2B2wf1MvJ53PMnmSj4kWZTzkPJR6TvoY70IMzJO-bw==",cdn-downstream-fbl;dur=189
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 38ff23673937c3eba42a4eefb2007078.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - xTV8RjmSKo4s2B2wf1MvJ53PMnmSj4kWZTzkPJR6TvoY70IMzJO-bw==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 23c10ff72432a75afb28a66ec32262d7
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"transition": {"id": 41}, "fields": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '40'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: POST
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/transitions
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 7b11c497-81f7-4411-aff1-e1852e05ef28
+ Atl-Traceid:
+ - 7b11c49781f74411aff1e1852e05ef28
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - text/html;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:57 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=401,atl-edge;dur=392,atl-edge-internal;dur=15,atl-edge-upstream;dur=377,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="05AlYpwLiffMAJkW2-VbWqLLpgPoKTbZs4-cQdtRlV64D0jNECK7BA==",cdn-downstream-fbl;dur=405
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 941049c97e511f86acc1525badae21c2.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 05AlYpwLiffMAJkW2-VbWqLLpgPoKTbZs4-cQdtRlV64D0jNECK7BA==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - d4e6eb88aab89240b56df8b4288cb193
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:34:58.206+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - 417f5b8d-0c10-4e6e-8ff4-454192e69ca9
+ Atl-Traceid:
+ - 417f5b8d0c104e6e8ff4454192e69ca9
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:58 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=153,atl-edge;dur=145,atl-edge-internal;dur=15,atl-edge-upstream;dur=130,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="5ytu9L3FeKXeUy0RLffXCdcZenRhs65aXPTikq_kT3gvASDy99MQUg==",cdn-downstream-fbl;dur=158
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 12d69f39c905d1c9441d392eddc25066.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 5ytu9L3FeKXeUy0RLffXCdcZenRhs65aXPTikq_kT3gvASDy99MQUg==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 4cc40bfd4eb9fe623f37c36cbd152cda
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:34:49.784+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:49.619+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
+ Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
+ 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
+ 6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - caa5b3cc-553c-4339-84a8-7cb0721e9484
+ Atl-Traceid:
+ - caa5b3cc553c433984a87cb0721e9484
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:58 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=233,atl-edge;dur=203,atl-edge-internal;dur=14,atl-edge-upstream;dur=189,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="pLfpXZIb9Os3qRIWXghHxcjzXZWM8ttgyFM7eDF-P8ngxpq9Xcpliw==",cdn-downstream-fbl;dur=237
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 ec2f767a4113b6a2b366ac7622dad01e.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - pLfpXZIb9Os3qRIWXghHxcjzXZWM8ttgyFM7eDF-P8ngxpq9Xcpliw==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 166240ecd625389c9bb949072f8b263a
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 03ef7091-ee96-4118-9280-86b7c337da95
+ Atl-Traceid:
+ - 03ef7091ee964118928086b7c337da95
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:58 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=328,atl-edge;dur=299,atl-edge-internal;dur=15,atl-edge-upstream;dur=284,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="hJ-VbzRJad8ibtMKsuaQL7pF8343LEdVADYO_Kv9PdghzkCuCUk2mA==",cdn-downstream-fbl;dur=333
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 bb69678e2a9bd96a2b2aa070ba9687a4.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - hJ-VbzRJad8ibtMKsuaQL7pF8343LEdVADYO_Kv9PdghzkCuCUk2mA==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - 576bab6f70259c88b6eb6554fa071fe8
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
+ Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361] in [Security
+ How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote Code
+ Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect Dojo
+ link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due Date:*
+ Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
+ (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
+ < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
+ 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "Medium"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '7040'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 4c8e7a74-dc23-45b1-bb68-6b4a71685aec
+ Atl-Traceid:
+ - 4c8e7a74dc2345b1bb686b4a71685aec
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:59 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=441,atl-edge;dur=432,atl-edge-internal;dur=15,atl-edge-upstream;dur=417,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="KwQVk1C_YJyYPve06EAmSi8aWJ1CREDQus679h8r9xU7Pg9pZ8Z4mg==",cdn-downstream-fbl;dur=446
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 7cc8e1a489398403da487298ad363b2a.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - KwQVk1C_YJyYPve06EAmSi8aWJ1CREDQus679h8r9xU7Pg9pZ8Z4mg==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - dee0eb6b0922a485895513721aada5a3
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:34:49.784+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:59.261+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - b8c17cad-aa99-43a7-8ec5-c7453efcd60b
+ Atl-Traceid:
+ - b8c17cadaa9943a78ec5c7453efcd60b
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:34:59 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=219,atl-edge;dur=211,atl-edge-internal;dur=13,atl-edge-upstream;dur=198,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="eV4twB_MRiUinydVCZhw0jCPyUYt1gDciq2J6W6PODNgwfe7f6DwSA==",cdn-downstream-fbl;dur=223
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 916d412afdd39cf0d9689036f0f43bb4.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - eV4twB_MRiUinydVCZhw0jCPyUYt1gDciq2J6W6PODNgwfe7f6DwSA==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - 09b7a485c588361f2bc2f97106c90bc7
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:35:00.006+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - 1861b173-16fa-42d9-9c93-158e96ce032d
+ Atl-Traceid:
+ - 1861b17316fa42d99c93158e96ce032d
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:00 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=186,atl-edge;dur=155,atl-edge-internal;dur=14,atl-edge-upstream;dur=141,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="6rgmrpfNwr5uS8AQPXh6PxZvpDpSb1vfCFAi-XDu7IycVN_XdvWUGg==",cdn-downstream-fbl;dur=190
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 b6b3214c2f1500227643824508cb5d1c.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 6rgmrpfNwr5uS8AQPXh6PxZvpDpSb1vfCFAi-XDu7IycVN_XdvWUGg==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 59e9179be15e0868291e8c49e9218e95
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20650
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20650","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650","key":"NTEST-3072","fields":{"statuscategorychangedate":"2025-07-03T19:34:51.745+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:51.511+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qv:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:51.585+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/362]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
+ File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
+ versions of `fresh` are vulnerable to regular expression denial of service
+ when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
+ Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 9a73c3ab-411b-47ad-b2ef-48a6ab2613f8
+ Atl-Traceid:
+ - 9a73c3ab411b47adb2ef48a6ab2613f8
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:00 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=212,atl-edge;dur=204,atl-edge-internal;dur=15,atl-edge-upstream;dur=189,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="ixothl3CxG_RSa0S4PF_xOzojO89a_EvbSY_Wm_BORHtFlQGzOXoeg==",cdn-downstream-fbl;dur=216
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 0f9c1f26e53d95127196e190a08a56b8.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - ixothl3CxG_RSa0S4PF_xOzojO89a_EvbSY_Wm_BORHtFlQGzOXoeg==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - 987da6f9469fef1a587dceb7786b44cc
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - b8010214-610c-40e1-91a8-04aff7d20377
+ Atl-Traceid:
+ - b8010214610c40e191a804aff7d20377
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:00 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=222,atl-edge;dur=214,atl-edge-internal;dur=15,atl-edge-upstream;dur=200,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="GZugrEmzhHQMMT-kFfZpbm2eHjAti257GWixP6VQHM_Jt-p7Icxd_w==",cdn-downstream-fbl;dur=226
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 e2415f0dddb9778029172ab73eec1388.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - GZugrEmzhHQMMT-kFfZpbm2eHjAti257GWixP6VQHM_Jt-p7Icxd_w==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 8de9bd550f04756848503af3a9272cc9
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: fresh:0.3.0", "description": "\n\n\n\n\n\n\nA group
+ of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
+ [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/362] in [Security
+ How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Regular Expression
+ Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
+ File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
+ versions of `fresh` are vulnerable to regular expression denial of service when
+ parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
+ Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "Lowest"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2183'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20650
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - c01f9848-37f3-4003-864a-50376fe3a2e7
+ Atl-Traceid:
+ - c01f984837f34003864a50376fe3a2e7
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:01 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=485,atl-edge;dur=476,atl-edge-internal;dur=15,atl-edge-upstream;dur=461,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="hUPH82G540x4QNKoYSUGzNYcrP_ptw0XLKd43aQu3780lPLnoEaUlQ==",cdn-downstream-fbl;dur=494
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 6592b72953c66e8c26c29c332cf2edf0.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - hUPH82G540x4QNKoYSUGzNYcrP_ptw0XLKd43aQu3780lPLnoEaUlQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - fdefab7c0bb2c9e52243880f2efead6e
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20650
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20650","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650","key":"NTEST-3072","fields":{"statuscategorychangedate":"2025-07-03T19:34:51.745+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:51.511+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qv:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:01.029+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/362]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
+ File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
+ versions of `fresh` are vulnerable to regular expression denial of service
+ when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
+ Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 515197bc-9115-4ce4-a036-df45bdaa022b
+ Atl-Traceid:
+ - 515197bc91154ce4a036df45bdaa022b
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:01 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=266,atl-edge;dur=259,atl-edge-internal;dur=17,atl-edge-upstream;dur=242,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="CkKPn4yChx_pmPQz2Pfgifbz9Nw2pjaIpHdXWh-TIjbG3zTMJez1KQ==",cdn-downstream-fbl;dur=271
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 20048fca6de376fc3e9a3975b6f01be4.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - CkKPn4yChx_pmPQz2Pfgifbz9Nw2pjaIpHdXWh-TIjbG3zTMJez1KQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - 3dee12d2aaaa265f16331d05fdf0dd1a
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"transition": {"id": 41}, "fields": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '40'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: POST
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/transitions
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 230d5fa8-d4e2-4671-a859-3afadbe629bf
+ Atl-Traceid:
+ - 230d5fa8d4e24671a8593afadbe629bf
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - text/html;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:02 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=489,atl-edge;dur=480,atl-edge-internal;dur=15,atl-edge-upstream;dur=465,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="jAjYGrniBD-IqVIwYPEnxDUoD3JlGm6pMb3MWx7OdePXNTy7_SLJCg==",cdn-downstream-fbl;dur=492
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 0e12b175c31e0e750266df78bf0e1068.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - jAjYGrniBD-IqVIwYPEnxDUoD3JlGm6pMb3MWx7OdePXNTy7_SLJCg==
+ X-Amz-Cf-Pop:
+ - AMS1-P1
+ X-Arequestid:
+ - b1332ff6013696fd7d9129d5e7b41541
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:35:02.334+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - e55ecdb3-1931-4398-b475-be118e505fb2
+ Atl-Traceid:
+ - e55ecdb319314398b475be118e505fb2
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:02 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=93,atl-edge;dur=85,atl-edge-internal;dur=12,atl-edge-upstream;dur=73,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="r4n8kc-MAk_doHgMdd1Gf5W244d9fgD__HkHuu9Lu7msPTN9X0Mb7Q==",cdn-downstream-fbl;dur=98
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 21fa1f710ba39237a1fbf11df235dc68.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - r4n8kc-MAk_doHgMdd1Gf5W244d9fgD__HkHuu9Lu7msPTN9X0Mb7Q==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - c13e89dec1eda340f08dbd65aea2b9c3
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:34:49.784+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:59.261+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 6846b34c-84a2-49af-8396-70765a51826b
+ Atl-Traceid:
+ - 6846b34c84a249af839670765a51826b
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:02 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=292,atl-edge;dur=263,atl-edge-internal;dur=16,atl-edge-upstream;dur=248,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="BbCC0khRBIEPiJni7qYL9_l2rR-N-mqMdif_JK7k4oaIpk-uZ-7YCA==",cdn-downstream-fbl;dur=297
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 20048fca6de376fc3e9a3975b6f01be4.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - BbCC0khRBIEPiJni7qYL9_l2rR-N-mqMdif_JK7k4oaIpk-uZ-7YCA==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - c138982db857faf047edaf3219c54714
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 401d0d21-6c98-40e7-8823-f33dd16fffcf
+ Atl-Traceid:
+ - 401d0d216c9840e78823f33dd16fffcf
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:03 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=302,atl-edge;dur=273,atl-edge-internal;dur=15,atl-edge-upstream;dur=257,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="uOsBUxfEZKikb6vZfJspQAlFAAoBoxiOwBXDAj6kkmP5brU8ZXrE7Q==",cdn-downstream-fbl;dur=306
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 1fb7ef67aaeb45ceb86b21babb0ba848.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - uOsBUxfEZKikb6vZfJspQAlFAAoBoxiOwBXDAj6kkmP5brU8ZXrE7Q==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - bbcd6d7ab0ff0f36d6b786e81fdd5a09
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
+ Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361] in [Security
+ How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
+ Verified, Risk Accepted|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote Code
+ Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect Dojo
+ link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due Date:*
+ Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
+ (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
+ < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
+ 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "Lowest"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '7049'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 277a6a50-85a7-459d-a658-6921b2c8e2fa
+ Atl-Traceid:
+ - 277a6a5085a7459da6586921b2c8e2fa
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:03 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=465,atl-edge;dur=457,atl-edge-internal;dur=14,atl-edge-upstream;dur=443,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="uRo1IZG1ONLWobEldPFOpC9SNSdlUBvWRw7MwG1vnaRXEYo2UEO2pg==",cdn-downstream-fbl;dur=471
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 2fb699a7d2ee3ddd9b1caad139f90e76.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - uRo1IZG1ONLWobEldPFOpC9SNSdlUBvWRw7MwG1vnaRXEYo2UEO2pg==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - 91901d5eb0647a1b5cd293a45908d6c1
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:34:49.784+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:03.472+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
+ Verified, Risk Accepted|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 3c32016a-e927-4554-86e0-43c6a6847c76
+ Atl-Traceid:
+ - 3c32016ae927455486e043c6a6847c76
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:03 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=172,atl-edge;dur=164,atl-edge-internal;dur=15,atl-edge-upstream;dur=149,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="53owEmVO_XeRau0JDmse3aaLNEa5YSFHlRWzhAsxjvTFfBZrn3ayxg==",cdn-downstream-fbl;dur=176
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 7d758b616f5473c7b4bee1c49ecfa98a.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 53owEmVO_XeRau0JDmse3aaLNEa5YSFHlRWzhAsxjvTFfBZrn3ayxg==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - 58219131df83fd1e1ff3a36af0f34f98
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"transition": {"id": 41}, "fields": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '40'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: POST
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/transitions
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 562b7ad2-f669-4ef2-bfc3-abb1349312da
+ Atl-Traceid:
+ - 562b7ad2f6694ef2bfc3abb1349312da
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - text/html;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:04 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=384,atl-edge;dur=354,atl-edge-internal;dur=17,atl-edge-upstream;dur=337,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="mYIwxxl4fCUJM_voQJRAJbGmrIjuofw8yKmku8NufHxigAZJqUO8lA==",cdn-downstream-fbl;dur=388
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 6f348d610065e2c8eb4f3a0d2f7caa8e.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - mYIwxxl4fCUJM_voQJRAJbGmrIjuofw8yKmku8NufHxigAZJqUO8lA==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - 3489dfeaaf62dcdf25c44e321416b49e
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:35:04.637+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - d7ad33ed-b22c-466d-a016-49de918ce847
+ Atl-Traceid:
+ - d7ad33edb22c466da01649de918ce847
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:04 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=96,atl-edge;dur=88,atl-edge-internal;dur=13,atl-edge-upstream;dur=75,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="lz9r9q1LbUi5BTsCzU-yaGCow_AlSx_ymx-bXRYcDXLCplx7uTizsQ==",cdn-downstream-fbl;dur=100
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 7b80fdb7de25e1eb41eb907750147f34.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - lz9r9q1LbUi5BTsCzU-yaGCow_AlSx_ymx-bXRYcDXLCplx7uTizsQ==
+ X-Amz-Cf-Pop:
+ - AMS1-P2
+ X-Arequestid:
+ - 9a011871d09bcf589ad79d0b594b2a77
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:57.751+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:34:57.740+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10353_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:57.750+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
+ Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - d49b0714-2634-4d71-941d-8ea418c39fd7
+ Atl-Traceid:
+ - d49b071426344d71941d8ea418c39fd7
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:04 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=158,atl-edge;dur=151,atl-edge-internal;dur=14,atl-edge-upstream;dur=137,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="7g0cQPrZHbroxQxaPy_5TaxXEZ5hstxylpLCGETNZZJINr9_93TbxQ==",cdn-downstream-fbl;dur=162
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 24145882259ee3aa55cb95d62adb00ea.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 7g0cQPrZHbroxQxaPy_5TaxXEZ5hstxylpLCGETNZZJINr9_93TbxQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - f8c0591c4f84027eac0e407880506b4a
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:35:05.110+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - 3a3c29fc-d1d4-4026-913c-c3863322eb5f
+ Atl-Traceid:
+ - 3a3c29fcd1d44026913cc3863322eb5f
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:05 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=98,atl-edge;dur=90,atl-edge-internal;dur=15,atl-edge-upstream;dur=76,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="uyyZbz-jhDiEFkXtjGKVrvTUXmbPFHeanJQy0fXUdTCHtt1SEIK2Pg==",cdn-downstream-fbl;dur=102
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 432282689bafd802e8ec9636c256a3b0.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - uyyZbz-jhDiEFkXtjGKVrvTUXmbPFHeanJQy0fXUdTCHtt1SEIK2Pg==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 506f42df903c32cb185e04b94a9dc4af
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:57.751+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:34:57.740+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10353_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:34:57.750+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Inactive,
+ Verified, Risk Accepted|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - bd5a3b3e-b90e-43c5-9c09-f739259e1d34
+ Atl-Traceid:
+ - bd5a3b3eb90e43c59c09f739259e1d34
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:05 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=182,atl-edge;dur=155,atl-edge-internal;dur=15,atl-edge-upstream;dur=140,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="EjT09ESGFO6F57nAat58f_m8nFBU_gpeEXlpiRZm3mkXThosPKEbgw==",cdn-downstream-fbl;dur=186
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 9a81383d5a4095cd87ee33985e4b2bf8.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - EjT09ESGFO6F57nAat58f_m8nFBU_gpeEXlpiRZm3mkXThosPKEbgw==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - 64ba6043cf83a5a7610267e4acd1a442
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 215937fd-cc20-4d4e-845f-1a1f557b988e
+ Atl-Traceid:
+ - 215937fdcc204d4e845f1a1f557b988e
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:05 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=230,atl-edge;dur=222,atl-edge-internal;dur=14,atl-edge-upstream;dur=208,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="3X6s4QSVlI3jAJl-3xN-n72azt1IgnFipPESvu7uuhjyRjv-DR7alw==",cdn-downstream-fbl;dur=235
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 38ff23673937c3eba42a4eefb2007078.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 3X6s4QSVlI3jAJl-3xN-n72azt1IgnFipPESvu7uuhjyRjv-DR7alw==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - f3e7f8167a2dfddb430ac96f7381466d
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "High"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '3568'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - c9545685-0094-4e10-b9a1-d324f162727f
+ Atl-Traceid:
+ - c954568500944e10b9a1d324f162727f
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:06 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=486,atl-edge;dur=478,atl-edge-internal;dur=15,atl-edge-upstream;dur=463,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P1",cdn-rid;desc="XKFFdsJnQRZiFydum_FHmceRSga0pmgOplv1HgkCDL55VtlxRrD72g==",cdn-downstream-fbl;dur=490
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 a4583a5b47f0a64ec35be32f95ac1b46.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - XKFFdsJnQRZiFydum_FHmceRSga0pmgOplv1HgkCDL55VtlxRrD72g==
+ X-Amz-Cf-Pop:
+ - AMS1-P1
+ X-Arequestid:
+ - b327c56efd1fbf3fce55ff48256898e2
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:34:57.751+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:34:57.740+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10353_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:06.025+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 8cdbfe26-b5d3-4d85-86f7-d23dde3cc19d
+ Atl-Traceid:
+ - 8cdbfe26b5d34d8586f7d23dde3cc19d
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:06 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=227,atl-edge;dur=219,atl-edge-internal;dur=15,atl-edge-upstream;dur=203,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="4l2ZFNToeRPA1arubcxpWfKRMQJdLXuOSxRLjIyMhvvgWpfHeuxXhw==",cdn-downstream-fbl;dur=231
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 b96dc0b769a91a3fe5483b063383b1c8.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 4l2ZFNToeRPA1arubcxpWfKRMQJdLXuOSxRLjIyMhvvgWpfHeuxXhw==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 00315cecd677a10c4dceb30f871dce1e
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"transition": {"id": 11}, "fields": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '40'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: POST
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/transitions
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 78dba2eb-c46c-4323-9644-11d172f7cd07
+ Atl-Traceid:
+ - 78dba2ebc46c4323964411d172f7cd07
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - text/html;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:07 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=369,atl-edge;dur=361,atl-edge-internal;dur=14,atl-edge-upstream;dur=347,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="L2VoiIvQOUpURuhtPdAb_9h-fTT730L5WT9pA6N64miSPRFEGbWnhQ==",cdn-downstream-fbl;dur=373
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 36a7c1e18cbe5ff8281d77427bf1c0e6.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - L2VoiIvQOUpURuhtPdAb_9h-fTT730L5WT9pA6N64miSPRFEGbWnhQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - 6ceae8cbeafb38fb8d01e3b01823cbf8
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:35:07.267+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - 52190ce1-481c-4d6a-8832-b9a6a498e7f4
+ Atl-Traceid:
+ - 52190ce1481c4d6a8832b9a6a498e7f4
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:07 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=115,atl-edge;dur=87,atl-edge-internal;dur=14,atl-edge-upstream;dur=73,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P3",cdn-rid;desc="1D3C6Qj-SWi7OCc96xa2imWu6-NEUsoWQWfM08FJSyz4TFw_M2sfLg==",cdn-downstream-fbl;dur=119
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 46e82159f07d7f814d9b72723b038152.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 1D3C6Qj-SWi7OCc96xa2imWu6-NEUsoWQWfM08FJSyz4TFw_M2sfLg==
+ X-Amz-Cf-Pop:
+ - AMS58-P3
+ X-Arequestid:
+ - 3cf7e43aac433eefd9d49b211cf20a95
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:35:04.227+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:35:04.219+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_14691_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:04.226+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Inactive,
+ Verified, Risk Accepted|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 54530aab-5058-4bbd-9157-acb0f67e50fd
+ Atl-Traceid:
+ - 54530aab50584bbd9157acb0f67e50fd
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:07 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=182,atl-edge;dur=154,atl-edge-internal;dur=15,atl-edge-upstream;dur=138,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="qHPkLmPK2qA_j6rAMXAsCVsQWs_-Gj5e7ypy4f7vSTl1tJTdV2x_TA==",cdn-downstream-fbl;dur=187
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 ca0e18fe48e6994b3446a58a1e05c1ce.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - qHPkLmPK2qA_j6rAMXAsCVsQWs_-Gj5e7ypy4f7vSTl1tJTdV2x_TA==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - 46c8bf6be670a028185d6d3eaa7f874d
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 4afff082-1468-4e3b-96e7-e258e475e4dd
+ Atl-Traceid:
+ - 4afff08214684e3b96e7e258e475e4dd
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:07 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=192,atl-edge;dur=184,atl-edge-internal;dur=19,atl-edge-upstream;dur=165,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="k7sZaIkozhnB9cAdD5rpRWpwlT3PQKbMOkMqXD3_oEuU9okzHnNBrw==",cdn-downstream-fbl;dur=196
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 7d758b616f5473c7b4bee1c49ecfa98a.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - k7sZaIkozhnB9cAdD5rpRWpwlT3PQKbMOkMqXD3_oEuU9okzHnNBrw==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - addacea5e1f88ba358b64ebb570da787
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
+ Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361] in [Security
+ How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote Code
+ Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect Dojo
+ link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due Date:*
+ Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
+ (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
+ < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
+ 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "High"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '7038'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 813b8126-635b-4a4b-ba0a-0f03941ef992
+ Atl-Traceid:
+ - 813b8126635b4a4bba0a0f03941ef992
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:08 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=517,atl-edge;dur=486,atl-edge-internal;dur=16,atl-edge-upstream;dur=470,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="O020Qdq5d-niUtEsbpIDejs3vEfh-gFbGMDDuk2dm6fNNr4IN1AQ_Q==",cdn-downstream-fbl;dur=521
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 34dde22d7e4e8bb757cb687a7932a122.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - O020Qdq5d-niUtEsbpIDejs3vEfh-gFbGMDDuk2dm6fNNr4IN1AQ_Q==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - 442fa6b2168d3d6c0d150643999b62cb
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:35:04.227+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:35:04.219+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_14691_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:08.208+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 54107b85-1994-487c-a8e0-2b5495a8931d
+ Atl-Traceid:
+ - 54107b851994487ca8e02b5495a8931d
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:08 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=161,atl-edge;dur=154,atl-edge-internal;dur=18,atl-edge-upstream;dur=136,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="vszfCJMyK1zsRira9g85rnTTXtZexkW6CNN7Z8F5OaWFOxua6N00jg==",cdn-downstream-fbl;dur=165
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 65c7ccdbbbb8463f3d45d2d76098350e.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - vszfCJMyK1zsRira9g85rnTTXtZexkW6CNN7Z8F5OaWFOxua6N00jg==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - d7bc40d687879f91015e79bd2c49beb1
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"transition": {"id": 11}, "fields": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '40'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: POST
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/transitions
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 50111e6d-7311-4d68-b475-506af2c5d334
+ Atl-Traceid:
+ - 50111e6d73114d68b475506af2c5d334
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - text/html;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:09 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=505,atl-edge;dur=477,atl-edge-internal;dur=15,atl-edge-upstream;dur=462,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="ZM9FRP0G7Clh7Z8cnTgqlLflxhHHg9lrO9MQ0bo1qosCYddQBQU7Zg==",cdn-downstream-fbl;dur=509
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 645f72cdd7b73d139609aec0ade6f5f8.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - ZM9FRP0G7Clh7Z8cnTgqlLflxhHHg9lrO9MQ0bo1qosCYddQBQU7Zg==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 802aad05dfa6b1e2abbb0b20867313c9
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:35:09.448+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - 3d92e4f0-bd60-4146-a8c8-277578eb6c7d
+ Atl-Traceid:
+ - 3d92e4f0bd604146a8c8277578eb6c7d
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:09 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=89,atl-edge;dur=81,atl-edge-internal;dur=15,atl-edge-upstream;dur=66,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="VvDAiLG21yBp4P-LTy51RFQkGU64-uabHQQfe-rj9He9Mz05n856eA==",cdn-downstream-fbl;dur=94
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 bec13cdbd4d650c71ed35e5a7991d3ca.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - VvDAiLG21yBp4P-LTy51RFQkGU64-uabHQQfe-rj9He9Mz05n856eA==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - f9a80bfeabffd44e88229c1261d6a199
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:35:08.964+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:08.963+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 8f24beea-0f40-4d69-a021-ec9c46e34645
+ Atl-Traceid:
+ - 8f24beea0f404d69a021ec9c46e34645
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:09 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=203,atl-edge;dur=196,atl-edge-internal;dur=15,atl-edge-upstream;dur=181,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="OMQLBsP4sYO4EG3VGQso8ggzK13O-l_GFwADGx-dI6al2VXPX0HinQ==",cdn-downstream-fbl;dur=207
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 32301bfd0e3b06c528ccd8abdb13411e.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - OMQLBsP4sYO4EG3VGQso8ggzK13O-l_GFwADGx-dI6al2VXPX0HinQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - e3de79fe499e35db8eb459e58dd04d84
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - b34a0219-5943-491c-a3ce-48868d7c50a5
+ Atl-Traceid:
+ - b34a02195943491ca3ce48868d7c50a5
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:10 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=250,atl-edge;dur=221,atl-edge-internal;dur=14,atl-edge-upstream;dur=207,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="-l5KVWGfB4tiAZ8zCoA8yJMvUPTvhh9dlS3gzsfHH_SL8IX0jkUSjA==",cdn-downstream-fbl;dur=254
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 3237261dc7a40dff5065abc108a85afa.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - -l5KVWGfB4tiAZ8zCoA8yJMvUPTvhh9dlS3gzsfHH_SL8IX0jkUSjA==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - 6eb4a05a24b6ce00226e715c11f8cc87
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: pg:5.1.0", "description": "\n\n\n\n\n\n\nA group of
+ Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
+ [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361] in [Security
+ How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
+ Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
+ 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
+ 6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution -
+ (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0
+ < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0 <
+ 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 < 7.0.2 >=
+ 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect Dojo link:* http://localhost:8080/finding/236
+ (236)\n*Severity:* Medium\n *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs when
+ the remote database or query specifies a crafted column name. \n\nThere are
+ two specific scenarios in which it is likely for an application to be vulnerable:\n1.
+ The application executes unsafe, user-supplied sql which contains malicious
+ column names.\n2. The application connects to an untrusted database and executes
+ a query returning results which contain a malicious column name.\n\n## Proof
+ of Concept\n```\nconst { Client } = require(''pg'')\nconst client = new Client()\nclient.connect()\n\nconst
+ sql = `SELECT 1 AS \"\\\\''/*\", 2 AS \"\\\\''*/\\n + console.log(process.env)]
+ = null;\\n//\"`\n\nclient.query(sql, (err, res) => {\n client.end()\n})\n```\n
+ Vulnerable Module: pg\n Vulnerable Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >=
+ 4.0.0 < 4.5.7 || >= 5.0.0 < 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 ||
+ >= 6.2.0 < 6.2.5 || >= 6.3.0 < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2
+ || >= 7.1.0 < 7.1.2\n Patched Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0
+ || >= 4.5.7 < 5.0.0 || >= 5.2.1 < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 <
+ 6.2.0 || >= 6.2.5 < 6.3.0 || >= 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2
+ < 7.1.0 || >= 7.1.2\n Vulnerable Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n
+ Access: public\n\n\n*Mitigation*:\n* Version 2.x.x: Update to version 2.11.2
+ or later.\n* Version 3.x.x: Update to version 3.6.4 or later.\n* Version 4.x.x:
+ Update to version 4.5.7 or later.\n* Version 5.x.x: Update to version 5.2.1
+ or later.\n* Version 6.x.x: Update to version 6.4.2 or later. ( Note that versions
+ 6.1.6, 6.2.5, and 6.3.3 are also patched. )\n* Version 7.x.x: Update to version
+ 7.1.2 or later. ( Note that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo
+ impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "High"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '7021'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - 8fc9a119-f38c-4982-a5fc-84e088efd0f7
+ Atl-Traceid:
+ - 8fc9a119f38c4982a5fc84e088efd0f7
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:10 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=365,atl-edge;dur=357,atl-edge-internal;dur=15,atl-edge-upstream;dur=341,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="lJ3swC2duugva0NtMZZoGjmM-CSPPP5NbMBd7goqmXGWrL-5AS_yXA==",cdn-downstream-fbl;dur=377
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 7333604337e68c1ea3a1a85e9b6be668.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - lJ3swC2duugva0NtMZZoGjmM-CSPPP5NbMBd7goqmXGWrL-5AS_yXA==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - 77eeee408f471d5e3893a08077a38ead
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20649
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20649","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649","key":"NTEST-3071","fields":{"statuscategorychangedate":"2025-07-03T19:35:08.964+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:49.535+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qn:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:10.383+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: pg:5.1.0|http://localhost:8080/finding_group/361]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]|Active,
+ Verified|\n|Medium|[CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]|[94|https://cwe.mitre.org/data/definitions/94.html]|pg|5.1.0|[2222Remote
+ Code Execution - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 <
+ 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >=
+ 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0
+ < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Remote Code Execution - (Pg, < 2.11.2 >= 3.0.0 <
+ 3.6.4 >= 4.0.0 < 4.5.7 >= 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >=
+ 6.1.0 < 6.1.6 >= 6.2.0 < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0
+ < 6.4.2 >= 7.0.0 < 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/234]\n*Defect
+ Dojo link:* http://localhost:8080/finding/234 (234)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2017-16082|https://nvd.nist.gov/vuln/detail/CVE-2017-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/521\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/521\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [2222Remote Code Execution
+ - (Pg, < 2.11.2 >= 3.0.0 < 3.6.4 >= 4.0.0 < 4.5.7 >=
+ 5.0.0 < 5.2.1 >= 6.0.0 < 6.0.5 >= 6.1.0 < 6.1.6 >= 6.2.0
+ < 6.2.5 >= 6.3.0 < 6.3.3 >= 6.4.0 < 6.4.2 >= 7.0.0 <
+ 7.0.2 >= 7.1.0 < 7.1.2)|http://localhost:8080/finding/236]\n*Defect
+ Dojo link:* http://localhost:8080/finding/236 (236)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-94|https://cwe.mitre.org/data/definitions/94.html]
+ \n*CVE:* [CVE-2019-16082|https://nvd.nist.gov/vuln/detail/CVE-2019-16082]\n\n\n\n\n\n\n*Source
+ File*: pg-promise>pg\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/522\nAffected
+ versions of `pg` contain a remote code execution vulnerability that occurs
+ when the remote database or query specifies a crafted column name. \n\nThere
+ are two specific scenarios in which it is likely for an application to be
+ vulnerable:\n1. The application executes unsafe, user-supplied sql which contains
+ malicious column names.\n2. The application connects to an untrusted database
+ and executes a query returning results which contain a malicious column name.\n\n##
+ Proof of Concept\n```\nconst { Client } = require(''pg'')\nconst client =
+ new Client()\nclient.connect()\n\nconst sql = `SELECT 1 AS \"\\\\''/*\", 2
+ AS \"\\\\''*/\\n + console.log(process.env)] = null;\\n//\"`\n\nclient.query(sql,
+ (err, res) => {\n client.end()\n})\n```\n Vulnerable Module: pg\n Vulnerable
+ Versions: < 2.11.2 || >= 3.0.0 < 3.6.4 || >= 4.0.0 < 4.5.7 || >= 5.0.0 <
+ 5.2.1 || >= 6.0.0 < 6.0.5 || >= 6.1.0 < 6.1.6 || >= 6.2.0 < 6.2.5 || >= 6.3.0
+ < 6.3.3 || >= 6.4.0 < 6.4.2 || >= 7.0.0 < 7.0.2 || >= 7.1.0 < 7.1.2\n Patched
+ Version: >= 2.11.2 < 3.0.0|| >= 3.6.4 < 4.0.0 || >= 4.5.7 < 5.0.0 || >= 5.2.1
+ < 6.0.0 || >= 6.0.5 < 6.1.0 || >= 6.1.6 < 6.2.0 || >= 6.2.5 < 6.3.0 || >=
+ 6.3.3 < 6.4.0 || >= 6.4.2 < 7.0.0 || >= 7.0.2 < 7.1.0 || >= 7.1.2\n Vulnerable
+ Paths: \n - 5.1.0:pg-promise>pg\n CWE: CWE-94\n Access: public\n\n\n*Mitigation*:\n*
+ Version 2.x.x: Update to version 2.11.2 or later.\n* Version 3.x.x: Update
+ to version 3.6.4 or later.\n* Version 4.x.x: Update to version 4.5.7 or later.\n*
+ Version 5.x.x: Update to version 5.2.1 or later.\n* Version 6.x.x: Update
+ to version 6.4.2 or later. ( Note that versions 6.1.6, 6.2.5, and 6.3.3 are
+ also patched. )\n* Version 7.x.x: Update to version 7.1.2 or later. ( Note
+ that version 7.0.2 is also patched. )\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/522\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: pg:5.1.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3071/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20649/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - c1e97baf-831d-41d7-baa6-438c4fec568e
+ Atl-Traceid:
+ - c1e97baf831d41d7baa6438c4fec568e
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:10 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=274,atl-edge;dur=247,atl-edge-internal;dur=16,atl-edge-upstream;dur=231,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="Vl5OqNBHxFp7-qOUCRjkeXGh9fVXr5ZYYCSLVKvGT1vRPODuXAMleA==",cdn-downstream-fbl;dur=282
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 a1794152acd53f12f14f902d8899b420.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - Vl5OqNBHxFp7-qOUCRjkeXGh9fVXr5ZYYCSLVKvGT1vRPODuXAMleA==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - 7bb3e439d3461f5f32450d8ceced7909
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:35:11.156+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - eb7bf341-d224-4661-82ea-d3bcd9748f80
+ Atl-Traceid:
+ - eb7bf341d224466182ead3bcd9748f80
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:11 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=6,cdn-upstream-fbl;dur=119,atl-edge;dur=90,atl-edge-internal;dur=13,atl-edge-upstream;dur=77,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="eFEzDa-oiOMPeMg7FXR8kcjDLmHwDPPJi-R1jXQXQe772cIC2OKZ0g==",cdn-downstream-fbl;dur=124
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 7b082441eaf35142a6f7785a74fb7a50.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - eFEzDa-oiOMPeMg7FXR8kcjDLmHwDPPJi-R1jXQXQe772cIC2OKZ0g==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 43a5f585d84197268624cb488239a5be
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20650
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20650","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650","key":"NTEST-3072","fields":{"statuscategorychangedate":"2025-07-03T19:35:01.894+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:35:01.865+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:51.511+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10382_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qv:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:01.893+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/362]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* None \n\nFindings matching the Active, Verified and Severity
+ criteria:\n|| Severity || CVE || CWE || Component || Version || Title || Status
+ ||\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
+ File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
+ versions of `fresh` are vulnerable to regular expression denial of service
+ when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
+ Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 4f055f5d-3107-4fbf-b53f-6997b91acb15
+ Atl-Traceid:
+ - 4f055f5d31074fbfb53f6997b91acb15
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:11 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=166,atl-edge;dur=158,atl-edge-internal;dur=15,atl-edge-upstream;dur=144,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS1-P2",cdn-rid;desc="hP2MNSVaH2O83cOLxjVgZf7bcNhvfsOEFBp61OIjtm6vVJHddN5pLg==",cdn-downstream-fbl;dur=170
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 fbbc548a3de404eb87126afd4e3999ba.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - hP2MNSVaH2O83cOLxjVgZf7bcNhvfsOEFBp61OIjtm6vVJHddN5pLg==
+ X-Amz-Cf-Pop:
+ - AMS1-P2
+ X-Arequestid:
+ - 35056a070008beba0f2b0e3bb535f9b4
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - 76f85bda-5bf4-489e-a5d0-d05d36d27a86
+ Atl-Traceid:
+ - 76f85bda5bf4489ea5d0d05d36d27a86
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:11 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=268,atl-edge;dur=261,atl-edge-internal;dur=15,atl-edge-upstream;dur=245,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="9JAmKTBYC0FvAfr1WRgWnOiwIatFOHGc4kvkVFgmK1j7xmFL4HzrhQ==",cdn-downstream-fbl;dur=274
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 5869d8337913ed7453262c3cf9c9a9e6.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 9JAmKTBYC0FvAfr1WRgWnOiwIatFOHGc4kvkVFgmK1j7xmFL4HzrhQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - e3a5c1b412b0aef1b4e42c7fe3f9ff8f
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: fresh:0.3.0", "description": "\n\n\n\n\n\n\nA group
+ of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2. Group\n*Group*:
+ [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/362] in [Security
+ How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version ||
+ Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
+ File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
+ versions of `fresh` are vulnerable to regular expression denial of service when
+ parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
+ Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "Medium"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2174'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20650
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - e5aefa6b-c7df-4160-a845-a79c12775816
+ Atl-Traceid:
+ - e5aefa6bc7df4160a845a79c12775816
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:12 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=7,cdn-upstream-fbl;dur=485,atl-edge;dur=454,atl-edge-internal;dur=14,atl-edge-upstream;dur=441,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="AoP8c46pI0KIx37xx7GoXHKTi15kp2ZQvMAYVRPk3JKColpmOanauw==",cdn-downstream-fbl;dur=490
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 a6f8e4a6d80386054febd47005eabaca.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - AoP8c46pI0KIx37xx7GoXHKTi15kp2ZQvMAYVRPk3JKColpmOanauw==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 9b08095b67265f4c754cecf0a1fdc8d0
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20650
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20650","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650","key":"NTEST-3072","fields":{"statuscategorychangedate":"2025-07-03T19:35:01.894+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"},"customfield_10035":null,"resolution":{"self":"https://defectdojo.atlassian.net/rest/api/2/resolution/10000","id":"10000","description":"Work
+ has been completed on this issue.","name":"Done"},"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":"2025-07-03T19:35:01.865+0200","workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:51.511+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":"10000_*:*_1_*:*_10382_*|*_10002_*:*_1_*:*_0","priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qv:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:12.115+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10002","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Done","id":"10002","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: fresh:0.3.0|http://localhost:8080/finding_group/362]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ Medium *Due Date:* Oct. 1, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|Medium|[CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]|[400|https://cwe.mitre.org/data/definitions/400.html]|fresh|0.3.0|[Regular
+ Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [Regular Expression Denial of Service - (Fresh, < 0.5.2)|http://localhost:8080/finding/235]\n*Defect
+ Dojo link:* http://localhost:8080/finding/235 (235)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2017-16119|https://nvd.nist.gov/vuln/detail/CVE-2017-16119]\n\n\n\n\n\n\n*Source
+ File*: express>fresh\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/526\nAffected
+ versions of `fresh` are vulnerable to regular expression denial of service
+ when parsing specially crafted user input.\n Vulnerable Module: fresh\n Vulnerable
+ Versions: < 0.5.2\n Patched Version: >= 0.5.2\n Vulnerable Paths: \n - 0.3.0:express>fresh,express>send>fresh,express>serve-static>send>fresh,serve-favicon>fresh\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.5.2
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/526\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: fresh:0.3.0","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20650/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 5548fac8-96f8-40a7-81d8-2187446657b0
+ Atl-Traceid:
+ - 5548fac896f840a781d82187446657b0
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:12 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=168,atl-edge;dur=161,atl-edge-internal;dur=15,atl-edge-upstream;dur=145,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P2",cdn-rid;desc="HoMedIvwVxzq6cs5EJOYb_37aCNd2360khjNn8dshFNeuJZ7JN5dqw==",cdn-downstream-fbl;dur=173
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 cda23f0bbfe83784416efeada1ac1cf8.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - HoMedIvwVxzq6cs5EJOYb_37aCNd2360khjNn8dshFNeuJZ7JN5dqw==
+ X-Amz-Cf-Pop:
+ - AMS58-P2
+ X-Arequestid:
+ - 4af32dc567b507c1d07db1c2b02ba52e
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"transition": {"id": 11}, "fields": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '40'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: POST
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3072/transitions
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - cbf7e1bc-ab11-48ce-87c3-d88a14bd1d4f
+ Atl-Traceid:
+ - cbf7e1bcab1148ce87c3d88a14bd1d4f
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - text/html;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:13 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=423,atl-edge;dur=413,atl-edge-internal;dur=17,atl-edge-upstream;dur=397,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P4",cdn-rid;desc="zAOgPOoXcQ2yVXzH3y3x537reaH_N12M0MMA6lYoGRHEs2snbo1S6w==",cdn-downstream-fbl;dur=427
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 cf65dbfe06da8e543052ca7066d0e458.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - zAOgPOoXcQ2yVXzH3y3x537reaH_N12M0MMA6lYoGRHEs2snbo1S6w==
+ X-Amz-Cf-Pop:
+ - AMS58-P4
+ X-Arequestid:
+ - 56a6141a2a6cc0a492a833d7f153768e
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:35:13.293+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - 9fd25c13-5671-4259-aeb7-ee3212086975
+ Atl-Traceid:
+ - 9fd25c1356714259aeb7ee3212086975
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:13 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=96,atl-edge;dur=88,atl-edge-internal;dur=15,atl-edge-upstream;dur=74,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="WiF_jTUFbkLMzf1jnepPULJIzlKAIFGpIl0ErBcTBECXshFRHZaReQ==",cdn-downstream-fbl;dur=101
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 650363fa7465273dd14fde086a851a86.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - WiF_jTUFbkLMzf1jnepPULJIzlKAIFGpIl0ErBcTBECXshFRHZaReQ==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - ca807b9aa07e584c1691b3385c20ca32
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:35:06.801+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:06.800+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Inactive,
+ Verified, Risk Accepted|\n\n\n\n\n\n\n\n\n\n\nh1. Findings\n\nh3. [2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]\n*Defect
+ Dojo link:* http://localhost:8080/finding/233 (233)\n*Severity:* High\n *Due
+ Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 505681d7-23e9-4694-9358-7aa15d786c4e
+ Atl-Traceid:
+ - 505681d723e9469493587aa15d786c4e
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:13 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=209,atl-edge;dur=200,atl-edge-internal;dur=14,atl-edge-upstream;dur=186,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="AeH5g4-ADpJgMDironQNQbOrvWN50UaIrCfY_4ZotX-u6ueqUxGRpg==",cdn-downstream-fbl;dur=213
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 11e924fe383f6400148d019b996a5864.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - AeH5g4-ADpJgMDironQNQbOrvWN50UaIrCfY_4ZotX-u6ueqUxGRpg==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - e8403727626bde4fe485810818a608ba
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/createmeta?projectKeys=NTEST&issuetypeNames=Task&expand=projects.issuetypes.fields
+ response:
+ body:
+ string: '{"expand":"projects","projects":[{"expand":"issuetypes","self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"},"issuetypes":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","untranslatedName":"Task","subtask":false,"hierarchyLevel":0,"expand":"fields","fields":{"summary":{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","key":"summary","hasDefaultValue":false,"operations":["set"]},"issuetype":{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue
+ Type","key":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0}]},"parent":{"required":false,"schema":{"type":"issuelink","system":"parent"},"name":"Parent","key":"parent","hasDefaultValue":false,"operations":["set"]},"components":{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Components","key":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[]},"description":{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","key":"description","hasDefaultValue":false,"operations":["set"]},"project":{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","key":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}}]},"fixVersions":{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix
+ versions","key":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[]},"priority":{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","key":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/1","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/4","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/5","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"}],"defaultValue":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/3","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/medium.svg","name":"Medium","id":"3"}},"customfield_10014":{"required":false,"schema":{"type":"any","custom":"com.pyxis.greenhopper.jira:gh-epic-link","customId":10014},"name":"Epic
+ Link","key":"customfield_10014","hasDefaultValue":false,"operations":["set"]},"labels":{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","key":"labels","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove","edit"]},"attachment":{"required":false,"schema":{"type":"array","items":"attachment","system":"attachment"},"name":"Attachment","key":"attachment","hasDefaultValue":false,"operations":["set","copy"]},"issuelinks":{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked
+ Issues","key":"issuelinks","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add","copy"]},"assignee":{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","key":"assignee","autoCompleteUrl":"https://defectdojo.atlassian.net/rest/api/2/user/assignable/search?project=NTEST&query=","hasDefaultValue":false,"operations":["set"]}}}]}]}'
+ headers:
+ Atl-Request-Id:
+ - bef4bc1b-f5a5-4026-a263-dd6a2bd0d906
+ Atl-Traceid:
+ - bef4bc1bf5a54026a263dd6a2bd0d906
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:13 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=249,atl-edge;dur=241,atl-edge-internal;dur=15,atl-edge-upstream;dur=225,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="l9BD82u1tHDjFknsklCmncEkqRMWwSj_0bQtL8QYKQnmPrpkkrAvTA==",cdn-downstream-fbl;dur=254
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 297dc74786919df7ba1867fc37f80bb6.cloudfront.net (CloudFront)
+ Warning:
+ - 'The issue create meta endpoint has been deprecated. (Deprecation start date:
+ June 03, 2024)'
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - l9BD82u1tHDjFknsklCmncEkqRMWwSj_0bQtL8QYKQnmPrpkkrAvTA==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - ed5cdbfd90ce8bde71787ceeb626c201
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"fields": {"project": {"key": "NTEST"}, "issuetype": {"name": "Task"},
+ "summary": "Findings in: negotiator:0.5.3", "description": "\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified and
+ Severity criteria:\n|| Severity || CVE || CWE || Component || Version || Title
+ || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial of
+ Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n *Due
+ Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language` header
+ value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <= 0.6.0\n
+ Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1 or
+ later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n", "priority": {"name": "High"}}, "update": {}}'
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '3551'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: PUT
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: ''
+ headers:
+ Atl-Request-Id:
+ - e1f2b395-20f8-42c1-ae41-277956e4c78b
+ Atl-Traceid:
+ - e1f2b39520f842c1ae41277956e4c78b
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:14 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=448,atl-edge;dur=440,atl-edge-internal;dur=32,atl-edge-upstream;dur=408,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="Z44oZFBUNQXEW95dm8UHKjarmSc0aJ84H8D0VsLllGw9N7kwNHjkIw==",cdn-downstream-fbl;dur=451
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 e6ef76f348359a0bc64c007ab009ebd2.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - Z44oZFBUNQXEW95dm8UHKjarmSc0aJ84H8D0VsLllGw9N7kwNHjkIw==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 8d51aac26db3300a5c83a65855435853
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:35:06.801+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:14.276+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - ccd96619-a860-4665-89d0-64dd7f41aebf
+ Atl-Traceid:
+ - ccd96619a860466589d064dd7f41aebf
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:14 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=182,atl-edge;dur=175,atl-edge-internal;dur=15,atl-edge-upstream;dur=161,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P6",cdn-rid;desc="vcF647iir9rJx1w4owIcIamnyfEBSoB934oyeLr15l_OWxWTLaAIww==",cdn-downstream-fbl;dur=188
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 02aeb7f16c6c229502db31b43fb88506.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - vcF647iir9rJx1w4owIcIamnyfEBSoB934oyeLr15l_OWxWTLaAIww==
+ X-Amz-Cf-Pop:
+ - AMS58-P6
+ X-Arequestid:
+ - f0f8e34e0bb03645e8b120d06f9f591a
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/serverInfo
+ response:
+ body:
+ string: '{"baseUrl":"https://defectdojo.atlassian.net","displayUrl":"https://defectdojo.atlassian.net","displayUrlServicedeskHelpCenter":"https://defectdojo.atlassian.net","displayUrlConfluence":"https://defectdojo.atlassian.net","version":"1001.0.0-SNAPSHOT","versionNumbers":[1001,0,0],"deploymentType":"Cloud","buildNumber":100286,"buildDate":"2025-07-03T16:04:55.000+0200","serverTime":"2025-07-03T19:35:14.950+0200","scmInfo":"1b015acff99fd2ee90b59284971c25c1c92def1a","serverTitle":"Jira","defaultLocale":{"locale":"en_US"},"serverTimeZone":"Etc/UTC"}'
+ headers:
+ Atl-Request-Id:
+ - b5307d80-c465-488b-8901-a646daf93358
+ Atl-Traceid:
+ - b5307d80c465488b8901a646daf93358
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:14 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=98,atl-edge;dur=90,atl-edge-internal;dur=13,atl-edge-upstream;dur=77,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P5",cdn-rid;desc="8F-6N7af7--RuQQ5M0riR5UQRijK1InfMNbIUjCjY3VQDCkQ63F1GA==",cdn-downstream-fbl;dur=104
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 cb6a2c71695f851967f08ee8b2defc0c.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 8F-6N7af7--RuQQ5M0riR5UQRijK1InfMNbIUjCjY3VQDCkQ63F1GA==
+ X-Amz-Cf-Pop:
+ - AMS58-P5
+ X-Arequestid:
+ - 94792f40f9baa795b5eddd1b852931ef
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json,*/*;q=0.9
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json
+ User-Agent:
+ - python-requests/2.32.4
+ method: GET
+ uri: https://defectdojo.atlassian.net/rest/api/2/issue/20648
+ response:
+ body:
+ string: '{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice","id":"20648","self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648","key":"NTEST-3070","fields":{"statuscategorychangedate":"2025-07-03T19:35:06.801+0200","issuetype":{"self":"https://defectdojo.atlassian.net/rest/api/2/issuetype/10002","id":"10002","description":"A
+ small, distinct piece of work.","iconUrl":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium","name":"Task","subtask":false,"avatarId":10318,"hierarchyLevel":0},"timespent":null,"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://defectdojo.atlassian.net/rest/api/2/project/10000","id":"10000","key":"NTEST","name":"Unittests","projectTypeKey":"software","simplified":false,"avatarUrls":{"48x48":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407","24x24":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=small","16x16":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=xsmall","32x32":"https://defectdojo.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10407?size=medium"}},"customfield_10032":null,"customfield_10033":null,"fixVersions":[],"aggregatetimespent":null,"statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"},"customfield_10035":null,"resolution":null,"customfield_10036":null,"customfield_10037":null,"customfield_10027":null,"customfield_10028":null,"customfield_10029":null,"resolutiondate":null,"workratio":-1,"watches":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/watchers","watchCount":1,"isWatching":true},"lastViewed":null,"created":"2025-07-03T19:34:47.397+0200","customfield_10020":null,"customfield_10021":null,"customfield_10022":null,"customfield_10023":null,"priority":{"self":"https://defectdojo.atlassian.net/rest/api/2/priority/2","iconUrl":"https://defectdojo.atlassian.net/images/icons/priorities/high.svg","name":"High","id":"2"},"labels":[],"customfield_10016":null,"customfield_10017":null,"customfield_10019":"0|i011qf:","timeestimate":null,"aggregatetimeoriginalestimate":null,"versions":[],"issuelinks":[],"assignee":null,"updated":"2025-07-03T19:35:14.276+0200","status":{"self":"https://defectdojo.atlassian.net/rest/api/2/status/10000","description":"","iconUrl":"https://defectdojo.atlassian.net/","name":"Backlog","id":"10000","statusCategory":{"self":"https://defectdojo.atlassian.net/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To
+ Do"}},"components":[],"customfield_10050":null,"customfield_10051":null,"timeoriginalestimate":null,"customfield_10053":null,"description":"\n\n\n\n\n\n\nA
+ group of Findings has been pushed to JIRA to be investigated and fixed:\n\nh2.
+ Group\n*Group*: [Findings in: negotiator:0.5.3|http://localhost:8080/finding_group/360]
+ in [Security How-to|http://localhost:8080/product/2] / [1st Quarter Engagement|http://localhost:8080/engagement/1]
+ / [NPM Audit Scan|http://localhost:8080/test/90]\n\nh2. Summary\n*Severity:*
+ High *Due Date:* Aug. 2, 2025 \n\nFindings matching the Active, Verified
+ and Severity criteria:\n|| Severity || CVE || CWE || Component || Version
+ || Title || Status ||\n|High|[CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]|[300|https://cwe.mitre.org/data/definitions/300.html]|negotiator|0.5.3|[2222Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/233]|Active,
+ Verified|\n|Medium|[CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]|[400|https://cwe.mitre.org/data/definitions/400.html]|negotiator|0.5.3|[Regular
+ Expression Denial of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]|Active,
+ Verified|\n\nFindings *not* matching the Active, Verified and Severity criteria:\n||
+ Severity || CVE || CWE || Component || Version || Title || Status ||\n\n\n\n\n\n\n\n\n\n\nh1.
+ Findings\n\nh3. [2222Regular Expression Denial of Service - (Negotiator, <=
+ 0.6.0)|http://localhost:8080/finding/233]\n*Defect Dojo link:* http://localhost:8080/finding/233
+ (233)\n*Severity:* High\n *Due Date:* Aug. 2, 2025 \n *CWE:* [CWE-300|https://cwe.mitre.org/data/definitions/300.html]
+ \n*CVE:* [CVE-2019-10321|https://nvd.nist.gov/vuln/detail/CVE-2019-10321]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/107\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-300\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/107\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n\n\n\nh1. Findings\n\nh3. [Regular Expression Denial
+ of Service - (Negotiator, <= 0.6.0)|http://localhost:8080/finding/232]\n*Defect
+ Dojo link:* http://localhost:8080/finding/232 (232)\n*Severity:* Medium\n
+ *Due Date:* Oct. 1, 2025 \n *CWE:* [CWE-400|https://cwe.mitre.org/data/definitions/400.html]
+ \n*CVE:* [CVE-2016-10539|https://nvd.nist.gov/vuln/detail/CVE-2016-10539]\n\n\n\n\n\n\n*Source
+ File*: express>accepts>negotiator\n\n\n\n\n*Description*:\nhttps://nodesecurity.io/advisories/106\nAffected
+ versions of `negotiator` are vulnerable to regular expression denial of service
+ attacks, which trigger upon parsing a specially crafted `Accept-Language`
+ header value.\n\n\n Vulnerable Module: negotiator\n Vulnerable Versions: <=
+ 0.6.0\n Patched Version: >= 0.6.1\n Vulnerable Paths: \n - 0.5.3:express>accepts>negotiator\n
+ CWE: CWE-400\n Access: public\n\n\n*Mitigation*:\nUpdate to version 0.6.1
+ or later.\n\n\n\n*Impact*:\nNo impact provided\n\n\n\n\n\n*References*:\nhttps://nodesecurity.io/advisories/106\n\n\n\n\n\n*Reporter:*
+ [(admin) ()|mailto:]\n","customfield_10010":null,"customfield_10055":null,"customfield_10056":null,"customfield_10014":null,"timetracking":{},"customfield_10015":null,"customfield_10005":null,"customfield_10049":null,"customfield_10006":null,"customfield_10007":null,"security":null,"customfield_10008":null,"attachment":[],"customfield_10009":null,"aggregatetimeestimate":null,"summary":"Findings
+ in: negotiator:0.5.3","creator":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"subtasks":[],"customfield_10040":null,"customfield_10041":null,"customfield_10042":null,"reporter":{"self":"https://defectdojo.atlassian.net/rest/api/2/user?accountId=712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5","accountId":"712020:292a8b4c-ebd5-44be-bb94-d07c56a14dc5","emailAddress":"valentijn@defectdojo.com","avatarUrls":{"48x48":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","24x24":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","16x16":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png","32x32":"https://secure.gravatar.com/avatar/d05de848fe8cc7816c52a5e34e327bad?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FVS-3.png"},"displayName":"Valentijn
+ Scholten","active":true,"timeZone":"Europe/Zurich","accountType":"atlassian"},"customfield_10043":null,"aggregateprogress":{"progress":0,"total":0},"customfield_10044":null,"customfield_10045":null,"customfield_10001":null,"customfield_10046":null,"customfield_10002":[],"customfield_10003":null,"customfield_10047":null,"customfield_10004":null,"customfield_10048":null,"customfield_10038":null,"customfield_10039":null,"environment":null,"duedate":null,"progress":{"progress":0,"total":0},"votes":{"self":"https://defectdojo.atlassian.net/rest/api/2/issue/NTEST-3070/votes","votes":0,"hasVoted":false},"comment":{"comments":[],"self":"https://defectdojo.atlassian.net/rest/api/2/issue/20648/comment","maxResults":0,"total":0,"startAt":0},"worklog":{"startAt":0,"maxResults":20,"total":0,"worklogs":[]}}}'
+ headers:
+ Atl-Request-Id:
+ - 249add57-c0b8-4bfa-93f5-88f3f85a8248
+ Atl-Traceid:
+ - 249add57c0b84bfa93f588f3f85a8248
+ Cache-Control:
+ - no-cache, no-store, no-transform
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json;charset=UTF-8
+ Date:
+ - Thu, 03 Jul 2025 17:35:15 GMT
+ Nel:
+ - '{"failure_fraction": 0.001, "include_subdomains": true, "max_age": 600, "report_to":
+ "endpoint-1"}'
+ Report-To:
+ - '{"endpoints": [{"url": "https://dz8aopenkvv6s.cloudfront.net"}], "group":
+ "endpoint-1", "include_subdomains": true, "max_age": 600}'
+ Server:
+ - AtlassianEdge
+ Server-Timing:
+ - cdn-upstream-layer;desc="EDGE",cdn-upstream-dns;dur=0,cdn-upstream-connect;dur=0,cdn-upstream-fbl;dur=169,atl-edge;dur=161,atl-edge-internal;dur=16,atl-edge-upstream;dur=145,atl-edge-pop;desc="aws-eu-central-1",cdn-cache-miss,cdn-pop;desc="AMS58-P1",cdn-rid;desc="7ppItv74HbxBY1wAlAK3qPNXsItn0qnmK1HGjzz37iSScrSs5EYZjA==",cdn-downstream-fbl;dur=173
+ Strict-Transport-Security:
+ - max-age=63072000; includeSubDomains; preload
+ Timing-Allow-Origin:
+ - '*'
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Via:
+ - 1.1 bf57ce1929fb438631e46b2c83b05e2a.cloudfront.net (CloudFront)
+ X-Aaccountid:
+ - 712020%3A292a8b4c-ebd5-44be-bb94-d07c56a14dc5
+ X-Amz-Cf-Id:
+ - 7ppItv74HbxBY1wAlAK3qPNXsItn0qnmK1HGjzz37iSScrSs5EYZjA==
+ X-Amz-Cf-Pop:
+ - AMS58-P1
+ X-Arequestid:
+ - 18b5f4f1cff6a95045569b872fa9a175
+ X-Cache:
+ - Miss from cloudfront
+ X-Content-Type-Options:
+ - nosniff
+ X-Xss-Protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+version: 1