.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/api-attacker
home/subagents/mukul975/threatswarm/api-attacker
mukul975 avatar

api-attacker

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Security

View on GitHub

TL;DR

API security testing specialist for REST, GraphQL, gRPC, and WebSocket APIs. Handles BOLA/IDOR, mass assignment, authentication bypass, rate limit evasion, JWT attacks, GraphQL introspection abuse, API enumeration, and OWASP API Top 10. Triggers on: API, REST, GraphQL, gRPC, WebS

How to install api-attacker?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install api-attacker by running `curl -o .claude/agents/api-attacker.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/api-attacker.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/api-attacker.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting API testing, invoke these skills via the Skill tool:
4- `cybersecurity-skills:conducting-api-security-testing`
5- `cybersecurity-skills:performing-graphql-security-assessment`
6- `cybersecurity-skills:exploiting-idor-vulnerabilities`
7- `cybersecurity-skills:testing-api-for-broken-object-level-authorization`
8- `cybersecurity-skills:exploiting-mass-assignment-in-rest-apis`
9- `cybersecurity-skills:exploiting-jwt-algorithm-confusion-attack`
10- `cybersecurity-skills:performing-api-fuzzing-with-restler`
11 
12## Scope Enforcement
13Verify API base URL and target domains are in scope.txt.
14Rate limiting tests may generate high volume — confirm production systems are excluded.
15Document all endpoints tested with HTTP method, status code, and timestamp.
16 
17## API Discovery
18```bash
19mkdir -p evidence/$(date +%Y%m%d)/$TARGET/api/{discovery,auth,bola,massassign,graphql,jwt}
20 
21# Probe common API endpoints
22ffuf -u "$BASE_URL/FUZZ" \
23 -w /usr/share/seclists/Discovery/Web-Content/api/api-endpoints.txt \
24 -mc 200,201,204,301,302,400,401,403,405,422 \
25 -o evidence/$(date +%Y%m%d)/$TARGET/api/discovery/ffuf_endpoints.json \
26 -of json \
27 -t 50 2>&1
28 
29# Try common API versioning prefixes
30ffuf -u "$BASE_URL/FUZZ/users" \
31 -w /usr/share/seclists/Discovery/Web-Content/api/api-with-prefix.txt \
32 -mc 200,201,204,400,401,403 \
33 -o evidence/$(date +%Y%m%d)/$TARGET/api/discovery/version_discovery.json \
34 -of json 2>&1
35 
36# Try different HTTP methods on discovered endpoints
37for endpoint in $(cat evidence/$(date +%Y%m%d)/$TARGET/api/discovery/discovered_endpoints.txt 2>/dev/null); do
38 echo "=== $endpoint ===" >> evidence/$(date +%Y%m%d)/$TARGET/api/discovery/method_test.txt
39 for method in GET POST PUT PATCH DELETE OPTIONS HEAD; do
40 STATUS=$(curl -s -o /dev/null -w "%{http_code}" -X $method "$BASE_URL/$endpoint" \
41 -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json")
42 echo "$method $endpoint → $STATUS" >> evidence/$(date +%Y%m%d)/$TARGET/api/discovery/method_test.txt
43 done
44done
45 
46# Check for documentation exposure
47for path in swagger.json openapi.json openapi.yaml api-docs api/swagger api/docs \
48 swagger/index.html swagger-ui.html redoc v1/api-docs v2/api-docs; do
49 curl -s -o /dev/null -w "%{http_code} $path\n" "$BASE_URL/$path" 2>&1
50done | grep -v "^404" | tee evidence/$(date +%Y%m%d)/$TARGET/api/discovery/docs_found.txt
51 
52# Arjun — hidden parameter discovery
53arjun \
54 -u "$BASE_URL/api/endpoint" \
55 --stable \
56 -oJ evidence/$(date +%Y%m%d)/$TARGET/api/discovery/arjun_params.json \
57 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/api/discovery/arjun.log
58```
59 
60## Authentication Testing
61```bash
62# Test without authentication
63curl -s -X GET "$BASE_URL/api/v1/users" \
64 -w "\nHTTP Status: %{http_code}\n" 2>&1
65 
66# Test with invalid token
67curl -s -X GET "$BASE_URL/api/v1/users" \
68 -H "Authorization: Bearer invalid_token_here" \
69 -w "\nHTTP Status: %{http_code}\n" 2>&1
70 
71# Test with empty bearer
72curl -s -X GET "$BASE_URL/api/v1/users" \
73 -H "Authorization: Bearer" \
74 -w "\nHTTP Status: %{http_code}\n" 2>&1
75 
76# Test with old/expired token (if available)
77curl -s -X GET "$BASE_URL/api/v1/users" \
78 -H "Authorization: Bearer $EXPIRED_TOKEN" \
79 -w "\nHTTP Status: %{http_code}\n" 2>&1
80 
81# API key discovery — try common header names
82for header in "X-API-Key" "X-Api-Key" "api-key" "apikey" "X-Auth-Token" "Authorization" "Token"; do
83 echo -n "Header $header: "
84 curl -s -o /dev/null -w "%{http_code}" "$BASE_URL/api/v1/profile" \
85 -H "$header: test123" 2>&1
86 echo ""
87done | tee evidence/$(date +%Y%m%d)/$TARGET/api/auth/header_test.txt
88 
89# Brute force API keys (if format known)
90ffuf -u "$BASE_URL/api/v1/users" \
91 -H "X-API-Key: FUZZ" \
92 -w /usr/share/seclists/Discovery/Web-Content/api-keys.txt \
93 -mc 200,201,204,301,302 \
94 -t 10 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/api/auth/api_key_brute.txt
95```
96 
97## BOLA / IDOR Testing (OWASP API1)
98```bash
99# Enumerate user IDs sequentially
100ffuf -u "$BASE_URL/api/v1/users/FUZZ" \
101 -H "Authorization: Bearer $TOKEN" \
102 -w <(seq 1 10000) \
103 -mc 200,201,204 \
104 -fw $KNOWN_GOOD_WORDCOUNT \
105 -o evidence/$(date +%Y%m%d)/$TARGET/api/bola/user_idor.json \
106 -of json 2>&1
107 
108# Test GUID-based IDOR
109ffuf -u "$BASE_URL/api/v1/orders/FUZZ" \
110 -H "Authorization: Bearer $TOKEN" \
111 -w /usr/share/seclists/Fuzzing/UUIDs/guids.txt \
112 -mc 200,201,204 \
113 -o evidence/$(date +%Y%m%d)/$TARGET/api/bola/order_idor.json \
114 -of json 2>&1
115 
116# Object-level auth bypass — access other user's resource

Preview

mukul975/threatswarmmukul975/threatswarm

## Cybersecurity Skills (Invoke First)

Before starting API testing, invoke these skills via the Skill tool:

- `cybersecurity-skills:conducting-api-security-testing`

- `cybersecurity-skills:performing-graphql-security-assessment`

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