Exemplo n.º 1
0
        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;
        }
Exemplo n.º 2
0
        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;
        }
Exemplo n.º 3
0
        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;
        }
Exemplo n.º 4
0
        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;
        }
Exemplo n.º 5
0
 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)
 {
 }
Exemplo n.º 6
0
 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)
 {
 }