Tagged Questions

Impersonation is a process whereby an application assumes another identity or security context during execution.

learn more… | top users | synonyms

13
votes
3answers
242 views

ASP.NET refuses to respect my authority.

I've managed to impersonate a user successfully. Using the LogonUser Interop, e.g. [DllImport("advapi32.dll", SetLastError = true)] static extern bool LogonUser( string principal, ...
11
votes
4answers
16k views

Windows Impersonation from C#

How can a C# program running as LocalSystem impersonate the login identity of another user temporarily? Roughly speaking I have a Windows Service that I'd like to run as LocalSystem but at times ...
10
votes
4answers
6k views

Impersonation in .NET

Is there a simple out of the box way to impersonate a user in .NET? So far i have been using this class from code project for all my impersonation requirements. But is there a better way to do it,by ...
8
votes
1answer
122 views

Possible to use Impersonation when launching a non-exe process in C#?

I need to be able to run a process as a different user, and I've found plenty of resources and different methods to do this. The problem is, I need to run a non-exe process, e.g. a path with html ...
7
votes
3answers
813 views

How to use LogonUser properly to impersonate domain user from workgroup client

ASP.NET: Impersonate against a domain on VMWare This question is what I am asking, but the answer does not provide details on how the _token is derived. It seems to only use ...
7
votes
6answers
4k views

Impersonate using Forms Authentication

I have an ASP.NET site that must use Forms Authentication and not Windows Authentication to access a ActiveDirectoryMembershipProvider. The site must use forms because they need a designed input form ...
7
votes
2answers
6k views

How to Start/Stop a Windows Service from an ASP.NET app - Security issues

Hey guys, here's the setup (bear in mind I'm really struggling with the Windows/.NET security stack i.e. I don't get it): A Windows Service running as LocalSystem on a Windows Server 2003 box. A ...
6
votes
1answer
372 views

How to identify if a user is being impersonated in Symfony2?

In an application built with Symfony2 we want superadmins to be able to impersonate other users. This is easily done by giving the superadmin user the ROLE_ALLOWED_TO_SWITCH role. The switching is ...
6
votes
1answer
3k views

IIS 7.5, ASP.NET, impersonation, and access to C:\Windows\Temp

