Do Not Install a Multi-Use System (Manual)
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-bind9-v301-1-2 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Bind9 V301 1 2?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-bind9-v301-1-2)More formats (shields.io, HTML) on the badges page.
---
name: cis-bind9-v301-1-2
description: "Do Not Install a Multi-Use System (Manual)"
category: cis-bind
version: "3.0.1"
author: cyberstrike-official
tags: [cis, bind, dns, isc-bind, bind9, planning-and-architecture]
cis_id: "1.2"
cis_benchmark: "CIS ISC BIND DNS Server 9.9 Benchmark v3.0.1"
tech_stack: [bind, isc-bind, dns, linux]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# CIS 1.2 — Do Not Install a Multi-Use System
## Profile Applicability
- Level 1 - Authoritative Name Server
- Level 1 - Caching Only Name Server
## Description
Default server configurations often expose a wide variety of services unnecessarily increasing the risk to the system. Just because a server can perform many services doesn't mean it is wise to do so. The number of services and daemons executing on the ISC BIND DNS server should be limited to those necessary, with the DNS service being the only primary function of the server.
## Rationale
Maintaining a server for a single purpose increases the security of your system. The more services which are exposed to an attacker, the more potential vectors an attacker has to exploit the system and therefore the higher the risk for the server. A DNS server should function as only a name server and should not be mixed with other primary functions such as email, web, or database.
## Impact
Not Applicable
## Audit Procedure
Leverage the package or services manager for your OS to list enabled services and review to ensure each service is necessary and has a documented business need. On Red Hat systems, the following commands will produce the list of current services enabled. The `systemctl` command lists any `systemd` based services, which are common on RHEL7, while `chkconfig` will list any traditional SysV based services.
```bash
# systemctl -t service --state enabled list-unit-files
# chkconfig --list | grep ':on'
```
## Remediation
Disable all unnecessary services or move necessary primary services other than DNS to another server. Leverage the package or services manager for your OS to uninstall or disable unneeded services. On Red Hat systems, the following commands may be used to uninstall a package or disable a service:
```bash
# yum erase <package_name>
# systemctl disable <name>.service
```
## Default Value
Depends on the platform
## References
Not Applicable
## CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
| ---------------- | ---------------------------------------------------------------------------------- | ---- | ---- | ---- |
| v6 | 9.5 - Operate Critical Services on Dedicated Hosts (i.e. DNS, Mail, Web, Database) | N | Y | Y |
## MITRE ATT&CK Mappings
| Tactic | Technique |
| ---------------- | --------------------------------------- |
| Discovery | T1046 - Network Service Scanning |
| Lateral Movement | T1210 - Exploitation of Remote Services |
## Profile
- Level 1 - Authoritative Name Server
- Level 1 - Caching Only Name Server
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!