cis-controls
Implement CIS Controls v8 critical security controls for effective cyber defense in CIA platform
Install
mkdir -p .claude/skills/cis-controls && curl -L -o skill.zip "https://mcp.directory/api/skills/download/3695" && unzip -o skill.zip -d .claude/skills/cis-controls && rm skill.zipInstalls to .claude/skills/cis-controls
About this skill
CIS Controls v8 Implementation Skill
Purpose
Implement prioritized CIS Controls for cyber defense, focusing on high-impact security controls.
When to Use
- ✅ Security hardening activities
- ✅ Compliance assessments
- ✅ Security baseline establishment
- ✅ Vendor security reviews
Critical CIS Controls
Control 1: Inventory and Control of Enterprise Assets
# Maintain asset inventory
aws ec2 describe-instances --query 'Reservations[*].Instances[*].[InstanceId,Tags[?Key==`Name`].Value|[0],State.Name]' --output table
# Tag all resources
aws ec2 create-tags --resources i-1234567890abcdef0 --tags Key=Application,Value=CIA Key=Environment,Value=Production
Control 2: Inventory and Control of Software Assets
<!-- Track all dependencies in pom.xml -->
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version> <!-- Version via parent property -->
</dependency>
</dependencies>
Control 3: Data Protection
@Service
public class DataProtectionService {
@Autowired
private BytesEncryptor encryptor;
public void protectSensitiveData(SensitiveData data) {
// Encrypt at rest
data.setEncryptedContent(encryptor.encrypt(data.getPlainContent()));
// Classify data
data.setClassification(DataClassification.CONFIDENTIAL);
// Set retention period
data.setRetentionUntil(LocalDate.now().plusYears(7));
dataRepository.save(data);
}
}
Control 4: Secure Configuration
# application-production.yml - Secure defaults
spring:
security:
user:
name: ${ADMIN_USERNAME}
password: ${ADMIN_PASSWORD}
server:
port: 8443
ssl:
enabled: true
error:
include-stacktrace: never
Control 5: Account Management
@Service
public class AccountManagementService {
@Scheduled(cron = "0 0 2 * * *") // Daily at 2 AM
public void reviewAccounts() {
// Disable inactive accounts
List<User> inactiveUsers = userRepository.findInactiveSince(
LocalDateTime.now().minusDays(90)
);
inactiveUsers.forEach(user -> {
user.setEnabled(false);
auditLog.log("Account disabled due to inactivity: " + user.getUsername());
});
userRepository.saveAll(inactiveUsers);
}
}
Control 6: Access Control Management
@PreAuthorize("hasRole('ADMIN')")
public void deleteUser(String userId) {
// Enforce least privilege
auditLogger.logPrivilegedAction("DELETE_USER", userId);
userRepository.deleteById(userId);
}
Control 8: Audit Log Management
@Aspect
@Component
public class AuditLoggingAspect {
@Around("@annotation(Audited)")
public Object auditMethod(ProceedingJoinPoint joinPoint) throws Throwable {
String action = joinPoint.getSignature().getName();
String user = SecurityContextHolder.getContext().getAuthentication().getName();
auditLog.info("Action: {}, User: {}, Timestamp: {}",
action, user, Instant.now());
return joinPoint.proceed();
}
}
Control 16: Application Software Security
# Security scanning in CI/CD
mvn org.owasp:dependency-check-maven:check
mvn sonar:sonar -Dsonar.qualitygate.wait=true
Implementation Priority
-
IG1 (Implementation Group 1) - Essential for all organizations
- Controls 1-6: Basic cyber hygiene
-
IG2 - Additional controls for medium-sized organizations
- Controls 7-16: Enhanced security
-
IG3 - Comprehensive controls for large organizations
- Controls 17-18: Advanced/specialized
Hack23 ISMS Policy References
CIS Controls Implementation:
- Information Security Policy - Governance (14.1-14.9)
- Asset Register - Control 1 (Asset Management)
- Data Classification Policy - Control 3 (Data Protection)
- Access Control Policy - Control 5-6 (Access Control)
- Vulnerability Management - Control 7 (Vulnerability Management)
- Secure Development Policy - Control 16 (Application Security)
- Incident Response Plan - Control 17 (Incident Response)
- Backup Recovery Policy - Control 11 (Data Recovery)
- Change Management - Control 8 (Audit Logging)
- Risk Assessment Methodology - Control 4 (Secure Configuration)
All Hack23 ISMS Policies: https://github.com/Hack23/ISMS-PUBLIC
CIA Platform Architecture References
- Security Architecture: CIA SECURITY_ARCHITECTURE.md - CIS Controls implementation
- Architecture: CIA ARCHITECTURE.md - System design
References
- CIS Controls v8.1: https://www.cisecurity.org/controls/v8
- CIS Implementation Guide: https://www.cisecurity.org/controls/cis-controls-implementation-guide
- ISO 27001:2022: https://www.iso.org/standard/27001
- NIST CSF 2.0: https://www.nist.gov/cyberframework
More by Hack23
View all skills by Hack23 →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
pdf-to-markdown
aliceisjustplaying
Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.
Related MCP Servers
Browse all serversGoogle GenAI Toolbox: open-source GenAI database agent and AI database connector for Google Cloud database—query Cloud S
Use CLI, a secure shell client for Windows, to safely execute commands via SSH secure shell with advanced security contr
High-performance Arch Linux MCP server — Model Context Protocol implementation for lightweight, secure, and custom deplo
Protect your MCP with AIM Guard—advanced threat detection software for unauthorized access, botnet, and malware detectio
Terminal offers a secure terminal server for executing approved shell commands with robust resource controls and advance
Automate Xcode project builds, scheme management, and error checks using AppleScript with secure path controls and macOS