Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ script: '-'
subtype: python3
timeout: '0'
type: python
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.14.100715
tests:
- No tests
fromversion: 6.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ script: '-'
subtype: python3
timeout: '0'
type: python
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.14.100715
tests:
- No tests
fromversion: 6.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ script: '-'
subtype: python3
timeout: '0'
type: python
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.14.100715
tests:
- No tests
fromversion: 6.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ script: '-'
subtype: python3
timeout: '0'
type: python
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.14.100715
tests:
- No tests
fromversion: 6.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ script: '-'
subtype: python3
timeout: '0'
type: python
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.14.100715
tests:
- No tests
fromversion: 6.0.0
17 changes: 2 additions & 15 deletions Packs/CommunityCommonScripts/Scripts/MapRegex/MapRegex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,11 @@ args:
required: true
- description: A JSON dictionary that contains key:value pairs that represent the "Outcome":"Regex".
name: json_regex
comment: |-
This transformer will take in a value and transform it based on multiple regular expressions defined in a JSON dictionary structure. The key:value pair of the JSON dictionary should be:

"desired outcome": "regex to match"

For example:

{
"Match 1": ".*match 1.*",
"Match 2": ".*match 2.*",
"Catch all": ".*"
}

The transformer will match in order of dictionary entries.
comment: "This transformer will take in a value and transform it based on multiple regular expressions defined in a JSON dictionary structure. The key:value pair of the JSON dictionary should be:\n\n\"desired outcome\": \"regex to match\"\n\nFor example:\n\n{\n \"Match 1\": \".*match 1.*\",\n \"Match 2\": \".*match 2.*\",\n \"Catch all\": \".*\"\n}\n\nThe transformer will match in order of dictionary entries."
commonfields:
id: MapRegex
version: -1
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.14.100715
enabled: true
name: MapRegex
runas: DBotWeakRole
Expand Down
2 changes: 1 addition & 1 deletion Packs/CommunityCommonScripts/Scripts/MaxList/MaxList.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ comment: "Gets the maximum value from list\ne.g. [\"25\", \"10\", \"25\"] => \"
commonfields:
id: MaxList
version: -1
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.14.100715
enabled: true
name: MaxList
runas: DBotWeakRole
Expand Down
2 changes: 1 addition & 1 deletion Packs/CommunityCommonScripts/Scripts/MinList/MinList.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ comment: "Gets the minimum value from list\ne.g. [\"25\", \"10\", \"25\"] => \"
commonfields:
id: MinList
version: -1
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.14.100715
enabled: true
name: MinList
runas: DBotWeakRole
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ comment: randomly select elements from a list in Python
commonfields:
id: RandomElementFromList
version: -1
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.14.100715
enabled: true
name: RandomElementFromList
runas: DBotWeakRole
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,18 @@ args:
- description: the XSOAR system list name.
name: listName
required: true
comment: |-
This automation is for comparing array(list) data of context to existing lists on XSOAR server. You can avoid using loop of sub-playbook.
comment: 'This automation is for comparing array(list) data of context to existing lists on XSOAR server. You can avoid using loop of sub-playbook.

inputArray: the context array/list data
listName: the XSOAR system list

listName: the XSOAR system list'
commonfields:
id: isArrayItemInList
version: -1
contentitemexportablefields:
contentitemfields:
fromServerVersion: ""
dockerimage: demisto/python3:3.10.12.63474
fromServerVersion: ''
dockerimage: demisto/python3:3.10.14.100715
enabled: true
name: isArrayItemInList
runas: DBotWeakRole
Expand Down