0
votes
1answer
34 views
checksum udp calculation python
Hi,
I'd like to calculate the checksum of an udp header packet I want to send :
packetosend = """60 00 00 00 00 24 3a 40 20 02 c0 a8 01 50 00 01
00 00 00 00 00 00 09 38 20 02 c0 …
2
votes
7answers
730 views
python: how to send packets in multi thread and then the thread kill itself
Hi, 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/b …
1
vote
5answers
160 views
HTTP packet reconstruction
If I have a large HTTP packet which has been split up into a number of TCP packets, how can I reconstruct them back into a single HTTP packet? Basically, where in the packet do I …
0
votes
1answer
42 views
Magic Packets and Virtual Networks
Hi All,
I have 2 virtual networks, say 10.116.10.xxx and 10.116.11.xxx. I have the following code to send a magic packet:
using System;
using System.Net;
using System.Net.Sockets …
0
votes
1answer
41 views
Linux’s Windows Filtering Platform equivalent?
Hi,
More than once I picked myself wanting to have an easy way to edit packets on-the-fly in my LAN, so I thought it was time for me to make some "machinery" to do the job. I thin …
0
votes
2answers
62 views
How does NetworkStream work in two directions?
I've read an example of a Tcp Echo Server and some things are unclear to me.
TcpClient client = null;
NetworkStream netStream = null;
try {
client = listener.AcceptTcpClient(); …
1
vote
2answers
215 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.
0
votes
6answers
323 views
First packet to be sent when starting to browse
Imagine a user sitting at an Ethernet-connected PC. He has a browser open. He types "www.google.com" in the address bar and hits enter.
Now tell me what the first packet to appear …
-3
votes
4answers
274 views
How can I send network packets with Perl?
I'm trying to send a packet via Perl, I sniffed the traffic of the packet I want to send and the packet from wireshark is:
0000 00 19 e0 98 17 e8 00 1a 92 41 32 13 08 00 45 00 …
0
votes
1answer
40 views
translate mainframe data packet to an XML packet in .net
is there a way to translate mainframe data packet Format(Flat Files,CVS) to an XML/NIEM Format in .net? or any suggestions would be appreciated
Thanks
2
votes
3answers
199 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 sen …
-2
votes
1answer
120 views
i want to make a packet analyzer in JAVA [closed]
which will monitor to and from traffic for my pc
0
votes
4answers
401 views
How to make use of full bandwidth?
Using WinPcap I crafted a series of custom UDP packets and injected them into the Ethernet layer.
I sent 1000 packets, 1440 bytes each. It takes 2.1 sec for 100 Mbps bandwidth.
H …
1
vote
1answer
144 views
CPP to Java conversion
Here's my scenario. I have an application written in C++ but not the complete source but the "meat" of it is there. I also have a compiled exe of this application. It communicat …
1
vote
2answers
92 views
Drop packet with libpcap
Is it possible to have libpcap remove a packet instead of just sniff it as it passes through? I'm wanting to intercept each packet and encapsulate it into a new packet along with …
