diff --git a/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR.py b/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR.py index ef471c05c2e1..96a301257f6c 100644 --- a/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR.py +++ b/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR.py @@ -3334,7 +3334,7 @@ def update_issue_command(client: Client, args: Dict) -> CommandResults: severity=args["severity"].upper() if args.get("severity") else None, ) if status := ISSUE_STATUSES_MAP.get(args.get("status", "")): - update_data["status_progress"] = status + update_data["status"] = status if resolution_reason := ISSUE_REASON_MAP.get(args.get("resolve_reason", "")): update_data["status_resolution_reason"] = resolution_reason if resolution_comment := args.get("resolve_comment"): diff --git a/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR.yml b/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR.yml index 058ee89225ee..e54c6fcc665d 100644 --- a/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR.yml +++ b/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR.yml @@ -13,6 +13,12 @@ configuration: type: 8 section: Collect required: false +- display: Incidents Fetch Interval + name: incidentFetchInterval + defaultvalue: '1' + type: 19 + section: Collect + required: false - display: Incident type name: incidentType type: 13 diff --git a/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR_test.py b/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR_test.py index d7710626b795..c901b104f80e 100644 --- a/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR_test.py +++ b/Packs/CortexXDR/Integrations/CortexXDRIR/CortexXDRIR_test.py @@ -4256,7 +4256,7 @@ def test_create_issue_command_invalid_json(): [ ( {"issue_id": "100", "status": "new"}, - {"status_progress": "New"}, + {"status": "New"}, ), ( {"issue_id": "200", "severity": "high"}, @@ -4270,14 +4270,14 @@ def test_create_issue_command_invalid_json(): "resolve_comment": "Not a real issue", }, { - "status_progress": "Resolved", + "status": "Resolved", "status_resolution_reason": "resolved - false positive", "status_resolution_comment": "Not a real issue", }, ), ( {"issue_id": "400", "status": "in_progress", "severity": "low"}, - {"severity": "LOW", "status_progress": "In Progress"}, + {"severity": "LOW", "status": "In Progress"}, ), ( { diff --git a/Packs/CortexXDR/ReleaseNotes/6_3_34.md b/Packs/CortexXDR/ReleaseNotes/6_3_34.md new file mode 100644 index 000000000000..92602a855aae --- /dev/null +++ b/Packs/CortexXDR/ReleaseNotes/6_3_34.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Palo Alto Networks Cortex XDR - Investigation and Response + +- Fixed an issue where the ***xdr-issue-update*** command reported success but did not update the issue status. diff --git a/Packs/CortexXDR/pack_metadata.json b/Packs/CortexXDR/pack_metadata.json index 78d0e92e96c8..e3438ca85a54 100644 --- a/Packs/CortexXDR/pack_metadata.json +++ b/Packs/CortexXDR/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Cortex XDR by Palo Alto Networks", "description": "Automates Cortex XDR incident response, and includes custom Cortex XDR incident views and layouts to aid analyst investigations.", "support": "xsoar", - "currentVersion": "6.3.33", + "currentVersion": "6.3.34", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "",