Tagged Questions

4
votes
2answers
3k views

how do you decrypt SSH .pcap file that uses Diffie Hellman ecryption. With public and private keys

how do you decrypt SSH .pcap file that uses Diffie Hellman ecryption. With public and private keys. We are trying through Wireshark with no luck. please advise.
4
votes
5answers
4k views

How to concatenate two tcpdump files (pcap files)

How to concatenate two tcpdump files, so that one traffic will appear after another in the file? To be concrete I want to "multiply" one tcpdump file, so that all the sessions will be repeated one ...
2
votes
2answers
68 views

“Replay” tcpdump file

I am writing a program for analyzing certain type of packets. I got the dump file containing test packets in tcpdump format. is there any way to send this dump into one of the interfaces? I thought ...
2
votes
3answers
500 views

Get the Network Interface Name in C#

I'm writing a program which uses the wPCAP library. I managed to get out the list of interface names: \Device\NPF_{A9734063-CA83-4D91-A35B-CC727749256A ... Now my question is: how do I know ...
2
votes
3answers
2k views

Can libpcap reassemble TCP segments

I need to sniff TCP traffic into my application. Can libpcap reassemble TCP segments or I have to do it manually? The home page says "Full documentation is provided with the source packages in man ...
1
vote
1answer
208 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
2answers
307 views

Decoding G.729 using FFMPEG from RTP stream (PCAP)

I have pcap file that contains RTP data which in turn is audio for G.729 codec. Is there a way to decode this stream by pushing it into FFMPEG? This would probably mean I have to extract the RTP ...
1
vote
1answer
165 views

Multiple WEP keys which can be retrieved from the Pcap file

Ok, i have this Cap file that i captured with Wireshark. There are multiple WEP keys which can be retrieved from the file. Is there a way, using Wireshark or aircrack-ng, to know exactly how many ...
1
vote
1answer
346 views

pcap function: pcap_open() question

When I successfully find a device on my computer, and make the call to pcap_open(...) Is this giving me packets only going to and from my computer? What about other computes on the network? Does it ...
1
vote
3answers
136 views

strange characters in packets

I'm writing a sniffer for http packets with libpcap. Sometimes printing the content of the http payload I get strange characters.. do you know what could they be? *xNT:���3�@�"P#1u`��$%S{M�� or ...
1
vote
2answers
147 views

libpcap inter-arrival times and scheduler

I am doing research about network traffic characterization. While processing collected data (captured by tcpdump and saved to a database), I stumbled over the weird phenomenon with packet (or flow) ...
1
vote
2answers
713 views

Capturing network traffic in ruby - pcap related issues

What I need is to write very simple application, which would listen to network traffic, filter out some packets based on various layer 4/5 information and then dump those information into database. I ...
0
votes
1answer
29 views

libpcap - capture packets from all interfaces

I need to capture packets from all network interfaces on Linux machine. In order to do it I'm planning to use pcap_open_live() API and pass "any" as a device argument. I have different types of ...
0
votes
0answers
71 views

How to use tshark to do this task

I don't have any base knowledge about tshark, and it is hard to find any tutorial to help me with this. So now I have a pcap file which consists a lot of network flows; a time range; an ip addr; a ...
0
votes
1answer
153 views

How is FireSheep able to open devices in promiscuous mode?

FireSheep is able to use pcap in promiscuous mode to listen to other computers on the network. But promiscous mode requires root privileges, or at least access to /dev/bpf* on *nix machines. How is ...
0
votes
1answer
69 views

Tool to discard packet payload?

I'm trying to anonymize packets from a pcap file that I have. I need to discard all the packets payloads/content (leaving only header information) and was wondering if there would be a tool that I ...
0
votes
1answer
211 views

How to send/receive layer 2 frames on wlan

What I wanna do: Implement a layer 2 protocol in user-space. So I'm using pcap under Linux 2.6.32 to sniff packets: ... struct pcap_t *pcap_h = pcap_open_live("wlan0", BUFSIZ, 1, 0, errbuf); ...
0
votes
1answer
90 views

How to detect from raw packet if it contains a HTTP Get or Post?

I have just started to do some network programming. I am using the pcap pcap.NETto get hold of network packets. My question is, can I extract from the "payload" part of the packet a HTTP Get or Post ...
0
votes
2answers
158 views

Http POST.. why doesn't print anything?

I'm writing a sniffer program with the pcap library that checks the http traffic. I succeed when I m looking for GET messages or status codes but I don't know why it doesn't work for the post ...
0
votes
2answers
236 views

how to determinate destination MAC address

My application is running on CentOS 5.5 I need to send raw packets using libpcap API: pcap_inject() or pcap_sendpacket() To the specific IP address How can I determinate MAC address belongs to a ...
-1
votes
1answer
97 views

Strange compiler message when using GetProcAddress() in windows.h

I'm developing a simple packet sender/receiver for some purpose (in Dev c++)..wanna add more features to it. But I'm stuck at a point where I'm getting a strange error "Too many arguments to ...