Home > Articles

This chapter is from the book

This chapter is from the book

AAA Overview: Access Control, Authentication, and Accounting

  • Identify, specify, or describe good access control and authentication processes and techniques.

The "AAA" concept is the cornerstone of any systematic discipline of security (IT or otherwise). It is composed of:

  • Access control. Manages which individuals or accounts may interact with specific resources, and governs what kinds of operations such individuals or accounts may perform on those resources. Access controls usually rest on some notion of identity, which may be associated with a specific individual or account, or with a group to which that individual or account belongs.

  • Authentication. Process of verifying a user's identity through the use of a shared secret (such as a password), a physical token (such as a key), or a biometric measure (such as a fingerprint).

  • Accounting. Systematically tracks and records the operations and activities undertaken by individuals or accounts while they're active in a system or working environment (accounting).

NOTE

Authentication Methods These three types of authentication are commonly referred to as something you have (physical token), something you know (shared secret), and something you are (biometric measure).

The levels of access control, the types and rigor of authentication methods and technologies, and the degree to which accounting is applied to individual activities and operations vary according to the security requirements or policies associated with specific situations and implementations. But, these three concepts provide a firm foundation on which security controls of all kinds may rest, from relatively lax or optimistic security regimes, all the way to extremely rigorous or pessimistic security regimes. We explore the concepts that underlie AAA further in the sections that follow.

Access Control

In general, access control governs each user's ability to read, execute, change, or delete information associated with a particular computer resource. In effect, access control works at two levels: first, to grant or deny the ability to interact with a resource, and second, to control what kinds of operations or activities may be performed on that resource. Such controls are managed by an access control system. The access control system may be integrated with the operating system, or may be part of a more general resource management and control environment.

Today, there are numerous methods of access controls implemented or practiced in real-world settings. These include the methods described in the next four sections.

Mandatory Access Control

In a Mandatory Access Control (MAC) environment, all requests for access to resources are automatically subject to access controls. In such environments, all users and resources are classified and receive one or more security labels (such as "Unclassified," "Secret," and "Top Secret"). When a user requests a resource, the associated security labels are examined and access is permitted only if the user's label is greater than or equal to that of the resource. For example, a user with "Top Secret" clearance is allowed access to a "Secret" document, but a user with "Secret" clearance is not granted access to "Top Secret" information. The access control system also considers whether the operation requested falls within the operations that the user is allowed to perform on the resource (such as read, write, or execute).

In MAC environments, only individuals with administrative privileges can manage access controls. MAC is the most restrictive access control regime, inherently well-suited to the highest security environments, such as those associated with national defense programs or extremely valuable private intellectual property.

Discretionary Access Control

In a Discretionary Access Control (DAC) environment, resource owners and administrators jointly control access to resources. This model allows for much greater flexibility and drastically reduces the administrative burdens of security implementation.

There are solid arguments both for and against DAC systems. In their defense, DAC grants administrative control of resources to the people responsible for their everyday use. Theoretically, these individuals would be best suited to assess a user's "need to know." On the other hand, DAC systems widen the circle of users with administrative powers.

Rule-Based Access Control

In general, rule-based access control systems associate explicit access controls with specific system resources, such as files or printers. In such environments, administrators typically establish access rules on a per-resource basis, and the underlying operating system or directory services employ those rules to grant or deny access to users who request access to such resources. Rule-based access controls may use a MAC or DAC scheme, depending on the management role of resource owners.

Access control lists (ACLs) are a common rule-based access control mechanism. For example, Windows NT/2000 systems associate ACLs with objects and resources under the operating system's control. When a user requests a resource, the operating system checks the appropriate ACL to determine whether the user (or a group the user is a member of) should be granted access to that resource.

Many firewalls also use rule-based access controls to control access to a network. Anytime a connection is attempted, the firewall checks its rulebase to see whether the requested connection is allowed. If a rule specifically permits the connection, it passes through. Otherwise, the firewall closes the connection.

Role-Based Access Control

Role-based access control (RBAC) enforces access controls depending upon a user's role(s). Roles represent specific organizational duties and are commonly mapped to job titles such as "A/P clerk," "Receptionist," or "Chief Executive Officer." Obviously, these roles require vastly different network access privileges.

