Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
2answers
895 views

How do I perform WIF/claims impersonation without the claim being mapped to an AD account?

I need to perform search impersonation in SharePoint 2010 for Claims users. To put this in context, I would like to first state how I get this to work with Windows accounts and then discuss Claims / ...
4
votes
1answer
155 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
460 views

How to copy file from UNC-share to local system?

I'm stuck with this question. I have UNC share, I know account details, which has fullaccess, but it doesn't have access to my local system. I can get access to remote UNC with : var token = ...
4
votes
2answers
233 views

How do I set up .NET WindowsAuthentication - the name always shows up as “IIS APPPOOL\Classic .NET AppPool” when I want it to use the actual user

I'm using the following code to authenticate via Kerberos. IntPtr logonToken = WindowsIdentity.GetCurrent().Token; string authenticationType = "WindowsAuthentication"; WindowsIdentity ...
4
votes
6answers
5k views

Registry ReadString method is not working in Windows 7 in Delphi 7

The following code sample used to return me windows id before, but now it doesn't work, and returns empty string, dunno why. function GetWindowsID: string; var Registry: TRegistry; ...
3
votes
1answer
89 views

How to get sender's WindowsIdentity from recieved msmq message?

How to get sender's WindowsIdentity from recieved msmq message? I use msmq as a transport and a Security Appplication Block with Authorization Rule Provider for operation's authorization. I need ...
3
votes
2answers
1k views

ADAM, Active Directory, LDAP, ADFS, Identity

What is the difference/relation between ADAM, Active Directory, LDAP, ADFS, Windows Identity, cardspace and which server (Windows 2003, Windows 2008) uses what?
3
votes
1answer
458 views

NServiceBus - How to configure bus to allow WindowsIdentity to flow from client

On the client I have setup the bus with ImpersonateSender(true) My server is configured AsA_Server, which by default should have ImpersonateSender(true) I'm now trying to retrieve the ...
2
votes
1answer
66 views

unsupported MONO function “ System.Security.Principal.WindowsIdentity.GetCurrent(bool)” using UNITY3D and MATLAB's MWARRAY.DLL

the problem starts with a function call to a mono function that is not supported yet. the call is made from a close matlab DLL called MWARRAY.DLL (.net version 2.x), this dll is normally used with VS ...
2
votes
1answer
285 views

Windows Identity SID

Does SID for a windows account (local, domain, Active Directory) ever changed once an account is created? If yes, under what conditions.
2
votes
2answers
652 views

Where Federation authentication token is saved [WIF STS]?

While i started to explore WIF, i have a doubt on the following: In the Windows Identification Foundation[WIF],looking on to Security Token Service[STS], i wish to know where the federation ...
2
votes
3answers
1k views

List files user has read access to (ASP.NET)

I am wanting to list all the files in a folder that a user has read access to. The user visits the website and can use Forms Authentication for some aspects of the site (e.g. adding links etc), but I ...
2
votes
1answer
812 views

What are good ways to architect a custom “ClaimsAuthorizationManager” Windows Identity Foundation class?

I am working on the very first project at my office where we will be using "Windows Identity Foundation" with Claims-Based-Authorization. To this end, Microsoft .net provides the ...
2
votes
2answers
583 views

How can I retrieve all the roles a user is in?

Is there a way to get a list of roles a Windows authenticated user is in, without explicitly checking by WindowsPrincipal.IsInRole method?
1
vote
1answer
71 views

ASP.NET Impersonation make windows Identity flow across to SQL Server

I have a website with Impersonation turned on. IIS Windows Authentication is on and Anonymous Access is OFF. SQL Server security has a Domain\TestUser account added I logged on with ...
1
vote
2answers
334 views

Getting WindowsIdentity in my WCF Web Service

I took over code from a developer that is no longer with us. It's a WCF web service that was originally using a passed in username, but we need it to use the WindowsIdentity instead. string identity ...
1
vote
1answer
104 views

Federated authentication cookieless STS

I see that Federated Identity stores Security token to a cookie, after its first request to the STS (Security Token Service). In that case if I disable cookie in my browser, how does it work? I have ...
1
vote
2answers
475 views

c# WindowsIdentity Impersonation Not working

