8000 Illusive networks argument fix by moishce-zz · Pull Request #10673 · demisto/content · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Illusive networks argument fix #10673

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

Merged
merged 4 commits into from
Dec 30, 2020
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 @@ -584,7 +584,7 @@ def delete_deceptive_servers_command(client: Client, args: dict) -> Tuple:
def get_incidents_command(client: Client, args: dict) -> Tuple:
incident_id = args.get("incident_id")
has_forensics = args.get("has_forensics", None)
host_names = argToList(args.get('host_names'))
host_names = argToList(args.get('hostnames'))
limit = args.get("limit", 10)
offset = args.get("offset", 0)
start_date = args.get("start_date", None)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ script:
description: Retrieve forensics artifacts from Illusive's forensics
execution: false
name: illusive-get-forensics-artifacts
dockerimage: demisto/python3:3.8.3.9324
dockerimage: demisto/python3:3.8.6.14516
feed: false
isfetch: true
longRunning: false
Expand Down
5 changes: 5 additions & 0 deletions Packs/IllusiveNetworks/ReleaseNotes/1_0_6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

#### Integrations
##### IllusiveNetworks
- Fixed an issue where the *hostnames* argument in the **illusive-get-incidents** command was not used correctly.
- Upgraded the Docker image to demisto/python3:3.8.6.14516.
2 changes: 1 addition & 1 deletion Packs/IllusiveNetworks/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Illusive Networks",
"description": "Enrich SOC incident triage and investigation data with valuable Illusive information and forensics, and manage the way Illusive deploys deceptions across the network.",
"support": "partner",
"currentVersion": "1.0.5",
"currentVersion": "1.0.6",
"author": "Illusive Networks",
"url": "https://www.illusivenetworks.com",
"email": "support@illusivenetworks.com",
Expand Down
0