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

Fix non compliance route #18332

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
5 changes: 4 additions & 1 deletion Packs/Infinipoint/.pack-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ ignore=BA101
ignore=IN145

[file:Infinipoint_image.png]
ignore=IM111
ignore=IM111

[known_words]
Infinipoint
2 changes: 1 addition & 1 deletion Packs/Infinipoint/Integrations/Infinipoint/Infinipoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def fetch_incidents(client, last_run: Dict[str, int], first_fetch_time: Optional
'offset': last_fetch
}

alerts = infinipoint_command(client, args, COMMANDS_CONFIG['infinipoint-get-events'])
alerts = infinipoint_command(client, args, COMMANDS_CONFIG['infinipoint-get-non-compliance'])

if alerts:
for alert in alerts.outputs:
Expand Down
10 changes: 5 additions & 5 deletions Packs/Infinipoint/Integrations/Infinipoint/Infinipoint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ commonfields:
name: Infinipoint
display: Infinipoint
category: Network Security
description: Use the Infinipoint integration to retrieve security and policy incompliance
events, vulnerabilities or incidents. Investigate and respond to events in real-time.
description: Use the Infinipoint integration to retrieve security and policy incompliance events, vulnerabilities or incidents. Investigate and respond to events in real-time.
configuration:
- display: Access Key
name: access_key
Expand Down Expand Up @@ -60,8 +59,7 @@ script:
description: Get vulnerable devices associated with a particular CVE
arguments:
- name: device_os
description: The device operating system, e.g. Ubutnu, Amazon Linux AMI, CentOS,
etc
description: The device operating system, e.g. Ubutnu, Amazon Linux AMI, CentOS, etc
- name: device_risk
description: Device risk score
outputs:
Expand Down Expand Up @@ -998,9 +996,11 @@ script:
description: success
type: Number

dockerimage: demisto/pyjwt3:1.0.0.23674
dockerimage: demisto/pyjwt3:1.0.0.27257
isfetch: true
runonce: false
script: '-'
subtype: python3
fromversion: 5.0.0
tests:
- No tests (auto formatted)
4 changes: 4 additions & 0 deletions Packs/Infinipoint/ReleaseNotes/1_0_10.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

#### Integrations
##### Infinipoint
- Fixed an issue in **infinipoint-get-non-compliance**.
2 changes: 1 addition & 1 deletion Packs/Infinipoint/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Infinipoint",
"description": "Use the Infinipoint integration to retrieve security and policy incompliance events, vulnerabilities or incidents. Investigate and respond to events in real-time",
"support": "partner",
"currentVersion": "1.0.9",
"currentVersion": "1.0.10",
"author": "Infinipoint - ET",
"url": "",
"email": "support@infinipoint.io",
Expand Down