UNPKG

@hclsoftware/secagent

Version:

IAST agent

28 lines (19 loc) 665 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 SinkTaskInfo { constructor(exploitExample, contextTypes= null, exploits = null, vulnerability = null) { this.exploitExample = exploitExample; this.contextTypes = contextTypes; this.exploits = exploits; this.vulnerability = vulnerability; this.hasSinkInfo = contextTypes != null; } } module.exports = SinkTaskInfo