Click here to Skip to main content
Licence 
First Posted 5 Nov 2007
Views 38,488
Downloads 1,939
Bookmarked 60 times

A Little Sniffer that Uses WSA Sockets (Windows Sockets)

By | 5 Nov 2007 | Article
Demonstrates how to intercept network traffic (IP packets) by putting a socket in promiscuous mode
Screenshot - lsniff_01.jpg

Introduction

Many people have used a sniffer at some time. What is a sniffer? A sniffer is an application that catches all network traffic from or to computers attached to a network. Basically, what a sniffer really does is pay attention to all traffic by putting a network interface in the promiscuous mode state. Promiscuous mode puts a selected network interface to listening to all packets passing through it.

This article demonstrates how an application can configure a socket connection to pay attention to all network packets, instead of only those addressed to it. It shows how to grab protocols encapsulated by IP (Internet Protocol: network layer protocol), specifically, TCP and ICMP. IP encapsulates up to 100 different protocols. I advise you to take a look at the RFC 1700, as there is a complete list of all protocols that IP encapsulates.

Let Us Start to Sniff

The demo project contains a single executable named lsniff.exe, which is a console application. The syntax is:

lsniff [TCP|ICMP]

  • TCP grabs TCP packets only (RFC 793).
  • ICMP grabs ICMP packets only (RFC 792).
  • lsniff, with no arguments, will grab TCP and ICMP packets.
Screenshot - lsniff_02.jpg

Figure 1: example of lsniff grabbing only ICMP packets

You also can redirect the output to a file: lsniff icmp >output.txt

Understanding the Source Code

lsniff is a C/C++ application coded using Visual Studio 2005. It will compile in older compilers, too. It is really simple. In fact, the difficult part is to analyze the packets because you must know the packet structure that depends upon the protocol. Windows Socket API (WSA) offers the tools (functions) to create a simple sniffer.

It is worth mentioning that lsniff will run only if the you are logged on with administrative privileges. By reading lsniff_main.cpp, we will see the 4 necessary steps to start working in the promiscuous mode state:

  1. Initialize Windows Sockets (line 107).

  2. Get a RAW socket (line 111). RAW is a special type of socket that gives you access to packet headers, not only the data.

      sniff_socket = socket( AF_INET, SOCK_RAW, IPPROTO_IP );
  3. Bind the socket to the interface you want to sniff (line 119-127).

  4. Set the socket to promiscuous mode (line 135).

      if ( WSAIoctl( sniff_socket,
                     SIO_RCVALL,
                     &optval,
                     sizeof(optval),
                     NULL,
                     0,
                     &dwLen,
                     NULL,
                     NULL ) == SOCKET_ERROR )
    
        {
        printf( "Error: WSAIoctl  = %ld\n", WSAGetLastError() );
        exit(-3);
        }

After all those 4 steps have been successfully performed, it is time to start reading the packets. Notice that you should provide a buffer big enough (LS_MAX_PACKET_SIZE) to the recv function. The first check made after a packet has been read is the IP version (line 161):

      if ( LS_HI_PART(ip_header->ver_ihl) != 4 ) 
         continue;

lsniff only parses IPv4 packets, not IPv6. Furthermore, the IP header is parsed to know what protocol is encapsulated. Notice that lsniff does not care about packet data, only packet headers. The rest of the code depends upon your knowledge about the protocol you want to parse. Of course, you can extend lsniff by adding more protocol-parsing routines. It is good practice to use a professional sniffer (like Ethereal) to help you to parse packets:

Screenshot - lsniff_03.jpg

Figure 2: parsing packets

Enjoy. I hope this helps.

History

  • 5 November, 2007: First version

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

Ciro Sisman Pereira

Software Developer (Senior)

Brazil Brazil

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
GeneralMy vote of 5 PinmemberSergey Chepurin10:30 18 Sep '11  
GeneralMy vote of 5 Pinmembersumetp7:11 18 Sep '11  
Questionwhy source ip unchanged Pinmemberidiot7270:11 16 Aug '11  
QuestionXP OK Win 7 Not OK PinmemberMember 77661806:43 22 Jul '11  
GeneralTurn Off Administrative PinmemberMember 776618014:00 1 May '11  
GeneralUDP PinmemberMember 77661805:13 24 Apr '11  
GeneralNot Reading PinmemberMember 77661804:55 22 Apr '11  
GeneralRe: Not Reading PinmemberMember 77661804:59 22 Apr '11  
GeneralMy vote of 5 Pinmembergndnet21:20 16 Dec '10  
Generalgetting error 10022 Pinmemberpaposoft14:15 23 Feb '10  
General[Message Deleted] Pinmemberit.ragester21:43 2 Apr '09  
GeneralCapturing full package including the ethernet header Pinmembermatoust10:26 27 Feb '09  
Generalplease help Pinmembergdsivan23:58 10 Dec '08  
Questiontraffic count to small Pinmemberklsc180619:43 9 Oct '08  
GeneralNetwork Sniffer. PinmemberSouldx72:54 12 Jul '08  
QuestionARP packets PinmemberHerb Miller3:04 12 Jun '08  
AnswerRe: ARP packets PinmemberCiro Sisman Pereira16:27 13 Jun '08  
GeneralRe: ARP packets PinmemberJason McBurney4:26 18 Jul '08  
QuestionQuestion PinmemberAlireza_136222:06 10 Feb '08  
I couldn't run your source program and your demo project didn't work,please guide me,thanks !!!!!!
thanks for your good programming,i was really impressed.
GeneralRe: Question PinmemberAghaKhan12:30 4 Mar '08  
AnswerRe: Question PinmemberCiro Sisman Pereira17:40 9 Mar '08  
GeneralRe: Question PinmemberAlireza_13623:18 18 Mar '08  

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
Web02 | 2.5.120529.1 | Last Updated 5 Nov 2007
Article Copyright 2007 by Ciro Sisman Pereira
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid