Tagged Questions

3
votes
3answers
224 views

Python. Class, Struct, Dictionary?

I am disassembling TCP/IP packet into string format. What is the best way to structure and store it? Should I store it as a ctypes struct, python class, dictionary, or some other way? What are the ...
3
votes
2answers
471 views

pcap python library?

I'd like to ask for recommendation of a pcap library for python. I'm doing project on .pcap file parsing. I searched google and found pylibpcap. Is there anything else out there? Which lib do you ...
3
votes
6answers
5k views

How can I filter a pcap file by specific protocol using python?

I have some pcap files and I want to filter by protocol, i.e., if I want to filter by HTTP protocol, anything but HTTP packets will remain in the pcap file. There is a tool called openDPI, and it's ...
2
votes
1answer
635 views

Capture TCP-Packets with Python

I try to capture an HTTP-download with Python using dpkt and pcap. The code looks like ... pc = pcap.pcap(iface) for ts, pkt in pc: handle_packet(pkt) def handle_packet(pkt): eth = ...
2
votes
2answers
808 views

Python Packet Sniffer

What Python module should I be using to sniff packets? I don't need anything too complex, I just need to get the data out of some packets being sent to my computer. I am using Python 2.6 and Windows ...
2
votes
1answer
539 views

Parsing pcap files with dpkt (Python)

I'm trying to parse a previously-captured trace for HTTP headers using the dpkt module: import dpkt import sys f=file(sys.argv[1],"rb") pcap=dpkt.pcap.Reader(f) for ts, buf in pcap: ...
2
votes
1answer
373 views

scapy: UDP defragmentation timestamp problem

i use the following script (python + scapy) to create a defragmented version of a pcap file that contains fragmented UDP packets. # Read pcap file in=rdpcap("in.pcap") # Defragment ... out = ...
2
votes
1answer
439 views

Changing the packet data with pcapy/impacket

I'm writing a small program in Python on Linux that will intercept packets flying over the wire on specific port from host A to host B. Host C will act as a man in the middle so all traffic will be ...
2
votes
4answers
2k views

IPv6 decoder for pcapy/impacket

I use the pcapy/impacket library to decode network packets in Python. It has an IP decoder which knows about the syntax of IPv4 packets but apparently no IPv6 decoder. Does anyone get one? In a ...
1
vote
1answer
89 views

python / dpkt: Find out if packet is a tcp packet or a udp packet ,

I have a python scripts that captures the packets on the ethernet using dpkt, but how do i differentiate between which packets are tcp and which ones are for udp. Eventually i would like to have a ...
1
vote
2answers
98 views

Sending packets from pcap with changed src/dst in scapy

I am trying to send a previously recorded traffic (captured in pcap format) with scapy. Currently I am stuck at striping original Ether layer. The traffic was captured on another host and I basically ...
1
vote
1answer
211 views

Network traffic monitor with pcapy in python

I have written simple network traffic monitor to get transfer rate in B/s and/or total data transfer (in B). However when I test it by transferring a file with ftp (using Total Commander) I just can ...
1
vote
1answer
96 views

How can I capture packets from a PPP interface with pypcap?

It's dpkt.ethernet.Ethernet(pkt) for an ethernet interface, what is it for the ppp0 interface?
1
vote
2answers
155 views

Finding the least busy open wireless network: which language to pick for this weekend project?

I am a web developer (PHP/Javascript) and to increase my skill set, I would like to learn a new language. I have a simple test project in mind for this, so I can learn more about (wireless) networks ...
1
vote
1answer
75 views

how can i redirect a user to a different server with python?

I'm trying to write a script which will monitor packets (using pypcap) and redirect certain URLs/IPs to something I choose. I know I could just edit the hosts file, but that won't work because I'm not ...
1
vote
2answers
160 views

How can I count the number of tcp retransmissions in a pcap file using python?

I have some pcap files I want to count the number of tcp retransmissions on a per-flow basis. Does anyone knows of a python module I could leverage for this?
1
vote
2answers
339 views

Resolving header dependencies in setup.py

I'm having difficulty installing a Python module on Windows. There are dependencies with the libpcap and winpcap libraries. When trying to run 'setup.py' I receive fatal errors and the script ...
1
vote
1answer
117 views

How do you Identify the interface of a packet while listening to network traffic on all devices?

I am writing a python program that needs to listening to traffic on all networking devices and identify packets based on their incoming interface. To listen on all interfaces I started my capture ...
1
vote
2answers
1k views

how to install pcap in ubuntu using python

this is my code : import pcap ,struct pack=pcap.pcap() pack.setfilter('udp') key='' for recv_time,recv_data in pack: recv_len=len(recv_data) if recv_len == 102 and recv_data[42]== chr(02) and ...
1
vote
2answers
1k views

Python and libpcap. find source mac address of packet

I'm writing python program to build mac-address cache using pcap. But pcap module for python has no good documentation. I have found this page http://pylibpcap.sourceforge.net/ with code example and ...
1
vote
1answer
323 views

missing elements from pcap?

When I check the attributes available to the module pcap, I expect to see something like [ ...snip... 'dltvalue', 'findalldevs', 'lookupdev', 'lookupnet', 'ntoa', 'pcapObject', ...
1
vote
1answer
515 views

Pypcap for mac on python 2.6?

How do you end up running pypcap for python 2.6 on a mac? It seems that there hasn't been any new releases since 2.5 or am I just looking in the wrong places? I seem to be unable to install the 2.5 ...
0
votes
0answers
12 views

dpkt throws NeedData on valid pcap

I have this python code: import sys import dpkt f = file("pcaop.Pcap") pcap = dpkt.pcap.Reader(f) i = 0 for ts, buf in pcap: print "Ya" dpkt throws NeedData on the 52nd packet. The same one ...
0
votes
0answers
135 views

Use python + dpkt to slice hex bytes of raw network packets from a pcap file?

I am used to using 'ether[0x36:1] == 0x87' style capture filters with wireshark. Now, I want to make myself a python program that lets me print out a specific range of hex bytes of each packet with ...
0
votes
1answer
115 views

reassemble pcap traces to recover HTTP level data

I have tcpdump traces from which I want to recover reassemble HTTP requests and responses. Is there a good tool to do that. Python preferred but willing to write a wrapper if python solution not ...
0
votes
1answer
73 views

Is it possible to measure packet rate with libpcap?

I have a python script, that uses libpcap (pcapy) to capture some specific packets, for example, packets from 10.1.1.1 to 10.2.2.2. Is it possible to measure that data transfer rate? I mean, we can ...
0
votes
1answer
130 views

Displaying real time output to wx.TextCtrl

I'm currently in the process of building a wi-fi packet capture utility in Ubuntu using the modules wxPython, Pcapy and impacket. I have created the GUI in wxPython and the capture code referencing ...
0
votes
2answers
505 views

'module' object has no attribute 'pcapObject'

I have the following sample code which doesn't seem to want to run. import pcap pc = pcap.pcapObject() dev = sys.argv[1] pc.open_live(dev, 1600, 0, 100) pc.setfilter("udp port 53", 0, 0) while 1: ...
0
votes
2answers
1k views

Issue reading packets from a pcap file. dpkt module. What gives?

I am running the following test script to try to read packets from a sample .pcap file I have downloaded. It won't seem to run. I have all of the modules, but no examples seem to be running. import ...