David
David

Reputation: 1

Impersonalization - domain specific user without password - ASP.NET MVC

How to programmatically impersonate domain specific user with assigned groups without a password and without SeTcbPrivilege in ASP.NET MVC application?

This feature will be used as "See the application as specific user".

Upvotes: 0

Views: 578

Answers (1)

Huan Jiang
Huan Jiang

Reputation: 257

I'm not sure if it is possible to impersonate a domain user without password.

There are two way:

  1. put user account and password in web.config

  2. programming impersonate in code

you may refer to below MSDN article for detail

https://support.microsoft.com/en-us/help/306158/how-to-implement-impersonation-in-an-asp.net-application

Upvotes: 1

Related Questions