Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
3k views

Is there any way to put Android WIFI (droid handset) into promiscuous monitoring mode?

For a Computer Science Information Warfare class a few years ago I wrote a python script that ran on libpcap promiscuous packet capture files to parse out facebook chat traffic (earlang tuples passed ...
5
votes
3answers
1k views

Setting TCP receive window in C and working with tcpdump in Linux

I am running a Linux box running 2.6.9-55.ELsmp, x86_64. I am trying to set the TCP receive window by using the setsockopt() function using C. I try the following: rwnd = 1024; setsockopt(sock, ...
4
votes
5answers
4k views

Monitor network activity in Android Phones

HI everyone, I would like to monitor network traffic of my Android Phone. I was thinking using tcpdump for Android, but I'm not sure If I have to cross-compile for the phone. Another question is the ...
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
1answer
48 views

apache server mod_expire usage

I am using Apache 2.2.20. I set the expire_mod to be "access plus 5 minutes". I check the header using some website, and I am sure that in the header there did has an expire directory. However, when I ...
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
58 views

capture network traffic on two different ports simultaneously

I wish to capture tcpdump traffic on two different ports simultaneouly . I tried this .. $ tcpdump port 21 ; tcpdump port 22 Althoug it worked but problem is first it will wait for traffic on ...
2
votes
1answer
167 views

tcpdump vs tcpflow (or “why isn't tcpdump ASCII packet data human readable?”)

I have used both, and I conclude that I can read html data from webpages with tcpflow but cannot do so with tcpdump. The best I get is some ugly ASCII text with lots of period symbols. My ...
2
votes
1answer
186 views

How can I see the full snaplen capture using tcpdump?

I can't seem to see all the data of a capture when using tcpdump. Specifically I seem to be missing 6 bytes off of the head of the frame and I'm wondering if anyone can explain why. To illustrate, I ...
2
votes
1answer
491 views

Python 2.6 problem: Capturing output from tcpdump subprocess

I am trying to capture the output of a tcpdump/grep pipeline from Python. I am using Python 2.6 on Mac OS 10.6.7. When I try it with dmesg/grep, the caller receives output from the subprocesses, as ...
2
votes
1answer
163 views

How to measure the amount of data transmitted by my MPI program?

I'm experimenting my distributed clustering algorithm (implemented with MPI) on 24 computers that I set up as a cluster using BCCD (Bootable Cluster CD) that can be downloaded at http://bccd.net/. ...
2
votes
5answers
863 views

Capture server-client communication with tcpdump

I wrote a simple server and client apps, where I can switch between TCP, DCCP and UDP protocols. The goal was to transfer a file from the one to the other and measure the traffic for each protocol, so ...
1
vote
2answers
174 views

Stripping payload from a tcpdump?

Is there an automated way (either in tcpdump or via a helper app Out There) to generate a pcap file that contains only Ethernet, IP and Layer 4 (TCP in my case) headers, so that there is no ...
1
vote
4answers
73 views

Need to extract middle hex portion from the tcpdump output

Here is a tcpdump hex output of a captured packet. Command used was .. $ tcpdump -X -s0 protochain <portno> 0x0000: 6000 0000 0080 3220 0000 0000 0000 0000 ................ 0x0040: 0000 ...
1
vote
1answer
82 views

tcpdump to filter ssl packets

I need to filter out all SSL packets using tcpdump. I know that only the first packet can be recognized as being ssl. Is it possible to match against the first packet and then filter out the rest of ...
1
vote
1answer
48 views

Differentiate between TCP Connections using Seq No , Ack No and/or Datasize

I am aggregating connections by going through collected packet dump,collected using TCPDUMP. My code is in Ruby. The code will differentiate between connections using the 4-tuple ( ...
1
vote
1answer
172 views

Rebuilding a packet to inject via pcap

Here is the situation: in my scenario I have, 3 computers, A, B and C. Computer A sends data to computer B. Computer B captures these packets with pcap, appends the headers, redoes the checksums, ...
1
vote
0answers
105 views

Libnet TCP checksum error

I am trying to build a TCP packet using libnet library. I use '0' for autocomputation of checksum value in the libnet_build_tcp function. However, it seems the checksum ignores the pseudo-header when ...
1
vote
1answer
56 views

Python socked bound to secondary IP gets connection reset from server

I'm trying to create a python socket script that binds to a secondary IP and connects to a server. When I run the script python gives me a "socket.error: [Errno 111] Connection refused" The TCPdump ...
1
vote
2answers
143 views

RTT calculation using tcptrace

I had a question regarding the way tcptrace measures RTT values. For the below attached tcptrace output (this is taken from the site http://tcptrace.org/manual/index.html under RTT stats) 1 arg ...
1
vote
1answer
165 views

Android - Problems with tcpdump when in ad-hoc mode

Currently I'm working on a project that demands using Android and tcpdump. A short description of what I do: I want sniff packets using android. I have built an android application which does this ...
1
vote
0answers
115 views

Using tcpdump to capture a specific port when UDP message can be fragmented

I am running tcpdump to capture UDP messages on a specific port. The UDP traffic being captured contains fragmented UDP packets. When a fragmented UDP packet is encountered, tcpdump is only capturing ...
1
vote
1answer
110 views

Why libpcap captures incomplete packets?

I'm running "tcpdump port 1025 -w out.pcap -s 4000" and all packets sent from localhost I see "XXX bytes on wire, 54 bytes captured" (only ethernet and tcp headers are captured, data is not captured). ...
1
vote
1answer
41 views

How to save the packages received by a network interface or some port in a file and resend the packages received when needed?

I am doing my work on a server service program on Linux that processes the packages sent to the socket it listens.There is already a old such service listening on the port doing its job,and I can't ...
1
vote
1answer
125 views

Is it possible to capture flv links in php like using tcpdump?

I am making an online videoconverter. I managed to make the youtube plugin to get the flv link but I am finding it to hard to make the other ones e.g dailymotion, so it possible to capture the ...
1
vote
1answer
384 views

Pcap capture merge problem

I have two pcap files $ capinfos cap1_stego0.pcap File name: cap1_stego0.pcap File type: Wireshark/tcpdump/... - libpcap File encapsulation: Raw IP Number of packets: 713 ...
1
vote
1answer
116 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
391 views

ReadLine on TCPDump-Buffer sometimes blocks until kill tcpdump

I have a problem using TCPDump from my Android-Application. It is supposed to read the output from tcpdump line by line and process it within my Application. The Problem is: Sometimes the code works ...
1
vote
1answer
371 views

How to convert KDD 99 dataset to tcpdump format?

Can anyone guide me in converting the KDD 99 dataset,consisting of ip packets in the following format to TCP dump format? ...
1
vote
1answer
918 views

Eclipse Android emulator command line option -tcpdump

In Eclipse, Run Configurations, I added additional emulator command line option "-tcpdump emulator1.cap" and it started to capture emulator's network traffic which can be opened by Wireshark. Cool! ...
1
vote
2answers
529 views

tcpdump on monitor-mode interface - nothing captured

I've been using tcpdump (version 4.1.1) to attempt to capture wireless frames from a monitor mode interface set up by airmon-ng. I say "attempt" because so far nothing has been happening. It's very ...
1
vote
1answer
260 views

PACKET DROPPED - Finding out which packets are dropped?

How do I print which packets are dropped by by the interface ??? I have an interface wherein RX packets are dropped , see below : eth0 Link encap:Ethernet HWaddr DE:AD:BE:EF:42:46 ...
1
vote
1answer
377 views

How to write a program that mimics Fiddler by using tcpdump or from scratch?

When Fiddler is not on Mac OS X or Ubuntu, and if we don't install/use Wireshark or any other more heavy duty tools, what is a way to use tcpdump so that 1) It can print out GET /foo/bar HTTP/1.1 ...
1
vote
1answer
76 views

Is there a wrapper for the TCPDump output in C or Objective-C?

I'm writing a small utility in Cocoa and I need dissect the output of the TCPDump tool. I began writing my own wrapper to convert the output of TCPDump into usable & meaningful classes and ...
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
1answer
188 views

tcpdump - ignore unkown host error

I've got a tcpdump command running from a bash script. looks something like this. tcpdump -nttttAr /path/to/file -F /my/filter/file The filter file has a combination of ip addresses and host ...
1
vote
1answer
360 views

dynamically modify HTTP POST data

I set up a squid proxy server, and I would like to monitor and modify certain HTTP POST requests before it goes out of squid. What are my options?
1
vote
2answers
263 views

Sniffing and displaying TCP packets in UTF-8

I am trying to use tcpdump to display the content of tcp packets flowing on my network. I have something like: tcpdump -i wlan0 -l -A The -A option displays the content as ASCII text, but my text ...
1
vote
1answer
170 views

What's the redundant data in TCP packet?

I am reading "Unix Network Programming" and tcpdump the packet generate by the example. The example is just send out a packet contain string "liha". I read the TCP/IP RFC and found normal IP header ...
1
vote
1answer
2k views

tcpdump: localhost to localhost

I write a program that send TCP packets from localhost to localhost. And I want to use tcpdump to capture the packets. But nothing is captured. My command in Ubuntu: sudo tcpdump What argument ...
1
vote
1answer
682 views

Can libpcap be compiled for iPhone/armv6?

Trying to compile a basic program which uses pcap.h. I've set up the environment on my Mac OSX box which uses the iPhone 3.1.3 SDK for an iPhone 3GS. I've also installed libpcap to ~/libpcap so I can ...
1
vote
2answers
1k views

How restore data from pcap file?

Hi ppl =) I have following file: test_network.pcap: tcpdump capture file (little-endian) - version 2.4 (Ethernet, capture length 65535) I know that in this file are few video streams and i need to ...
1
vote
1answer
708 views

Need some help interpreting tcpdump output

I've checked the tcpdump man page and thought I understood the example provided there. But the one that I am getting is something I'm not able to understand completely. ORIGINAL: Simulator Output ...
1
vote
1answer
1k views

What's a tcpdump one-liner to dump a TCP stream that matches a given substring?

Is there a quick tcpdump one-liner to print out a TCP stream that matches a particular substring -- or, if that's not easy, how about printing out just the single TCP packet that matches the ...
0
votes
0answers
4 views

Not able to get the required HTTP headers in tcpdump

I am running a Django based http server and I am trying to collect the HTTP headers using tcpdump. Here is the tcpdump command: $ sudo tcpdump -i lo0 -s 0 -B 524288 port 8000 and here is the output ...
0
votes
0answers
25 views

Is it Possible to convert stdout to a sound wave

So could I parse a command like tcpdump and base something like amplitude or frequency on number of packets per tcplink EDIT:To clarify the question: I am trying to use the tcpdump output in Quartz ...
0
votes
1answer
33 views

How to tell the first fin packet of tcp connection from the second with tcpdump?

I am developing a http server. And now i want to do some statistics, to be specific, I want to know how many of the tcp connections are closed by client, and how many of them are closed by my server. ...
0
votes
0answers
23 views

understanding ipconfig and lan settings

(a) i use windows 7 and am connected to a lan...in its cmd i typed ipconfig...i have a few questions regarding its outputs... 1. what is connection specific dns suffix(is it related to my NAT ...
0
votes
0answers
67 views

Sniffing bonjour traffic between iPhone and Mac

My end result is to try and see the plist being sent between my iphone & my mac (I know its a plist because I can see bplist00 in the hexdump). I have an app sending data between my iphone to my ...
0
votes
1answer
35 views

tcpDump to get Request header on Shared hosting

I want to see request headers for my site, it is hosted on shared hosting, I call hosting company but engineer don’t know how to filter tcpdump for particular site. Because my site is hosted on shared ...

1 2