Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Connecting to named pipe in Windows, different user accounts

In Windows, is it possible for a program running under a limited user account to connect to a named pipe created by a program running under Administrator account or running as a Windows Service?

Or will I get access denied?

like image 779
sashoalm Avatar asked Jan 24 '13 10:01

sashoalm


1 Answers

It depends on the security attributes used to create the pipe. The pipe creator has to use security attributes that are permissive enough to let the limited user gain access to the pipe.

like image 140
David Heffernan Avatar answered Oct 05 '22 08:10

David Heffernan