Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to capture the named pipe traffic in windows

Tags:

i wanted to check the named pipe which i am using between two of my processes is safe or not. Though many says it is possible to sniff the named pipe traffic. i didn't find any concrete method to capture the named pipe traffic.

like image 903
Venkatachalapathi G Avatar asked Jan 30 '17 12:01

Venkatachalapathi G


1 Answers

You can use "Pipe Monitor" which lets you see what is flowing through Windows named pipes.

Also, to restrict the access to your named pipe, you can specify a security descriptor for a named pipe when you call the CreateNamedPipe function. The security descriptor controls access to both client and server ends of the named pipe. See MSDN doc.

like image 153
Yohann Avatar answered Sep 21 '22 11:09

Yohann