Skip to content

Commit

Permalink
Zscaler add reliability (#27197)
Browse files Browse the repository at this point in the history
* Zscaler - add reliability parameter

* added RNs

* pre-commit hooks

* updated docker image

* Changed reliability to Reliability in outputs

* updated docker image

* updated RNs

* updated RNs
  • Loading branch information
darkushin authored and ostolero committed Jun 14, 2023
1 parent a470946 commit 58297d4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Packs/Zscaler/Integrations/Zscaler/Zscaler.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ def url_lookup(args):
"urlClassificationsWithSecurityAlert", None
),
score=score,
reliability=demisto.params().get("reliability")
),
)

Expand Down Expand Up @@ -575,6 +576,7 @@ def ip_lookup(ip):
"ipClassificationsWithSecurityAlert", None
),
score=score,
reliability=demisto.params().get("reliability"),
),
)
results.append(
Expand Down Expand Up @@ -909,6 +911,7 @@ def sandbox_report_command():
"Type": "file",
"Vendor": "Zscaler",
"Score": dbot_score,
"Reliability": demisto.params().get("reliability"),
}
}

Expand Down
6 changes: 6 additions & 0 deletions Packs/Zscaler/ReleaseNotes/1_3_11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

#### Integrations

##### Zscaler Internet Access

- Fixed an issue where the *Reliability* integration parameter was not used correctly.
2 changes: 1 addition & 1 deletion Packs/Zscaler/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Zscaler Internet Access",
"description": "Zscaler is a cloud security solution built for performance and flexible scalability.",
"support": "xsoar",
"currentVersion": "1.3.10",
"currentVersion": "1.3.11",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down

0 comments on commit 58297d4

Please sign in to comment.