捕获/跟踪对某个 url 的请求 - iis
有没有办法捕获/跟踪/记录 IIS 上某个 url 的所有 GET 或 POST?
我想捕获对某些网址的调用几分钟进行分析。能够查看标头、有效负载、IP 等。
我可以编写 C# 来执行此操作,但想知道是否已经有诊断工具可以执行此操作..?
谢谢
Is there a way to capture/trace/log all GET's or POST's to a certain url on IIS..?
I'd like capture calls to certain url for a few minutes for analysis. Be able to look into the headers, payloads, IP, etc..
I can write C# to do it, but was wondering if there's a diagnostics tool to do it already..?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IIS 默认捕获所有请求。
您可以在 C:\inetpub\logs\LogFiles\W3SVC1 找到日志
您可以解析日志以过滤出您感兴趣的 URL。
IIS captures all requests by default.
You can find logs at C:\inetpub\logs\LogFiles\W3SVC1
You can parse the logs to filter out the URLs you are interested in.