Install
$ agentstack add skill-masriyan-claude-code-cybersecurity-skill-15-blue-team-defense ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Blue Team Defense & Hardening
Purpose
Enable Claude to assist defenders with comprehensive security hardening, detection rule engineering, security baseline establishment, patch management, and security architecture review. Claude directly analyzes provided configurations, scripts, and system state — then produces specific hardening commands, detection rules, and improvement plans.
Activation Triggers
This skill activates when the user asks about:
- Hardening Linux (Ubuntu, RHEL, CentOS, Debian) servers
- Hardening Windows Server or Windows workstations (CIS Benchmarks)
- Creating detection rules (Sigma, Splunk, KQL, YARA, Snort/Suricata)
- Security baseline definition and monitoring
- Patch management strategy and prioritization
- Security architecture review (defense-in-depth, zero trust)
- Implementing Sysmon, auditd, or Windows audit policy
- Hardening SSH, nginx, Apache, or database configurations
- Network security controls and microsegmentation
- Endpoint protection (EDR, HIPS) configuration guidance
- Security posture improvement after a red team or pentest
Prerequisites
pip install pyyaml jinja2 requests
Tools used in this skill:
Sysmon— Windows endpoint telemetry (SwiftOnSecurity config recommended)auditd— Linux audit daemonLynis— Linux security auditing toolOpenSCAP / oscap— CIS/STIG compliance scanningfail2ban— SSH and service brute-force protectionCIS-CAT— CIS Benchmark compliance tool
Core Capabilities
1. Linux System Hardening
When the user asks to harden a Linux server:
Claude produces specific commands ready to run.
SSH Hardening
# /etc/ssh/sshd_config — Secure SSH configuration
cat >> /etc/ssh/sshd_config /etc/sysctl.d/99-security.conf /etc/iptables/rules.v4
File System Security
# Find SUID/SGID binaries (audit these)
find / -perm /4000 -type f 2>/dev/null | sort # SUID
find / -perm /2000 -type f 2>/dev/null | sort # SGID
# Remove unnecessary SUID bits
chmod u-s /usr/bin/at # Example: remove SUID from 'at' if not needed
# World-writable files (should be minimal)
find / -perm -002 -type f 2>/dev/null | grep -v proc
# Secure /tmp and /var/tmp
# In /etc/fstab, add: nodev,nosuid,noexec for /tmp
# tmpfs /tmp tmpfs defaults,rw,nosuid,nodev,noexec,relatime 0 0
# Immutable critical files (prevent modification even as root)
chattr +i /etc/passwd
chattr +i /etc/shadow
chattr +i /etc/sudoers
# File integrity monitoring
apt-get install aide
aideinit
aide --check # Run periodically, alert on changes
Audit Logging (auditd)
# Install auditd
apt-get install auditd
# /etc/audit/rules.d/hardening.rules
cat > /etc/audit/rules.d/hardening.rules =1000 -F auid!=4294967295 -k sudo_use
-a always,exit -F path=/usr/bin/su -F perm=x -F auid>=1000 -F auid!=4294967295 -k su_use
# Monitor network configuration changes
-a always,exit -F arch=b64 -S sethostname -k network_changes
-w /etc/hosts -p wa -k network_changes
# Monitor cron
-w /etc/cron.d/ -p wa -k cron
-w /etc/cron.daily/ -p wa -k cron
-w /var/spool/cron/ -p wa -k cron
# Monitor SSH configuration
-w /etc/ssh/sshd_config -p wa -k sshd_config
# Successful file deletion (detect cleanup by attackers)
-a always,exit -F arch=b64 -S unlink,unlinkat,rename,renameat -F auid>=1000 -k delete
# Make the configuration immutable (requires reboot to change)
-e 2
EOF
service auditd restart
# Query audit logs
ausearch -k sudo_use -i # Find all sudo usage
ausearch -k identity -i # Find all user/group changes
Linux Hardening Checklist
Authentication:
[ ] Root login disabled (local and SSH)
[ ] Password authentication disabled for SSH (key-only)
[ ] Strong password policy enforced (PAM pwquality)
[ ] sudo configured with minimal privilege (specific commands, no NOPASSWD)
[ ] Inactive accounts locked or removed (>90 days)
Services:
[ ] Unnecessary services disabled (systemctl list-units --state=active)
[ ] No listening services on 0.0.0.0 that shouldn't be public
[ ] Web server runs as non-root user
[ ] Database not accessible from internet
Kernel & OS:
[ ] Security patches current (apt upgrade / yum update)
[ ] ASLR enabled (randomize_va_space=2)
[ ] ptrace restrictions (yama.ptrace_scope=1)
[ ] Core dumps disabled or restricted
[ ] AppArmor/SELinux in enforcing mode
Monitoring:
[ ] auditd installed and running
[ ] Log forwarding to SIEM configured
[ ] File integrity monitoring active
[ ] fail2ban installed for SSH protection
2. Windows System Hardening
When the user asks to harden a Windows system:
PowerShell — Immediate Hardening Commands:
# Disable LLMNR (used in LLMNR poisoning attacks)
New-Item -Path "HKLM:\Software\Policies\Microsoft\Windows NT\DNSClient" -Force
Set-ItemProperty -Path "HKLM:\Software\Policies\Microsoft\Windows NT\DNSClient" `
-Name "EnableMulticast" -Value 0 -Type DWord
# Disable NBT-NS (NetBIOS Name Service — used in Responder attacks)
$adapters = Get-WmiObject Win32_NetworkAdapterConfiguration | Where-Object {$_.IPEnabled}
foreach ($adapter in $adapters) {
$adapter.SetTcpipNetbios(2) # 2 = Disable NetBIOS over TCP/IP
}
# Enable PowerShell Script Block Logging
$psLogPath = "HKLM:\Software\Policies\Microsoft\Windows\PowerShell\ScriptBlockLogging"
New-Item -Path $psLogPath -Force
Set-ItemProperty -Path $psLogPath -Name "EnableScriptBlockLogging" -Value 1
# Disable SMBv1 (EternalBlue vulnerability)
Set-SmbServerConfiguration -EnableSMB1Protocol $false -Force
Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
# Enable Windows Defender real-time protection
Set-MpPreference -DisableRealtimeMonitoring $false
Set-MpPreference -CloudBlockLevel High
Set-MpPreference -CloudExtendedTimeout 50
Update-MpSignature
# Enable Windows Firewall on all profiles
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled True
# Enable Credential Guard (requires Windows 10/2016+)
# Set via Group Policy: Computer Configuration → Administrative Templates →
# System → Device Guard → Turn On Virtualization Based Security
Sysmon Deployment for Endpoint Visibility:
# Download Sysmon and SwiftOnSecurity config
Invoke-WebRequest -Uri "https://live.sysinternals.com/Sysmon64.exe" -OutFile C:\Windows\Sysmon64.exe
# Deploy with SwiftOnSecurity config (most commonly recommended)
# Download config: https://github.com/SwiftOnSecurity/sysmon-config/blob/master/sysmonconfig-export.xml
Sysmon64.exe -accepteula -i sysmonconfig-export.xml
# Verify Sysmon is running
Get-Service Sysmon64
Get-WinEvent -LogName "Microsoft-Windows-Sysmon/Operational" -MaxEvents 10
Windows Audit Policy:
# Enable comprehensive Windows audit policy
# (Or configure via Group Policy → Computer Config → Windows Settings → Security Settings → Advanced Audit Policy)
auditpol /set /subcategory:"Logon" /success:enable /failure:enable
auditpol /set /subcategory:"Logoff" /success:enable
auditpol /set /subcategory:"Account Lockout" /failure:enable
auditpol /set /subcategory:"Process Creation" /success:enable
auditpol /set /subcategory:"Account Management" /success:enable /failure:enable
auditpol /set /subcategory:"Privilege Use" /success:enable /failure:enable
auditpol /set /subcategory:"Policy Change" /success:enable
auditpol /set /subcategory:"Directory Service Changes" /success:enable /failure:enable
auditpol /set /subcategory:"Kerberos Authentication Service" /success:enable /failure:enable
auditpol /set /subcategory:"Kerberos Service Ticket Operations" /success:enable /failure:enable
# Enable command line logging in Event ID 4688
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\Audit" `
/v ProcessCreationIncludeCmdLine_Enabled /t REG_DWORD /d 1 /f
Windows Hardening Checklist (CIS Level 1):
Account Security:
[ ] Guest account disabled
[ ] Local Administrator account disabled or renamed
[ ] LAPS deployed (Local Administrator Password Solution)
[ ] No accounts with "Password never expires"
[ ] Account lockout: 5 attempts, 30-min lockout
[ ] Admin accounts not used for daily tasks
Network Security:
[ ] SMBv1 disabled
[ ] LLMNR disabled via GPO
[ ] NBT-NS disabled on all NICs
[ ] RDP restricted to VPN/jump host access only
[ ] WinRM access restricted to admin systems
[ ] PowerShell remoting disabled where not needed
Logging & Monitoring:
[ ] Windows Defender enabled and updated
[ ] EDR agent deployed and communicating
[ ] Sysmon deployed with current config
[ ] Event log size: Security 1GB+, System 512MB+, Application 256MB+
[ ] Log forwarding to SIEM configured
System Configuration:
[ ] BitLocker enabled on all endpoints
[ ] AppLocker or WDAC configured for application control
[ ] UAC: Prompt for credentials for all apps
[ ] Windows Update: Automatic, critical updates immediate
[ ] Unnecessary features removed (Telnet, SMB1, PowerShell 2.0)
[ ] WDAC Code Integrity policies for servers
3. Detection Engineering
When the user asks to create detection rules:
Claude produces complete, ready-to-deploy detection rules.
Detection Rule Development Workflow:
Step 1: Define what you're detecting
- What specific behavior? (not "malware" but "PowerShell download cradle")
- Which ATT&CK technique? (T1059.001 — PowerShell)
- What data sources? (PowerShell logs, process creation, network)
Step 2: Collect sample telemetry
- Capture true positive examples (from lab, red team, threat intel)
- Collect false positive examples (legitimate activity)
Step 3: Identify unique indicators
- What distinguishes malicious from legitimate?
- Avoid indicators that change between variants (file names, IPs)
- Prefer behavioral indicators (parent-child process, network pattern)
Step 4: Write and tune the rule
- Start with high-confidence, low-noise detection
- Test against both TP and FP datasets
- Add exceptions for known-legitimate patterns
Step 5: Deploy and monitor
- Track alert volume: sudden increase = new FP
- Review untuned rules monthly
Detection Rule Templates:
# Sigma Rule: Suspicious Process Spawned from Office Application
title: Office Application Spawning Script Interpreter
id: d2b45b6c-7b4e-4c2f-a8b9-1234567890ab
status: stable
description: Detects Office applications spawning script interpreters — common in macro-based initial access
references:
- https://attack.mitre.org/techniques/T1566/001/
tags:
- attack.initial_access
- attack.t1566.001
- attack.execution
- attack.t1059
logsource:
category: process_creation
product: windows
detection:
selection_parent:
ParentImage|endswith:
- '\WINWORD.EXE'
- '\EXCEL.EXE'
- '\POWERPNT.EXE'
- '\MSACCESS.EXE'
- '\MSPUB.EXE'
- '\outlook.exe'
selection_child:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
- '\wscript.exe'
- '\cscript.exe'
- '\mshta.exe'
- '\regsvr32.exe'
- '\rundll32.exe'
condition: selection_parent and selection_child
falsepositives:
- Some legitimate macros may spawn cmd.exe for administrative purposes (rare)
level: high
Suricata Network Detection Rule:
# Detect C2 traffic via HTTP with suspicious pattern
alert http $HOME_NET any -> $EXTERNAL_NET any (
msg:"MALWARE Generic HTTP C2 Beacon - Suspicious Pattern";
flow:established,to_server;
http.method; content:"POST";
http.request_body; content:!"";
http.user_agent; content:"Mozilla/4.0 (compatible; MSIE 6.0;";
http.uri; pcre:"/\/[a-z]{8}(\/[a-z]{4})?$/"; # Random 8-char path
threshold:type both, track by_src, count 3, seconds 300;
classtype:trojan-activity;
sid:9100001;
rev:1;
)
YARA Rule for Host-Based Detection:
rule Suspicious_PowerShell_Download_Cradle {
meta:
author = "Blue Team"
description = "Detects PowerShell download cradle in scripts or command lines"
date = "2025-05-28"
strings:
$cradle1 = "(New-Object Net.WebClient).DownloadString" ascii wide nocase
$cradle2 = "IEX(New-Object" ascii wide nocase
$cradle3 = "Invoke-Expression (Invoke-WebRequest" ascii wide nocase
$cradle4 = "[System.Net.WebClient]" ascii wide nocase
$cradle5 = "iex (iwr" ascii wide nocase
$encoded = "-EncodedCommand " ascii wide nocase
$bypass = "-ExecutionPolicy Bypass" ascii wide nocase
$nop = "-WindowStyle Hidden" ascii wide nocase
condition:
any of ($cradle*) or (2 of ($encoded, $bypass, $nop))
}
4. Security Baseline Monitoring
When the user asks to define or monitor security baselines:
Baseline Definition Framework:
## Security Baseline — [System Type] — [Environment]
### Normal Behavior Profiles
**Authentication Baseline:**
- Admin accounts: Only log in during business hours (08:00–18:00 local)
- Service accounts: Never have interactive logon (Event 4624 Type 2)
- Failed logins: 5 = investigate)
- New login locations: Alert on first-time country/city
**Process Baseline:**
- Web server: Never spawns cmd.exe or powershell.exe
- Database: No outbound network connections except DB clients
- System processes: Parent process matches expected (e.g., services.exe → svchost.exe)
**Network Baseline:**
- Workstations: No direct SMB to other workstations (server-to-server OK)
- DNS: /tmp/services_current.txt
diff /tmp/services_baseline.txt /tmp/services_current.txt
# Compare against known-good process list
ps auxf > /tmp/processes_current.txt
diff /tmp/processes_baseline.txt /tmp/processes_current.txt
# Find recently modified system files
find /bin /sbin /usr/bin /usr/sbin /lib -newer /tmp/baseline_timestamp -type f 2>/dev/null
# Windows: Compare running services
Get-Service | Where-Object {$_.Status -eq "Running"} | Select-Object Name,DisplayName | Sort-Object Name
python scripts/hardening_checker.py --os ubuntu --output report.json
python scripts/hardening_checker.py --os windows --cis-level 1 --output report.json
5. Patch Management Strategy
When the user asks about patch management:
Patch Prioritization Matrix: | CVSS | Exploitability | In CISA KEV? | Priority | SLA | |------|---------------|-------------|---------|-----| | 9.0–10.0 | Remote, no auth | Yes | P1 — Emergency | 24 hours | | 9.0–10.0 | Remote, no auth | No | P1 — Critical | 48 hours | | 7.0–8.9 | Remote | Any | P2 — High | 7 days | | 4.0–6.9 | Local | Any | P3 — Medium | 30 days | | 0.1–3.9 | Any | No | P4 — Low | 90 days | | 0.0 | N/A | N/A | P5 — Info | Next cycle |
Patch Rollout Process:
1. RECEIVE patch (vendor advisory, CVE, CISA alert)
2. ASSESS severity and exploitability (CVSS + CISA KEV check)
3. TEST in non-production environment (Dev → QA → Staging)
4. PLAN rollout window (off-peak, with rollback procedure)
5. DEPLOY to production (phased: 10% → 50% → 100%)
6. VERIFY patch applied and service running
7. MONITOR for regressions (24-48 hours)
8. DOCUMENT in change management system
Track patch debt:
# Ubuntu/Debian
apt list --upgradable 2>/dev/null | wc -l # Total upgradable
apt list --upgradable 2>/dev/null | grep -i security # Security-only
# RHEL/CentOS
yum check-update --security
# Windows
Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 10
# Or: Get pending updates
(New-Object -ComObject Microsoft.Update.Session).CreateUpdateSearcher().Search("IsInstalled=0 and Type='Software'").Updates | Select-Object Title
6. Security Architecture Review
When the user asks to review security architecture:
Defense-in-Depth Framework:
Layer 1 — Perimeter Defense
├── External firewall / WAF
├── IDS/IPS (Suricata/Snort)
├── DDoS protection
└── DNS filtering
Layer 2 — Network Segmentation
├── VLANs: Servers / Users / IoT / Guests / Management
├── East-west traffic controls
├── Micro-segmentation for criti
…
## Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- **Author:** [Masriyan](https://github.com/Masriyan)
- **Source:** [Masriyan/Claude-Code-CyberSecurity-Skill](https://github.com/Masriyan/Claude-Code-CyberSecurity-Skill)
- **License:** MIT
- **Homepage:** https://www.security-life.org
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.