Click here to Skip to main content
15,867,686 members
Articles / Web Development / ASP.NET
Article

Rule Based Security using Microsoft Enterprise Library and CAS

Rate me:
Please Sign up or sign in to vote.
2.89/5 (12 votes)
7 Nov 2008CPOL2 min read 53.9K   813   28   6
In this article I’ll explain a solution to secure web applications using custom membership and role providers with the Enterprise Library Security Application Block and code access security.

Introduction

Rule based security is a very effective way to authorize your code, and code access security is a clean, easy to use and effective way to handle the security validation.

The Enterprise Library Security Application Block provides a configurable way to handle Rule based security.

In this article I’ll explain a solution to secure web applications using custom membership and role providers with the Enterprise Library Security Application Block and code access security.

You need the Enterprise Library installed.

Using the Code

First, we need to implement our custom membership provider, in this example I’ll just use static code to explain the provider (not going to the database or anything).

For this sample I just need to implement the following method:

C++
public override bool ValidateUser(string username, string password)
        {
            return true;
        }

Then, we need to implement our custom role provider.

I just need the following to implement methods:

C++
public override string[] GetRolesForUser(string username)
{
            return SecurityProvider.GetRolesForUser(username);}
 
public override bool IsUserInRole(string username, string roleName)
{
            return SecurityProvider.IsUserInRule(HttpContext.Current.User, roleName);}

Sure, you can build your own providers with a custom database.

Now, Let’s have a look on the [SecurityProvider] class:

C#
public class SecurityProvider{
        public static bool IsUserInRule(IPrincipal principal, string ruleName)
        {
            IAuthorizationProvider authorizationProvider = 
                AuthorizationFactory.GetAuthorizationProvider();
            return authorizationProvider.Authorize(principal, ruleName);
        }
 
        public static string[] GetRolesForUser(string username)
        {
            switch (username.ToLower())
            {
                case ("admin"):
                    return new string[] { "Admin" };
 
                case ("manager"):
                    return new string[] { "Manager" };
 
                case ("user"):
                    return new string[] { "User" };
 
                default:
                    return new string[] { "" };
 
            }
        }
    }

I use the Enterprise Library Security Application Block to make the validation on the rules from the configuration file.

Then, we need to implement a custom CAS permission and attribute like the following (not implemented functions removed from the next code section but is available in the source code).

C#
public class RulesSecurityPermission : IPermission
    {
        private string _rule;
        public string Rule
        {
            get
            {
                return this._rule;
            }
            set
            {
                this._rule = value;
            }
        }
 
        public RulesSecurityPermission(string roleName)
        {
            _rule = roleName;
        }
 
        void IPermission.Demand()
        {
            if (!SecurityProvider.IsUserInRule(Thread.CurrentPrincipal, Rule))
                throw new SecurityException();
        }
    }
C#
public class RulesSecurityPermissionAttribute : CodeAccessSecurityAttribute
    {
        public RulesSecurityPermissionAttribute(SecurityAction action)
            : base(action)
        {
           
        }
 
        public override IPermission CreatePermission()
        {
            return new RulesSecurityPermission(Rule);
        }
       
        private string _role;
        public string Rule
        {
            get
            {
                return this._role;
            }
            set
            {
                this._role = value;
            }
        }
    }

Now, let’s have a look on the configurations file:

ASP.NET
<configuration>
  <configSections>
    <section name="securityConfiguration" 
       type=
       "Microsoft.Practices.EnterpriseLibrary.Security.Configuration.SecuritySettings,
       Microsoft.Practices.EnterpriseLibrary.Security, Version=3.0.0.0,
       Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  </configSections>
  <securityConfiguration defaultAuthorizationInstance="RuleProvider"
    defaultSecurityCacheInstance="">
    <authorizationProviders>
      <add type="Microsoft.Practices.EnterpriseLibrary.Security.AuthorizationRuleProvider, 
        Microsoft.Practices.EnterpriseLibrary.Security, Version=3.0.0.0,
        Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
        name="RuleProvider">
      <rules>
        <add expression="R:Admin" name="Administratoin" />
        <add expression="R:Admin OR R:Manager" name="Management" />
        <add expression="R:Manager OR R:User" name="Usage" />
      </rules>
    </add>
  </authorizationProviders>
</securityConfiguration>

<system.web>

  <compilation debug="true" />

  <authentication mode="Forms">
    <forms loginUrl="~/Login.aspx" defaultUrl="~/Default.aspx">
    </forms>
  </authentication>

  <authorization>
    <deny users="?"/>
  </authorization>

  <membership defaultProvider="CustomMembershipProvider">
    <providers>
      <clear/>
      <add name="CustomMembershipProvider"
        type="Shokr.Security.RuleBasedSecurity.CustomMembershipProvider"/>
    </providers>
  </membership>

  <roleManager defaultProvider="CustomRolesProvider" enabled="true">
    <providers>
      <clear/>
      <add name="CustomRolesProvider"
        type="Shokr.Security.RuleBasedSecurity.CustomRolesProvider" />
    </providers>
  </roleManager>

  </system.web>
</configuration>

In the above code, I had registered the [AuthorizationRuleProvider] from the Enterprise Library and configured our custom membership and roles providers.

Finally, this is the sample in action:

Navigate to the login page, and login with [admin] and any password.

Login.JPG

You will be redirected to the default page:

Main.JPG

Click on [Administrative function], you will see that the method executed successfully

Admin.JPG

Click on [User function], you will see security error:

User.JPG

Points of Interest

  • Code access security is a very nice way to secure your code.
  • Enterprise library provides a rich configurable way to handle rule based security.
  • With the implementation of custom permission and attribute, you can use the given sample to find other ways to secure your applications.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect INC Technologies
Kuwait Kuwait
+7 years of experience in designing and implementing Microsoft Based Solutions.
+5 years of experience in SharePoint implementations from MCMS 2002 to the latest version.
+3 years of experience as presales and technology advisory.
Strong analytic, design and client facing skills.
Strong record in consultation and presales with associated Gulf business understanding and market analysis.
Worked closely with Microsoft Kuwait & Qatar Offices SSPs, PTAs, PAMs and SAMs.
Extensive experience in BizTalk Server 2009, SSAS, PerformancePoint Services and Excel Services.
Active member in the Virtual Technology Specialist and Customer Immersion Experience programs.
Strong record in team leading and projects supervision.

Comments and Discussions

 
GeneralMy vote of 4 Pin
Ehsan yazdani rad8-Oct-14 23:49
Ehsan yazdani rad8-Oct-14 23:49 
GeneralMy vote of 3 Pin
santoshkumarbehera7-Feb-11 20:27
santoshkumarbehera7-Feb-11 20:27 
GeneralMy vote of 1 Pin
KiwiPiet23-Apr-09 14:14
KiwiPiet23-Apr-09 14:14 
Generalerror when running the example provided Pin
Member 192629415-Feb-09 5:16
Member 192629415-Feb-09 5:16 
GeneralRe: error when running the example provided Pin
Member 192629415-Feb-09 5:37
Member 192629415-Feb-09 5:37 
Generalgood article Pin
Donsw7-Feb-09 13:09
Donsw7-Feb-09 13:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.