UNPKG

@hclsoftware/secagent

Version:

IAST agent

25 lines (19 loc) 612 B
//IASTIGNORE /* * **************************************************** * Licensed Materials - Property of HCL. * (c) Copyright HCL Technologies Ltd. 2017, 2025. * Note to U.S. Government Users *Restricted Rights. * **************************************************** */ 'use strict' class AttackInfo { constructor(vulnerabilities) { this.vulnerabilities = vulnerabilities; } isRelevantVulnerability(vulnerability) { return this.vulnerabilities != null && this.vulnerabilities.has(vulnerability); } } module.exports.AttackInfo = AttackInfo;