Summary: One of our web applications requires write access to C:\Windows\Temp. However, no matter how much I weaken the NTFS permission, procmon shows ACCESS DENIED. Background (which might or might ...
6
votes
2answers
6k views

Run Code as a different user (C#)

Is there a way to tell my code to run as a different user? I am calling NetUserSetInfo via a PInvoke and I need to call it as a different user. Is there a way to do that?
6
votes
3answers
1k views

Reading hidden share in C#

So I have a small C# app that needs to periodically check the contents of directories on multiple machines on the network. I thought I could just read \hostname\C$ as a directory path, but with the ...
5
votes
2answers
278 views

Copy files over network via file share, user authentication

I am building a .net C# console program to deploy file to a windows file share server (folder that is being shared). The path is :: \\192.168.0.76\htdocs\public On running I am getting the error: ...
5
votes
2answers
106 views

Logoff after logonuser on C#

I use advapi32.dll's logonuser method to access data over our network. I know it change the thread's user to the information i give it, but i was wondering if there's a way to reverse it. I want to ...
5
votes
1answer
116 views

Is it fatal if RevertToSelf() after ImpersonateSelf() fails?

MSDN says that if RevertToSelf() fails the program should terminate immediately, because otherwise it continues to run in the name of the client being impersonated and that is inappropriate. Now ...
5
votes
5answers
1k views

Application pool identity or Impersonation

(A question of similar vein has been asked before but both the question and the accepted answer do not provide the detail I am looking for) With the intention of running an asmx web service under a ...
5
votes
1answer
439 views

App Domain Level Impersonation

I am developing an application that needs to load plug-ins into separate child app domains. Only one plug-in is loaded into one child app domain. Each plug-in requires different Windows identity and ...
5
votes
1answer
1k views

Impersonation and CurrentUser Registry Access

Environment: Windows XP SP3, C#, .Net 4.0 Problem: I'm attempting to add access to an impersonated users registry hive in an impersonation class and I'm running into issues based on the type of user ...
5
votes
2answers
324 views

Is .Net Impersonation Logon Thread-Safe?

if using code like the following to impersonate another user, [DllImport("advapi32.dll", SetLastError = true)] private static extern bool LogonUser(string lpszUsername, string lpszDomain, ...
5
votes
6answers
336 views

Why does Windows not allow WinSock to be started while impersonating another user

Using my own program or others I can't get winsock to run when calling if the process is created with CreateProcessWithLogonW or CreateProcessAsUserW. It returns this error when I create the socket: ...
5
votes
2answers
1k views

Can you perform an impersonated search in SharePoint without providing a password?

I have done impersonation in SharePoint quite a bit in the past by doing something such as the following. SPWeb web = SPContext.Current.Web; string currentWebUrl = web.Url; SPUser user = ...
5
votes
4answers
1k views

Under UAC, why can't I write a file as an impersonated user?

I'm impersonating a user until Windows 2008 with UAC enabled. I'm trying to write some files to a temp directory. But even if a user has write access to a directory, when I impersonate that user, ...
5
votes
4answers
2k views

Can I turn off impersonation just in a couple instances

I have an app that has impersonation used throughout. But when a user is logged in as an admin, a few operation require them to write to the server itself. Now if these users do not have rights on ...
4
votes
2answers
82 views

How to set ASP.NET security impersonation

I am going through http://www.codeassociate.com/caapi/html/T_CA_Common_Security_Impersonate.htm I don't want to hard-code domain\username and password. Is it possible to get the current Windows ...
4
votes
1answer
154 views

Impersonation throws FileNotFoundException with WindowsIdentity in Powershell

I am encountering a somewhat weird error with performing impersonation in PowerShell and C#. Executing the folowing code does not show any errors. PSObject result = null; using (PowerShell ...
4
votes
1answer
170 views

Does a Non UI thread which is running under impersonated user automatically imersonate the UI thread?

I have been searching for several hours now and have so far had no luck with this one - so thought I would post. I have a WPF Application written in vb.net running on DotNet 4.0 which launches worker ...
4
votes
2answers
223 views

Running NUnit integration tests with different credentials

I am running integration tests with C#, NUnit, and SQL Server 2008 r2 dev edition database. Setting up my fixture includes creating a new database and loading test data, so I need dbo privileges for ...
4
votes
1answer
217 views

Debug while Impersonating Another Domain Account

Is it possible to debug a C# .NET 4 application, run unit tests, etc., using domain user credentials other than my own? I have several elevated permissions that the users and/or service accounts will ...
4
votes
1answer
699 views

App pool identity versus impersonation identity?

I found only one thread relating to this but it did not answer the question. I'm curious to a link or explanation of the difference between setting an impersonation user via in the web.config ...
4
votes
1answer
361 views

Failed to start monitoring changes on global.asax .net 3.5 Web service using Impersonation

I am trying to use impersonation in a an asp.net 3.5 webservice. However whenever I try to run the service with Impersonation enabled (In web.config) I am receiving the following error in my Windows ...
4
votes
3answers
705 views

How do I configure IIS so that the user's domain credentials are used when connecting to SQL server?

We've recently released the latest version of our intranet application, which now uses windows authentication as standard, and needs to be able to connect to a configured SQL server with the ...
4
votes
2answers
945 views

How do you run another .exe from VB.NET as another User?

How do you run another .exe from VB.NET but as another User? I expect to launch a .exe like "Left Click -> Run As -> Enter User/Pass -> Click OK" If I do that, my application runs as expected (I need ...
4
votes
2answers
3k views

How to Impersonate a user for a file copy over the network when dns or netbios is not available

I have ComputerA on DomainA running as userA needing to copy a very large file to ComputerB on WorkgroupB which has the ip of 192.168.10.2 to a windows share that only userB has write access to. ...
4
votes
3answers
359 views

Is passing a windows security token between processes permitted

Imagine I have an existing process running under windows as a particular user. Would it be permitted for that process to take its current token (with something like OpenThreadToken and ...
4
votes
4answers
746 views

Django user impersonation by admin

I have a Django app. When logged in as an admin user, I want to be able to pass a secret parameter in the URL and have the whole site behave as if I were another user. Let's say I have the URL ...
4
votes
1answer
2k views

Classic ASP Impersonation problem on IIS7 Windows 2008 server

I am trying to write to a file on a server (web05) from a classic asp site running on Windows 2008 serer on IIS7 (webadmin). This fails and web05 logs an anonymous logon attempt during the course of ...
4
votes
2answers
838 views

Impersonation: ASP.Net MVC Controller Action vs. Web Forms

Is there a difference with impersonation between an ASP.Net MVC controller actions vs. an ASP.Net Web Form? Using the exact same code within the same web project, I am able to successfully ...
4
votes
2answers
261 views

How to impersonate another Windows user, when using Windows authentication?

I have an ASP.NET application where only users authenticated by Windows (i.e. logged on user) have access to most pages. Now, my client wants to be able to 'log on' through this app, with a custom ...
4
votes
1answer
3k views

Impersonation in ASP.NET MVC

I have a MVC web application on an intranet and want to be able to create files on our FTP server to send to outside partners. The code for impersonation uses the WindowsImpersonationContext. ...
4
votes
1answer
859 views

Elevate impersonated credentials to app pool credentials in IIS

I am using impersonation in an application in IIS. I need to write a file to the file system, but don't want to use the impersonated user's credentials in this one case. I need to use the credentials ...
4
votes
3answers
960 views

Impersonation and Delegation in ASP.NET

I'm having problems accessing a text file on a remote server with ASP.NET. The ASP.NET 1.1 application is running on Server 2003 using Impersonation with the requester's Windows Credentials. The ...
3
votes
1answer
66 views

Windows Impersonation and duplicating tokens

I have an asp.net project where the request will delegate work to the background (via quartz.net). The web application is using windows authentication and impersonation. I would also like to ...
3
votes
1answer
67 views

How do I switch off WCF client impersonation temporaraly to write to, for example, a log file

I am using the following attribute to implement impersonation on my WCF service, as I need to impersonate the client during the entire execution of the method: [OperationBehavior(Impersonation = ...
3
votes
2answers
277 views

spring security (3.0.x) and user impersonation

In my web application, there are times when an authenticated admin might want to impersonate another valid user of a system without having to know that user's password. How can I use Spring Security ...
3
votes
4answers
413 views

Impersonation in .Net crashes when reading registry keys (LinkLabel SecurityException)

My app needs to impersonate a service account, which I do through a native-call to LogonUser. However, it appears that random components in the .Net library try to access registry keys the account ...
3
votes
5answers
110 views

Can I use a attribute to make .net impersonate another user?

I am familiar with impersonating an account in .net by using: dim myIdentity as WindowsIdentity = someIdentity using ctx as WindowsImpersonationContext = myIdentity.Impersonate() doStuff() ...
3
votes
1answer
226 views

Impersonating a user in wrong domain doesn't throw exception

I used the common impersonation code and it worked just fine, until I inserted random 'dggdgsdg' in domain - and it worked nonetheless... if (LogonUser(Username, Domain, Password, ...
3
votes
1answer
665 views

RW access to shared Windows folder using different user credentials in .NET

We are working in Windows network (AD in use) We have folder shared by user (access limited for this user only) User credentials are known I need to access to that share inside my app. Note I've ...
3
votes
1answer
216 views

Impersonation in ASP.NET MVC

I have an Action that needs to read a file from a secure location, so I have to use impersonation to read the file. This code WORKS: [AcceptVerbs(HttpVerbs.Get)] public ActionResult ...
3
votes
1answer
789 views

Temporarily granting elevated administrator privileges to ASP.NET code

We're trying to run a set of administrative tasks on the server via a web administration console. The console runs with impersonation as the currently logged-in user, and only administrators on the ...
3
votes
3answers
277 views

Cannot delete file in share using impersonation on ASP.NET site

We have a web farm and are writing temp files for reports. We set up a file share and are using impersonation to write the temporary report files to that share. We gave the account doing the ...

1 2 3 4 5 9