-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PAPP-34531 MISP: Feature - Tags Allowance Added for Event Create and …
…Update (#12) * PAPP-34531 tags addition added for event create and update * PAPP-34531 release notes updated * PAPP-34531 documentation updated --------- Co-authored-by: splunk-soar-connectors-admin <admin@splunksoar>
- Loading branch information
1 parent
3558ca5
commit 5c129bd
Showing
4 changed files
with
74 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,6 +156,7 @@ PARAMETER | REQUIRED | DESCRIPTION | TYPE | CONTAINS | |
**source_emails** | optional | Source email addresses to be added as attributes | string | `email` | ||
**dest_emails** | optional | Destination email addresses to be added as attributes | string | `email` | ||
**urls** | optional | URLs to be added as attributes | string | `url` | ||
**tags** | optional | Comma separated list of tags | string | | ||
**json** | optional | JSON key value list of attributes | string | | ||
|
||
#### Action Output | ||
|
@@ -175,6 +176,7 @@ action_result.parameter.source_ips | string | `ip` | 122.122.122.122 | |
action_result.parameter.threat_level_id | string | | undefined | ||
action_result.parameter.to_ids | boolean | | True False | ||
action_result.parameter.urls | string | `url` | https://test.com | ||
action_result.parameter.tags | string | | test_1,test_2 | ||
action_result.data.\*.Org.id | string | | 1 | ||
action_result.data.\*.Org.local | boolean | | True False | ||
action_result.data.\*.Org.name | string | | ORGNAME | ||
|
@@ -236,6 +238,8 @@ PARAMETER | REQUIRED | DESCRIPTION | TYPE | CONTAINS | |
**source_emails** | optional | Source email addresses to be added as attributes | string | `email` | ||
**dest_emails** | optional | Destination email addresses to be added as attributes | string | `email` | ||
**urls** | optional | URLs to be added as attributes | string | `url` | ||
**tags** | optional | Comma separated list of tags (append to existing tags default) | string | | ||
**replace_tags** | optional | Replace tags with new provided tags | boolean | | ||
**json** | optional | JSON key value list of attributes | string | | ||
|
||
#### Action Output | ||
|
@@ -246,6 +250,8 @@ action_result.parameter.dest_emails | string | `email` | [email protected] | |
action_result.parameter.dest_ips | string | `ip` | 122.122.122.122 | ||
action_result.parameter.domains | string | `domain` | www.test.com | ||
action_result.parameter.event_id | numeric | `misp event id` | 686 | ||
action_result.parameter.tags | string | | test_1,test2 | ||
action_result.parameter.replace_tags | boolean | | True False | ||
action_result.parameter.json | string | | {"comment":["email_1,email11","email_2"], "soufds":"jflkl"} | ||
action_result.parameter.source_emails | string | `email` | [email protected] | ||
action_result.parameter.source_ips | string | `ip` | 122.122.122.122 | ||
|
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
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
**Unreleased** | ||
|
||
* Tags can now be added during an event create or update [PAPP-34531] |