Role definitions and associated access rights must be based upon a thorough understanding of an organization's security policy. In fact, roles and the access rights that go with them should be directly related to elements of the security policy.

Authentication

The goal of authentication is to provide "reasonable assurance" that anyone who attempts to access a system or network is a legitimate user. In other words, authentication is designed to limit the possibility that an unauthorized user can gain access by impersonating an authorized user. Here, again, the organization's security policy should guide how difficult it is for one user to impersonate another. Highly sensitive or valuable information demands stronger authentication technologies than less sensitive or valuable information.

The most common and least stringent form of authentication technology demands that users provide only a valid account name and a password to obtain access to a system or network.

In environments in which passwords provide the only barriers to entry and access, it's essential to understand how to create strong passwords and how to protect well-known accounts from attack. See Chapter 8, "Operating System Security," for more information on this topic.

TIP

Exam Tip: SecurID RSA's SecurID system is a popular token-based authentication mechanism. It's a physical card that provides the user with a unique time-based code to enter at logon time. Be familiar with this specific device, as it may appear on the TICSA exam. For more information on the product, visit http://www.rsasecurity.com/products/securid/.

Alternative forms of authentication include the following technologies:

  • Biometrics. These systems read some physical characteristic of the user, such as their fingerprint, facial features, retinal pattern, or voiceprint. These readings are compared to a database of authorized users to determine identity.

  • Security devices. These systems require use of a special- purpose hardware device that functions like a customized key to gain system access. The device may be inserted into the system like a key or used to generate a code that is then entered into the system.

  • Concentric-ring authentication. These systems require users to clear additional authentication hurdles as they access increasingly sensitive information. This approach minimizes the authentication burden as users access less sensitive data while requiring stronger proof of identity for more sensitive resources.

Any authentication method may be subverted, given sufficient time, expense, and ingenuity. The goal of authentication technologies is to make subversion expensive and difficult enough that malicious individuals do not want the data badly enough to bother trying to fool the authentication technology.

Accounting

The third leg of the "Triple A" security triad is accounting. As defined in practice, this actually means auditing and accounting—two similar concepts with slightly different meanings. Both are important to maintaining strong network and system security. We look at each of these in detail.

Auditing Explained

Think of auditing as a generic way of recording the types of resource access that occur on a system or network. Because of the heavy burden auditing places on a system, it's wise to pick and choose which activity types require auditing, based upon your organization's security policy.

WARNING

Choose Wisely! It's very difficult to achieve a balance between performance and security when choosing what activities to audit. If you're strapped for computing resources, it's tempting to cut auditing to the bare minimum. On the other hand, if you're slightly paranoid, you may want to audit far too many activities. Discuss this issue carefully with your security policy team.

The more sensitive the data or resources being accessed, or the more potential control over access that certain kinds of activity may convey, the more important it is that they be audited. Many administrators choose to audit and log not only successful access to sensitive or confidential files and resources, but also failed attempts at such access. This permits them not only to observe that authorized individuals are performing their duties as expected, but also allows them to look for patterns of unusual activity. This could include attempts to access sensitive files by unauthorized individuals, as well as deviations in usage patterns for authorized users—such as when a secretary that usually accesses sensitive files only during working hours suddenly begins to access such files in the wee hours of the morning.

You'll also want to perform detailed auditing of any accounts that have administrative rights on your system. These powerful accounts have wide-ranging powers and are very often the targets of hacker attacks.

Accounting Explained

Accounting functions track usage of computing resources on a cost basis. These are often tallied on the basis of transactions performed, services requested, storage units consumed, pages or slides printed, and similar metrics. This kind of accounting provides a way to distribute costs from centralized service organizations or IT groups back to individual departments within companies.

Because individual users and activities can be tracked as such, accounting also provides IT staff and managers with a tool to look for possible abuse of company resources. Accounting may reveal expensive utilization of resources in an area not covered by the computing budget. Further investigation may reveal either an undocumented computing need that must be budgeted for or inefficient/irresponsible use of resources.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020