Tagged Questions
The packet tag has no wiki summary.
14
votes
5answers
21k views
iPhone and WireShark
How can I sniff packets from my iPhone on my network? can someone give me some instructions? I tried Googling, but nothing teaches how to sniff iPhone packets、
I am on windows.
10
votes
6answers
4k views
Compression algorithm for JSON encoded packets?
What would be the best compression algorithm to use to compress packets before sending them over the wire? The packets are encoded using JSON. Would LZW be a good one for this or is there something ...
6
votes
3answers
366 views
Average UDP packet loss and packet re-ordering
I'd like to garner fellow SO'ers experience with regards to the issue of UDP packet loss (or drop-out).
Initially my understanding is that given direct point to point connections where the NICs are ...
6
votes
2answers
481 views
Android: Force packets to be sent over radio (3g) vs WIFI?
Is it possible to force an Android application to send packets over the radio connection (3g) vs the WIFI connection?
6
votes
5answers
3k views
JavaScript WebSockets with UDP?
I'm writing a JavaScript Application that has to receive a huge amount of data from other users. It is not important if some of this data gets lost. Is there some way of using JavaScript WebSockets ...
6
votes
2answers
595 views
What happens after a packet is captured?
I've been reading about what happens after packets are captured by NICs, and the more I read, the more I'm confused.
Firstly, I've read that traditionally, after a packet is captured by the NIC, it ...
5
votes
1answer
884 views
Send Raw IP packet in C#, everything above the ethernet layer
I don't want to modify the ethernet portions of the frame, but I need to modify the IP packet and the data portion of the frame.
I try sending a raw frame and it still puts in the IP information. I ...
5
votes
2answers
1k views
Benefits of “Don't Fragment” on TCP Packets?
One of our customers is having trouble submitting data from our application (on their PC) to a server (different geographical location). When sending packets under 1100 bytes everything works fine, ...
5
votes
11answers
5k views
When will a TCP network packet be fragmented at the application layer?
When will a TCP packet be fragmented at the application layer? When a TCP packet is sent from an application, will the recipient at the application layer ever receive the packet in two or more ...
4
votes
1answer
106 views
Looking For A Packet Description Language (Preferably With A C# Implementation)
I am in the process of developing a special-purpose network tool with some packet sniffing and decoding capabilities. I am looking for languages designed to assist in the dissection/decoding of ...
4
votes
1answer
629 views
Scapy SYN send on our own IP address
I tried to send SYN packets on my local network and monitoring them with Wireshark and everything works just fine, except when i try to send a packet to my own ip address it "seems" to work because it ...
4
votes
1answer
592 views
Why can't we send a UDP packet from an Android emulator?
My friend and I have a wireless robot dog connected to a wifi network
which our computer is plugged into. The computer is running an
Android emulator and we are trying to send a UDP packet to the
...
4
votes
1answer
2k views
Sending UDP Packet in C#
I have a game server (WoW).
I want my players to download my custom patches to the game.
I've done a program that checks for update/downloading things.
I want my program to send a packet to my game ...
4
votes
2answers
465 views
Reading a Struct Within a Struct via PHP's Unpack Function
I want to know how to read a struct within a struct via php's unpack function. When I get an IS_MCI packet, I check it's Type to make sure it's equal to ISP_MCI, and then I check NumC to find out how ...
4
votes
3answers
3k views
PHP How To Send Raw HTTP Packet
I want to send a raw http packet to a webserver and recieve its response but i cant find out a way to do it. im inexperianced with sockets and every link i find uses sockets to send udp packets. any ...
4
votes
5answers
766 views
Free tools for local HTTP packet sniffing/intercepting?
I'm currently using HTTP Analyzer V5 trial version which expires very soon.
Are there any [good] free tools for sniffing and inspecting the contents of HTTP packets, in a similar way to the above ...
4
votes
6answers
4k views
How to get data out of network packet data in Java
In C if you have a certain type of packet, what you generally do is define some struct and cast the char * into a pointer to the struct. After this you have direct programmatic access to all data ...
3
votes
2answers
51 views
Protocol of a packet
I'm programming an offline packets decoding program in C under Windows 7 x86.
I wonder how it is possible to know packet protocol, either if it is UDP or TCP?
3
votes
2answers
122 views
Packet Level networking in Android
I know how to develop in Android and use the Apache HTTP lib, but I want to go lower, get hold of the wireless interface adapter and be able to send & receive packets wirelessly. I know its ...
3
votes
1answer
105 views
PACKET_MMAP data offset
I am writing the code to send an UDP packet using PACKET_TX_RING ring, and I don't understand the example code described here:
...
3
votes
2answers
166 views
Packet Interceptor (.net)
I have some software that will disconnect itself from the main server if activity in the program goes idle. From my understanding, I need to intercept some for of heartbeat packet or something and ...
3
votes
1answer
238 views
How does pcap unix buffering work?
Hypothetical scenario:
A udp packet stream arrives at machine X, which is running two programs - one which is listening for the packets with recv(), and another which is running pcap.
In this case, ...
3
votes
2answers
1k views
Does TCP send a SYN/ACK on every packet or only on the first connection?
I have a TCP server that listens for an incoming client, then sends it one packet of data every second. I was wondering, does the SYN/ACK packet only get sent on initial connection, so it looks like ...
3
votes
1answer
317 views
Nagle algorithm in tcp/ip
can u kindly explain me the concept of nagle algorithm in tcp/ip,with an example?
3
votes
5answers
306 views
How should I mark the end of a TCP packet?
In a client/server application were text data of varying length will be sent back and forth between the client and server, how should I mark the end of a packet that is being sent? For example, when ...
3
votes
4answers
264 views
How to send information fast like many games do?
I'm thinking like the methods games like Counter Sstrike, WoW etc uses. In CS you often have just like 50 ping, is there any way to send information to an online MySQL database at that speed?
...
3
votes
2answers
8k views
how to find the packet loss in Wireshark?
i need to test packetloss for FTP application.
i used wireshark packet sniffer and I got TCP Stream.
Help me how to find the packet loss using Wireshark.
Thanks in advance,
krishna
3
votes
1answer
5k views
How to set the don't fragment (DF) flag on a socket?
I am trying to set the DF (don't fragment flag) for sending packets using UDP.
Looking at the Richard Steven's book Volume 1 Unix Network Programming; The Sockets Networking API, I am unable to find ...
3
votes
7answers
3k views
python: how to send packets in multi thread and then the thread kill itself
I have a question. I'd like to send a continuous streams of byte to some host for certain amount of time (let's say 1 minute) using python.
Here is my code so far:
#! /usr/bin/env python ...
3
votes
3answers
2k views
Python/Twisted - TCP packet fragmentation?
In Twisted when implementing the dataReceived method, there doesn't seem to be any examples which refer to packets being fragmented. In every other language this is something you manually implement, ...
2
votes
2answers
51 views
how to calculate the next occurrence interval of a packet if you know that it follows the poisson distribution?
Suppose that you have some computer stations, these computer stations are sending packets to a network.
Now the transmission time of a packet takes S seconds
the amount of packets that all the ...
2
votes
4answers
173 views
Is there a technical name for this concept of parsing a string with sizes?
I came up with a technique a while back which I've been using in multiple projects. It's using a single string to store a list of values. Each value is prefixed with the size of the value, then the ...
2
votes
1answer
47 views
Caching packets captured from pcap
This is a follow-up question to this:
Rebuilding a packet to inject via pcap
What I want to accomplish:
functionA: Capture packets with pcap. Modify source/destination addresses. Recalculate ...
2
votes
1answer
83 views
Track a packet as it goes through the kernel (linux)
I have two machines which are set up to use Ip-Security and machine A (lets call them A and B) has a socket which is bound to a particular UDP port on the local machine and it polls it frequently to ...
2
votes
1answer
61 views
How to convert a string to a hex string in perl?
My original code is in python but I need to convert it to perl for some libraries that I don't have at my disposal in py.
In python I would do this:
...
2
votes
2answers
54 views
capturing network packet in c
This question might sound fool, because I know there are bunch of frameworks that does it for you. What I want is actually get in touch with low level C API deeply and able to write a program that ...
2
votes
1answer
51 views
Is packet forwarding possible on Android?
Our requirement is to develop an Android App &/or service that does the following. Listen to http (port 80) requests/packets sent from the device (by any app). forward them to a different server ...
2
votes
1answer
105 views
Multiple Sockets/Reuse/Close Sockets in Python? _socketobject error
so I've been trying to make this bot in python that uses sockets to get some information to and from a chat on a website. This requires a login, which gets keys, then using the keys from the first ...
2
votes
1answer
94 views
Detect HTTPS using SharpPCap
I am using SharpPCap to filter packets. Does anyone know how to detect if a packet is for a secured http connection?
2
votes
1answer
194 views
Is there a library for parsing/formatting TCP packets or anything that would help doing it?
My application uses tcp to connect to my server and I am packet sniffing it to see how it works using wireshark, the first thing that crossed my mind is the packets that are coming to me in hex so ...
2
votes
1answer
38 views
Is the network card used when the WCF service and the app calling the service are both hosted on the same machine?
I know it's a silly question, but I really want an answer.
1. If I host Web service and WCF service on the same machine. The web service consumes the WCF service. Will the communication go through ...
2
votes
1answer
150 views
What values to use for packet and frame size with AudioUnit
I am familiarizing myself with how to use AudioUnit to play sounds and am confused by the notions of packets and frames. I would like to know:
what is the definition of a packet and a frame in the ...
2
votes
3answers
425 views
How to drop tcp packet in linux kernel but do not receive again and again?
I want to change the linux kernel code to filter some tcp packet and drop it.
But I always keep receiving it again and again. Here is my code in
/net/ipv4/tcp_ipv4.c
int tcp_v4_do_rcv(struct sock ...
2
votes
1answer
475 views
Reading Split TCP Packets
I have written most of the code to handle incoming packets for my server. The format for packets is always int/int/int/string/string, and the first int is the size of the packet. I need to figure out ...
2
votes
1answer
134 views
How to properly write a UDP packet
I am trying to rewrite some of my code from a C++ program I wrote a while ago, but I am not sure if/how I can write to a byte array properly, or if I should be using something else. The code I am ...
2
votes
4answers
469 views
C# Reading Byte Array
Okay so I am building server <-> client application.
Basically server receives a packet that contains header[2bytes], cryptokeys[2bytes],and data
I was thinking about building class to load whole ...
2
votes
4answers
391 views
Packet creation in java?
Am working on TCP Sockets and i need to create tcp packets in java so that i can transfer my file packet by packet over the network & also it would help me add some additional information to the ...
2
votes
1answer
206 views
php and c# tcp communication problem
Ok, well im working on a c# application that is acting as the server on port 4. And a php script on my website acting as the client. It can connect to the server but, when the server or client ...
2
votes
5answers
677 views
ensuring packet order in UDP
hey.
im using 2 computers with an application to send and recieve udp datagrams.
there is no flow control (ICMP disabled)
frequently when i send a file as udp datagrams via the application, i get 2 ...
2
votes
2answers
378 views
How to detect HTTP Request in python + twisted?
I am learning network programming using twisted 10 in python. In below code is there any way to detect HTTP Request when data recieved? also retrieve Domain name, Sub Domain, Port values from this? ...