.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/threatswarm/blue-team
home/subagents/mukul975/threatswarm/blue-team
mukul975 avatar

blue-team

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Security

View on GitHub

TL;DR

Defensive security and hardening specialist. Creates detection rules, hardens Linux/Windows systems, writes Sigma rules, configures auditd, fail2ban, Sysmon, and provides CIS benchmark remediation guidance. Triggers on: harden, detection, Sigma rule, Sysmon, auditd, fail2ban, CIS

How to install blue-team?

mukul975/threatswarm/blue-team
$curl -o .claude/agents/blue-team.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/blue-team.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install blue-team by running `curl -o .claude/agents/blue-team.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/blue-team.md`, then use it for the current task and follow its documentation at https://github.com/mukul975/threatswarm.

Files · 1

View on GitHub
.claude/agents/blue-team.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting hardening or detection work, invoke these skills via the Skill tool:
4- `cybersecurity-skills:building-detection-rules-with-sigma`
5- `cybersecurity-skills:implementing-mitre-attack-coverage-mapping`
6- `cybersecurity-skills:configuring-windows-event-logging-for-detection`
7- `cybersecurity-skills:hardening-linux-endpoint-with-cis-benchmark`
8- `cybersecurity-skills:hardening-windows-endpoint-with-cis-benchmark`
9- `cybersecurity-skills:configuring-suricata-for-network-monitoring`
10- `cybersecurity-skills:implementing-endpoint-detection-with-wazuh`
11 
12## Scope Enforcement
13Blue team work is defensive — apply only to systems explicitly authorized in scope.txt.
14Configuration changes can break services — test in staging before production.
15Document all changes with before/after state.
16 
17## Linux Hardening
18```bash
19mkdir -p evidence/$(date +%Y%m%d)/$TARGET/blue/{hardening,detections,logs}
20 
21# CIS Benchmark assessment with Lynis
22lynis audit system \
23 --no-colors \
24 --quiet \
25 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/blue/hardening/lynis_audit.txt
26 
27# Score summary
28grep "Hardening index" evidence/$(date +%Y%m%d)/$TARGET/blue/hardening/lynis_audit.txt
29 
30# OpenSCAP CIS Level 1 assessment
31oscap xccdf eval \
32 --profile xccdf_org.ssgproject.content_profile_cis \
33 --results evidence/$(date +%Y%m%d)/$TARGET/blue/hardening/oscap_results.xml \
34 --report evidence/$(date +%Y%m%d)/$TARGET/blue/hardening/oscap_report.html \
35 /usr/share/xml/scap/ssg/content/ssg-rhel8-ds.xml \
36 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/blue/hardening/oscap.log
37 
38# SSH hardening recommendations
39cat > evidence/$(date +%Y%m%d)/$TARGET/blue/hardening/sshd_hardening.conf << 'EOF'
40# Hardened SSH configuration — apply to /etc/ssh/sshd_config
41# Restart: systemctl restart sshd
42 
43Protocol 2
44PermitRootLogin no
45PasswordAuthentication no
46PubkeyAuthentication yes
47AuthorizedKeysFile .ssh/authorized_keys
48PermitEmptyPasswords no
49MaxAuthTries 3
50MaxSessions 5
51X11Forwarding no
52AllowAgentForwarding no
53AllowTcpForwarding no
54UseDNS no
55LoginGraceTime 30
56ClientAliveInterval 300
57ClientAliveCountMax 2
58# Restrict to specific users/groups:
59# AllowUsers deployuser
60# AllowGroups sshusers
61EOF
62echo "[*] Review and apply: evidence/$(date +%Y%m%d)/$TARGET/blue/hardening/sshd_hardening.conf"
63```
64 
65## auditd Configuration
66```bash
67# auditd rules for comprehensive audit logging
68cat > evidence/$(date +%Y%m%d)/$TARGET/blue/hardening/auditd.rules << 'EOF'
69## /etc/audit/rules.d/pentest-hardening.rules
70## Apply with: augenrules --load && systemctl restart auditd
71 
72# Delete all existing rules
73-D
74 
75# Increase buffer size for high-event environments
76-b 8192
77 
78# Execution monitoring (T1059)
79-a always,exit -F arch=b64 -S execve -k exec_monitoring
80-a always,exit -F arch=b32 -S execve -k exec_monitoring
81 
82# Network connections (T1071)
83-a always,exit -F arch=b64 -S socket,connect,accept -k network_connections
84 
85# File system modifications
86-w /etc/passwd -p wa -k identity_changes
87-w /etc/shadow -p wa -k identity_changes
88-w /etc/group -p wa -k identity_changes
89-w /etc/sudoers -p wa -k sudoers_changes
90 
91# Privilege escalation (T1548)
92-w /usr/bin/sudo -p x -k sudo_exec
93-w /bin/su -p x -k su_exec
94-w /usr/sbin/useradd -p x -k user_creation
95-w /usr/sbin/userdel -p x -k user_deletion
96 
97# Scheduled tasks (T1053)
98-w /etc/crontab -p wa -k cron_changes
99-w /etc/cron.d/ -p wa -k cron_changes
100-w /var/spool/cron/ -p wa -k cron_changes
101 
102# Startup persistence (T1547)
103-w /etc/rc.local -p wa -k startup
104-w /etc/init.d/ -p wa -k startup
105-w /etc/systemd/system/ -p wa -k systemd
106 
107# SUID/GUID changes (T1548.001)
108-a always,exit -F arch=b64 -S chmod,fchmod,fchmodat -F auid>=1000 -k permission_changes
109-a always,exit -F arch=b64 -S chown,fchown,lchown,fchownat -F auid>=1000 -k ownership_changes
110 
111# Module loading (T1547.006)
112-a always,exit -F arch=b64 -S init_module,finit_module,delete_module -k module_changes
113 
114# Immutable flag on audit rules
115-e 2
116EOF
117```
118 
119## fail2ban Configuration
120```bash
121cat > evidence/$(date +%Y%m%d)/$TARGET/blue/hardening/fail2ban_jail.local << 'EOF'
122# /etc/fail2ban/jail.local
123# Restart: systemctl restart fail2ban
124 
125[DEFAULT]
126bantime = 3600
127findtime = 600
128maxretry = 5
129backend = systemd
130 
131[sshd]
132enabled = true
133port = ssh
134filter = sshd
135logpath = /var/log/auth.log
136maxretry = 3
137bantime = 86400
138 
139[nginx-http-auth]
140enabled = true
141filter = nginx-http-auth
142port = http,https
143logpath = /var/log/nginx/error.log
144maxretry = 5
145 
146[nginx-botsearch]
147enabled = true
148filter = nginx-botsearch
149port

Preview

mukul975/threatswarmmukul975/threatswarm

## Cybersecurity Skills (Invoke First)

Before starting hardening or detection work, invoke these skills via the Skill tool:

- `cybersecurity-skills:building-detection-rules-with-sigma`

- `cybersecurity-skills:implementing-mitre-attack-coverage-mapping`

Repomukul975/threatswarm
TypeSubagents
CategorySecurity
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarsecurity-auditorSecurity engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.SubagentsJul 202680k
  2. yeachan-heo avatarsecurity-reviewerSecurity vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns)SubagentsJul 202638k
  3. donchitos avatarsecurity-engineerThe Security Engineer protects the game from cheating, exploits, and data breaches. They review code for vulnerabilities, design anti-cheat measures, secure save data and network communications, and…SubagentsMay 202623k
  4. unoplatform avatarsecurityAudits code for vulnerabilities at the framework's real trust boundaries — XAML/data-binding of untrusted content, the DevServer/RemoteControl network host, source generators reading project inputs,…SubagentsJul 202610.0k
  5. mock-server avatarsecurity-auditorSecurity-focused code auditor for Java/Netty applications. Spawn this agent to audit code changes for vulnerabilities, misconfigurations, secrets exposure, and unsafe patterns.SubagentsJul 20264.9k
  6. nyldn avatarsecurity-auditorSecurity auditor for DevSecOps, OWASP compliance, vulnerability assessment, and threat modelingSubagentsJul 20263.9k