Share
## https://sploitus.com/exploit?id=FE5E2AC9-8661-50CF-9897-C92032574F1D
# CyberSecurity Skills

A collection of 15 security workflows covering the full offensive-to-defensive spectrum.
Each domain has a dedicated steering file with methodology, ready-to-run commands, output
templates, and detection/hardening references. Adapted for Kiro from the
[Claude-Code-CyberSecurity-Skill](https://github.com/Masriyan/Claude-Code-CyberSecurity-Skill)
project (MIT License).

> **Authorization & ethics**: These workflows are for authorized security testing, research,
> CTF, and education only. The offensive workflows (`03-exploit-development`, `14-red-team-ops`)
> contain explicit authorization gates โ€” confirm written scope/permission before assisting.
> Decline and explain when authorization is absent. The user is responsible for legal compliance.

# Onboarding

## Step 1: Optional tooling
The workflows are usable as pure guidance. For the bundled Python automation helpers in
`scripts//`, ensure Python 3.10+ is available:
- Verify with: `python --version` (or `python3 --version`)
- Each domain lists its own `pip install ...` prerequisites at the top of its steering file.

## Step 2: Optional external tools
Some workflows are enhanced by external tools (install only what you need):
- `nmap`, `amass`, `theHarvester` (recon/network)
- `Ghidra` / `IDA Free`, `capstone`, `pwntools` (reverse engineering / exploit dev)
- `YARA`, `Volatility 3` (malware / forensics)
- `tshark` / `Wireshark`, `Suricata` / `Snort` (network)
- `Trivy`, `Checkov` / `tfsec` (cloud / IaC)
- `sigma-cli` (detection rule conversion)

# When to Load Steering Files

Load the steering file that matches the user's task:

- Reconnaissance, OSINT, subdomain enumeration, DNS analysis, tech fingerprinting โ†’ `01-recon-osint.md`
- Dependency/CVE auditing, config review, CVSS scoring, vulnerability reports โ†’ `02-vulnerability-scanner.md`
- PoC development, payload crafting, shellcode, exploitation research (authorized) โ†’ `03-exploit-development.md`
- Binary analysis, assembly interpretation, disassembly, firmware/protocol RE, CTF โ†’ `04-reverse-engineering.md`
- Static/dynamic malware analysis, YARA rules, sandboxing, IOC extraction โ†’ `05-malware-analysis.md`
- IOC correlation, MITRE ATT&CK mapping, hunt hypotheses, Sigma/SIEM hunting โ†’ `06-threat-hunting.md`
- Incident response playbooks, evidence collection, forensic timelines, memory forensics โ†’ `07-incident-response.md`
- PCAP analysis, IDS/IPS (Suricata/Snort) rules, firewall auditing, beaconing detection โ†’ `08-network-security.md`
- OWASP Top 10, injection/XSS/SSRF testing, API & JWT security, security headers โ†’ `09-web-security.md`
- AWS/Azure/GCP auditing, Docker/Kubernetes hardening, IaC scanning, cloud compliance โ†’ `10-cloud-security.md`
- SOC alert triage, playbook automation, escalation workflows, shift reports, KPIs โ†’ `11-csoc-automation.md`
- Log parsing, anomaly detection, SIEM queries (Splunk/KQL/EQL), Sigma, correlation โ†’ `12-log-analysis.md`
- TLS/SSL auditing, cipher/hash analysis, crypto code review, PQC guidance โ†’ `13-crypto-analysis.md`
- Red team engagement planning, C2 design, lateral movement, OPSEC, reporting (authorized) โ†’ `14-red-team-ops.md`
- System hardening (Linux/Windows), detection engineering, baselines, patch mgmt, CIS โ†’ `15-blue-team-defense.md`

# Notes

- Bundled automation scripts live under `scripts//scripts/` and example walkthroughs under
  `scripts//examples/`. Run them only against systems you are authorized to test.
- Steering files cross-reference each other by domain number (e.g., "โ†’ Skill 09") to chain
  workflows (recon โ†’ vuln scan โ†’ web testing โ†’ reporting).