Click here to Skip to main content
Licence 
First Posted 25 Jul 2003
Views 41,399
Bookmarked 20 times

A simple Windows port scanner - Part 2

By | 25 Jul 2003 | Article
This project is a simple Windows port scanner which can be very useful for checking your machine to make sure it is locked down!

Sample Image - pcscan2.jpg

Introduction

i've recreated Rod VanAmburgh's "a simple port scanner" (the orignal version), because it has been something i've always planned on doing. I thought I could make small improvements on a project that was already pretty nice untouched.

I have looked the code completely over and made comments here and there. I've notice that the program is a multi-threaded program, i haven't messed with multi-threading before and didn't really touch it in my version. It took me awhile to realize why you were using a thread for each port scanned for something so simple. Then i realized the programs i've made with sockets and how messing with alot of ports the computers performance can suffer. That was nice thinking on Rod VanAmburgh part.

I've change the look of the new version and added some error handling to parts here and there. I've also added a progress bar to the new version.

I've changed the class CConnectionChk:



class CConnectionChk
{
    public:

        CConnectionChk();
        CConnectionChk(CString _ip, UINT _port)
        {
            ip = _ip;
            port = _port;
            log = "";
            found = false;
            finished = false;
        }


        CString log;
        CString ip;
        UINT port;
        bool found;
        bool finished;
};

into a struct:
struct CConnectionChk
{
        CString log;
        CString ip;
        UINT port;
        bool found;
        bool finished;
};
i've commented just about everything i've changed. I hope you enjoy and add your own style to it and repost it.

--ice911 (hope you like)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

ice911

Web Developer

United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalfastest Port scanner of code project Pinmembersudhir mangla23:37 22 Dec '04  
GeneralNotify when a port is being opened... PinmemberZarrinPour3:06 4 Sep '04  
QuestionWhy? PinmemberLars-Inge Tønnessen0:06 19 Aug '03  
AnswerRe: Why? Pinmemberice9118:02 19 Aug '03  
GeneralI'll tell you why.... PinmemberAlmenara9:19 30 Dec '03  
Generalwhats your problem? PinsussTuPac Omarau16:46 10 Jun '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 26 Jul 2003
Article Copyright 2003 by ice911
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid