npmc
Version:
a package manager for JavaScript
191 lines (165 loc) • 6.12 kB
JavaScript
const Table = require('cli-table2')
const Utils = require('../lib/utils')
const report = function (data, options) {
const defaults = {
severityThreshold: 'info'
}
const blankChars = {
'top': ' ',
'top-mid': ' ',
'top-left': ' ',
'top-right': ' ',
'bottom': ' ',
'bottom-mid': ' ',
'bottom-left': ' ',
'bottom-right': ' ',
'left': ' ',
'left-mid': ' ',
'mid': ' ',
'mid-mid': ' ',
'right': ' ',
'right-mid': ' ',
'middle': ' '
}
const config = Object.assign({}, defaults, options)
let output = ''
let exit = 0
const log = function (value) {
output = output + value + '\n'
}
const footer = function (metadata) {
let total = 0
const sev = []
const keys = Object.keys(metadata.vulnerabilities)
for (let key of keys) {
const value = metadata.vulnerabilities[key]
total = total + value
if (value > 0) {
sev.push([key, value])
}
}
const severities = sev.map((value) => {
return `${value[1]} ${Utils.severityLabel(value[0], false)}`
}).join(' | ')
if (total > 0) {
exit = 1
}
if (total === 0) {
log(`${Utils.color('[+]', 'brightGreen', config.withColor)} no known vulnerabilities found`)
log(` Packages audited: ${data.metadata.totalDependencies} (${data.metadata.devDependencies} dev, ${data.metadata.optionalDependencies} optional)`)
} else {
log(`\n${Utils.color('[!]', 'brightRed', config.withColor)} ${total} ${total === 1 ? 'vulnerability' : 'vulnerabilities'} found - Packages audited: ${data.metadata.totalDependencies} (${data.metadata.devDependencies} dev, ${data.metadata.optionalDependencies} optional)`)
log(` Severity: ${severities}`)
}
}
const reportTitle = function () {
const tableOptions = {
colWidths: [78]
}
tableOptions.chars = blankChars
const table = new Table(tableOptions)
table.push([{
content: '=== npm audit security report ===',
vAlign: 'center',
hAlign: 'center'
}])
log(table.toString())
}
const actions = function (data, config) {
reportTitle()
if (Object.keys(data.advisories).length !== 0) {
// vulns found display a report.
let reviewFlag = false
data.actions.forEach((action) => {
if (action.action === 'update' || action.action === 'install') {
const recommendation = getRecommendation(action, config)
const label = action.resolves.length === 1 ? 'vulnerability' : 'vulnerabilities'
log(`# Run ${Utils.color(' ' + recommendation.cmd + ' ', 'inverse', config.withColor)} to resolve ${action.resolves.length} ${label}`)
if (recommendation.isBreaking) {
log(`SEMVER WARNING: Recommended action is a potentially breaking change`)
}
action.resolves.forEach((resolution) => {
const advisory = data.advisories[resolution.id]
const tableOptions = {
colWidths: [15, 62],
wordWrap: true
}
if (!config.withUnicode) {
tableOptions.chars = blankChars
}
const table = new Table(tableOptions)
table.push(
{[Utils.severityLabel(advisory.severity, config.withColor, true)]: Utils.color(advisory.title, 'bold', config.withColor)},
{'Package': advisory.module_name},
{'Dependency of': `${resolution.path.split('>')[0]} ${resolution.dev ? '[dev]' : ''}`},
{'Path': `${resolution.path.split('>').join(Utils.color(' > ', 'grey', config.withColor))}`},
{'More info': `https://nodesecurity.io/advisories/${advisory.id}`}
)
log(table.toString() + '\n\n')
})
}
if (action.action === 'review') {
if (!reviewFlag) {
const tableOptions = {
colWidths: [78]
}
if (!config.withUnicode) {
tableOptions.chars = blankChars
}
const table = new Table(tableOptions)
table.push([{
content: 'Manual Review\nSome vulnerabilities require your attention to resolve\n\nVisit https://go.npm.me/audit-guide for additional guidance',
vAlign: 'center',
hAlign: 'center'
}])
log(table.toString())
}
reviewFlag = true
action.resolves.forEach((resolution) => {
const advisory = data.advisories[resolution.id]
const tableOptions = {
colWidths: [15, 62],
wordWrap: true
}
if (!config.withUnicode) {
tableOptions.chars = blankChars
}
const table = new Table(tableOptions)
const patchedIn = advisory.patched_versions.replace(' ', '') === '<0.0.0' ? 'No patch available' : advisory.patched_versions
table.push(
{[Utils.severityLabel(advisory.severity, config.withColor, true)]: Utils.color(advisory.title, 'bold', config.withColor)},
{'Package': advisory.module_name},
{'Patched in': patchedIn},
{'Dependency of': `${resolution.path.split('>')[0]} ${resolution.dev ? '[dev]' : ''}`},
{'Path': `${resolution.path.split('>').join(Utils.color(' > ', 'grey', config.withColor))}`},
{'More info': `https://nodesecurity.io/advisories/${advisory.id}`}
)
log(table.toString())
})
}
})
}
}
actions(data, config)
footer(data.metadata)
return {
report: output,
exitCode: exit
}
}
const getRecommendation = function (action, config) {
if (action.action === 'install') {
const isDev = action.resolves[0].dev
return {
cmd: `npm install ${isDev ? '--dev ' : ''}${action.module}@${action.target}`,
isBreaking: action.isMajor
}
} else {
return {
cmd: `npm update ${action.module} --depth ${action.depth}`,
isBreaking: false
}
}
}
module.exports = report