首页 > Windows开发 > 详细

c#并行扫描端口控制台程序

时间:2016-05-06 09:23:27      阅读:263      评论:0      收藏:0      [点我收藏+]
  static void Main(string[] args)
        {
            Console.WriteLine("请输入ip");
            string ip = Console.ReadLine();
            Parallel.For(1, 65535, i => scan(ip, i, 200));
            Console.WriteLine("扫描完成");


        }

        public static void scan(string ip, int port, int timeout)
        {
            TcpClient tc = new TcpClient();
            tc.ReceiveTimeout = timeout;
            try
            {
                tc.Connect(ip, port);
                if (tc.Connected)
                {
                    Console.WriteLine("Port {0} is Open", port.ToString().PadRight(6));
                    Console.WriteLine("连接成功!!!");
                }
            }
            catch
            {
                //Console.WriteLine("Port {0} is Closed", port.ToString().PadRight(6));
            }
            finally
            {
                tc.Close();
                tc = null;

            }
        }

 

c#并行扫描端口控制台程序

原文:http://www.cnblogs.com/gaocong/p/5464391.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!