Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

monitor http request from non-browser

I want to monitor HTTP request generated out of an exe. Is there any tool that can help me?

Actually, an exe would call my ASP.NET web page to register a user. The exe constructs the POST data request and calls my page. When the request reaches my web page, I don't see any data. I want to monitor the Request object and the traffic to find the reality.

like image 361
Ananth Avatar asked Mar 31 '10 21:03

Ananth


People also ask

How do I get HTTP requests without a browser?

Send an HTTP request by creating a URL and getting the connection for it, and casting it to HttpURLConnection. Add an "If-Modified-Since" header, with the download date of your local file. If the server responds with 304 (not modified), then your local version is up-to-date.

How do you observe HTTP request?

To view the request or response HTTP headers in Google Chrome, take the following steps : In Chrome, visit a URL, right click , select Inspect to open the developer tools. Select Network tab. Reload the page, select any HTTP request on the left panel, and the HTTP headers will be displayed on the right panel.

How do you call the HTTP request method without a browser or curl?

Make a HTTP request to https://spnagios.storpool.com/confupd/meow.php with parameter "hi" to equal two_unique from the previous task, without a browser or curl and you'll get an email address.


2 Answers

I've always used Fiddler.

like image 64
Simon Buchan Avatar answered Oct 11 '22 17:10

Simon Buchan


I use httpdebugger; It is the best for me because it can monitor http requests of java applications which sent by JVM.

like image 32
Moataz AL Dawood Avatar answered Oct 11 '22 17:10

Moataz AL Dawood