Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Domaintools iris release v2.0.1 #32946

Merged
merged 2 commits into from
Feb 15, 2024
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 @@ -94,13 +94,14 @@ def http_request(method, params=None):
Returns: request result

"""
proxy_url = PROXIES.get('https') if PROXIES.get('https') != '' else PROXIES.get('http')
api = API(
USERNAME,
API_KEY,
app_partner='cortex_xsoar',
app_name='iris-plugin',
app_version='2.0',
proxy_url=PROXIES,
proxy_url=proxy_url,
verify_ssl=VERIFY_CERT,
always_sign_api_key=True
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2403,7 +2403,7 @@ script:
description: Parsed Whois data.
- contextPath: Domain.WhoisRecords
description: Full Whois record.
dockerimage: demisto/vendors-sdk:1.0.0.84790
dockerimage: demisto/vendors-sdk:1.0.0.87491
runonce: false
script: '-'
type: python
Expand Down
43 changes: 43 additions & 0 deletions Packs/DomainTools_Iris/ReleaseNotes/2_0_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@

#### Integrations

##### DomainTools Iris
- Fixed an issue with system proxy settings.
- Updated the Docker image to: *demisto/vendors-sdk:1.0.0.87491*.



#### Scripts

##### AddDomainRiskScoreToContext

- Updated the Docker image to: *demisto/python3:3.10.13.87159*.

##### AssociateIndicatorsToIncident

- Updated the Docker image to: *demisto/python3:3.10.13.87159*.

##### CheckLastEnrichment

- Updated the Docker image to: *demisto/python3:3.10.13.87159*.

##### CheckPivotableDomains

- Updated the Docker image to: *demisto/python3:3.10.13.87159*.

##### CheckTags

- Updated the Docker image to: *demisto/python3:3.10.13.87159*.

##### DomainExtractAndEnrich

- Updated the Docker image to: *demisto/python3:3.10.13.87159*.

##### DomainExtractAndInvestigate

- Updated the Docker image to: *demisto/python3:3.10.13.87159*.

##### SetIndicatorTableData

- Updated the Docker image to: *demisto/python3:3.10.13.87159*.

Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ outputs:
description: The overall risk score of the domain.
subtype: python3
fromversion: 6.6.0
dockerimage: demisto/python3:3.10.13.84405
dockerimage: demisto/python3:3.10.13.87159
tests:
- No tests (auto formatted)
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ timeout: '0'
type: python
subtype: python3
fromversion: 6.6.0
dockerimage: demisto/python3:3.10.13.84405
dockerimage: demisto/python3:3.10.13.87159
tests:
- No tests (auto formatted)
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ timeout: '0'
type: python
subtype: python3
fromversion: 6.6.0
dockerimage: demisto/python3:3.10.13.84405
dockerimage: demisto/python3:3.10.13.87159
tests:
- No tests (auto formatted)
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,6 @@ tags:
enabled: true
subtype: python3
fromversion: 6.6.0
dockerimage: demisto/python3:3.10.13.84405
dockerimage: demisto/python3:3.10.13.87159
tests:
- No tests (auto formatted)
2 changes: 1 addition & 1 deletion Packs/DomainTools_Iris/Scripts/CheckTags/CheckTags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ timeout: '0'
type: python
subtype: python3
fromversion: 6.6.0
dockerimage: demisto/python3:3.10.13.84405
dockerimage: demisto/python3:3.10.13.87159
tests:
- No tests (auto formatted)
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,6 @@ timeout: '0'
type: python
subtype: python3
fromversion: 6.6.0
dockerimage: demisto/python3:3.10.13.84405
dockerimage: demisto/python3:3.10.13.87159
tests:
- No tests (auto formatted)
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,6 @@ timeout: '0'
type: python
subtype: python3
fromversion: 6.6.0
dockerimage: demisto/python3:3.10.13.84405
dockerimage: demisto/python3:3.10.13.87159
tests:
- No tests (auto formatted)
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ timeout: '0'
type: python
subtype: python3
fromversion: 6.6.0
dockerimage: demisto/python3:3.10.13.84405
dockerimage: demisto/python3:3.10.13.87159
tests:
- No tests (auto formatted)
2 changes: 1 addition & 1 deletion Packs/DomainTools_Iris/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "DomainTools Iris Investigate",
"description": "Facilitates automation of key infrastructure characterization and hunting portions of the incident response process. Organizations will have access to essential domain profile, web crawl, SSL, and infrastructure data from within Cortex XSOAR. Requires a DomainTools Iris Investigate API key.",
"support": "partner",
"currentVersion": "2.0.0",
"currentVersion": "2.0.1",
"author": "DomainTools",
"url": "https://www.domaintools.com/support/",
"email": "memberservices@domaintools.com",
Expand Down
Loading