16

Is there any tool that can monitor/capture/sniff named pipe traffic?

Even when max instance = 1?

Jader Dias
  • 88,211
  • 155
  • 421
  • 625
est
  • 11,429
  • 14
  • 70
  • 118

1 Answers1

10

There's no official way.

Use API hooking. Hook ReadFile and/or WriteFile, maybe also CreateFileA/W (assuming that the app is a pipe client) and do the necessary things on their invocation.

Microsoft has also its own library for API hooking - Detours .

X. Liu
  • 1,070
  • 11
  • 30
ivan_pozdeev
  • 33,874
  • 19
  • 107
  • 152