コード例 #1
0
ファイル: AuxiliaryDnsServer.cs プロジェクト: 0x0mar/Xploit
        public override bool Run()
        {
            if (!DumpFolder.Exists) return false;

            DnsServer server = new DnsServer(LocalAddress, 10, 10, ProcessQuery);
            server.Start();

            CreateJob(server);
            return true;
        }
コード例 #2
0
ファイル: DnsServer.cs プロジェクト: santatic/Xploit
        public override bool Run()
        {
            if (!DumpFolder.Exists)
            {
                return(false);
            }

            XPloit.Core.Dns.DnsServer server = new XPloit.Core.Dns.DnsServer(LocalAddress, 10, 10, ProcessQuery);
            server.Start();

            CreateJob(server);
            return(true);
        }