Omegapoint CIS Control Verifications for Cloud Native Applications

4 June 2024

Version 2024.1.0, approved by the CIS organization May 2024, Copyright © Omegapoint 2021 — 2024

This document interprets CIS Controls v8 IG 3 for a cloud-native system built, operated, and defended by a DevOps team. It references additional standards for guidance on implementation details, in example CIS Benchmarks and OWASP material.

It is recommended to have a basic understanding of CIS Controls v8 when applying the verifications in this document. For more information on CIS Controls and how to do assessments based on them, see

Note that CIS licensing applies to the content in this document. Thus, the Omegapoint verifications in this document are free to use internally within your organization, while other usages might require licensing and approval from the CIS organization.

Overview

Preferable, systems are secure by design. Following basic industry-standard principles like zero trust, least privilege and defense in depth. They also should keep a good balance concerning confidentiality, integrity and availability security aspects (CIA.) When systems are based on these principles, compliance is a byproduct of secure systems, not the other way around. The focus for the team should be on building secure, high-quality systems, not just meeting the minimal set of requirements to be compliant. However, we do not devalue compliance requirements, which should typically be prioritized.

This document follows the organization of CIS Controls v8. Each chapter starts with describing our view of what is needed to meet the corresponding CIS control. The chapter then contains a set of verifications that aim to be actionable and straightforward to measure. When relevant, e g for more details on web application security, references to other frameworks are included. In particular OWASP ASVS v4.0.3 (https://owasp.org/www-project-application-security-verification-standard/), and OIDC FAPI 2.0 (https://openid.net/wg/fapi/specifications/) are referenced.

The context for the verifications in this document is a system and the team that builds, operates, and defends it. Given an entire organization, security frameworks can become abstract for DevOps teams. We can be very specific and actionable by narrowing the context to a specific system and team.

Control 01 – Inventory and control of enterprise assets

Infrastructure as Code (IaC), combined with version control and code reviews, provides enterprise asset inventory and control as a side effect. For a given cloud-native DevOps team there should be traceability of changes in the system, as well as quality control.

This control requires all assets for all environments to be defined as code, as far as practicable. Assets not defined as code need a documented process. The team needs to adjust the balance between code and documented process as cloud vendors add features to the APIs for managing resources.

Even if the team has good practices using code, version control and reviews, detecting drift between IaC and the configured resources in all environments can be challenging over time. It is preferable to use active automated scanning to find any unauthorized resources (not version controlled) but this might not always practical to implement.

Finding unauthorized resources in a fully cloud-native system can be as simple as manually listing all resources and inspecting audit logs for resource creation. VMs and on-prem parts require CIS Safeguards 1.3—5 in full.

V1.A
Verify that all IaC is under version control.
V1.B
Verify that all changes are reviewed before being deployed to production.
V1.C
Verify that all changes can be traced to an individual, time, and motivation for change.
V1.D
Verify that all resources are deployed using IaC as far as practicable.
V1.E
Verify that ownership is clear and what environment resources are part of (dev, QA, prod, etc.)
V1.F
Verify that there is a process to find and address unauthorized resources.

Note that we do not require IaC to run in a build pipeline. Changes to IaC can, in some cases, cause service disruptions that can be complex to avoid in an automated pipeline.

Also note that we are not expecting to be able to trace all changes in infrastructure code and configuration to backlog items (tickets) and linked business requirements. Documented requirements are simply not available for much of the work in a modern agile environment. However, the motivation for change is important to trace.

In addition to the verifications listed above, OWASP ASVS sections 1.14 and 14.1 provide relevant guidelines for this control.

Control 02 – Inventory and control of software assets

Like Control 1, there should be traceability of changes in all software assets owned by the team, including application source code, scripts, libraries and CI/CD pipelines. Compared to IaC, we strengthen the deployment step in V2.D to require automation through a CI/CD pipeline.

For a cloud-native DevOps team this control will typically cover CIS Controls Safeguard 2.5, 2.6, and 2.7 without the need of an explicit allowlists. But it is important to note that if not applied from the very start, an initial inventory of existing software is needed (e g of all libraries or scripts which are part of the systems in scope.) An explicit allow lists may still be of value to the team, in example to provide a quick overview of used components (which otherwise might be hidden in version control history.)

V2.A
Verify that all software components are under version control.
V2.B
Verify that all changes are reviewed before being deployed to production.
V2.C
Verify that all changes can be traced to an individual, time, and motivation for change.
V2.D
Verify that all changes are deployed from a CI/CD pipeline for all environments.
V2.E
Verify that the CI/CD pipeline includes a step for scanning for vulnerable or outdated packages.
V2.F
Verify that a process exits for selecting dependencies, frameworks, and other assets for the system.
V2.G
Verify that the team has a clear overview of all software, libraries or scripts etc. and why they are used for the system.

In addition to the verifications listed above, OWASP ASVS sections 1.14, 10.1, 10.2 and 14.1 provide relevant guidelines for this control.

Control 03 – Data protection

The foundation of data protection in an application is that the team has a clear, shared understanding of the system they are building and operating and what data it contains. Architectural documentation, including information classification and an identity and access control model should be kept up to date and accessible for the team.

Data encryption at rest and in transit is essential, which typically means strong, enforced TLS for all network traffic and storage services with encryption enabled.

A good way to share an understanding of how data is protected is to perform a technically detailed threat modelling exercise for the team. This is part of control 16, see V16.D.

V3.A
Verify that an established, documented, and updated system design, data classification, and model for access control exists.
V3.B
Verify that a documented (and preferably automated) process for purge according to GDPR or any other data privacy regulations that may apply exists.
V3.C
Verify that disk encryption is enabled on all devices containing application data (including developer laptops and removable media).
V3.D
Verify that strong transport layer encryption is used for all network traffic and protocols (TLS, HTTPS, SSH, SFTP, etc.)
V3.E
Verify that all data at rest is encrypted, with support from the service provider or using application-level encryption (in use).
V3.F
Verify that all API requests are logged to a central service, that business events are correlated to API requests, and automated alarms are enabled for errors and anomalies.
V3.G
Verify that the production environment is separated from all other environments according to best practices from the cloud provider (for example, by separate Azure Subscriptions).
V3.H
Verify that all environments and devices that contain production data are treated as production environments with the same level of protection and monitoring.
V3.I
Verify that the model for access control is based on the least privilege principle.
V3.J
Verify that data exfiltration is monitored and automated alarms are enabled for anomalies (IG3).

In addition to the verifications listed above, OWASP ASVS, sections 1.6, 1.7, 1.8, 6.1, 6.2, chapters 8, and 9 provide relevant guidelines for this control. For V3.D, FAPI 2.0 section 4.2 is also relevant.

Control 04 – Secure configuration of enterprise assets and software

The cloud vendors aim to deliver services that are secure by default. However, sometimes ease of use takes precedence. A good example is that most services are public by default and need configuration for network segmentation. Hardening is still essential to many cloud services.

Note that a secure process for configuring infrastructure (safeguard 4.2) to a large extent is covered by Control 1, since IaC normally includes configuration.

Use a secret management service that is purpose-built and preferably provided by the cloud vendor. There are typically many ways to implement application configuration, but our focus is clarity and separation between environments.

V4.A
Verify that managed identity (from the cloud provider) is used as much as possible (minimizing the use of shared secrets).
V4.B
Verify that all secrets are stored in a service built for that purpose.
V4.C
Verify that application configuration is separate for the production environment.
V4.D
Verify that services are hardened by following security best practices from the cloud provider.
V4.E
Verify that all VMs have automatic screen locks after 15 minutes of inactivity.
V4.F
Verify that all VMs have a firewall enabled.

There are guidelines for hardening cloud services. For example, there are CIS Foundations Benchmark for Azure, AWS, and GCP. The cloud vendors provide documented guidance and best practices. Some services like Azure Defender for Cloud let the team manage these practices and set up alerts for violations and security events.

For a cloud-native DevOps team, the following safeguards are typically out of scope since they are normally managed by a separate part of the organization:

  • 4.5, 4.9–12 – We assume managed clients

If clients are not managed and are the responsibility of individuals, we need to verify these Safeguards manually (normally against an IT policy or similar.)

In addition to the verifications listed above, OWASP ASVS sections 1.14.1, 14.1.3, 14.2, and 6.4 provide relevant guidelines for this control.

Control 05 – Account management

At the core of account management is a model of identity for the system and team. This model is an inventory of all user groups, clients, and resources. It provides an overview of how they interact.

Tasks requiring high privilege should be done using an account separate from daily use, like developing and reading emails. The benefit is that the effect of a compromised account is limited. Consider using time- and approval-based role activation.

The software system should use an architectural pattern with a central Identity Provider (IdP) that manages user and client authentication.

Compared to implementing your own account management, it is typically a stronger design to delegate user authentication and account management to a service built for that purpose. If you implement your own, OWASP ASVS is a good test reference.

For our context, the term “account” includes machine integrations. Note that integrations with cloud resources (like databases) should prefer managed identities, minimizing the use of shared secrets. See also V4.A.

V5.A
Verify that all accounts are unique for each user and integration and are centrally managed.
V5.B
Verify that user accounts have a password policy according to industry best practices and that system accounts for integrations are given strong shared secrets.
V5.C
Verify that high-privilege tasks are performed using a separate account.
V5.D
Verify that the system uses a central Identity Provider (IdP).
V5.E
Verify that the system uses a service built for the purpose of authentication and account management or follows OWASP ASVS for a local implementation.
V5.F
Verify that shared secrets are rotated on a schedule (please note that we do not enforce rotation for personal user accounts according to NIST directives).

In addition to the verifications listed above, OWASP ASVS section 1.2 and chapter 2 as well as FAPI 2.0 section 4.4 provide relevant guidelines for this control.

Control 06 – Access control management

Principles of least privilege are the base for creating and managing all accounts, both for user and machine integrations. We note that machine-to-machine integration is often neglected from an access control perspective. Since the client typically uses a shared secret, it also represents a powerful attack vector.

Any service that lets you control the function of the system needs to have MFA enabled for user accounts. This includes personal accounts, accounts for version control, build systems, task boards, cloud environments, etc. A strong approach is to integrate these systems with your IdP.

V6.A
Verify that access to the production environment is granted based on the least privilege principle.
V6.B
Verify that there is a documented onboarding process for team members.
V6.C
Verify that there is a documented off-boarding process for team members.
V6.D
Verify that there is a documented onboarding process for integration clients.
V6.E
Verify that there is a documented off-boarding process for integration clients.
V6.F
Verify that all services have MFA enabled for user accounts where possible.
V6.G
Verify that all services used to build, operate, and defend the system are known, listed, and part of the off-boarding process.
V6.H
Verify that all privileges are authorized, accurate, and well understood (review yearly).
V6.I
Verify that there is a documented model of identity and access control for the system (review yearly).
V6.J
Verify that any change that affects access control can be traced to an individual and time.

Please note that this control is typically applied only to services used to build, operate, and defend the system. Access control for the application being built is covered by chapter 8.16.

In addition to the verifications listed above, OWASP ASVS section 1.4 provides relevant guidelines for this control.

Control 07 – Continuous vulnerability management

Packages and dependencies need to be updated on a recurring schedule. Vulnerabilities in the operating system or a package might mean that your system is vulnerable too. While tools help keep track of known vulnerabilities, you need to keep all your systems updated since the tools do not catch everything, have problems with false positives, and the time from reported vulnerability to public exploits can be short, down to zero days.

Consider the maintenance phase of the system that you create and think about what your selection of packages and dependencies means for the ability and cost of maintaining the system when there is no project investment.

To minimize this daunting task, you must be careful when picking a package or dependency. Try to select well-known software that is actively and well maintained. Consider the security implications a breach in the software has on your system and try to judge if the maintainers pay proportional attention to security.

V7.A
Verify that there is a documented process for keeping operating systems, packages, and dependencies updated.
V7.B
Verify that vulnerability scans are performed, investigated, and problems remediated. Scanning should be performed on every change (or on a daily schedule).
V7.C
Verify that the production environment infrastructure is continuously scanned by a tool recommended by the cloud provider and that the results are investigated and remediated.
V7.D
Verify that a change to the system can be deployed with low risk in a timely manner (normally within an hour for IG3).

There are few verifications here, but this is a notoriously difficult thing to get right. Further, package vulnerabilities and dependencies are highly probable attack vectors for any system.

In addition to the verifications listed above, OWASP ASVS section 14.2 provides technical guidelines and relevant guidelines for this control.

Control 08 – Audit log management

Centralized and supervised logging is essential for detecting malicious behavior in any system. This is true for both detections of ongoing attacks and as an audit tool to estimate effects after a breach. Modern services from cloud providers enable automated detection of anomalies but typically require that the system collaborates by returning correct HTTP responses, logging domain events and exceptions.

Even with tuned, automated detection of anomalies, we still need manual review of logs to complement automation. A strong team will tune a process as they gain experience with production events.

Note that the verifications for this control address both audit and system logs, as well as network monitoring logs (see Control 13.) In a cloud-native environment all logging should be centralized and enable the team and organization to detect, understand, and recover from an attack.

V8.A
Verify that a central service for logs is used that is built for the purpose.
V8.B
Verify that the logs can be used to detect penetration tests, system misuse and support intrusion detection.
V8.C
Verify that audit and security related logs are retained for a minimum of 90 days.
V8.D
Verify that there is a process for manual review of logs on a weekly schedule.
V8.E
Verify that external services are part of the log review process (IG3).
V8.F
Verify that complete request chains and events can be traced and correlated to a given context.
V8.G
Verify that there are automated alarms for anomalies and unexpected data exfiltration.
V8.H
Verify that automated alarm thresholds are tuned periodically, e g weekly. (IG3).
V8.I
Verify that the team's responsibility is well understood and aligned with the organization's SOC capabilities.

Please note that the team probably need to enable separate cloud products to collect all logs needed in V8.B. For example, in Azure, to comply with Safeguards such as 1.4 and 8.6 you likely need to enable Defender for Cloud (other platforms have similar security services.)

In addition to the verifications listed above, OWASP ASVS section 1.7 and chapter 7 provide relevant guidelines for this control.

Control 09 – Email and web browser protections

Threats from email and web browser vectors are normally not managed by the DevOps team. However, developers (in particular those who do operations in production environments) are high-value targets, and these vectors are important to understand. We want to emphasize browser plugins in particular since they are commonly used.

V9.A
Verify all CIS Safeguards in control 9.

Control 10 – Malware defenses

Protection against malware is often managed by a separate team. For a DevOps team, centrally managed software and restrictions often need to be relaxed for effective work to happen. The team needs to understand the risks and balance the need for malware defenses with developer efficiency.

A good example is the plugin model of many types of applications. For example, the team's development process may be more efficient while using extensions in the IDE. However, it's hard to continuously verify the intent and quality of these plugins, which could lead to unauthorized code being executed on the developers' computer. It is therefore necessary for the team to reason about the need of plugins and extensions in the IDE and build pipelines.

The team should share an understanding of risks associated with installing plugins, developer tools, etc. For a cloud-native DevOps team this is to some extent addressed by verifications for the controls 2, 7, 15 and 16, but it is important to also include developer tools as part of the threat model.

V10.A
Verify all CIS Safeguards in control 10.
V10.B
Verify that a process exits for selecting any kind of tooling (software) the team installs on their devices.

Control 11 – Data recovery

Availability is an often neglected part of cybersecurity for DevOps. The ability to quickly recover by restoring data or repaving a deployment is critical. Documentation in the form of text files committed to source control and infrastructure source code is a simple, working solution for many teams.

Note that the DevOps team often is part of an enterprise wide incident response plan, and it is important that the plans for business continuity (BCP) and disaster recovery are aligned with the process for handling incidents, see Control 17.

Performing regular disaster recovery exercises is vital, in the same way testing your data backups is vital. An exercise not only verifies the documentation and IaC but also spreads knowledge about the overall system in the team. It should be clear to the team how to:

  • Set up a completely new environment
  • Rotate all credentials
  • Restore suitable backups
  • Restart the system to enable normal operations in a timely manner (meeting BCP requirements)

Keeping the availability and integrity of backups are essential to protect from ransomware attacks. The team should consider the effect of losing the backups and take relevant measures. Minimise the consequence of an attack can be done by using the backup services supplied by the cloud provider and following the best current practises asserting least privilege for write operations. A common configuration for backups and logs are to only allow append (not update or delete of existing data.)

To protect against accidental loss or malicious deletion it is also important to assert proper configuration regarding isolation of backups from the source environment and in example proper usage of geo-redundancy features provided by the cloud provider.

The team must also ensure that read access is under the principle of least privilege to maintain the confidentiality of the data. Backups and potentially even logs are often just as sensitive as the live production data and need the same level of protection (including monitoring and alarms.)

Also note that rotating credentials is part of mitigating and recovery from attacks.

V11.A
Verify that all data is automatically backed up using a service that is built for purpose.
V11.B
Verify that backups are protected to the same level as the source data.
V11.C
Verify that backups are protected from accidental loss or malicious deletion.
V11.D
Verify that backups are tested on a recurring schedule that matches the risk of data loss.
V11.E
Verify that there is a disaster recovery process that is tested on a recurring schedule.

In addition to the verifications listed above, OWASP ASVS sections 8.1.5, 8.1.6 and 14.1.4 provides relevant guidelines for this control.

Control 12 – Network infrastructure management

Network infrastructure management, architecture and segmentation are often, just as availability and disaster recovery, overlooked by cloud-native DevOps teams. Many organisations and teams tends to focus on development of the applications the team builds, and underestimate the resources needed for secure networking and operations. Network infrastructure management is addressed by verifications in controls 1 and 4. Verifications in this control concerns network architecture, segmentation and resilience.

The network architecture should enable segmentation based on least privilege. Any resource, web application, or API that does not need to be publicly available should be segmented, with firewall protection denying all access from untrusted resources or networks.

One reason why segmentation is overlooked is that cloud resources are typically available from the internet by default since cloud providers prioritize ease of setup over network segmentation. Leaking a connection string in a default configuration means an attacker has unrestricted access to that data from the internet. Databases and storage services should typically not be exposed directly to the internet.

It should also be noted that even if zero trust is applied, with authentication of all requests in each service, a strong solution should also apply defence in depth techniques, applying networking and infrastructure defenses as well. Strong identity based security does not replace the need for e g firewalls and gateways, just as a firewall does not replace the need for proper access control in each service.

There should be a relationship between information classification of data and the network architecture. This relation is trivial to understand for some systems, but some need dedicated documentation on the information security architecture.

V12.A
Verify that there is a segmented network architecture that is based on least privilege.
V12.B
Verify that there is documentation that maps information classification to the network architecture.
V12.C
Verify that users connecting to resources in network segments do so in a way that follows best practices from the cloud provider.
V12.D
Verify that all parts of the system meet availability requirements and have an SLA that meets those requirements (if SLA is appropriate.)
V12.E
Verify that all endpoints in the system have appropriate infrastructure protection, e g all public endpoints should have a Web Application Firewall and DDoS protection supported by the cloud platform.

Please note that CIS Safeguard 12.8 requires dedicated computing resources that never connect to the internet for all administrative tasks. It is unreasonable to never connect to the internet for a cloud-native system, since the cloud-platforms are manged by using public web interfaces (cloud vendor portals) and APIs.

Even so, care should be taken, and V12.C should be aligned with the threat model. For some teams (or organisations) this means separate hardware, VPN and specific personal administrative accounts for operations in production. For other teams using a developer machine, dedicated VMs on a developer machine or connecting via a jumpboxes is a sufficient solution.

Regardless, it is vitally important to follows best practices from the cloud provider and use strong user authentication, preferably combined with device policies which for example restricts access to known managed devices that are compliant with enterprise policies.

Please also note that CIS Safeguards 9.2, 13.9, 13.10, and 13.4 require that we restrict traffic between network segments and outbound (“known malicious domains”). We include these aspects in the “least privilege” concept in V12.A.

In addition to the verifications listed above, OWASP ASVS sections 1.9, 1.14, and 11.1 provide relevant guidelines for this control.

Control 13 – Network monitoring and defense

Just as secure network infrastructure management and configuration, network monitoring and defense is often overlooked by DevOps teams, as teams often have focus on the applications the build and less resources for operations and infrastructure.

Compared to a traditional on-premises application hosted on VMs, network monitoring, and defense are simplified for a cloud-native application built without IaaS. Selecting cloud resources that move security hardening and actions to the cloud supplier simplifies work for the team.

It should, however, be noted that cloud environments still need hardening; they are not secure by default. The team need to follow guidance on network infrastructure management and configuration from Control 4 and Control 12 (which in example includes applying relevant CIS Benchmarks.)

A cloud-native DevOps team that knows their system and what traffic to expect can have very good situational awareness. In this context, network monitoring and defense safeguards are to a large extent covered by the verifications in Control 8, together with controls 4 and 12.

Aspects of CIS Control 13 Safeguards not covered by verifications for control controls 4, 8, 12 and 16 are consider not applicable for a cloud-native DevOps team. In example 13.9 - Deploy Port-Level Access Control is typically not the responsibility of the DevOps team. See mapping of CIS Control 13 Safeguards in Mapping to CIS Controls v8 safeguards.

V13.A
Verify all CIS Safeguards in control 13 are addressed by verifications in other controls or considered not applicable for the DevOps team.

In addition to the verifications listed above, OWASP ASVS chapter 7 provides relevant guidelines for this control.

Control 14 – Security awareness and skills training

The approach to training and education varies between organizations. If there is no structured effort in the organization, we expect the team to fill the gap themselves and then follow the CIS control safeguards without the need for interpretation. We expect the DevOps team to receive additional role-specific training. Besides application security, it is common for a DevOps team to lack resources (or understanding) of secure operations and networking.

Examples of role specific training for a cloud-native DevOps team:

  • In depth education and training for the cloud platform, for examples certifications and CIS Benchmarks
  • In depth education and training for application security, both building and attacking, for example using OWASP ASVS and Juice Shop

It is hard to measure and decide on how many resources a team should spend on training. One way to measure this is given in CIS Controls Assessment Specification, see https://controls-assessment-specification.readthedocs.io/en/stable/control-14/index.html

V14.A
Verify all CIS Safeguards in control 14.

In addition to the verifications listed above, OWASP ASVS chapter 1 provides relevant guidelines for this control.

Control 15 – Service provider management

The team does not always control the selection of services outside of the cloud provider. However, the team should always be a stakeholder in the selection process since the service will affect the cybersecurity of the system they build, operate, and defend. And it is also important that the team takes operational responsibility for the integrations and understands the risks they might introduce.

One example of services that often are overlooked might be external services, brought in by the DevOps team, like Google Analytics or vulnerability scanners. Even if the purpose is good, most integrations introduce some attack vectors and need proper service management.

For a cloud-native DevOps team many aspects of the CIS control 15 safeguards are also addressed in verifications V3.A, V8.I, V16.D and V16.E. In addition to that the CIS control 15 safeguards are clear and to the point, and there is no need for further interpretation. It should be noted that documenting how to assess a service provider for the team often overlaps with how to select dependencies (V2.F) and manage developer tooling etc. (V10.B.)

V15.A
Verify all CIS Safeguards in control 15.

Control 16 – Application software security

The development process should take a structured approach to security. From a build perspective, we are looking for:

  • Define security as part of the requirements, tests, and quality assurance (just as any other non-functional requirement)
  • Version control of all parts of the software, including infrastructure and configuration
  • Enforced pull requests with tracking of work items that reference requirements
  • Automated, continuous build and deployment to production from main or dedicated release branch only (including unchanged artifacts between test and deploy)
  • Automated tests and scans in the build pipeline
  • Management of secrets in a service that is built for purpose
  • Applications should support rotation of secrets
  • Selection, management, and replacement at end-of-life for all packages, frameworks, OS etc. (see section 8.2 for a discussion on package management)

From an architectural perspective, we are looking for:

  • Isolation of production environment from all other environments
  • A design based on defense in depth, zero trust and least privilege
    • All networks are considered insecure
    • All clients and users are authenticated
    • Access control for every request
    • Minimal privileges to perform an operation
    • Established trust boundaries
    • Network segmentation (with information classification, public exposure only when needed)
    • Security in multiple layers, in both infrastructure and applications
  • Centralized authentication of users and services via a token service (OIDC/OAuth2)
  • Centralized logging with alerts and audit
  • Implementation according to the best current practices from e g OWASP, CIS, FAPI and OAuth 2 BCPs etc. This also includes relevant industry standards, reference architectures, and IT-polices.
  • Documentation that allows the team to understand and explain their system, and reason about security.

CIS Controls references a process for vulnerability management and root cause analysis in some detail. The team should be able to handle vulnerability reports in a structured way. Communication with customers and stakeholders is typically out of scope, but if there is no process in place in the company, the team needs to have their own.

V16.A
Verify that the team has a structured way of working and follows a secure development process, aligned with the defined security baseline. This includes keeping the security baseline and GAP analysis up to date.
V16.B
Verify that there is a process for handling vulnerability reports from customers and stakeholders, including root cause analysis and the capability to prioritize between reports and audit remediation timelines.
V16.C
Verify that the team has knowledge of application security, as it applies to the system, and time to keep tools and skills up to date.
V16.D
Verify that the development process includes threat modeling and that those results are understood and guide the implementation decisions (IG3).
V16.E
Verify that implementation is according to the build- and architectural principles in this chapter.

Note that we interpret CIS Safeguard 16.13 as part of V18.B If the team has a structured way of working with security and can verify security requirements, then the team should perform internal security testing is part of the process. This work is important, but does not replace penetration tests from an independent external partner (see Control 18).

CIS Safeguard 16.12 is interpreted as optional, as the value of static analysis tools varies depending on the kind of code base and level of security (IG2 or IG3). Reviewing code manually from a security perspective is important and is part of V16.A and V16.E. It should also be included in penetration tests (see Control 18).

Control 17 – Incident response management

If there is no company plan for incident handling, then the team must take full responsibility for this control, including all CIS safeguards. However, if there is a well-defined company plan, the minimal documentation needed for the team is contact information and instructions on how to start the incident process and to understand the teams role in the incident response process.

V17.A
If managed by the team: Verify all CIS Safeguards in control 17.
V17.B
Verify that team documentation includes contact information and instructions on how to start the incident process and that the team understand the teams role in the incident response process

Control 18 – Penetration testing

Like incident handling, a recurring, structured approach to penetration testing is rarely handled by the team itself, but it is important that the team understands strategies for penetration testing and how it concerns the team. Therefore, there is only one additional interpretation given by V18.C.

V18.A
Verify all CIS Safeguards in control 18.
V18.B
Verify CIS Safeguard 16.13.
V18.C
Verify that penetration test are accepted by the organization and that the threats represented by the listed weaknesses and vulnerabilities are understood and mitigated.

Mapping to CIS Controls v8 safeguards

This section maps CIS Control v8 safeguards to the verfications in this document.
1 - Inventory and Control of Enterprise Assets
1.1 Establish and Maintain Detailed Enterprise Asset InventoryV1.A, V1.B, V1.C, V1.D
1.2 Address Unauthorized AssetsV1.A, V1.B, V1.D, V1.E, V1.F
1.3 Utilize an Active Discovery ToolV1.F
1.4 Use Dynamic Host Configuration Protocol (DHCP) LoggingV1.F
1.5 Use a Passive Asset Discovery Tool (IG3)V1.F
2 - Inventory and Control of Software Assets
2.1 Establish and Maintain a Software InventoryV2.A, V2.G
2.2 Ensure Authorized Software is Currently SupportedV2.A, V2.E, V2.G
2.3 Address Unauthorized Software V2.A, V2.B, V2.C, V2.D, V2.E, V2.F, V2.G
2.4 Utilize Automated Software Inventory ToolsV2.D, V2.E
2.5 Allowlist Authorized Software V2.A, V2.E, V2.F, V2.G, V7.B, V10.B
2.6 Allowlist Authorized LibrariesV2.A, V2.E, V2.F, V2.G, V7.B
2.7 Allowlist Authorized Scripts (IG3)V2.A, V2.E, V2.F, V2.G, V7.B
3 – Data protection
3.1 Establish and Maintain a Data Management ProcessV3.A
3.2 Establish and Maintain a Data InventoryV3.A
3.3 Configure Data Access Control ListsV3.A, V3.I
3.4 Enforce Data Retention V3.A, V3.B
3.5 Securely Dispose of Data V3.D
3.6 Encrypt Data on End-User DevicesV3.C
3.7 Establish and Maintain a Data Classification Scheme V3.A
3.8 Document Data FlowsV3.A
3.9 Encrypt Data on Removable MediaV3.C
3.10 Encrypt Sensitive Data in TransitV3.D
3.11 Encrypt Sensitive Data at RestV3.E
3.12 Segment Data Processing and Storage Based on SensitivityV3.A, V3.G, V3.H
3.13 Deploy a Data Loss Prevention Solution (IG3)V3.F, V3.H, V3.J
3.14 Log Sensitive Data Access (IG3)V3.F, V3.H, V3.J
4 - Secure Configuration of Enterprise Assets and Software
4.1 Establish and Maintain a Secure Configuration ProcessV4.A, V4.B, V4.C, V4.D, V3.H
4.2 Establish and Maintain a Secure Configuration Process for Network InfrastructureV1.A, V1.B, V1.C, V1.D, V4.D
4.3 Configure Automatic Session Locking on Enterprise AssetsV4.E
4.4 Implement and Manage a Firewall on ServersV4.F
4.5 Implement and Manage a Firewall on End-User DevicesOut of scope, see section 8.4
4.6 Securely Manage Enterprise Assets and SoftwareV1.A, V1.B, V1.C, V1.D, V3.D
4.7 Manage Default Accounts on Enterprise Assets and SoftwareV1.A, V1.B, V1.C, V1.D
4.8 Uninstall or Disable Unnecessary Services on Enterprise Assets and SoftwareV1.A, V1.B, V1.C, V1.D
4.9 Configure Trusted DNS Servers on Enterprise AssetsOut of scope, see section 8.4
4.10 Enforce Automatic Device Lockout on Portable End-User DevicesOut of scope, see section 8.4
4.11 Enforce Remote Wipe Capability on Portable End-User DevicesOut of scope, see section 8.4
4.12 Separate Enterprise Workspaces on Mobile End-User Devices (IG3)Out of scope, see section 8.4
5 - Account Management
5.1 Establish and Maintain an Inventory of Accounts V4.A, V5.A
5.2 Use Unique PasswordsV5.B, V5.F
5.3 Disable Dormant AccountsV5.E, V6.C, V6.E, V6.G, V6.H, V6.I
5.4 Restrict Administrator Privileges to Dedicated Administrator AccountsV5.C
5.5 Establish and Maintain an Inventory of Service AccountsV5.D, V6.G, V6.H, V6.I
5.6 Centralize Account ManagementV5.A, V5.D, V5.E
6 - Access Control Management
6.1 Establish an Access Granting ProcessV6.A, V6.B, V6.D, V6.I, V6.J
6.2 Establish an Access Revoking ProcessV6.C, V6.E, V6.H, V6.I
6.3 Require MFA for Externally-Exposed ApplicationsV6.F
6.4 Require MFA for Remote Network Access V6.F
6.5 Require MFA for Administrative AccessV6.F
6.6 Establish and Maintain an Inventory of Authentication and Authorization SystemsV6.H, V6.I
6.7 Centralize Access ControlV5.D, V5.E
6.8 Define and Maintain Role-Based Access Control (IG3)V6.H, V6.I
7 - Continuous Vulnerability Management
7.1 Establish and Maintain a Vulnerability Management ProcessV7.A
7.2 Establish and Maintain a Remediation Process V7.A
7.3 Perform Automated Operating System Patch ManagementV7.A
7.4 Perform Automated Application Patch ManagementV7.A, V7.D
7.5 Perform Automated Vulnerability Scans of Internal Enterprise AssetsV7.B, V7.C
7.6 Perform Automated Vulnerability Scans of Externally-Exposed Enterprise AssetsV7.B
7.7 Remediate Detected VulnerabilitiesV7.B
8 - Audit Log Management
8.1 Establish and Maintain an Audit Log Management ProcessV8.A, V8.B, V8.I
8.2 Collect Audit LogsV8.B
8.3 Ensure Adequate Audit Log StorageV8.A
8.4 Standardize Time SynchronizationV8.A
8.5 Collect Detailed Audit LogsV8.B, V8.F, V6.J
8.6 Collect DNS Query Audit LogsV8.B
8.7 Collect URL Request Audit LogsV8.B
8.8 Collect Command-Line Audit LogsV8.B
8.9 Centralize Audit LogsV8.A
8.10 Retain Audit Logs (90 days)V8.C
8.11 Conduct Audit Log ReviewsV8.D, V8.G
8.12 Collect Service Provider Logs (IG3)V8.E
9 - Email and Web Browser Protections
9.1 Ensure Use of Only Fully Supported Browsers and Email ClientsV9.A
9.2 Use DNS Filtering ServicesV9.A
9.3 Maintain and Enforce Network-Based URL FiltersV9.A
9.4 Restrict Unnecessary or Unauthorized Browser and Email Client ExtensionsV9.A
9.5 Implement DMARCV9.A
9.6 Block Unnecessary File TypesV9.A
9.7 Deploy and Maintain Email Server Anti-Malware Protections (IG3)V9.A
10 - Malware Defenses
10.1 Deploy and Maintain Anti-Malware Software V10.A
10.2 Configure Automatic Anti-Malware Signature UpdatesV10.A
10.3 Disable Autorun and Autoplay for Removable MediaV10.A
10.4 Configure Automatic Anti-Malware Scanning of Removable MediaV10.A
10.5 Enable Anti-Exploitation FeatureV10.A
10.6 Centrally Manage Anti-Malware SoftwareV10.A
10.7 Use Behavior-Based Anti-Malware SoftwareV10.A
11 - Data Recovery
11.1 Establish and Maintain a Data Recovery ProcessV11.A, V11.B, V11.E
11.2 Perform Automated BackupsV11.A
11.3 Protect Recovery DataV11.B
11.4 Establish and Maintain an Isolated Instance of Recovery DataV11.C
11.5 Test Data RecoveryV11.D, V11.E
12 - Network Infrastructure Management
12.1 Ensure Network Infrastructure is up-to-DateV1.A, V1.B, V1.C, V1.D
12.2 Establish and Maintain a Secure Network ArchitectureV12.A, V12.B, V12.D, V12.E
12.3 Securely Manage Network InfrastructureV1.A, V1.B, V1.C, V4.C, V4.D
12.4 Establish and Maintain Architecture Diagram(s)V12.B
12.5 Centralize Network Authentication, Authorization, and Auditing (AAA)V4.A, V4.C, V4.D
12.6 Use of Secure Network Management and Communication Protocols V3.D, V4.D
12.7 Ensure Remote Devices Utilize a VPN and are Connecting to an Enterprise’s AAA InfrastructureV12.C
12.8 Establish and Maintain Dedicated Computing Resources for All Administrative Work (IG3)V5.C
13 - Network Monitoring and Defense
13.1 Centralize Security Event AlertingV8.A, V8.I, V13.A, V3.F
13.2 Deploy a Host-Based Intrusion Detection SolutionV8.B, V13.A
13.3 Deploy a Network Intrusion Detection SolutionV8.B, V13.A
13.4 Perform Traffic Filtering Between Network SegmentsV12.A, V13.A
13.5 Manage Access Control for Remote AssetsV13.A
13.6 Collect Network Traffic Flow LogsV8.B, V8.G, V13.A
13.7 Deploy a Host-Based Intrusion Prevention SolutionV13.A
13.8 Deploy a Network Intrusion Prevention SolutionV13.A
13.9 Deploy Port-Level Access Control (IG3)V13.A
13.10 Perform Application Layer Filtering (IG3)V13.A
13.11 Tune Security Event Alerting Thresholds (IG3)V8.H, V8.I, V13.A
14 - Security Awareness and Skills Training
14.1 Establish and Maintain a Security Awareness ProgramV14.A
14.2 Train Workforce Members to Recognize Social Engineering AttacksV14.A
14.3 Train Workforce Members on Authentication Best PracticesV14.A
14.4 Train Workforce on Data Handling Best PracticesV14.A
14.5 Train Workforce Members on Causes of Unintentional Data ExposureV14.A
14.6 Train Workforce Members on Recognizing and Reporting Security IncidentsV14.A
14.7 Train Workforce on How to Identify and Report if Their Enterprise Assets are Missing Security UpdatesV14.A
14.8 Train Workforce on the Dangers of Connecting to and Transmitting Enterprise Data Over Insecure NetworksV14.A
14.9 Conduct Role-Specific Security Awareness and Skills TrainingV14.A
15 - Service Provider Management
15.1 Establish and Maintain an Inventory of Service ProvidersV15.A
15.2 Establish and Maintain a Service Provider Management PolicyV15.A
15.3 Classify Service ProvidersV15.A
15.4 Ensure Service Provider Contracts Include Security RequirementsV15.A
15.5 Assess Service Providers (IG3)V15.A
15.6 Monitor Service Providers (IG3)V15.A
15.7 Securely Decommission Service Providers (IG3)V15.A
16 - Application Software Security
16.1 Establish and Maintain a Secure Application Development ProcessV16.A
16.2 Establish and Maintain a Process to Accept and Address Software VulnerabilitiesV16.B
16.3 Perform Root Cause Analysis on Security VulnerabilitiesV16.B
16.4 Establish and Manage an Inventory of Third-Party Software ComponentsV1.A, V1.D, V2.A, V7.A, V16.B
16.5 Use Up-to-Date and Trusted Third-Party Software ComponentsV2.E, V2.F, V7.A, V7.B, V16.A
16.6 Establish and Maintain a Severity Rating System and Process for Application VulnerabilitiesV16.B
16.7 Use Standard Hardening Configuration Templates for Application InfrastructureV1.D, V4.D
16.8 Separate Production and Non-Production SystemsV1.E, V3.G, V3.H, V4.C
16.9 Train Developers in Application Security Concepts and Secure CodingV16.C
16.10 Apply Secure Design Principles in Application ArchitecturesV16.A, V16.E
16.11 Leverage Vetted Modules or Services for Application Security ComponentsV16.A, V16.E
16.12 Implement Code-Level Security Checks (IG3)V16.A, V16.C, V16.E
16.13 Conduct Application Penetration Testing (IG3)V16.A, V16.C, V16.E, V18.B
16.14 Conduct Threat Modeling (IG3)V16.D
17 - Incident Response Management
17.1 Designate Personnel to Manage Incident HandlingV17.A
17.2 Establish and Maintain Contact Information for Reporting Security IncidentsV17.A, V17.B
17.3 Establish and Maintain an Enterprise Process for Reporting IncidentsV17.A
17.4 Establish and Maintain an Incident Response ProcessV17.A
17.5 Assign Key Roles and ResponsibilitiesV17.A, V17.B
17.6 Define Mechanisms for Communicating During Incident ResponseV17.A
17.7 Conduct Routine Incident Response ExercisesV17.A
17.8 Conduct Post-Incident ReviewsV17.A
17.9 Establish and Maintain Security Incident Thresholds (IG3)V17.A
18 - Penetration Testing
18.1 Establish and Maintain a Penetration Testing ProgramV18.A
18.2 Perform Periodic External Penetration TestsV18.A
18.3 Remediate Penetration Test FindingsV18.A, V18.C
18.4 Validate Security Measures (IG3)V18.A
18.5 Perform Periodic Internal Penetration Tests (IG3)V18.A