-
Notifications
You must be signed in to change notification settings - Fork 22
7 Plugins support
vFeed, Inc edited this page Aug 27, 2021
·
1 revision
The vFeed Professional vulnerability & threat services supports the integration of third-party plugins. This feature is only taking effect if a valid subscription for the plugin itself is available.
The plugins set can be checkout from our GitHub repository.
For each plugin, the appropriate readme
file is attached with all requirements and installation hints.
The plugins are loaded from the API pyvfeed
:
import importlib
sys.path.append("..")
plg_name = "d2sec"
# or from CMD line
# plg_name = args.plugin[0]
module = str.join('.', ('plugins', plg_name, 'api'))
api_class = getattr(importlib.import_module(module),"api")
api_class().test()
Every plugin has its set of commands. Please refer to the documentation in the Plugins repository.