监控来自非浏览器的http请求
我想监视 exe 生成的 HTTP 请求。有什么工具可以帮助我吗?
实际上,一个 exe 会调用我的 ASP.NET 网页来注册用户。 exe 构造 POST 数据请求并调用我的页面。当请求到达我的网页时,我看不到任何数据。我想监视 Request 对象和流量以找到现实。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我一直使用 Fiddler。
I've always used Fiddler.
我使用 httpdebugger;它对我来说是最好的,因为它可以监视
JVM
发送的 java 应用程序的http
请求。I use httpdebugger; It is the best for me because it can monitor
http
requests of java applications which sent byJVM
.Wireshark 是一个很好的工具,可以满足您的要求。它将记录通过网络接口发送的所有网络数据,以便您可以准确地看到 POST 请求发送的内容。该界面可能有点强大,但运行良好。
Wireshark is a nice tool to do just what you're asking. It will record all network data sent across a network interface so you can see exactly what's being sent with your POST request. The interface can be a little overpowering, but works well.
Wireshark 是除了 Fiddler。
Wireshark is another program that I'd suggest for doing such monitoring besides Fiddler.