@hclsoftware/secagent
Version:
IAST agent
25 lines (19 loc) • 612 B
JavaScript
//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;