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

[PLGN-561] Insight VM - Scan Completion Trigger (#2087) #2182

Merged
merged 2 commits into from
Dec 14, 2023
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
12 changes: 8 additions & 4 deletions plugins/rapid7_insightvm/.CHECKSUM
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"spec": "e8da36ef239156809597572946df2ea3",
"manifest": "138d918083ad59c0f8de7c018212a929",
"setup": "5f4d67fe3ecbe62a6ac891aa442e20b9",
"spec": "8c162487e4fc21d316ae671ff14bdada",
"manifest": "1ad7045d507da48f30f04999d8e73b3b",
"setup": "1c6dcdf34833dd8b8ada2f2a80ae8279",
"schemas": [
{
"identifier": "add_scan_engine_pool_engine/schema.py",
Expand All @@ -21,7 +21,7 @@
},
{
"identifier": "asset_vulnerability_solution/schema.py",
"hash": "58bbe516a723ad6f7ab992533d3379b7"
"hash": "c42741c78364bf55ff0c82fd735f3612"
},
{
"identifier": "create_asset_group/schema.py",
Expand Down Expand Up @@ -370,6 +370,10 @@
{
"identifier": "new_scans/schema.py",
"hash": "a907a9c47939be620564f30a3e8a6533"
},
{
"identifier": "scan_completion/schema.py",
"hash": "25386d06cb7cd3fe16a007c2aabe7c87"
}
]
}
3 changes: 2 additions & 1 deletion plugins/rapid7_insightvm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM rapid7/insightconnect-python-3-38-slim-plugin:5
FROM rapid7/insightconnect-python-3-plugin:5
LABEL organization=komand

LABEL sdk=python
LABEL type=plugin

Expand Down
4 changes: 3 additions & 1 deletion plugins/rapid7_insightvm/bin/komand_rapid7_insightvm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ from sys import argv

Name = "Rapid7 InsightVM Console"
Vendor = "rapid7"
Version = "6.1.1"
Version = "6.2.0"
Description = "InsightVM is a powerful vulnerability management tool which finds, prioritizes, and remediates vulnerabilities. This plugin uses an orchestrator to get top remediations, scan results and start scans"


Expand Down Expand Up @@ -38,6 +38,8 @@ def main():

self.add_trigger(triggers.NewExceptionRequest())

self.add_trigger(triggers.ScanCompletion())

self.add_action(actions.Scan())

self.add_action(actions.GetScan())
Expand Down
Loading
Loading