Skip to content
Open
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 @@ -198,15 +198,15 @@ def main():
try:
if demisto.command() == "test-module":
# This is the call made when pressing the integration Test button.
client = Client(base_url=base_url_ip, verify=verify_certificate, proxy=proxy)
client = Client(base_url=base_url_ip.rstrip("/") + "/", verify=verify_certificate, proxy=proxy)
result = test_module(client)
demisto.results(result)

elif demisto.command() == "ip":
ip_suspicious_score_threshold = int(demisto.params().get("ip_suspicious_score_threshold"))
ip_malicious_score_threshold = int(demisto.params().get("ip_malicious_score_threshold"))
reliability = demisto.params().get("feedReliability")
client = Client(base_url=base_url_ip, verify=verify_certificate, proxy=proxy)
client = Client(base_url=base_url_ip.rstrip("/") + "/", verify=verify_certificate, proxy=proxy)
return_results(
ip_command(client, demisto.args(), ip_suspicious_score_threshold, ip_malicious_score_threshold, reliability)
)
Expand All @@ -215,7 +215,7 @@ def main():
email_suspicious_score_threshold = int(demisto.params().get("email_suspicious_score_threshold"))
email_malicious_score_threshold = int(demisto.params().get("email_malicious_score_threshold"))
reliability = demisto.params().get("feedReliability")
client = Client(base_url=base_url_email, verify=verify_certificate, proxy=proxy)
client = Client(base_url=base_url_email.rstrip("/") + "/", verify=verify_certificate, proxy=proxy)
return_results(
email_command(
client, demisto.args(), email_suspicious_score_threshold, email_malicious_score_threshold, reliability
Expand All @@ -226,7 +226,7 @@ def main():
url_suspicious_score_threshold = int(demisto.params().get("url_suspicious_score_threshold"))
url_malicious_score_threshold = int(demisto.params().get("url_malicious_score_threshold"))
reliability = demisto.params().get("feedReliability")
client = Client(base_url=base_url_url, verify=verify_certificate, proxy=proxy)
client = Client(base_url=base_url_url.rstrip("/") + "/", verify=verify_certificate, proxy=proxy)
return_results(
url_command(client, demisto.args(), url_suspicious_score_threshold, url_malicious_score_threshold, reliability)
)
Expand Down
6 changes: 6 additions & 0 deletions Packs/IPQualityScore/ReleaseNotes/1_0_15.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

#### Integrations

##### IPQualityScore

- Modified the Base URL.
2 changes: 1 addition & 1 deletion Packs/IPQualityScore/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "IPQualityScore (IPQS) Threat Risk Scoring",
"description": "Detect threats with real-time risk scoring by IPQS. Playbook analyzes IP addresses, email addresses, and domains or URLs for high risk behavior.",
"support": "partner",
"currentVersion": "1.0.14",
"currentVersion": "1.0.15",
"author": "IPQualityScore",
"url": "https://www.ipqualityscore.com",
"email": "support@ipqualityscore.com",
Expand Down
Loading