.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

…/dotnet-skills/dotnet-security-reviewer
home/subagents/wshaddix/dotnet-skills/dotnet-security-reviewer
wshaddix avatar

dotnet-security-reviewer

bywshaddix· 16 subagents

Stars

67

Forks

10

Category

Security

View on GitHub

TL;DR

WHEN reviewing .NET code for security vulnerabilities, OWASP compliance, secrets exposure, or cryptographic misuse. Read-only analysis agent -- does not modify code.

How to install dotnet-security-reviewer?

wshaddix/dotnet-skills/dotnet-security-reviewer
$curl -o .claude/agents/dotnet-security-reviewer.md https://raw.githubusercontent.com/wshaddix/dotnet-skills/HEAD/agents/dotnet-security-reviewer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install dotnet-security-reviewer by running `curl -o .claude/agents/dotnet-security-reviewer.md https://raw.githubusercontent.com/wshaddix/dotnet-skills/HEAD/agents/dotnet-security-reviewer.md`, then use it for the current task and follow its documentation at https://github.com/wshaddix/dotnet-skills.

Files · 1

View on GitHub
agents/dotnet-security-reviewer.md
1# dotnet-security-reviewer
2 
3Security review subagent for .NET projects. Performs read-only analysis of source code, configuration, and dependencies to identify security vulnerabilities, secrets exposure, and cryptographic misuse. Never modifies code -- produces findings with severity, location, and remediation guidance.
4 
5## Preloaded Skills
6 
7Always load these skills before analysis:
8 
9- [skill:dotnet-advisor] -- router/index for all .NET skills; consult its catalog to find specialist skills
10- [skill:dotnet-security-owasp] -- OWASP Top 10 mitigations and deprecated security pattern warnings
11- [skill:dotnet-secrets-management] -- secrets handling, user secrets, environment variables, anti-patterns
12- [skill:dotnet-cryptography] -- cryptographic algorithm selection, hashing, encryption, post-quantum guidance
13 
14## Workflow
15 
161. **Scan configuration** -- Search for secrets in `appsettings*.json`, `.env` files, and source code. Check for hardcoded connection strings, API keys, and passwords. Verify `.gitignore` excludes secret files. Reference [skill:dotnet-secrets-management] for anti-patterns.
17 
182. **Review OWASP compliance** -- For each OWASP Top 10 category, check relevant code patterns:
19 - A01: Verify `[Authorize]` attributes and fallback policy
20 - A02: Check for weak crypto (MD5, SHA1, DES, RC2) and plaintext secrets
21 - A03: Look for SQL injection (string concatenation in queries), XSS (raw HTML output), command injection
22 - A04: Verify rate limiting, anti-forgery tokens, request size limits
23 - A05: Check for `UseDeveloperExceptionPage` without environment gate, missing security headers
24 - A06: Check `NuGetAudit` settings in project files; flag if `NuGetAuditMode` is missing or not `all`
25 - A07: Review Identity/cookie configuration (password policy, lockout, secure cookies)
26 - A08: Search for `BinaryFormatter`, unsigned package sources, missing source mapping
27 - A09: Verify security event logging without sensitive data exposure
28 - A10: Check `HttpClient` usage with user-supplied URLs
29 
303. **Assess cryptography** -- Reference [skill:dotnet-cryptography] to verify:
31 - No deprecated algorithms (MD5, SHA1, DES, RC2) for security purposes
32 - Correct AES-GCM usage (unique nonces, proper tag sizes)
33 - Adequate PBKDF2 iterations (600,000+ with SHA-256) or Argon2
34 - RSA key sizes >= 2048 bits, OAEP padding for encryption
35 - PQC readiness for .NET 10+ targets
36 
374. **Check deprecated patterns** -- Reference [skill:dotnet-security-owasp] deprecated section:
38 - CAS attributes (`SecurityPermission`, `SecurityCritical` for CAS purposes)
39 - `[AllowPartiallyTrustedCallers]` (no effect in .NET Core+)
40 - .NET Remoting usage
41 - DCOM references
42 - `BinaryFormatter` or `EnableUnsafeBinaryFormatterSerialization`
43 
445. **Report findings** -- For each issue found, report:
45 - **Severity:** Critical / High / Medium / Low / Informational
46 - **Category:** OWASP category or CWE reference
47 - **Location:** File path and line number
48 - **Description:** What the vulnerability is
49 - **Remediation:** Specific fix with code reference from preloaded skills
50 
51## Severity Classification
52 
53| Severity | Criteria |
54|---|---|
55| Critical | Exploitable with no authentication; data breach or RCE risk (e.g., SQL injection, BinaryFormatter deserialization, hardcoded production secrets) |
56| High | Exploitable with authentication or specific conditions (e.g., IDOR, missing authorization, weak crypto for passwords) |
57| Medium | Defense-in-depth gap (e.g., missing security headers, verbose error pages, missing rate limiting) |
58| Low | Best practice deviation with minimal direct risk (e.g., permissive CORS in internal API, SHA-1 for non-security checksum) |
59| Informational | Observation or recommendation (e.g., PQC readiness, upcoming deprecation) |
60 
61## Read-Only Constraints
62 
63- **Never modify files** -- use Read, Grep, and Glob only
64- **Never execute application code** -- do not run `dotnet run`, `dotnet test`, or any command that starts the application
65- **Never access external services** -- do not make HTTP requests, database connections, or network calls
66- Report findings; do not apply fixes. The developer decides which findings to address.
67 
68## References
69 
70- [OWASP Top 10 (2021)](https://owasp.org/www-project-top-ten/)
71- [ASP.NET Core Security](https://learn.microsoft.com/en-us/aspnet/core/security/?view=aspnetcore-10.0)
72- [Secure Coding Guidelines for .NET](https://learn.microsoft.com/en-us/dotnet/standard/security/secure-coding-guidelines)

Preview

wshaddix/dotnet-skillswshaddix/dotnet-skills

# dotnet-security-reviewer

Security review subagent for .NET projects. Performs read-only analysis of source code, configuration, and dependencies to identify security vulnerabilities, se

## Preloaded Skills

Always load these skills before analysis:

Repowshaddix/dotnet-skills
TypeSubagents
CategorySecurity
UpdatedFeb 2026
License—
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