Skip to content

Commit

Permalink
Sync (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrinehart-r7 committed Nov 5, 2019
1 parent 26cc23e commit 094452a
Show file tree
Hide file tree
Showing 88 changed files with 3,166 additions and 131 deletions.
2 changes: 1 addition & 1 deletion rapid7_insightvm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ export: image

# Make will not run a target if a file of the same name exists unless setting phony targets
# https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html
.PHONY: default tarball image regenerate
.PHONY: default tarball image regenerate
12 changes: 11 additions & 1 deletion rapid7_insightvm/bin/komand_rapid7_insightvm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ from komand_rapid7_insightvm import connection, actions, triggers

Name = 'Rapid7 InsightVM'
Vendor = 'rapid7'
Version = '3.4.0'
Version = '3.5.0'
Description = 'InsightVM is a powerful vulnerability management tool which finds, prioritizes, and remediates vulnerabilities'


Expand All @@ -19,6 +19,8 @@ class ICONRapid7Insightvm(komand.Plugin):
description=Description,
connection=connection.Connection()
)
self.add_trigger(triggers.NewExceptionRequest())

self.add_trigger(triggers.NewScans())

self.add_action(actions.AddScanEnginePoolEngine())
Expand All @@ -31,6 +33,8 @@ class ICONRapid7Insightvm(komand.Plugin):

self.add_action(actions.CreateAssetGroup())

self.add_action(actions.CreateException())

self.add_action(actions.CreateScanEngine())

self.add_action(actions.CreateScanEnginePool())
Expand All @@ -43,6 +47,8 @@ class ICONRapid7Insightvm(komand.Plugin):

self.add_action(actions.DeleteAssetGroup())

self.add_action(actions.DeleteException())

self.add_action(actions.DeleteScanEngine())

self.add_action(actions.DeleteScanEnginePool())
Expand Down Expand Up @@ -119,6 +125,8 @@ class ICONRapid7Insightvm(komand.Plugin):

self.add_action(actions.GetVulnerabilitiesByCve())

self.add_action(actions.GetVulnerability())

self.add_action(actions.GetVulnerabilityAffectedAssets())

self.add_action(actions.ListReports())
Expand All @@ -139,6 +147,8 @@ class ICONRapid7Insightvm(komand.Plugin):

self.add_action(actions.RemoveUserSiteAccess())

self.add_action(actions.ReviewException())

self.add_action(actions.Scan())

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

0 comments on commit 094452a

Please sign in to comment.