I'm writing some code to utilise a 3rd party component, and I need to supply an object which implements ICredentials when I start to use it.

If I write the following...

var credential = new NetworkCredential("MyUsername", "MyPassword");

...and pass "credential", it's fine. But I would like to pass the credentials of the current user (it's a Windows service, so runs as a specified user).

I have tried both of the following, but neither appear to work (or return anything):

NetworkCredential credential = System.Net.CredentialCache.DefaultCredentials;
NetworkCredential credential = CredentialCache.DefaultNetworkCredentials;

Can anyone suggest how to acquire an approriate object, which represents the credentials of the username that the service is running under ?

Thanks, Ross

link|improve this question

I have the same problem with a WCF client scenario, see this thread stackoverflow.com/questions/3166150/… – Mahol25 Jul 2 '10 at 15:12
See stackoverflow.com/questions/3166150/… You may need <system.net> <defaultProxy useDefaultCredentials="true"></defaultProxy> </system.net> – Alan Christensen Jul 19 '11 at 3:29
CredentialCache should work. Can you check WindowsIdentity.GetCurrent and see there really is a user logged? – Simon Mourier Nov 19 '11 at 9:08
Hi, WindowsIdentity.GetCurrent returns a WindowsIdentity object (with the current username), but both System.Net.CredentialCache.DefaultCredentials and DefaultNetworkCredentials return empty ICredentials objects. – Black Light Nov 22 '11 at 15:16
feedback

4 Answers

You need to do impersonation, for example:

    System.Security.Principal.WindowsImpersonationContext impersonationContext;
impersonationContext = 
    ((System.Security.Principal.WindowsIdentity)User.Identity).Impersonate();

//Insert your code that runs under the security context of the authenticating user here.

impersonationContext.Undo();

http://support.microsoft.com/kb/306158

Or you can use web.config:

<identity impersonate="true" />
link|improve this answer
Thanks, but I'm running as a Windows service, not as an ASP web page. All the suggestions I have so far found are ASP related. I already tried impersonation, but it doesn't help/work (in this context). I'm amazed that there appears to be no way to acquire the credentials of the current user (who is logged in after all), and have instead to code some hacky method to store the user's username and password. Yuk ! (thanks for you suggestion though) – Black Light Mar 17 '10 at 17:00
feedback

have you tried WindowsIdentity.GetCurrent()?

you could also look at this example... http://www.codeproject.com/KB/vb/Windows_Service.aspx

link|improve this answer
"have you tried WindowsIdentity.GetCurrent ?" Yes, it doesn't appear to help - even if you pass the result into Impersonate. The example just appeared to be an interesting (?) way to get the current username. Thanks – Black Light Apr 12 '10 at 13:23
feedback

The ideal security situation is that the password of a logged in user is not stored anywhere in memory. It is not stored anywhere on disk either. It exists only as a hash value to be compared against a string entered by a human being. Storing a password in clear is inherently a security risk and should be avoided whenever possible.

Given this principle, there is NO part of the operating system that even HAS your user's password in the clear, much less be willing to give it to you.

link|improve this answer
feedback

if you just want to run a process as the current user adds the verb: "runas " & Environment.UserName

If you want to run the process as admin just wrote "runas"

in vb.net

Dim ps As New System.Diagnostics.ProcessStartInfo("filepath", "arguments")

ps.Verb = "runas" 'run as admin

'ps.Verb = "runas " & Environment.UserName'run as current user, by default

Dim p As System.Diagnostics.Process = System.Diagnostics.Process.Start(ps)

if you want to get the current user password, you can not, in fact it is an unsafe practice. What right and for what purpose your service needs to get my Windows password secret? for example is like giving the pin code of your phone to whatsapp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.