Skip to content

Commit

Permalink
Domaintools iris release v2.0.1 (#32880) (#32946)
Browse files Browse the repository at this point in the history
* first pass at fixing proxy use

* don't use empty strings

* avoid empty string

* fix docker tag, add release notes

* update release notes with docker image

* Update Packs/DomainTools_Iris/ReleaseNotes/2_0_1.md



---------

Co-authored-by: Wesley Agena <wesleya@users.noreply.github.com>
Co-authored-by: Yuval Hayun <70104171+YuvHayun@users.noreply.github.com>
  • Loading branch information
3 people authored and maimorag committed Feb 22, 2024
1 parent 192f1cc commit 6c8f41a
Show file tree
Hide file tree
Showing 12 changed files with 55 additions and 11 deletions.
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
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
@@ -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*.

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)
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)
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)
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
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)
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)
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)
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
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

0 comments on commit 6c8f41a

Please sign in to comment.