Skip to content

Commit b893a72

Browse files
committed
add blackduck and ffuf + update README.md and CONTRIBUTE.md
1 parent 2a17499 commit b893a72

18 files changed

Lines changed: 4893 additions & 24 deletions

.claude-plugin/marketplace.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"./appsec/dast-zap",
2121
"./appsec/dast-nuclei",
2222
"./appsec/api-mitmproxy",
23-
"./appsec/dast-ffuf"
23+
"./appsec/dast-ffuf",
24+
"./appsec/sca-blackduck"
2425
]
2526
},
2627
{

CONTRIBUTE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,17 +242,18 @@ Before submitting, ensure:
242242
Add your skill to the README.md under the appropriate category section using this format:
243243

244244
```markdown
245-
- **[skill-name](skills/category/skill-name/SKILL.md)** - Brief description of what the tool does | [Tool](https://link-to-tool-repository-or-docs)
245+
- **[skill-name](skills/category/skill-name/SKILL.md)** - Brief description using [Tool Name](https://link-to-tool-docs) for what it does
246246
```
247247

248248
**Example:**
249249
```markdown
250-
- **[sast-semgrep](skills/appsec/sast-semgrep/SKILL.md)** - Static application security testing using Semgrep for vulnerability detection | [Tool](https://semgrep.dev/docs/)
250+
- **[sast-semgrep](skills/appsec/sast-semgrep/SKILL.md)** - Static application security testing using [Semgrep](https://semgrep.dev/docs/) for vulnerability detection
251251
```
252252

253253
**Format requirements:**
254254
- Skill name links to the SKILL.md file in this repository
255255
- Brief description (one line, ~80-100 characters)
256+
- Tool name is linked inline within the description (not at the end)
256257
- Tool link points to the official tool repository or documentation (first URL in your SKILL.md frontmatter `references`)
257258
- Maintain alphabetical order within the category section
258259
- Ensure the entry matches your skill's `name` and primary `references[0]` from SKILL.md frontmatter

README.md

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -21,42 +21,43 @@ SecOpsAgentKit provides specialized Claude Code skills for security operations,
2121

2222
### Application Security (appsec/)
2323

24-
- **[sast-semgrep](skills/appsec/sast-semgrep/SKILL.md)** - Static application security testing using Semgrep for vulnerability detection | [Tool](https://semgrep.dev/docs/)
25-
- **[sast-bandit](skills/appsec/sast-bandit/SKILL.md)** - Python security vulnerability detection using Bandit SAST with CWE and OWASP mappings | [Tool](https://github.com/PyCQA/bandit)
26-
- **[dast-zap](skills/appsec/dast-zap/SKILL.md)** - Dynamic application security testing using OWASP ZAP (Zed Attack Proxy) | [Tool](https://www.zaproxy.org/docs/)
27-
- **[dast-nuclei](skills/appsec/dast-nuclei/SKILL.md)** - Fast, template-based vulnerability scanning using ProjectDiscovery's Nuclei | [Tool](https://docs.projectdiscovery.io/tools/nuclei/overview)
28-
- **[api-mitmproxy](skills/appsec/api-mitmproxy/SKILL.md)** - Interactive HTTPS proxy for API security testing with traffic interception and modification | [Tool](https://mitmproxy.org/)
29-
- **[dast-ffuf](skills/appsec/dast-ffuf/SKILL.md)** - Fast web fuzzer for directory enumeration and parameter fuzzing | [Tool](https://github.com/ffuf/ffuf)
24+
- **[api-mitmproxy](skills/appsec/api-mitmproxy/SKILL.md)** - Interactive HTTPS proxy for API security testing with [mitmproxy](https://mitmproxy.org/) traffic interception and modification
25+
- **[dast-ffuf](skills/appsec/dast-ffuf/SKILL.md)** - Fast web fuzzer using [ffuf](https://github.com/ffuf/ffuf) for directory enumeration and parameter fuzzing
26+
- **[dast-nuclei](skills/appsec/dast-nuclei/SKILL.md)** - Fast, template-based vulnerability scanning using ProjectDiscovery's [Nuclei](https://docs.projectdiscovery.io/tools/nuclei/overview)
27+
- **[dast-zap](skills/appsec/dast-zap/SKILL.md)** - Dynamic application security testing using [OWASP ZAP](https://www.zaproxy.org/docs/) (Zed Attack Proxy)
28+
- **[sast-bandit](skills/appsec/sast-bandit/SKILL.md)** - Python security vulnerability detection using [Bandit](https://github.com/PyCQA/bandit) SAST with CWE and OWASP mappings
29+
- **[sast-semgrep](skills/appsec/sast-semgrep/SKILL.md)** - Static application security testing using [Semgrep](https://semgrep.dev/docs/) for vulnerability detection
30+
- **[sca-blackduck](skills/appsec/sca-blackduck/SKILL.md)** - Software Composition Analysis using Synopsys [Black Duck](https://sig-product-docs.synopsys.com/bundle/bd-hub/page/Welcome.html) for dependency vulnerabilities and license compliance
3031

3132
### DevSecOps (devsecops/)
3233

33-
- **[secrets-gitleaks](skills/devsecops/secrets-gitleaks/SKILL.md)** - Hardcoded secret detection and prevention in git repositories using Gitleaks | [Tool](https://github.com/gitleaks/gitleaks)
34-
- **[iac-checkov](skills/devsecops/iac-checkov/SKILL.md)** - Infrastructure as Code security scanning using Checkov with 750+ built-in policies | [Tool](https://www.checkov.io/)
35-
- **[container-hadolint](skills/devsecops/container-hadolint/SKILL.md)** - Dockerfile security linting and best practice validation using Hadolint | [Tool](https://github.com/hadolint/hadolint)
34+
- **[secrets-gitleaks](skills/devsecops/secrets-gitleaks/SKILL.md)** - Hardcoded secret detection and prevention in git repositories using [Gitleaks](https://github.com/gitleaks/gitleaks)
35+
- **[iac-checkov](skills/devsecops/iac-checkov/SKILL.md)** - Infrastructure as Code security scanning using [Checkov](https://www.checkov.io/) with 750+ built-in policies
36+
- **[container-hadolint](skills/devsecops/container-hadolint/SKILL.md)** - Dockerfile security linting and best practice validation using [Hadolint](https://github.com/hadolint/hadolint)
3637

3738
### Secure SDLC (secsdlc/)
3839

39-
- **[reviewdog](skills/secsdlc/reviewdog/SKILL.md)** - Automated code review and security linting integration for CI/CD pipelines | [Tool](https://github.com/reviewdog/reviewdog)
40-
- **[sast-horusec](skills/secsdlc/sast-horusec/SKILL.md)** - Multi-language static application security testing using Horusec (18+ languages, 20+ tools) | [Tool](https://github.com/ZupIT/horusec)
41-
- **[sbom-syft](skills/secsdlc/sbom-syft/SKILL.md)** - Software Bill of Materials (SBOM) generation using Syft for container images and filesystems | [Tool](https://github.com/anchore/syft)
40+
- **[reviewdog](skills/secsdlc/reviewdog/SKILL.md)** - Automated code review and security linting integration for CI/CD pipelines using [reviewdog](https://github.com/reviewdog/reviewdog)
41+
- **[sast-horusec](skills/secsdlc/sast-horusec/SKILL.md)** - Multi-language static application security testing using [Horusec](https://github.com/ZupIT/horusec) (18+ languages, 20+ tools)
42+
- **[sbom-syft](skills/secsdlc/sbom-syft/SKILL.md)** - Software Bill of Materials (SBOM) generation using [Syft](https://github.com/anchore/syft) for container images and filesystems
4243

4344
### Compliance (compliance/)
4445

45-
- **[policy-opa](skills/compliance/policy-opa/SKILL.md)** - Policy-as-code enforcement and compliance validation using Open Policy Agent (OPA) | [Tool](https://www.openpolicyagent.org/docs/latest/)
46+
- **[policy-opa](skills/compliance/policy-opa/SKILL.md)** - Policy-as-code enforcement and compliance validation using [Open Policy Agent](https://www.openpolicyagent.org/docs/latest/) (OPA)
4647

4748
### Incident Response (incident-response/)
4849

49-
- **[detection-sigma](skills/incident-response/detection-sigma/SKILL.md)** - Generic detection rule creation and management using Sigma (universal SIEM rule format) | [Tool](https://github.com/SigmaHQ/sigma)
50+
- **[detection-sigma](skills/incident-response/detection-sigma/SKILL.md)** - Generic detection rule creation and management using [Sigma](https://github.com/SigmaHQ/sigma) (universal SIEM rule format)
5051

5152
### Offensive Security (offsec/)
5253

53-
- **[pentest-metasploit](skills/offsec/pentest-metasploit/SKILL.md)** - Penetration testing framework for exploit development and vulnerability validation | [Tool](https://docs.metasploit.com/)
54-
- **[recon-nmap](skills/offsec/recon-nmap/SKILL.md)** - Network reconnaissance and security auditing using Nmap for port scanning and service detection | [Tool](https://nmap.org/book/)
55-
- **[network-netcat](skills/offsec/network-netcat/SKILL.md)** - Network utility for reading/writing data across TCP/UDP connections and port scanning | [Tool](https://nmap.org/ncat/guide/index.html)
56-
- **[analysis-tshark](skills/offsec/analysis-tshark/SKILL.md)** - Network protocol analyzer and packet capture tool for traffic analysis | [Tool](https://www.wireshark.org/docs/man-pages/tshark.html)
57-
- **[webapp-sqlmap](skills/offsec/webapp-sqlmap/SKILL.md)** - Automated SQL injection detection and exploitation tool for web application security testing | [Tool](https://sqlmap.org/)
58-
- **[webapp-nikto](skills/offsec/webapp-nikto/SKILL.md)** - Web server vulnerability scanner for identifying security issues and misconfigurations | [Tool](https://cirt.net/Nikto2)
59-
- **[crack-hashcat](skills/offsec/crack-hashcat/SKILL.md)** - Advanced password recovery and hash cracking tool supporting multiple algorithms | [Tool](https://hashcat.net/wiki/)
54+
- **[pentest-metasploit](skills/offsec/pentest-metasploit/SKILL.md)** - Penetration testing framework using [Metasploit](https://docs.metasploit.com/) for exploit development and vulnerability validation
55+
- **[recon-nmap](skills/offsec/recon-nmap/SKILL.md)** - Network reconnaissance and security auditing using [Nmap](https://nmap.org/book/) for port scanning and service detection
56+
- **[network-netcat](skills/offsec/network-netcat/SKILL.md)** - Network utility using [Netcat](https://nmap.org/ncat/guide/index.html) for reading/writing data across TCP/UDP connections and port scanning
57+
- **[analysis-tshark](skills/offsec/analysis-tshark/SKILL.md)** - Network protocol analyzer and packet capture tool using [tshark](https://www.wireshark.org/docs/man-pages/tshark.html) for traffic analysis
58+
- **[webapp-sqlmap](skills/offsec/webapp-sqlmap/SKILL.md)** - Automated SQL injection detection and exploitation using [SQLMap](https://sqlmap.org/) for web application security testing
59+
- **[webapp-nikto](skills/offsec/webapp-nikto/SKILL.md)** - Web server vulnerability scanner using [Nikto](https://cirt.net/Nikto2) for identifying security issues and misconfigurations
60+
- **[crack-hashcat](skills/offsec/crack-hashcat/SKILL.md)** - Advanced password recovery and hash cracking using [Hashcat](https://hashcat.net/wiki/) supporting multiple algorithms
6061

6162

6263
## Security Frameworks

0 commit comments

Comments
 (0)