How do I monitor all incoming http requests?

后端 未结 9 914
南方客
南方客 2020-12-07 09:01

I need to monitor my application from incoming http POST and GET requests originating from outside and sometimes inside the machine.

Is th

9条回答
  •  抹茶落季
    2020-12-07 09:18

    Use TcpView to see ports listening and connections. This will not give you the requests though.

    In order to see requests, you need reverse of a proxy which I do not know of any such tools.

    Use tracing to give you parts of the requests (first 1KB of the request).

提交回复
热议问题