| const npmFetch = require('npm-registry-fetch')
|
| const localeCompare = require('@isaacs/string-locale-compare')('en')
|
| const npa = require('npm-package-arg')
|
| const pacote = require('pacote')
|
| const tufClient = require('@sigstore/tuf')
|
| const { log, output } = require('proc-log')
|
|
|
| const sortAlphabetically = (a, b) => localeCompare(a.name, b.name)
|
|
|
| class VerifySignatures {
|
| constructor (tree, filterSet, npm, opts) {
|
| this.tree = tree
|
| this.filterSet = filterSet
|
| this.npm = npm
|
| this.opts = opts
|
| this.keys = new Map()
|
| this.invalid = []
|
| this.missing = []
|
| this.checkedPackages = new Set()
|
| this.verified = []
|
| this.auditedWithKeysCount = 0
|
| this.verifiedSignatureCount = 0
|
| this.verifiedAttestationCount = 0
|
| this.exitCode = 0
|
| }
|
|
|
| async run () {
|
| const start = process.hrtime.bigint()
|
| const { default: pMap } = await import('p-map')
|
|
|
|
|
| const { edges, registries } = this.getEdgesOut(this.tree.inventory.values(), this.filterSet)
|
| if (edges.size === 0) {
|
| throw new Error('found no installed dependencies to audit')
|
| }
|
|
|
| const tuf = await tufClient.initTUF({
|
| cachePath: this.opts.tufCache,
|
| retry: this.opts.retry,
|
| timeout: this.opts.timeout,
|
| })
|
| await Promise.all([...registries].map(registry => this.setKeys({ registry, tuf })))
|
|
|
| log.verbose('verifying registry signatures')
|
| await pMap(edges, (e) => this.getVerifiedInfo(e), { concurrency: 20, stopOnError: true })
|
|
|
|
|
| if (!this.auditedWithKeysCount && !this.verifiedAttestationCount) {
|
| throw new Error('found no dependencies to audit that were installed from ' +
|
| 'a supported registry')
|
| }
|
|
|
| const invalid = this.invalid.sort(sortAlphabetically)
|
| const missing = this.missing.sort(sortAlphabetically)
|
|
|
| const hasNoInvalidOrMissing = invalid.length === 0 && missing.length === 0
|
|
|
| if (!hasNoInvalidOrMissing) {
|
| process.exitCode = 1
|
| }
|
|
|
| if (this.npm.config.get('json')) {
|
| const result = { invalid, missing }
|
| if (this.npm.config.get('include-attestations')) {
|
| result.verified = this.verified
|
| }
|
| output.buffer(result)
|
| return
|
| }
|
| const end = process.hrtime.bigint()
|
| const elapsed = end - start
|
|
|
| const auditedPlural = this.auditedWithKeysCount > 1 ? 's' : ''
|
| const timing = `audited ${this.auditedWithKeysCount} package${auditedPlural} in ` +
|
| `${Math.floor(Number(elapsed) / 1e9)}s`
|
| output.standard(timing)
|
| output.standard()
|
|
|
| const verifiedBold = this.npm.chalk.bold('verified')
|
| if (this.verifiedSignatureCount) {
|
| if (this.verifiedSignatureCount === 1) {
|
| output.standard(`${this.verifiedSignatureCount} package has a ${verifiedBold} registry signature`)
|
| } else {
|
| output.standard(`${this.verifiedSignatureCount} packages have ${verifiedBold} registry signatures`)
|
| }
|
| output.standard()
|
| }
|
|
|
| if (this.verifiedAttestationCount) {
|
| if (this.verifiedAttestationCount === 1) {
|
| output.standard(`${this.verifiedAttestationCount} package has a ${verifiedBold} attestation`)
|
| } else {
|
| output.standard(`${this.verifiedAttestationCount} packages have ${verifiedBold} attestations`)
|
| }
|
| if (!this.npm.config.get('include-attestations')) {
|
| output.standard('(use --json --include-attestations to view attestation details)')
|
| }
|
| output.standard()
|
| }
|
|
|
| if (missing.length) {
|
| const missingClr = this.npm.chalk.redBright('missing')
|
| if (missing.length === 1) {
|
| output.standard(`1 package has a ${missingClr} registry signature but the registry is providing signing keys:`)
|
| } else {
|
| output.standard(`${missing.length} packages have ${missingClr} registry signatures but the registry is providing signing keys:`)
|
| }
|
| output.standard()
|
| missing.map(m =>
|
| output.standard(`${this.npm.chalk.red(`${m.name}@${m.version}`)} (${m.registry})`)
|
| )
|
| }
|
|
|
| if (invalid.length) {
|
| if (missing.length) {
|
| output.standard()
|
| }
|
| const invalidClr = this.npm.chalk.redBright('invalid')
|
|
|
| const invalidSignatures = this.invalid.filter(i => i.code === 'EINTEGRITYSIGNATURE')
|
| if (invalidSignatures.length) {
|
| if (invalidSignatures.length === 1) {
|
| output.standard(`1 package has an ${invalidClr} registry signature:`)
|
| } else {
|
| output.standard(`${invalidSignatures.length} packages have ${invalidClr} registry signatures:`)
|
| }
|
| output.standard()
|
| invalidSignatures.map(i =>
|
| output.standard(`${this.npm.chalk.red(`${i.name}@${i.version}`)} (${i.registry})`)
|
| )
|
| output.standard()
|
| }
|
|
|
| const invalidAttestations = this.invalid.filter(i => i.code === 'EATTESTATIONVERIFY')
|
| if (invalidAttestations.length) {
|
| if (invalidAttestations.length === 1) {
|
| output.standard(`1 package has an ${invalidClr} attestation:`)
|
| } else {
|
| output.standard(`${invalidAttestations.length} packages have ${invalidClr} attestations:`)
|
| }
|
| output.standard()
|
| invalidAttestations.map(i =>
|
| output.standard(`${this.npm.chalk.red(`${i.name}@${i.version}`)} (${i.registry})`)
|
| )
|
| output.standard()
|
| }
|
|
|
| if (invalid.length === 1) {
|
| output.standard(`Someone might have tampered with this package since it was published on the registry!`)
|
| } else {
|
| output.standard(`Someone might have tampered with these packages since they were published on the registry!`)
|
| }
|
| output.standard()
|
| }
|
| }
|
|
|
| getEdgesOut (nodes, filterSet) {
|
| const edges = new Set()
|
| const registries = new Set()
|
| for (const node of nodes) {
|
| for (const edge of node.edgesOut.values()) {
|
| const filteredOut =
|
| edge.from
|
| && filterSet
|
| && filterSet.size > 0
|
| && !filterSet.has(edge.from.target)
|
|
|
| if (!filteredOut) {
|
| const spec = this.getEdgeSpec(edge)
|
| if (spec) {
|
|
|
| registries.add(this.getSpecRegistry(spec))
|
| }
|
| edges.add(edge)
|
| }
|
| }
|
| }
|
| return { edges, registries }
|
| }
|
|
|
| async setKeys ({ registry, tuf }) {
|
| const { host, pathname } = new URL(registry)
|
|
|
| const regKey = `${host}${pathname.replace(/\/$/, '')}/keys.json`
|
| let keys = await tuf.getTarget(regKey)
|
| .then((target) => JSON.parse(target))
|
| .then(({ keys: ks }) => ks.map((key) => ({
|
| ...key,
|
| keyid: key.keyId,
|
| pemkey: `-----BEGIN PUBLIC KEY-----\n${key.publicKey.rawBytes}\n-----END PUBLIC KEY-----`,
|
| expires: key.publicKey.validFor.end || null,
|
| }))).catch(err => {
|
| if (err.code === 'TUF_FIND_TARGET_ERROR') {
|
| return null
|
| } else {
|
| throw err
|
| }
|
| })
|
|
|
|
|
| if (!keys) {
|
| log.warn(`Fetching verification keys using TUF failed. Fetching directly from ${registry}.`)
|
| keys = await npmFetch.json('/-/npm/v1/keys', {
|
| ...this.npm.flatOptions,
|
| registry,
|
| }).then(({ keys: ks }) => ks.map((key) => ({
|
| ...key,
|
| pemkey: `-----BEGIN PUBLIC KEY-----\n${key.key}\n-----END PUBLIC KEY-----`,
|
| }))).catch(err => {
|
| if (err.code === 'E404' || err.code === 'E400') {
|
| return null
|
| } else {
|
| throw err
|
| }
|
| })
|
| }
|
|
|
| if (keys) {
|
| this.keys.set(registry, keys)
|
| }
|
| }
|
|
|
| getEdgeType (edge) {
|
| return edge.optional ? 'optionalDependencies'
|
| : edge.peer ? 'peerDependencies'
|
| : edge.dev ? 'devDependencies'
|
| : 'dependencies'
|
| }
|
|
|
| getEdgeSpec (edge) {
|
| let name = edge.name
|
| try {
|
| name = npa(edge.spec).subSpec.name
|
| } catch {
|
|
|
| }
|
| try {
|
| return npa(`${name}@${edge.spec}`)
|
| } catch {
|
|
|
| }
|
| }
|
|
|
| buildRegistryConfig (registry) {
|
| const keys = this.keys.get(registry) || []
|
| const parsedRegistry = new URL(registry)
|
| const regKey = `//${parsedRegistry.host}${parsedRegistry.pathname}`
|
| return {
|
| [`${regKey}:_keys`]: keys,
|
| }
|
| }
|
|
|
| getSpecRegistry (spec) {
|
| return npmFetch.pickRegistry(spec, this.npm.flatOptions)
|
| }
|
|
|
| getValidPackageInfo (edge) {
|
| const type = this.getEdgeType(edge)
|
|
|
|
|
| if (edge.error === 'MISSING' && type !== 'dependencies') {
|
| return
|
| }
|
|
|
| const spec = this.getEdgeSpec(edge)
|
|
|
| if (!spec) {
|
| return
|
| }
|
| const node = edge.to || edge
|
| const { version } = node.package || {}
|
|
|
| if (node.isWorkspace ||
|
| !version ||
|
| !spec.registry) {
|
| return
|
| }
|
|
|
| for (const omitType of this.npm.config.get('omit')) {
|
| if (node[omitType]) {
|
| return
|
| }
|
| }
|
|
|
| return {
|
| name: spec.name,
|
| version,
|
| type,
|
| location: node.location,
|
| registry: this.getSpecRegistry(spec),
|
| }
|
| }
|
|
|
| async verifySignatures (name, version, registry) {
|
| const {
|
| _integrity: integrity,
|
| _signatures,
|
| _attestations,
|
| _attestationBundles,
|
| _resolved: resolved,
|
| } = await pacote.manifest(`${name}@${version}`, {
|
| verifySignatures: true,
|
| verifyAttestations: true,
|
| ...this.buildRegistryConfig(registry),
|
| ...this.npm.flatOptions,
|
| })
|
| const signatures = _signatures || []
|
| const result = {
|
| integrity,
|
| signatures,
|
| attestations: _attestations,
|
| attestationBundles: _attestationBundles,
|
| resolved,
|
| }
|
| return result
|
| }
|
|
|
| async getVerifiedInfo (edge) {
|
| const info = this.getValidPackageInfo(edge)
|
| if (!info) {
|
| return
|
| }
|
| const { name, version, location, registry, type } = info
|
| if (this.checkedPackages.has(location)) {
|
|
|
| return
|
| }
|
| this.checkedPackages.add(location)
|
|
|
|
|
| const keys = this.keys.get(registry) || []
|
| if (keys.length) {
|
| this.auditedWithKeysCount += 1
|
| }
|
|
|
| try {
|
| const { integrity, signatures, attestations, attestationBundles, resolved } =
|
| await this.verifySignatures(name, version, registry)
|
|
|
|
|
|
|
| if (signatures.length) {
|
| this.verifiedSignatureCount += 1
|
| } else if (keys.length) {
|
| this.missing.push({
|
| integrity,
|
| location,
|
| name,
|
| registry,
|
| resolved,
|
| version,
|
| })
|
| }
|
|
|
|
|
| if (attestations) {
|
| this.verifiedAttestationCount += 1
|
| if (this.npm.config.get('include-attestations')) {
|
| this.verified.push({
|
| name,
|
| version,
|
| location,
|
| registry,
|
| attestations,
|
| attestationBundles,
|
| })
|
| }
|
| }
|
| } catch (e) {
|
| if (e.code === 'EINTEGRITYSIGNATURE' || e.code === 'EATTESTATIONVERIFY') {
|
| this.invalid.push({
|
| code: e.code,
|
| message: e.message,
|
| integrity: e.integrity,
|
| keyid: e.keyid,
|
| location,
|
| name,
|
| registry,
|
| resolved: e.resolved,
|
| signature: e.signature,
|
| predicateType: e.predicateType,
|
| type,
|
| version,
|
| })
|
| } else {
|
| throw e
|
| }
|
| }
|
| }
|
| }
|
|
|
| module.exports = VerifySignatures
|
|
|