Re: [BangPypers] Implementing Protocol Sniffer in Python.

2009-03-12 Thread learningpython
Hi All, My name is Anand and i would like to thank you every one helped me. I will explore all your response and get back to you. I am very new in python and your help is really much appreciated. Thanks every one. Regards -- Anand b_dutta wrote: > > Hi 'Learning Python': > It'd be much better

Re: [BangPypers] Implementing Protocol Sniffer in Python.

2009-03-09 Thread Banibrata Dutta
Hi 'Learning Python': It'd be much better you appeared to have a usual name :-) ... people like responding to human beings with names. You would need 2 things:-- 1) way to sniff packets off the network. one (common) way to do it is to use LibPCAP (Wireshark, Ethereal, Tcpdump... all of those FOSS

Re: [BangPypers] Implementing Protocol Sniffer in Python.

2009-03-09 Thread Radhakrishna Rao
i dont know about ASN.1 but there is a very good network tool available in python called scapy. you can check it out at http://www.secdev.org/projects/scapy/ On Mon, Mar 9, 2009 at 2:08 PM, learningpython wrote: > > Hello > I am very new to Python and looking forward to implement in Python the AS

Re: [BangPypers] Implementing Protocol Sniffer in Python.

2009-03-09 Thread Anand Balachandran Pillai
On Mon, Mar 9, 2009 at 2:22 PM, wrote: >> 1. Functions to extract the bytes and bits from received from network in a >> serial input and performing decoding based on the input. > > - libpcap (or WinPcap) is the library to sniff network traffic. There > are couple of python wrappers over libpcap.

Re: [BangPypers] Implementing Protocol Sniffer in Python.

2009-03-09 Thread n . s . buttar
> 1. Functions to extract the bytes and bits from received from network in a > serial input and performing decoding based on the input. - libpcap (or WinPcap) is the library to sniff network traffic. There are couple of python wrappers over libpcap. I have used Pcapy (http://oss.coresecurity.com/p

Re: [BangPypers] Implementing Protocol Sniffer in Python.

2009-03-09 Thread Ranganath s
ASN.1 are u hinting about SNMP ? look in at net-snmp.sourceforge.net -Ranganath.S On Mon, Mar 9, 2009 at 2:08 PM, learningpython wrote: > > Hello > I am very new to Python and looking forward to implement in Python the > ASN.1 > protocol sniffer. > I need two helps here. > 1. Functions to ex