UNPKG

@eurekadevsecops/radar

Version:

Radar is an open-source orchestrator of security scanners.

16 lines (15 loc) 382 B
module.exports = { summary: 'display available scanners', description: ` Displays available scanners. `, examples: [ '$ radar scanners' ], run: async (toolbox, args) => { const { log, scanners } = toolbox for (const scanner of scanners) { log(`${scanner.name}: ${scanner.title} [${scanner.categories.join()}] - ${scanner.description}`) } } }