01-recon-osint
Passive and active reconnaissance, subdomain enumeration, DNS analysis, technology fingerprinting, and OSINT data correlation for authorized security…
System hardening, detection engineering, security baseline monitoring, patch management, defense-in-depth architecture, and security posture improvement
$ npx -y skills add Masriyan/Claude-Code-CyberSecurity-Skill --skill 15-blue-team-defense --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/15-blue-team-defenseContext preview
The summary Claude sees to decide when to auto-load this skill.
System hardening, detection engineering, security baseline monitoring, patch management, defense-in-depth architecture, and security posture improvement
name: Blue Team Defense & Hardening description: System hardening, detection engineering, security baseline monitoring, patch management, defense-in-depth architecture, and security posture improvement version: 3.1.0 author: Masriyan tags: [cybersecurity, blue-team, defense, hardening, detection, baseline, siem, endpoint, cis]
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.
---
This skill activates when the user asks about:
---
pip install pyyaml jinja2 requests
**Tools used in this skill:**
---
**When the user asks to harden a Linux server:**
Claude produces specific commands ready to run.
# /etc/ssh/sshd_config — Secure SSH configuration cat >> /etc/ssh/sshd_config << 'EOF' # Security hardening Protocol 2 PermitRootLogin no PasswordAuthentication no PermitEmptyPasswords no MaxAuthTries 3 LoginGraceTime 30 ClientAliveInterval 300 ClientAliveCountMax 2 AllowUsers [specific_users] # Explicit user allowlist PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys X11Forwarding no AllowAgentForwarding no AllowTcpForwarding no PrintMotd no Banner /etc/ssh/banner Subsystem sftp /usr/lib/openssh/sftp-server -l INFO EOF # Restart SSH (check config first) sshd -t && systemctl restart sshd
# /etc/sysctl.d/99-security.conf cat > /etc/sysctl.d/99-security.conf << 'EOF' # Disable IP forwarding (unless this is a router) net.ipv4.ip_forward = 0 net.ipv6.conf.all.forwarding = 0 # Disable source routing (prevents IP spoofing attacks) net.ipv4.conf.all.accept_source_route = 0 net.ipv6.conf.all.accept_source_route = 0 # Enable SYN cookies (SYN flood protection) net.ipv4.tcp_syncookies = 1 # Ignore ICMP broadcasts net.ipv4.icmp_echo_ignore_broadcasts = 1 # Disable ICMP redirects (prevents routing manipulation) net.ipv4.conf.all.accept_redirects = 0 net.ipv6.conf.all.accept_redirects = 0 net.ipv4.conf.all.send_redirects = 0 # Log suspicious packets net.ipv4.conf.all.log_martians = 1 # Disable IPv6 if not needed net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 # Address space layout randomization kernel.randomize_va_space = 2 # Restrict core dumps (prevents memory leaks) fs.suid_dumpable = 0 # Restrict kernel log access to root kernel.dmesg_restrict = 1 # Disable magic SysRq key kernel.sysrq = 0 # Hide kernel pointers kernel.kptr_restrict = 2 # Restrict ptrace to own processes kernel.yama.ptrace_scope = 1 EOF sysctl --system
# UFW (Uncomplicated Firewall) — Ubuntu/Debian ufw default deny incoming ufw default allow outgoing ufw allow ssh # or: ufw allow from [admin_ip] to any port 22 ufw allow from [monitoring_ip] to any port 9100 # Prometheus node exporter (internal only) ufw enable ufw status verbose # iptables — manual approach for fine-grained control iptables -F # Flush existing rules iptables -P INPUT DROP # Default deny iptables -P FORWARD DROP # Default deny forwarding iptables -P OUTPUT ACCEPT # Allow all outbound (or restrict too) # Allow established/related connections iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT # Allow loopback iptables -A INPUT -i lo -j ACCEPT # Allow SSH from specific subnet only iptables -A INPUT -p tcp --dport 22 -s 10.0.0.0/8 -m conntrack --ctstate NEW -j ACCEPT # Rate-limit SSH to prevent brute force iptables -A INPUT -p tcp --dport 22 -m recent --set --name SSH iptables -A INPUT -p tcp --dport 22 -m recent --update --seconds 60 --hitcount 4 --name SSH -j DROP # Allow HTTPS iptables -A INPUT -p tcp --dport 443 -m conntrack --ctstate NEW -j ACCEPT # Log and drop everything else iptables -A INPUT -j LOG --log-prefix "iptables-DROP: " --log-level 7 iptables -A INPUT -j DROP # Save rules iptables-save > /etc/iptables/rules.v4
# 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 mo
22 production-quality Claude Code Skills for cybersecurity professionals — covering offensive security, defensive operations, reverse engineering, threat hunting, threat intelligence, purple team / adversary emulation, CSOC automation, AI/LLM security,
Repo: Masriyan/Claude-Code-CyberSecurity-Skill
Passive and active reconnaissance, subdomain enumeration, DNS analysis, technology fingerprinting, and OSINT data correlation for authorized security…
Dependency auditing, CVE detection, configuration security review, CVSS scoring, and prioritized vulnerability reporting
Proof-of-concept development, payload crafting, shellcode analysis, and exploitation technique research for authorized security testing
Binary analysis, assembly interpretation, disassembly, decompilation, firmware RE, and protocol reverse engineering
Static and dynamic malware analysis, YARA rule generation, sandbox configuration, behavioral profiling, and malware family classification
IOC extraction, threat intelligence correlation, MITRE ATT&CK mapping, hunt hypothesis generation, and detection rule creation