forked from demisto/content
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Cortex XDR - IR] Fix incidents not pulled (demisto#35696)
* init * minor changes * remove ctf * Revert "remove ctf" This reverts commit 28d4585. revert * revert * more tests * UTs complete * RN * Bump pack from version CortexXDR to 6.1.60. * build fixes --------- Co-authored-by: Content Bot <[email protected]>
- Loading branch information
1 parent
4c51566
commit 7163f77
Showing
5 changed files
with
196 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 94 additions & 0 deletions
94
Packs/CortexXDR/Integrations/CortexXDRIR/test_data/get_incidents_list_dedup.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
[ | ||
{ | ||
"incident_id": "1", | ||
"creation_time": 100000000, | ||
"modification_time": 1575813875168, | ||
"detection_time": null, | ||
"status": "under_investigation", | ||
"severity": "medium", | ||
"description": "'Local Analysis Malware' generated by XDR Agent detected on host AAAAA involving user Administrator", | ||
"assigned_user_mail": null, | ||
"assigned_user_pretty_name": null, | ||
"alert_count": 1, | ||
"low_severity_alert_count": 0, | ||
"med_severity_alert_count": 1, | ||
"high_severity_alert_count": 0, | ||
"user_count": 1, | ||
"host_count": 1, | ||
"notes": null, | ||
"resolve_comment": null, | ||
"manual_severity": null, | ||
"manual_description": null, | ||
"xdr_url": "https://demisto.hello.com/incident-view/1", | ||
"starred": false | ||
}, | ||
{ | ||
"incident_id": "2", | ||
"creation_time": 100000001, | ||
"modification_time": 1575813875168, | ||
"detection_time": null, | ||
"status": "new", | ||
"severity": "high", | ||
"description": "'Local Analysis Malware' generated by XDR Agent detected on host BBBBB involving user Administrator", | ||
"assigned_user_mail": null, | ||
"assigned_user_pretty_name": null, | ||
"alert_count": 1, | ||
"low_severity_alert_count": 0, | ||
"med_severity_alert_count": 1, | ||
"high_severity_alert_count": 0, | ||
"user_count": 1, | ||
"host_count": 1, | ||
"notes": null, | ||
"resolve_comment": null, | ||
"manual_severity": null, | ||
"manual_description": null, | ||
"xdr_url": "https://demisto.hello.com/incident-view/2", | ||
"starred": false | ||
}, | ||
{ | ||
"incident_id": "3", | ||
"creation_time": 100000001, | ||
"modification_time": 1575813875168, | ||
"detection_time": null, | ||
"status": "under_investigation", | ||
"severity": "medium", | ||
"description": "'Local Analysis Malware' generated by XDR Agent detected on host AAAAA involving user Administrator", | ||
"assigned_user_mail": null, | ||
"assigned_user_pretty_name": null, | ||
"alert_count": 1, | ||
"low_severity_alert_count": 0, | ||
"med_severity_alert_count": 1, | ||
"high_severity_alert_count": 0, | ||
"user_count": 1, | ||
"host_count": 1, | ||
"notes": null, | ||
"resolve_comment": null, | ||
"manual_severity": null, | ||
"manual_description": null, | ||
"xdr_url": "https://demisto.hello.com/incident-view/1", | ||
"starred": false | ||
}, | ||
{ | ||
"incident_id": "4", | ||
"creation_time": 100000002, | ||
"modification_time": 1575813875168, | ||
"detection_time": null, | ||
"status": "new", | ||
"severity": "high", | ||
"description": "'Local Analysis Malware' generated by XDR Agent detected on host BBBBB involving user Administrator", | ||
"assigned_user_mail": null, | ||
"assigned_user_pretty_name": null, | ||
"alert_count": 1, | ||
"low_severity_alert_count": 0, | ||
"med_severity_alert_count": 1, | ||
"high_severity_alert_count": 0, | ||
"user_count": 1, | ||
"host_count": 1, | ||
"notes": null, | ||
"resolve_comment": null, | ||
"manual_severity": null, | ||
"manual_description": null, | ||
"xdr_url": "https://demisto.hello.com/incident-view/2", | ||
"starred": false | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
#### Integrations | ||
|
||
##### Palo Alto Networks Cortex XDR - Investigation and Response | ||
|
||
- Fixed an issue in which multiple incidents created in the same instant would not all be fetched. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters