Questions tagged [azman]

AzMan (Windows Authorization Manager) is a role-based access control (RBAC) framework that provides an administrative tool to manage authorization policy and a runtime that allows applications to perform access checks against that policy.

The AzMan administration tool (AzMan.msc) is supplied as a Microsoft Management Console (MMC) snap-in. Role-based authorization policy specifies access in terms of user roles that reflect an application's authorization requirements. Users are assigned to roles based on their job functions and these roles are granted permissions to perform related tasks.

Authorization policy is managed separately from an application’s code. The application designer defines the set of low-level operations that are considered security sensitive and then defines a set of tasks that map onto those operations. The tasks, but not the operations, are designed to be understandable by administrators and business analysts.

Administrators use the AzMan snap-in to manage which roles should have access to which tasks. As the business evolves and roles need to be modified, the administrator makes changes to the authorization policy; the underlying business application does not need to be changed. Federation-aware applications employ AzMan for access control decisions by mapping federation claims to AzMan roles.

http://msdn.microsoft.com/en-us/library/bb897401.aspx

79 questions
0
votes
1 answer

Is Microsoft.Interop.Security.Azroles in Windows Server 2016

The Authorization Manager (azman.msc) was deprecated for Windows Server 2012 R2, and it looks as though it might not be in Windows Server 2016. But I can't find any information regarding Microsoft.Interop.Security.Azroles in Windows Server 2016.…
0
votes
2 answers

AzMan XML configuration or SQL configuration, which one is more secure?

I am implementing the azman role based security in my application. I have seen how to configure it either using XML or SQL. But I am not able to understand which one is more secure? I am using click once deployment for my application. If I…
0
votes
1 answer

Mapping ye olde Azman operations and roles to ADFS Claims

As Azman is now on its way out of support, we need to need to find a new way of configuring the access control for our applications. Currently, in Azman, we have a list of "Operations", e.g. CanReadForm, CanEditForm. These operations can be mapped…
Calanus
  • 25,619
  • 25
  • 85
  • 120
0
votes
0 answers

Dependency injection of System.Web.Security.ActiveDirectoryMembershipProvider in ASP.NET CORE 1.0

I'm adding support for extranet users to my corporate application written in ASP.NET core and using the following library: EnterpriseLibrary.Security.AzMan 5.0. It is important to note that this is part of migrating an existing ASP.NET 2.0 web form…
0
votes
1 answer

How to get the Application Group, SID & UserName in NetSqlAZMAN

$AppName = "MyAppName" #Open the store $AzStore = New-Object -COMobject AzRoles.AzAuthorizationStore #Access the App $MyApp = $AzStore.OpenApplication($AppName) Can anyone please help me in completing this.
Raaga
  • 1
0
votes
1 answer

Silveright - extending AuthenticationService to provide custom authentication

I am trying to add to the authentication system provided in the Silverlight 4 business template as my model does not completely fit that provided in the template. I have an existing web service that performs my authentication and provides roles and…
Calanus
  • 25,619
  • 25
  • 85
  • 120
0
votes
1 answer

Silverlight 4 - authentiation / authorization against custom wcf service

I have a wcf service in front of an AzMan store that passes roles and operations to clients using the following interface: [OperationContract] bool AuthenticateUser(string password, string appName); [OperationContract] string[]…
Calanus
  • 25,619
  • 25
  • 85
  • 120
0
votes
3 answers

Please suggest a Windows Object Picker C# wrapper

I need to programmatically assign Windows and Active Directory users to the Window Authorization Manager (AzMan) roles via the Windows Object Picker. So I can invoke the "User and Group Permissions" window from my C# program. Can anybody suggest a…
Murat Korkmaz
  • 1,329
  • 2
  • 19
  • 37
0
votes
0 answers

Most efficient way to implement security/ authorization in a coporate environment?

I work in a corporate environment and most of our applications are developed using Win Forms. We have used azman as a way to manage user roles for the various functions that exist on the applications and tie these back to Active Directory. We have…
Donald N. Mafa
  • 5,131
  • 10
  • 39
  • 56
0
votes
1 answer

How to get list of groups the user is associated with in Azman?

I'm able to get the roles associated with the authenticated user but not the groups. Is there a way to get the groups WindowsIdentity userIdentity = HttpContext.Current.User.Identity as WindowsIdentity; AzAuthorizationStoreClass azManStore = new…
Junior Developer
  • 161
  • 1
  • 1
  • 4
0
votes
1 answer

Security Concerns For AZ Man On Winforms Project

I'm using the enterprise library and AZ Man to authenticate users into my winforms application. I've got the code working fine using the XML file. I don't understand how to securely deploy the application though. In app.config there is a path to…
Brian
  • 186
  • 3
0
votes
0 answers

C# - Get Role by login User in Azman

I am using C# to get the Role from Azman Manager by login User. This is my code, internal string AzRoleCheck(string strUserName) { string strRoleName = string.Empty; try { WindowsIdentity userIdentity = new…
Manikandan Sethuraju
  • 2,873
  • 10
  • 29
  • 48
0
votes
1 answer

Azman gives same error using either local xml or SQL Server for storage

Recently two users in our system started getting this error when trying to add them to a role. System.Runtime.InteropServices.COMException: Cannot create a file when that file already exists. (Exception from HRESULT: 0x800700B7) What is…
Kenn
  • 2,709
  • 2
  • 29
  • 60
0
votes
2 answers

Is it possible to use AzMan for role based authorization on objects which are created at runtime?

Is it possible to use AzMan for role based authorization on objects which are created at runtime? If yes how can this be done? For Example: If an object of class "CustomAlert" is created at runtime, I am trying to see if I can have different rules…
Varma
  • 771
  • 1
  • 9
  • 19
0
votes
1 answer

Is there a way to do "AND" in Net SQL AzMan instead of "OR"?

All of the settings in Net SQL AzMan seem to be "OR" based. For example: If you add 3 (Authorized) Application Groups to an operation, a user needs to be in the first OR the second OR the third to have permissions for the operation. I am looking…
Vaccano
  • 78,325
  • 149
  • 468
  • 850