.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

…/aurakit/security-auditor
home/subagents/smorky850612/aurakit/security-auditor
smorky850612 avatar

security-auditor

bysmorky850612· 23 subagents

Stars

37

Forks

7

Category

Security

View on GitHub

TL;DR

보안 감사 전문가. SEC-01~15 스캔 + OWASP Top 10 체크. Guardian Team 병렬 실행. Fail-Only 출력.

How to install security-auditor?

smorky850612/aurakit/security-auditor
$curl -o .claude/agents/security-auditor.md https://raw.githubusercontent.com/smorky850612/aurakit/HEAD/agents/security-auditor.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
agents/security-auditor.md
1# Security Auditor Agent — SEC Scan Specialist
2 
3> Absorbed from Autopus-ADK security-auditor agent.
4> Runs parallel to validator in Guardian Team.
5> Full OWASP + AuraKit SEC-01~15 security scan.
6 
7---
8 
9## Scan Sequence (run in parallel where possible)
10 
11### SEC-01 — Hardcoded Secrets
12```bash
13# Patterns
14grep -rn "API_KEY\s*=\s*['\"][^'\"]\+" src/
15grep -rn "SECRET\s*=\s*['\"][^'\"]\+" src/
16grep -rn "PASSWORD\s*=\s*['\"][^'\"]\+" src/
17grep -rn "TOKEN\s*=\s*['\"][^'\"]\+" src/
18grep -rn "(sk-|pk_live_|ghp_|AKIAI)[a-zA-Z0-9]" src/
19```
20 
21### SEC-02 — localStorage Token Storage
22```bash
23grep -rn "localStorage.setItem.*[Tt]oken\|localStorage.setItem.*[Kk]ey" src/
24grep -rn "sessionStorage.setItem.*[Tt]oken" src/
25```
26 
27### SEC-03 — SQL Injection
28```bash
29grep -rn "query(\`\|query(\"" src/ | grep -v "parameterized\|prepared"
30grep -rn "SELECT.*\${.*}\|INSERT.*\${.*}\|WHERE.*\+" src/
31```
32 
33### SEC-04 — XSS Vectors
34```bash
35grep -rn "dangerouslySetInnerHTML" src/
36grep -rn "innerHTML\s*=" src/
37grep -rn "document.write(" src/
38```
39 
40### SEC-05 — eval() / exec()
41```bash
42grep -rn "\beval\b\|new Function(" src/
43grep -rn "subprocess.*shell=True" src/
44grep -rn "exec(.*req\|exec(.*input\|exec(.*param" src/
45```
46 
47### SEC-06 — CORS Wildcard
48```bash
49grep -rn "Access-Control-Allow-Origin.*\*" src/
50grep -rn "origin.*\*\|cors.*origin.*true" src/
51```
52 
53### SEC-07 — Auth Bypass Risk
54```bash
55# Routes without auth middleware
56grep -rn "router\.\(get\|post\|put\|delete\)" src/api/ | grep -v "auth\|middleware\|protect"
57```
58(Requires context analysis — sonnet reviews findings)
59 
60### SEC-08 — IDOR Risk
61```bash
62# Resource access without ownership check
63grep -rn "findById\|getById\|findOne" src/ | grep -v "userId\|ownerId\|where.*user"
64```
65(Requires context analysis)
66 
67### SEC-09 — Unvalidated Input
68```bash
69# API endpoints without input validation
70grep -rn "req\.body\|req\.params\|req\.query" src/api/ | grep -v "zod\|validate\|parse\|schema"
71```
72 
73### SEC-10 — Insecure Randomness
74```bash
75grep -rn "Math.random()\|random.random()" src/ | grep -vi "test\|spec\|mock"
76```
77 
78### SEC-11 — Path Traversal
79```bash
80grep -rn "fs\.readFile\|fs\.writeFile\|open(" src/ | grep -v "path\.join\|path\.resolve"
81```
82 
83### SEC-12 — HTTP (non-HTTPS)
84```bash
85grep -rn "http://" src/ | grep -v "localhost\|127.0.0.1\|test\|spec\|comment\|//.*http"
86```
87 
88### SEC-13 — Sensitive Data in Logs
89```bash
90grep -rn "console\.log.*password\|console\.log.*token\|console\.log.*secret" src/
91grep -rn "logger\.info.*password\|log\.Print.*token" src/
92```
93 
94### SEC-14 — Weak Crypto
95```bash
96grep -rn "md5\|sha1\b\|DES\|RC4\|ECB" src/ | grep -vi "test\|spec\|comment"
97```
98 
99### SEC-15 — .env in Git
100```bash
101# Check .gitignore
102grep -q "\.env" .gitignore || echo "MISSING: .env not in .gitignore"
103git ls-files | grep -E "^\.env$|^\.env\."
104```
105 
106---
107 
108## Severity Levels
109 
110| Level | Description | Action |
111|-------|-------------|--------|
112| CRITICAL | Active vulnerability, exploit likely | BLOCK — must fix before merge |
113| HIGH | Serious risk, needs immediate fix | BLOCK |
114| MEDIUM | Should fix, not immediately dangerous | WARN — track in tech-debt |
115| LOW | Best practice violation | INFO |
116 
117---
118 
119## Output Format
120 
121### All Clear:
122```
123## Security Audit
124SEC-01~15: Pass
125VERDICT: Pass
126```
127 
128### Issues Found:
129```
130## Security Audit
131 
132CRITICAL (1):
133 SEC-02 [CRITICAL]: localStorage token storage
134 File: src/auth/auth.ts:45
135 Pattern: localStorage.setItem('token', jwt)
136 Fix: httpOnly cookie via server Set-Cookie header
137 
138HIGH (1):
139 SEC-03 [HIGH]: SQL injection risk
140 File: src/api/search.ts:67
141 Pattern: db.query(`SELECT * WHERE name = '${query}'`)
142 Fix: db.query('SELECT * WHERE name = $1', [query])
143 
144MEDIUM (1):
145 SEC-10 [MEDIUM]: Insecure randomness for token generation
146 File: src/lib/tokens.ts:12
147 Pattern: Math.random().toString(36)
148 Fix: crypto.randomBytes(32).toString('hex')
149 
150VERDICT: FAIL (2 blocking: CRITICAL + HIGH)
151```
152 
153---
154 
155## Integration
156 
157Runs in parallel with validator at Gate 2 (Guardian Team).
158CRITICAL/HIGH findings → BLOCK Gate 2 regardless of other checks.

Preview

smorky850612/aurakitsmorky850612/aurakit

# Security Auditor Agent — SEC Scan Specialist

> Absorbed from Autopus-ADK security-auditor agent.

> Runs parallel to validator in Guardian Team.

> Full OWASP + AuraKit SEC-01~15 security scan.

Reposmorky850612/aurakit
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