public Analyzer(Node node, Process process, Analyzer analyzer, string analyzerId) : this(analyzerId) { this.node = node; this.process = process; this.analyzer = analyzer; }
public Source(Node node, User user, Process process, Service service, string ident, UynEnum spoofed, string i_face) { this.ident = string.IsNullOrEmpty(ident) ? "0" : ident; this.spoofed = spoofed; this.i_face = i_face; this.node = node; this.user = user; this.process = process; this.service = service; }
public Target(Node node, User user, Process process, Service service, File[] file, string ident, UynEnum decoy, string i_face) { this.ident = string.IsNullOrEmpty(ident) ? "0" : ident; this.decoy = decoy; this.i_face = i_face; this.node = node; this.user = user; this.process = process; this.service = service; this.file = file; }
public Analyzer(Node node, Process process, Analyzer analyzer, string analyzerId, string name, string manufacturer, string model, string version, string clazz, string osType, string osVersion) : this(node, process, analyzer, analyzerId) { this.name = name; this.manufacturer = manufacturer; this.model = model; this.version = version; this.clazz = clazz; this.osType = osType; this.osVersion = osVersion; }
public Target(Node node, User user, Process process, Service service, File file, string ident, UynEnum decoy, string i_face) : this(node, user, process, service, new[] {file}, ident, decoy, i_face) { }