When I use WindowsIdentity Impersonation like this: WindowsIdentity newId = null; WindowsImpersonationContext impersonatedUser = null; Console.WriteLine("Name of the ...
1
vote
2answers
404 views

Windows Identity Framework on ASP.NET MVC - how to authorize user per action basis?

Windows Identity Framework on ASP.NET MVC - how to authorize user per action basis? Like: [Authorize] public ActionResult About() { return View(); } Instead of the whole ...
1
vote
4answers
348 views

Getting the current logged in user (FullToken Context)

I have a Problem, which is... i start a programm with right click -> run as administrator. Which means the programm is running in an administrative context. WindowsIdentity.GetCurrent().Name; if i ...
1
vote
1answer
135 views

How do I manage access in Windows Identify Foundation without raising exceptions?

In the Windows Identity Foundation (WIF), there is a class called ClaimsPrincipalPermission. The documentation on MSDN is very sparse. It states: ClaimsPrincipalPermission represents the ...
1
vote
1answer
424 views

How to impersonate another user?

I'm working on an ASP.net app and i'm trying to impersonate a user I'm creating a windowsIdentity with a token WindowsIdentity winId = new WindowsIdenty( token ); this token was got by calling the ...
1
vote
1answer
533 views

How do I change the value returned by WindowsIdentity.GetCurrent in ASP.net?

I'm writing an ASP.net application and I'm working with the WindowsIdentity.GetCurrent() function. I want to know how (or if it's possible) to change what identity the ASP.net application runs as. I ...
1
vote
1answer
933 views

How to get another user WindowsIdentity without knowing his password?

I'm trying to intercept WindowsAuthenticationModule to login into application as another user, but I cannot create new WindowsIdentity without knowing his password. The code will run under ...
1
vote
1answer
112 views

WindowsIdentity.GetAnonymous()

Could you please explain me what is the anonymous identity used for? As far as I know windows does not have an anonymous account type ?!
1
vote
1answer
1k views

WCF and PrincipalPermission

I have a number of services that will be running under the security context of NT Authority\System as a Windows service (the services are NetTCP-based). There are six groups stored in Active Directory ...
0
votes
1answer
51 views

WindowsIdentity.Impersonate in ASP.NET randomly “Invalid token for impersonation - it cannot be duplicated”

I have an ASP.NET app that requires users to sign in with their domain accounts using Basic Authentication. The user can make a selection, then press a button. At some point after pressing the button ...
0
votes
1answer
32 views

STS and Redirecting causing issues with Ajax and also post requests

I've got a site that's integrated with WIF for security and mostly everything is ok. It's redirecting and dealing with load balancers etc. I've noticed on a few requests it's bouncing to the sts and ...
0
votes
2answers
133 views

How do I handle the event SessionSecurityTokenReceived in Global.asax?

I'm trying to set up sliding sessions in WIF and need to handle SessionSecurityTokenReceived. I'm sure I'm doing something dumb here... but VS2010 keeps on telling me that There is no applicable ...
0
votes
1answer
51 views

Token replays still possible even after implementing DefaultTokenReplayCache in WIF

I've been able to subclass DefaultTokenReplayCache and make it work in my MVC application. This correctly detects tokens that would be replayed from the IDP to the RP by Fiddler or by pressing the ...
0
votes
2answers
65 views

What value (Cookie, SessionID, variable) best represents a WIF Session?

I want to track a user's logon session from the time they login to my site, to the time they logoff. Is there a pre-existing cookie I should use, or variable? I thought of using ASP.NET sessionIDs ...
0
votes
1answer
33 views

Customizing the Windows Identity Foundation (WIF) error messages (yellow screen of death)

WIF will send our users the Yellow Screen of Death whenever an error occurs. This can be something such as a token replay, or a old token being sent to the server as shown below: How do I ...
0
votes
1answer
112 views

Can a script update the Identity tab fields of Application Pool properties in IIS 6.0+

I am a developer and I have arrived at a solution to a webservice authentication problem that involved ensuring Kerberos was maintained because of multiple network hops. In short: A separate ...
0
votes
2answers
131 views

How to implement active federation provider with WIF

I have several Silverlight, WP7 and ASP.NET MVC client applications Most allow anonymous access to the application but secure various features based on a user's credentials when logged in. All of the ...
0
votes
1answer
36 views

Current User is LocalSystem Check?

It is easy enough to determine if the user running my C# .NET 4.0 console app is a member of the local Administrators group. I am also trying to determine if it is running under LocalSystem. What is ...
0
votes
0answers
67 views

HttpRequest.LogonUserIdentity gives different groups in Chrome vs IE9

Folks, I encountered a very strange (at least to me) issue today. It's not a problem for my project apparently, but I really want to know why this happens! Here is the explanation of the problem : ...
0
votes
0answers
199 views

Getting User Windows Identity given Username as parameter and Role Checking in WCF

Does anyone know how to get the WindowsIdentity in WCF? I've written this simple SecurityCheck() method For example: protected Role SecurityCheck(string Username) { ...
0
votes
1answer
342 views

Create WindowsIdentiy using just a domain and username

I am building a site that gets user information using the WindowsIdentity of the current user. The main info I get from this is the ssid. I do this for the current users as follows IntPtr ...
0
votes
1answer
109 views

Provisioning “new” users with multiple trusted STSes

When using Windows Identity Foundation (WIF) with multiple Security Token Services (STS), is it possible to provision users before they first access the application? For example, let's say I have a ...
0
votes
3answers
531 views

VB.NET Error - Null Reference Exception could occur at run time when the result is used

Background: I wrote code that will output all the currently logged in User's Active Directory group names. I want the group name (ex: Acomp_user_BIG) via IdentityReference.Translate instead of the ...
0
votes
1answer
472 views

VB.NET - Error Reference to a non-shared member requires an object reference (WindowsIdentity.Groups Property)

I am getting the following error: Error 1 Reference to a non-shared member requires an object reference. (on WindowsIdentity.Groups) Here's my code from that uses the ...
0
votes
1answer
278 views

WindowsIdentity.Name doesn't return new name from Active Directory

Any help on this would be TRULY appreciated. I'll spare you the details, but we have to rename all of our Active Directory users from [First name] [Last Name] to [First Initial][Last Name] to get the ...
0
votes
2answers
446 views

WindowsIdentity constructor throws exception with token from LogonUser

I'm running inside a command line application that authenticates users using LogonUser. The function returns correctly and fails correctly (invalid user name or password). When I pass the token ...
0
votes
1answer
255 views

SecurityNegotiationException when trying to issue a security token request

I am getting trying to make an Issue request to my STS and I keep getting the following exception: System.ServiceModel.Security.SecurityNegotiationException' occurred in mscorlib.dll but was not ...
0
votes
2answers
544 views

Windows authentication in WCF & IIS to access a database

I have a WCF service I want to use to access a SQL db (via Linq2SQL at the moment), but the trusted security in a live IIS environment doesn't seem to use the right credentials - I've tried to follow ...
0
votes
1answer
194 views

Call Dispose() on a WindowsIdentity object? C#

I am retrieving a WindowsIdentity object by calling: win_id = System.Security.Principal.WindowsIdentity.GetCurrent(); with the intention of getting the currently logged on user name, which works ...
0
votes
1answer
246 views

with integrated windows authentication and asp.net, the user changes password and is prompted to login again. why?

I am working on an application that uses windows authentication. Within this application, we give the user the ability to change their password. The user can change the password just fine. However, ...
0
votes
2answers
2k views

Using WindowsIdentity to get a list of files/directories in ASP.NET while logged in using Forms Authentication

Edit 7: I'm guessing this can't be done after all, might need to use some kind of command line application to do this and and parse the output, although I expect this could be very slow when lots of ...
0
votes
1answer
720 views

How can I generate a SAML Security Token within the same application that consumes it?

I've been configuring some of my applications to use the Windows Identity Foundation. I use the passive redirection to get security tokens from a Security Token Service. I accomplished this by ...
0
votes
2answers
1k views

Windows Identity Foundation: How to get new security token in ASP.net

I'm writing an ASP.net application that uses Windows Identity Foundation. My ASP.net application uses claims-based authentication with passive redirection to a security token service. This means ...

1 2