Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
0 answers
28 views

I observed that a duplicate request was sent 60 seconds following the first request, yet the browser's devtool displays only a single request

I use axios to perform the request, here is an example of my codes: const abort = new AbortController() const res = await axios.get('/rl/dev/network/status', { signal: abort.signal }) // ... ...
user23784600's user avatar
1 vote
2 answers
1k views

How to export tshark objects without stopping it

Requirement: I need to obtain files/objets of any kind that are being downloaded via my wifi interface. I am running tshhark to listen to my wifi interface and export HTTP objects to a given directory ...
Behrouz A's user avatar
-1 votes
1 answer
128 views

Capturing inter-service communication in microservices

Does anybody have experience with capturing inter-service http communication packets in a microservices setup? I'm just exploring options and would be interested in any approach.
user13473804's user avatar
1 vote
0 answers
39 views

How to capture a HTTP session from the server without a shell

I am debugging a web app that communicates with a secure payment gateway provided by my client's bank. The secure gateway works the following way: The end user's browser is redirected to the bank's ...
PaulJ's user avatar
  • 1,708
0 votes
0 answers
23 views

Printing http field values

In packet sniffer, coded using C, is it possible to print the URL from a captured HTTP packet? Is there a way to exactly locate the URL field from the TCP/UDP payload?
Nnn's user avatar
  • 201
-3 votes
2 answers
1k views

how to decrypt a http request captured during packet capture

Hi Guys Im currently capturing some traffic from an android application, but the requests it is sending out to server seems encrypted. Would you guys know how to decrypt such requests? Or is that ...
isuru's user avatar
  • 1
0 votes
1 answer
36 views

Unrelated packets in TCP communication capturing results

I am using Wireshark to capture TCP communication packets in my experiment (using Mininet Simulation). The experiment involves a client (10.0.0.2) who requests HTTP page from the server (10.0.0.1). ...
Frank's user avatar
  • 25
0 votes
1 answer
3k views

Capturing http data packets on chrome as long as browser active

I'm trying to develop a chrome extension which will capture http packets, their source and destination URLS, the packet size. Basically I want to know how much time the user spends on a particular ...
user3702425's user avatar
1 vote
1 answer
2k views

Capturing HTTP packet body through tcpdump

I am trying to monitor the network activity of a specific application on an Android device. In the application that I am attempting to monitor, I am communicating with an HTTP server that is running ...
rach5000's user avatar
  • 135
3 votes
2 answers
695 views

Unicode HTTP Host: Header Field?

What does the Host: header look like for a Unicode domain. e.g. æon.com in the MOST STANDARD format (assuming RFC 5987? or is it something else?)? I am developing a transparent proxy that will need ...
unixman83's user avatar
  • 9,863
4 votes
2 answers
717 views

How do I Control a Device’s Embedded Control Software in C# using HTTP?

I have a piece of hardware with an embedded user control accessed by typing the device's IP Address into a web browser. The device is connected directly to my PC via x-over ethernet cable and static ...
user441603's user avatar
0 votes
3 answers
2k views

determining HTTP packets

Greeting, how is possible to determine from captured packets using sharppcap if the packet is http packet or not? and can we determine frpm TCP packets if the packet is HTTP or not?
Eyla's user avatar
  • 5,811
4 votes
3 answers
5k views

Is there a way to save a reassembled TCP in Wireshark

I am trying so sniff a multi-part POST request using Wireshark. When viewing the capture I can select "Reassembled TCP" which looks to contain the header and all the data in the transmission. However ...
QueueHammer's user avatar
  • 10.8k
2 votes
6 answers
4k views

writing a http sniffer

I would like to write a program to extract the URLs of websites visited by a system (an IP address) through packet capture.. I think this URL will come in the data section ( ie not in any of the ...
trinity's user avatar
  • 10.5k