ala
ala

Reputation: 7290

how to use hashed password in impersonate of ASP.NET

I have an ASP.NET application that requires impersonation as an administrator user. In web.config:

<identity impersonate="true" userName="administrator" password="password"/>

The customer complained about saving the password in clear text format. Is there a way to save the password here as hashed?

Upvotes: 4

Views: 1861

Answers (1)

Ta01
Ta01

Reputation: 31630

aspnet_regiis with the appropriate switch should do the trick, see this article.

Upvotes: 3

Related Questions