Git Product home page Git Product logo

c-sharp-multi-threaded-port-scanner's People

Contributors

leoying31 avatar philipmur avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

c-sharp-multi-threaded-port-scanner's Issues

Port efficiency

Hi mate.

I was able to get 300-500 threads going (depends on the system - specify 500, .net may only open 300)
I believe ports were not being cleaned up perhaps.
Much less cpu - and a quicker finish.

In PortScanner.start

  • ThreadPool.SetMaxThreads(threadCounter, threadCounter);
    
  •    for (int i = 0; i < threadCounter; i++)
         {
             if (!portList.MorePorts())
                 return;
    

In RunScanTcp

  • Thread.Seep(100)` //quicker, more threads, than 1ms
    
  •             var con = Connect(host, port, tcpTimeout);
                 if (con != null)
                 {
                     con.Close();
                     Console.ForegroundColor = ConsoleColor.Green;
                     Console.WriteLine("TCP Port {0} is open ", port);
                 }
    

In Connect

  • Instead of throw Exception

    newClient.Close();
    return null;
    

PortList

  • private Object threadLock = new Object();
    
  • public bool MorePorts()
     {
         lock (threadLock) return (stop - ports) >= 0;
     }
     public int NextPort()
     {
         lock (threadLock)
         {
             if (MorePorts())
             {
                 return ports++;
             }
         }
         return -1;
     }
    

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.