Click here to Skip to main content
15,881,687 members
Articles / Desktop Programming / MFC
Article

EnetstatX

Rate me:
Please Sign up or sign in to vote.
4.42/5 (26 votes)
9 Jun 20041 min read 117.1K   4K   41   34
Enhance netstat and packet filtering.

Sample Image - EnetstatX_img.jpg

Introduction

This article represents an update to my previous one "Enhance netstat". What's new regarding EnetstatX? It has packet filtering capabilities, sniffing using raw sock (disabled from menu, but could be enabled and extended by developers) and pop-up taskbar notifier concerning incoming and outgoing connections.

Description

What it does and base functionalities?

We have three base functionalities:

  • TCP connection manager
  • UDP connection manager
  • Packet filtering
  • Packet sniffing

How it does it?

  • TCP & UDP connection manager is using the following APIs:
     // Gets extended TCP Connection/UDP Listener Table //
     // ! Note -> imported function from iphlpapi.dll          //
    typedef DWORD (WINAPI *pAllocateAndGetTcpExTableFromStack)(
         IN OUT PMIB_TCPTABLE_EX *pTcpTableEx, 
         IN BOOL,
         IN HANDLE,
         IN DWORD, 
         IN DWORD);
    
    typedef DWORD (WINAPI *pAllocateAndGetUdpExTableFromStack) (
         IN OUT PMIB_UDPTABLE_EX *pUdpTableEx , 
         IN BOOL,
         IN HANDLE,
         IN DWORD,
         IN DWORD);
    
    class content: CTCPTable and CUDPClass
    
  • Packet filtering is using the following APIs (iphlpapi.lib):
             PfCreateInterface
             PfAddFiltersToInterface
             PfBindInterfaceToIPAddress
             PfUnBindInterface
             PfRemoveFiltersFromInterface
             PfDeleteInterface
    
             class content: CFilter
  • Packet sniffing is using raw socket capabilities:
             // Create a raw socket 
             socket(AF_INET, SOCK_RAW, IPPROTO_IP);
    
             // Set sock option
             setsockopt( 
                  m_hSniffSocket, 
                  SOL_SOCKET,
                  SO_RCVTIMEO,
                  (const char *)&rcvtimeo,
                  sizeof(rcvtimeo))
    
             class content: CFilter

How to use it?

Hmmm ... Run it, and there will be no problem. The graphical interface is intuitive, I hope ;).

Note: WinXP supported only.

Conclusion

In the final step, I would like to tell you guys that maybe there will be an update to this article regarding design part. I didn't have much time to do it, but if one of you are interested to cooperate or to continue this project, I can give you some ideas, and if necessary all my support. What more can be done? I was thinking that it could be nice to have a "passive OS fingerprinting" module that can detect the OS of connected computers. Another module can be to focus on "report and statistics" with compare capabilities and "what's new about my connection activities" ...

Enjoy!

y0d4

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


Written By
Web Developer
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Windows 2000 fix. Pin
y0da6-Dec-04 1:26
y0da6-Dec-04 1:26 
GeneralRe: Windows 2000 fix. Pin
y0da6-Dec-04 1:29
y0da6-Dec-04 1:29 

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

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