tcpdump is a common packet analyzer that runs under the command line
0
votes
0answers
10 views
Duplicate TCP traffic on a port to another
I have a program that connects using TCP to a server and communicates with it. I would now want to duplicate the packets sent by the server to me and redirect them to another port for processing. Thus ...
0
votes
1answer
8 views
is tcpdump in Linux equivalent to a packet sniffer?
Im just curious cause i haven't used both since but ive read their description,
from Wikipedia where it says there that:
tcpdump is a common packet analyzer that runs under the command line. It ...
0
votes
0answers
23 views
chat.facebook.com sending presence unavailable? + learn how to send composing
I've noticed that when I send a presence of unavailable to chat.facebook.com using node-xmpp it is different than the ones I receive (I am logging with colours for readability with ANSI escape code ...
0
votes
0answers
11 views
TCPDUMP: are these args consistent or meaningless together? [migrated]
I'm using tcpdump on routing software, and trying to check whether the presence of ip/ip6 protocol with an ip6/ip host (i.e., the other IP family), or else specifying a mix of IPv4 and IPv6 IPs as ...
0
votes
0answers
10 views
TCP - ACK after 2 segments then ACK after 1 segment WHY?
I have tcp capture here:
http://www.cloudshark.org/captures/bbfed259a7e4
My Host 10.0.0.80 downloading image from HTTP Server.
I'm interested why after handshake my computer sends ACK after 2 ...
0
votes
0answers
25 views
PPTP refusing to connect when client is windows
I have a PPTP server running and I can connect to it from linux. When I try from windows 7 (2 instances tested) it fails. Here's the syslog for such a conn:
pptpd[540]: CTRL: Client 109.xxx.158.201 ...
1
vote
0answers
35 views
bash receive udp packets tcpdump
On one server, I am receiving udp packets on 192.168.0.51 from an application running on 192.168.0.21, and have to reply with a specific acknowledgement packet.
The solution I wrote works as ...
0
votes
0answers
34 views
How to disable tcp dump on specific port? [closed]
I have to give access some users to run tcpdump command via sudo, for example
user ALL=(ALL) NOPASSWD: /usr/sbin/tcpdump *
But for security reasons I would like to disable dumping LDAP port (389)*.
...
1
vote
2answers
50 views
TCPdump parsing sequence number using regular expressions
I am creating a program to read a packet from TCPdump, and read the sequence number. I am using regular expressions, but my code isn't working.
public long getsequencenumber(String Packet){
...
-1
votes
1answer
11 views
TCPDUMP: Bitmasking [closed]
I am taking a digital securities class and I dont understand one of the examples on bitmasking.
To find IPv4 packets they say run this command
tcpdump IP[0] & 0xf0 = 4
I believe that this is ...
0
votes
0answers
9 views
Scan / Log ALL wireless clients on any network
Im trying to establish the best method to scan the 802.11 WiFi frequencies and log any client MAC addresses , whether the user is associated with a network or not.
This is not for any hacking ...
0
votes
1answer
20 views
Number of packets ordered by IP [closed]
My server is currently under a small DOS attack. I would like to know if there is an easy way to get the list of IPs sending packets to my server, ordered by the number of packet they sent, on a ...
0
votes
1answer
42 views
libpcap Radiotap header extraction
I've got some code that is using the functions ieee80211_radiotap_iterator_init() and ieee80211_radiotap_iterator_next() from radiotap-parser.c,
I'm not sure what I'm doing incorrectly, perhaps ...
0
votes
0answers
15 views
tcpdump: How to capture arrival / outgoing interface for a packet?
I would like to capture the "incoming" interface and "outgoing" interface for packets transiting through a software switch (assume it has 10 ports and I want to know which of those 10 interfaces a ...
3
votes
1answer
45 views
Using tcpdump to watch which websites are accessed on my network
I've just got my hands on a Raspberry Pi and I've set it up to act as the DNS and DHCP server on my home network. This means that all network requests go through it before they are released into the ...
0
votes
0answers
27 views
How to Read SMPP UDH message
I am new to SMPP protocol usage, I am getting message in my log as below.
Sending UDH Message...
SMPP UDH 0500031B0301004D00
How can I convert the UDH message to a normal text (Java Program or ...
0
votes
0answers
57 views
How to compare two HTTP post request captured in wireshark/tcpdump
I have two requests captured in wireshark. Both are HTTP Post reqeust. They are in the same file. I can also save them in separate file if that helps.
I need to compare those packets specially those ...
5
votes
2answers
93 views
+50
tcpdump - how to filter based on tcp connection time / duration
Is there a possibility to filter tcpdump (live or after creating a dump) based on tcp connection time (connection duration)?
I'm recording http json rpc traffic.
I want to record only connections ...
0
votes
1answer
65 views
Packet sniffering by jpcap
I am sniffering packets on ethernet (eth0) in java with the help of jpcap library... So, In my project I have a JpcapCaptor ...
//Open an interface with openDevice(NetworkInterface intrface, int ...
1
vote
0answers
52 views
analyze tcp payload of each tcp packet in `pcap` files
I have a lot of pcap files
in each pcap file there are some tcp packets
I want to the following steps:
1 filter the pcap file to get expected tcp packets(if with tshark, the filter is like ...
0
votes
1answer
35 views
add new headers parsing in tcpdump
I have a necessity to add support for a proprietary headers that FPGA in our design inserts in incoming Ethernet frames between MAC header and payload. Obviously have to dig in tcpdump sources and ...
0
votes
0answers
15 views
if a lot of pcap handler is created in a program, is libpcap resource consuming or efficient?
I have a program which may create a lot of pcap handlers
each of which uses different capture filter
I'm afraid they are very resource consuming and so the program/machine may not support them
are ...
0
votes
1answer
36 views
Strange tcp dump collects
I had tried to bind my internet pdn on my phone to a particular interface like wlan0 or cdma0. So I bound the ip address to the tcp socket created and tried to send an http get request to google.com. ...
0
votes
2answers
54 views
tcpdump inside a shell script captures nothing
I want to start a TCP program and capture the related packets,
my shell script cap.sh is as below:
sudo tcpdump -i eth0 -w mypcap &
sleep 3
./tcp_receiver
sleep 2
x=`ps ...
0
votes
0answers
33 views
Get HTTP layer data from tcpdump
I want to write a script (python/perl) to capture http data that is coming to one of my spam filters from an email client plugin. The idea is to emulate the behavior of this plugin for testing ...
0
votes
0answers
44 views
sharing libpcap captured packets in many child process
I'm writing a TCP server program
and I want to use libpcap to capture packets with ACK flag set for EACH INCOMING TCP connection (filter_exp is like port 54000 and tcp[tcpflags] & (tcp-ack) != 0)
...
0
votes
0answers
27 views
Get encryption type for wlan with tcpdump
How can I get the actual encryption type sent in Beacons from tcpdump? I have searched the manpage entry, Google, and website for tcpdump and pcap to no avail. I have the snaplen set to the highest ...
0
votes
0answers
45 views
Pcap_loop returns an error when too much packets arrive
I am currently working on a program that grabs packets incoming on an interface and does several operations to process them.
The problem is, there are a lot of packets coming and therefore I got the ...
0
votes
1answer
56 views
how to dynamically modify the filter in tcpdump
I am modifying tcpdump to dynamically change the filter that it uses to get the output from.
currently the tcpdump uses the pcap_set_filter to actually prepare the filter for the incoming packets or ...
0
votes
1answer
121 views
Tcpdump saved file is empty even reporting that captured millions of packet
I captured traffic on a server interface remotely by using ssh to send command to a shell script controlling Tcpdump.
#!/bin/bash
# Script to Start/Stop TCP
# Usage: ./ControlTCPdump.sh start|stop ...
0
votes
1answer
114 views
libpcap: 64bit machine has no compatible 32-bit libpcap library
I want to compile a .c file to 32-bit executable using gcc option -m32 with libpcap
the machine is linux 64bit fedora 16
however, I get the following error
[root@fdf source]# gcc -m32 -o test_tcp ...
0
votes
1answer
170 views
how is TCP's checksum calculated when we use tcpdump to capture packets which we send out
I am trying to generate a series of packets to simulate the TCP 3-way handshake procedure, my first step is to capture the real connecting packets, and try to re-send the same packets from the same ...
1
vote
1answer
181 views
Extract time and source ip address from pcap file
I have pcap trace file and I want to extract the time and source IP address from the packets. I'm using tcpdump and awk. Here is a sample of the file
02:00:00.001814 IP 61.31.228.1.80 > ...
1
vote
2answers
61 views
Count the number of network packets in realtime (CLI)
I want to count the number of network incoming/outgoing packets in realtime and in the CLI (I want to use the count to write shell script)
I try to use 'tcpdump' and 'tsahrk' combined with pipeline, ...
0
votes
1answer
74 views
tcpdump mac filtering [closed]
I am referring to the post How to filter MAC addresses using tcpdump
Is it possible to perform this mac filtering for a set of different mac addresses?
e.g. tcpdump -i prism0 ether src ...
0
votes
1answer
56 views
Analyzing abnormal TCP/IP traffic: Sequential IP sequence numbers
My professor told me that sequential IP sequence numbers is typical behavior of most IP stacks (and showed us examples of packet sniffers), but I thought IP sequence numbers are supposed to be ...
0
votes
1answer
179 views
Extract tcpdump data with awk
I'm trying to set up a pipeline to extract, via awk, certain fields and the ascii data (source IP, target IP, and payload) from each packet in a stream of packets captured by tcpdump, but I'm having ...
0
votes
1answer
261 views
Android gingerbread DHCP 119 setprop not working
I am try to set custom DNS suffix (yahoo.com in my case) using adb command
setprop net.dns.search yahoo.com
I verified it using
getprop net.dns.search
and it returns yahoo.com
However, ...
0
votes
1answer
43 views
tcpdump slowed down by… its own filter?
Do long BPF filters slow down tcpdump?
I replay a packet trace where all the packets have ttl=k and wait for ICMP messages back. What I've been noticing is that if I use the following filter (on ...
0
votes
1answer
181 views
tcpdump header info grep or awk or sed?
What would be the most efficient way to grab the destination ip (>ip) and the "User-Agent:".
I would like to grab those two values and dump them into a file with ip first in line followed by user ...
0
votes
1answer
87 views
Is it possible to run two programs simultaneously or one after another using a bash or expect script?
I have basically two lines of code which are:
tcpdump -i eth0 -s 65535 -w - >/tmp/Captures
tshark -i /tmp/Captures -T pdml >results.xml
if I run them both in separate terminals it works ...
1
vote
1answer
136 views
pcap files and endianness
Running the file command against a pcap file will print out something along the lines of -
$ file pcap.pcap
pcap.pcap: tcpdump capture file (little-endian) - version 2.4 ....
I've been looking for ...
0
votes
1answer
181 views
tcpdump - Maximum amount of packets in a pcap file?
Is there a maximum amount of packets for pcap file (beyond OS limits?
Looking at the specification I don't see anything in the pcap file format that would limit the number of packets.
Perhaps will ...
4
votes
0answers
92 views
localhost icmp packet found in capture file: why?
Here's my tcpdump filter (ip[8] is the IP ttl field and icmp[0]=11 corresponds to time-exceeded ICMP messages):
(ip and ip[8]=2 and src host $myIPAddress) or (icmp and dst host $myIPAddress and ...
0
votes
1answer
198 views
increase tcp receive window on linux
Similar to Setting TCP receive window in C and working with tcpdump in Linux and Why changing value of SO_RCVBUF doesn't work?, I'm a unable to increase the tcp receive window greater than 5888 on ...
0
votes
1answer
90 views
Getting the package statistic info from a tcpdump subprocess after terminating it
I'm using subprocess.Popen to perform tcpdump, which could collect the package information properly in my code.
After that, I would like to kill the tcpdump by another thread os.kill(pid, ...
0
votes
0answers
71 views
Why does tcpdump enable this code to work?
I have a small network consisting of 2 hosts (OS X and linux) with a switch between them. When I run the following pair of programs, the receiver (linux) doesn't see any multicast packets. However, ...
0
votes
0answers
111 views
Log all DNS lookup requests
I have servers which run Red5, Glassfish, with custom web apps. Everything works fine when the servers have internet access. But when the internet accesss is cut I get hangs and other issues.
I have ...
0
votes
2answers
176 views
tcpreplay removing IP checksums?
I have a packet trace that I forge with scapy and resend with tcpreplay. I recompute IP and transport-layer checksums with Scapy, save the packets to disk on pcap file and call tcpreplay on it.
By ...
0
votes
0answers
127 views
dhcp request with different IP than it was on the dhcp offer
can anyone shed any hints to why the IP address which was offered to the client is different in the dhcp request from the client? they all have the same transanction id, so its definitely the same ...



