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
1
vote
1 answer

AZMAN alternative on Windows Server 2012 R2

Ive had a lot of research about authorization on Hyper-V VM's running on WS 2012R2. It says, that the tool AZMAN is out of work on this version. Are there any possibilities for me to controll the permissions for AD Users on VMs? Cheers Logfile
1
vote
1 answer

Programmatically assign a role to a scope in Microsoft AzMan?

I'm using AzMan on Windows Server 2003, and I've written a management application that completely hides AzMan and the MMC from the security team. However, I'm having a hard time implementing one of the features in the MMC. I have a role called User,…
Max Schmeling
  • 12,363
  • 14
  • 66
  • 109
1
vote
2 answers

Granting ASP.NET Network Service account access to Azman

I have an Azman store in AD, but cannot access it from our ASP.NET web server. I'm assuming that I need to grant the ASP.NET Network Service permission to the Azman store (using the Azman config tool), but cannot find the account for the ASP.NET…
Starfield
  • 119
  • 3
  • 9
1
vote
2 answers

How to Migrate Azman store data from XML to SQL?

I have implemented AzMan Store in my application using XML. But now I want to migrate it to SQL. I have already lot of user roles and data in AzMan XML, can anyone tell me some utility or method through which I can migrates that data to SQL. Thanks…
Sumit Gupta
  • 569
  • 1
  • 11
  • 33
0
votes
1 answer

Automated testing of authorization scenarios implemented with AzMan

I have a web application that uses AzMan authorization to grant different functionality to different users. I've just started using WatiN to implement some automated web UI tests that run under Visual Studio Team System/TFS. I'd like to be able to…
Craig Fisher
  • 1,681
  • 2
  • 19
  • 26
0
votes
1 answer

WIF simple WITHOUT Federation - Where to start

I am little lost at the moment. Hopefully you can point me in the right direction... Scenario: WinForms App / Active Directory / ONLY internal network What I want: Achieve the same that NetSqlAzMan does (authenticate and authorize single operations)…
Gope
  • 1,672
  • 1
  • 13
  • 19
0
votes
1 answer

Attributes & Deny Authorizations in NetSqlAzMan

I am using NetSqlAzMan for managing authorizations in my application. In my application, I would like to manage authorization on a record level; allow/deny a user/group to perform an operation on record (e.g. order, customer) #number I am aware that…
Omtara
  • 2,911
  • 2
  • 19
  • 31
0
votes
1 answer

Protect a method on a class using declarative security and azman

I have a wcf 4.0 service , I am running it locally in IIS express and am using azman to manage security. I am able to use the declarative syntax to secure the services, and prevent class instantiation in a class library. However when I decorate a…
PatFromCanada
  • 2,738
  • 1
  • 27
  • 27
0
votes
0 answers

AzMan Audit Logs

Good afternoon! Is there a way to activate an audit trail in AzMan that allows the identification of the changes that were performed in the application (creation/deletion/changes in access rights)? I tryed to research audit logs for AzMan and notes…
0
votes
2 answers

How to Export AzMan XML Store to another Machine?

Hi Im trying to find a way to recreate the all of the Roles, tasks operations etc that are currently defined in an AzMan XML store on our Dev box in an XML store on our QA box. Of course just simply copying the XML file to the QA box does not work.…
0
votes
1 answer

azman - problem with registering Interop.AZROLESLib.dll to GAC

I am struggling since 2 -3 hours to register the Interop.AZROLESLib.dll to gac using .net framework configuration tool. the error says "unable to add the selected assembly. the assembly must have strongname.....". Please help to create strong name…
Yogesh
  • 1,206
  • 4
  • 22
  • 50
0
votes
1 answer

Refreshing AzMan through AZROLESLib

We've written a simple AzMan wrapper class in .NET which uses the AZROLESLib COM interop library to access AzMan. It all works fine, except when we make changes to the underlying XML store, those changes do not get reflected in subsequent calls to…
Isaac Abraham
  • 3,422
  • 2
  • 23
  • 26
0
votes
1 answer

Asp.net Authorization using Azman and Store - xml, adam , sql ..etc

I am setting up Azman for authorization in my asp.net web application. I can have the Azman store as XML or ADAM or Sql server. My question is, which store (XML,ADAM,Sql,..etc) is better in what scenarios. Please help. Thanks/Yogesh
Yogesh
  • 1,206
  • 4
  • 22
  • 50
0
votes
1 answer

Azman with multiple stores

I want to have a multi tenant feature for Azman, for Eg: Each hospital should have particular roles to task link. Or in short multiple stores in single DB. Kindly suggest.
0
votes
1 answer

AzMan API returns invalid data with high load

I have a WCF service that calls the Authorization manager (AzMan) API - which is a COM interface. I use the following code to get a list of roles for a given user account: public string[] GetRoleNamesForUser(string appName, SecurityIdentifier…
HitLikeAHammer
  • 2,679
  • 3
  • 37
  • 53