sniffer

Packet sniffing in Python (Windows)

Hi all, What is the best way to sniff network packets using Python? I've heard from several places that the best module for this is a module called Scapy, unfortunately, it makes python.exe crash on my system. I would assume that it's just a problem with how I installed it, except that many other people have told me that it doesn't wor...

How to listen to USB PORT

I need to create a USB Sniffer application that can read the data which comes or goes through the USB PORT. I need to develope this application in c# so kindly help me out to get this. ...

How do I hook the TCP stack in Windows to sniff and modify packets?

I'd like to write a packet sniffer and editor for Windows. I want to able to see the contents of all packets entering and leaving my system and possibly modify them. Any language is fine but I'd like it to run fast enough that it won't burden the system. I've read a little about WinPcap but the documentation claims that you can't use ...

Identifying characteristics of certain categories network traffic (originating from load balancer or port based NAT)

I'm using a sniffer (such as Wireshark) to monitor network traffic. I have no prior knowledge of the network topology. My purpose is to identify IPs as load balancers or NAT entry points. How can I identify that a particular packet originated from a load balancer or has come through a firewall and has had port based network address tra...

Cookie sniffer - PHP

I guys. Have worked around with cookies in PHP for some time. However something came to my mind. Does its possible to gather all cookies (without knowing its names), or at least list all cookies names present in a browser? Regards. ...

What HTTP traffic monitor would you recommend for Windows?

I need the sniffer to test network traffic of applications developed by me for Windows and Facebook. Basic requirements: -display request and response -display HTTP headers -display the time it took to complete HTTP request Now I'm using HTTP Analyzer. A very good tool, but it terminates with some error after 10-15 min running on Vista....

WinUSB application or User-Mode Driver as a filter driver for USB Analysis/Sniffer/Trending

A question to maybe some who have worked extensively with WinUSB APIs or use mode USB drivers - Does anyone know if the WinUSB API or a user mode driver can be used as a passive observer of USB connections, capturing notification of interrupts, control requests, data transfers...etc without interfering with other applications (such as iT...

HTTP and HTTPS sniffer for Windows

Hi. Does any of you know a good HTTP / HTTPS packet sniffer for Windows? I need it for debugging a webapp I prefer open source (.NET), but shareware or paid products are also of interest. /Thanks ...

HTTP packet reconstruction

If I have a large HTTP packet which has been split up into a number of TCP packets, how can I reconstruct them back into a single HTTP packet? Basically, where in the packet do I look to tell when a HTTP packet is starting/ending? I can't seem to see any flags/fields in the TCP header that denote the start or end of the HTTP packet. ...

sockets sniffer

Does someone know of a good .Net socket sniffer? I'm trying to build an IM sniffer that can show the Unicode chars correctly. TY ...

Serial / Com Port monitor for Windows x64

Can anyone recommend any good Com port monitor tools, like Portmon, which also work on Windows x64? Ideally something open source / freeware would be good. ...

How can I convert PHP Code Sniffer XML report into HTML?

Can you suggest some method of converting PHP Code Sniffer XML report into HTML page(s). I guess I might need some XSLT translation… Thanks in advance for the advice. ...

Socket Proxy Server

Suppose Client A connects though TCP/IP Sockets to Server B Is it possible to create a Proxy Like Server thing to do this: Client A Connects to Proxy X ; And tried to authenticate to the server (sends authentication data) ; Proxy X receives those data and sends them to Server B and gets the response from the Server B and returns the res...

Selenium-RC: Is there a way to sniff the incoming/outgoing HTTP requests

Like HTTP Headers in firefox, I would like to save all the HTTP requests and responses (more importantly requests) that are sent/received during the run of selenium. Is there a built-in tool or do I have to combine the script with wireshark/fiddler? if there isn't what's the most convenient way of doing this? ...

Raw Socket Programming

Hi, I want to implement a simple firewall using raw sockets. I found some sniffer samples but I want to know if it is possible to drop unwanted packets using raw sockets. It is very important for me. Please let me know how can I do that? ...

What (software) usb sniffers are available for windows?

Are there any software drivers for windows 7 (64-bit) that can report the data transferred between some application software and a usb device? I have tried snoopy (http://sourceforge.net/projects/usbsnoop/) but I can't get it working. Possibly I would need to go down the route of installing an earlier version of windows. Any other sug...

Send data over the net between a client and server

Hi all, I've build a software that connects to DB and does stuff (does not really matters what) also you can connect from remote computer to the server but this way is wrong cause if it's over the net, the connection string is not encrypted, what i want to do is actually build kind of sniffer that decrypt data, waiting for a "call" from ...

help in security assignment

i have to write a program that sniffs network packets (part1-the simple part). and i have to update the program (part2) so that it will be able to terminate connections. the specific requirements are: construct raw packets by specifying data link layer and network layer information including appropriate source and destination MAC and IP ...

http sniffer not working in a LAN setting

Hi , I wrote a http sniffer program , first ran it in my standalone pc < fedora OS >, and it worked well. And when i tried this in a LAN setting < bus-LAN , fedora OS again > , and set the eth0 to promisc mode , the program captures only the URLs browsed by the system in which it is running , but not the ones browsed in neighbouring sys...

Android emulator: How to monitor network traffic?

How do I monitor network traffic sent and received from my android emulator? ...