Launch process and hide command line parameters from Task Manager

后端 未结 2 1065
梦谈多话
梦谈多话 2021-01-12 23:25

I\'m not sure if this question is more appropriate for Stackoverflow or SuperUser or what StackExchange site...

Basically I\'m launching a third-party app from C# wi

2条回答
  •  不要未来只要你来
    2021-01-13 00:14

    There's no way to pass a command line argument to a process, so that the process can see it, but everything else in the system cannot.

    This is an obvious flaw and when programs allow passwords to be passed as arguments, it's usually done for convenience for the user that is not concerned about eavesdroppers. Well designed programs will usually provide, in addition, other secure means of authentication.

提交回复
热议问题