Code Access Security (CAS) Interview Questions & Answers

Code Access Security (CAS) Interview Questions

Are you in search of Code Access Security (CAS)Jobs? Then you are at the right place. We provide you with the complete Code Access Security (CAS) interview Question and Answers on our page. Code Access SecurityCode Access Security (CAS), in the Microsoft .NET framework, is Microsoft's solution to prevent untrusted code from performing privileged actions. There are numerous leading companies that offer various job positions in Code Access Security. Here's our recommendation on the key things to need to prepare for the job interview to achieve your career goals in an easy way.To avoid this confusion, we’ve framed Code Access Security job interview questions and answers to simplify your interview preparation. To know more visit our website Wisdomjobs.com.

Code Access Security (CAS) Interview Questions And Answers

Code Access Security (CAS) Interview Questions
    1. Question 1. What Is Code Access Security (cas)?

      Answer :

      CAS is the part of the .NET security model that determines whether or not code is allowed to run, and what resources it can use when it is running. For example, it is CAS that will prevent a .NET web applet from formatting your hard disk.

    2. Question 2. How Does Cas Work?

      Answer :

      The CAS security policy revolves around two key concepts - code groups and permissions. Each .NET assembly is a member of a particular code group, and each code group is granted the permissions specified in a named permission set.

      For example, using the default security policy, a control downloaded from a web site belongs to the 'Zone - Internet' code group, which adheres to the permissions defined by the 'Internet' named permission set. (Naturally the 'Internet' named permission set represents a very restrictive range of permissions.)

    3. Question 3. Who Defines The Cas Code Groups?

      Answer :

      Microsoft defines some default ones, but you can modify these and even create your own. To see the code groups defined on your system, run 'caspol -lg' from the command-line. On my system it looks like this:
      Level = Machine
      Code Groups:

      1. All code: Nothing
      1.1. Zone - MyComputer: FullTrust
      1.1.1. Honor SkipVerification requests: SkipVerification
      1.2. Zone - Intranet: LocalIntranet
      1.3. Zone - Internet: Internet
      1.4. Zone - Untrusted: Nothing
      1.5. Zone - Trusted: Internet
      1.6. StrongName -

      0024000004800000940000000602000000240000525341310004000003
      000000CFCB3291AA715FE99D40D49040336F9056D7886FED46775BC7BB5430BA4444FEF8348EBD06
      F962F39776AE4DC3B7B04A7FE6F49F25F740423EBF2C0B89698D8D08AC48D69CED0FC8F83B465E08
      07AC11EC1DCC7D054E807A43336DDE408A5393A48556123272CEEEE72F1660B71927D38561AABF5C
      AC1DF1734633C602F8F2D5: Everything

      Note the hierarchy of code groups - the top of the hierarchy is the most general ('All code'), which is then sub-divided into several groups, each of which in turn can be sub-divided. Also note that (somewhat counter-intuitively) a sub-group can be associated with a more permissive permission set than its parent.

    4. Question 4. How Do I Define My Own Code Group?

      Answer :

      Use caspol. For example, suppose you trust code from www.mydomain.com and you want it have full access to your system, but you want to keep the default restrictions for all other internet sites. To achieve this, you would add a new code group as a sub-group of the 'Zone - Internet' group, like this:

      caspol -ag 1.3 -site www.mydomain.com FullTrust 
      Now if you run caspol -lg you will see that the new group has been added as group 1.3.1:
      ...

      1.3. Zone - Internet: Internet
      1.3.1. Site - www.mydomain.com: FullTrust

      ...
      Note that the numeric label (1.3.1) is just a caspol invention to make the code groups easy to manipulate from the command-line. The underlying runtime never sees it.

    5. Question 5. How Do I Change The Permission Set For A Code Group?

      Answer :

      Use caspol. If you are the machine administrator, you can operate at the 'machine' level - which means not only that the changes you make become the default for the machine, but also that users cannot change the permissions to be more permissive. If you are a normal (non-admin) user you can still modify the permissions, but only to make them more restrictive. For example, to allow intranet code to do what it likes you might do this:

      caspol -cg 1.2 FullTrust

      Note that because this is more permissive than the default policy (on a standard system), you should only do this at the machine level - doing it at the user level will have no effect.

    6. Question 6. Can I Create My Own Permission Set?

      Answer :

      Yes. Use caspol -ap, specifying an XML file containing the permissions in the permission set. To save you some time, here is a sample file corresponding to the 'Everything' permission set - just edit to suit your needs. When you have edited the sample, add it to the range of available permission sets like this:

      caspol -ap samplepermset.xml
      Then, to apply the permission set to a code group, do something like this:
      caspol -cg 1.3 SamplePermSet
      (By default, 1.3 is the 'Internet' code group)

    7. Question 7. What Are The Functions Performed By Cas?

      Answer :

      It performs following function:

      1. Defines permissions and permission sets that represent the right to access various system resources.
      2. Enables administrators to configure security policy by associating sets of permissions with groups of code (code groups).
      3. Enables code to request the permissions it requires in order to run, as well as the permissions that would be useful to have, and specifies which permissions the code must never have.
      4. Grants permissions to each assembly that is loaded, based on the permissions requested by the code and on the operations permitted by security policy.
      5. Enables code to demand that its callers have specific permissions.
      6. Enables code to demand that its callers possess a digital signature, thus allowing only callers from a particular organization or site to call the protected code.
      7. Enforces restrictions on code at run time by comparing the granted permissions of every caller on the call stack to the permissions that callers must have.

    8. Question 8. What Is Caspol.exe?

      Answer :

      It’s the core exe which is responsible to assign permission to the assembly. The .NET configuration tool is just a cover which sits on the top of caspol.exe to ease our work. CASPOL.exe commands are cryptic so the .NET configuration tool is more user friendly. In case you are interested in using caspol.exe you can go to visual studio command prompt and type caspol.exe with necessary parameters.

    9. Question 9. What Is A Permission And Permission Set?

      Answer :

      Once you have gathered the evidences about the code you would like to assign permission to the code. There are various permissions which you can assign to the code like Can the code create a file, can we write to registry, can the code execute reflection, can the code open file dialog box etc. 

      These permissions are collect permission sets and those permission sets are allocated to the code.

    10. Question 10. What Is Cas?

      Answer :

      Code Access security is a security model which grants or denies permission to your assembly depending on evidences like from where the code has emerged, who the publisher is? , strong names etc.

    11. Question 11. What Is Evidence In Cas?

      Answer :

      When you want to execute any code in your environment you would first like to know from where the code came from. Depending from where it came from, you would then would like to give him access rights. For instance a code compiled from your own computer would have greater rights than code downloaded from the internet.

      In order to know the same we need to probe the assembly / exe / dll and get evidences like who is the publisher of the code , from which site has this code from , from which zone has it come from ( internet , intranet etc) etc.

    12. Question 12. What Is Code Group?

      Answer :

      • It is a logical grouping of code.
      • It specifies the condition for membership.
      • Code groups represent collections of code and each code group has an associated set of permissions.
      • Administrators configure security policy by managing code groups and their associated permission sets.

    13. Question 13. Explain Role-based And Code Based Security?

      Answer :

      • Based on the credentials of the user, the access is provided to the user.
      • Role-based authorization is provided by the CLR to an account. It mostly involves the code running with the privileges of the current user.
      • Code security is about granting and denying permissions from the permission sets.

    14. Question 14. Define Declarative And Imperative Security.

      Answer :

      Security checks can be applied imperatively or declaratively. Declarative security is applied by associating attribute declarations that specify a security action with classes or methods. Imperative security is applied by calling the appropriate methods of a Permission object that represents the Principal (for role-based security) or system resource (for code access security).

    15. Question 15. What Are The Differences Between Declarative And Imperative Security.?

      Answer :

      Declarative and imperative are the different syntax schemes used to implement security declarations in .NET Framework. In declarative security, attribute syntax is used. The security constraints are stored in the assembly at compile time. The disadvantage of declarative security is that there are tools which extract security requirements from the metadata in the assembly.

      In imperative implementation, the attribute syntax is not used. It is implemented by writing the regular code to provide restrictions

    16. Question 16. What Are The Types Of Code Security?

      Answer :

      There are two types of code security:

      • Role based security: This authorizes user. 
      • Code access security: This protects system resources from unauthorized calls.

    17. Question 17. Define Principal Object?

      Answer :

      • It represents the security context under which code is running.
      • The principal object contains information about a user’s identity and role. 
      • It represents authenticated users.
      • You have a Principal Permission object in .Net framework that specifies user and its role. 
      • It has Demand() method that checks the current user or principal against the name and role specified in the Principal Permission.
      • It encapsulates identity and the role of a user. 
      • It can be created with the help of identity and role of a user.

    18. Question 18. What Are The Elements Of Code Access Security?

      Answer :

      Elements of Code Access Security :

      Every security system needs some sort of mechanism (such as user name, password and Access Control List (ACL)) to identify the users and determine what a user can or can't do. However CAS identifies and assigns permissions to application rather than to application users. 

      CAS identifies assemblies using evidence, there are a few elements by which an assembly can be identified, such as location, hash code and signature of the assembly. Evidence is the information that the runtime gathers about an assembly to determine which code group the assembly belongs to. Code groups in turn grant an assembly a permission set.

    19. Question 19. What Are The Components Of Code Access Security?

      Answer :

      Code Group : The evidence provided by an assembly is used as the condition for granting and revoking permissions to it. It is done by putting the code in an appropriate code group. Every code group stipulates a membership condition and has specific conditions attached to it. Any assemblies that meet the condition become a member of the group. Code groups are arranged in a hierarchy and assemblies are nearly always matched to several code groups. The code group at the root of the hierarchy is called All Code and contains all other code groups.

      Evidence : In order for the CLR to determine which code group to place assembly information into, the first step is to read supplied evidence. There are two main sources of information, they are internet and intranet. The group internet defines code that is sources from the internet and the group intranet defines code sources from a LAN. The examination of the assembly evidence makes the authentication part of the security process. 

      Permissions : Permissions are the actions you allow each code group to perform. The system administrator usually manages the permissions at the enterprise, machine and user levels. The CLR Virtual Execution System (VES) loads and runs programs. It provides the functionality required to execute managed code and uses assembly metadata to connect modules together at runtime. When VES loads an assembly, it matches the assembly to one or more code groups. Each code group is assigned to one or more permissions that specify what actions assemblies can do in that code group.

    20. Question 20. But Why This Change, What Was The Problem With Cas?

      Answer :

      • First thing CAS was not easy, all those cryptic steps of creating code groups, and permission sets etc eats your energy completely.
      • If you have to move the assembly to a different computer you need to do the whole rework again.
      •  The worst part CAS does not work on unmanaged code. I am dead sure it’s always possible you will download exe which is not written in .NET.

Popular Interview Questions

All Interview Questions

All Practice Tests

All rights reserved © 2020 Wisdom IT Services India Pvt. Ltd DMCA.com Protection Status

ASP.NET Tutorial