Tagged Questions
2
votes
1answer
51 views
802.11 header mismatch - pcap
I'm capturing wirless frames the first structure i'm using is
struct mgmt_header_t {
u_int16_t fc;
u_int16_t duration;
u_int8_t da[6];
u_int8_t sa[6];
u_int8_t ...
2
votes
2answers
796 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
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
85 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
1answer
79 views
Processing wireless frames with pcap
I am working on a project that involves interacting with the data in 802.11 frames. I am using libpcap 1.0. I have written code from most of the tutorials on the website as well as online that i could ...
1
vote
1answer
95 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
398 views
linux editor similar to notepad++ for packet captures
I am looking for a very specific functionality which Notepad++ has in a linux text editor:
So you have a spiffy packet from tcpdump. Notepad++ allows you to easily strip away the left hex via ...
1
vote
3answers
207 views
How can I edit a js file sent by the server before it gets to my browser?
During a normal browsing session I want to edit a specific javascript file before the browser receives since once it gets there it's impossible to edit. Is there are any tool for this? For what I need ...
1
vote
1answer
319 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
4answers
1k views
How to send pcap file packets on NIC?
I have some network traffic captured pcap file and want to send its packets on NIC; is it possible? Is there any application to do this?
0
votes
1answer
45 views
How do I use tshark to print request-response pairs from a pcap file?
Given a pcap file, I'm able to extract a lot of information from the reconstructed HTTP request and responses using the neat filters provided by Wireshark. I've also been able to split the pcap file ...
0
votes
1answer
127 views
Captured packets of edonky2000 protocol
Is there any captured packets of edonky2000 protocol, I am looking for the following type of messages:
login message.
search(client-server, client to
servers) message.
download
message.
upload ...
0
votes
1answer
439 views
How do I get Wireshark to read header-less pcap files without a UDP/IP/Ethernet header?
Does Wireshark support a format that doesn't require TCP/UDP/Ethernet headers in every packet?
Any other (non-pcap) formats wireshark supports would be appreciated. I need to get header-less data ...
0
votes
1answer
63 views
pcap only picking up on new connections
I wrote a very simple C program to do a packet capture using pcap. Thing is, it only picks up on a small subset of my network activity. (I think the pattern is that it only picks up on new TCP ...
0
votes
2answers
711 views
SharpPcap - A Packet Capture getting messesge problem
I trying to capture packets using SharpPcap library.
I'm able to return the packets details but I'm having problem to get what the message content inside the packet.
the packet using .Data to return ...
0
votes
2answers
504 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
1answer
315 views
printing sequence number of a sniffed packet
i am using pcap to create a packet sniffer.
i have this tcp structure:
typedef struct TSP_header{
unsigned short int sport;
unsigned short int dport;
unsigned int seqnum;
...